hello all I am writing ceaser cipher in java (to go along with a massive encryption tool when its all done)...
I just wanted a few opinions really...
should I include special characters? like punctuation ... if I leave puntuation out of a cipher it could be easier to decrypt ... example
hello bob, how is you're mother?
could looks like
gyrrq tqt, gqp dz uqi'wy fqmgyw?
obviously I can see that the first word is probably hello and that the second is a name or something to address someone due to the normal letter lay out if wrong I can for sure see the " ' " which would suggest "re" .... but if I remove all punctuation sentences can become hard to understand or meanings can change all together.
also should i make everything a standard lower case? this is my alphabet char array so far:
is this going a bit OTT? or good to allow proper communication? i need to add more special characters and maybe remove the caps (as most people would assume the first would be a cap in a sentence which allows a small amount of elimination)
A study by physicist Henry Tye of Cornell University suggests that the universe may not expand forever. Instead, it could eventually stop expanding, begin contracting and end in a "Big Crunch" roughly 20 billion years from now.
Maybe not as we now know that time can flow backwards.
It is clear from this aricle that "Time Is On My Side" no matter which direction it is flowing.,
https://noai.duckduckgo.com/?i...m%2Fwatch%3Fv%3DsEj8lUx0gwY
Matt Dinniman
I’m happy to announce that our friends at Peacock have officially greenlit the Dungeon Crawler Carl television series! Me, Chris Yost and Seth MacFarlane and his team at Fuzzy Door are all really excited to get to work. In the coming weeks I'll have more details, and if you're going to SDCC be sure to catch me and Chris on our DCC panel, but in the meantime I wanted to thank you, the fans, for helping make this happen.
— with Peacock TV and Seth MacFarlane.
Question
Original Poster
hello all I am writing ceaser cipher in java (to go along with a massive encryption tool when its all done)...
I just wanted a few opinions really...
should I include special characters? like punctuation ... if I leave puntuation out of a cipher it could be easier to decrypt ... example
hello bob, how is you're mother?
could looks like
gyrrq tqt, gqp dz uqi'wy fqmgyw?
obviously I can see that the first word is probably hello and that the second is a name or something to address someone due to the normal letter lay out if wrong I can for sure see the " ' " which would suggest "re" .... but if I remove all punctuation sentences can become hard to understand or meanings can change all together.
also should i make everything a standard lower case? this is my alphabet char array so far:
{'a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '1',
'2', '3', '4', '5', '6', '7', '8', '9', '0', '\'', '\"', ',', '@', '[', ';', '#', ']', '-', '_', '~', '{', '}', '?', '*', '?',};
is this going a bit OTT? or good to allow proper communication? i need to add more special characters and maybe remove the caps (as most people would assume the first would be a cap in a sentence which allows a small amount of elimination)
opinions? thoughts? ideas? extras?
Link to comment
https://www.neowin.net/forum/topic/1154212-i-am-writing-a-ceaser-cipher/Share on other sites
14 answers to this question
Recommended Posts