prosyslab-classroom / cs348-information-security

61 stars 10 forks source link

[Question][Hw1] #228

Closed anisrashidov closed 1 year ago

anisrashidov commented 1 year ago

Name: Anis Rashidov

For Caesar Cipher, do we have to encode space and punctuation marks? If yes, then how should we do so?

KalasLavas commented 1 year ago

I removed all non-alphabetic characters, converted to correct case (uppercase for cipher and lowercase for plain) and it passed the tests.

sujin0529 commented 1 year ago

Hi,

All the other characters (e.g., numbers and whitespaces) will be ignored in text preprocessing. So, you don't need to consider other character encoding.

Thanks.

anisrashidov commented 1 year ago

Thanks all.