Definition
Ciphers are the science of writing hidden messages in such a way that no one, apart from the sender and intended recipient, suspects the existence of the message.
In practice, this is usually done by encrypting a key onto a message, yielding a ciphertext. Since the ciphertext never looks anything like the original message, nobody can suspect its existence unless you tell them and give them the key.
Let's give an example to illuminate things.
The RotThirteen cipher
The RotThirteen algorithm is the simplest there is; increase each letter thirteen times, and roll over to 'a' if you pass 'z'. Since the alphabet contains twice thirteen characters, this means that 'XYZ' is encrypted to 'KLM', and 'KLM' encrypted again becomes 'XYZ'! This property means we don't need a separate decryption step, saving time and effort. In fact, the entire algorithm can be wrapped in just one single function (and a helper function).
class Ciphers { public static string RotThirteen(string input) { char[] chars = input.ToCharArray(); for (int i = 0; i < input.Length; i++) { int lowerRotation = Rotate(chars[i] - 'a', 13, 26); int upperRotation = Rotate(chars[i] - 'A', 13, 26); if (chars[i] > 'a') chars[i] = (char)('a' + lowerRotation); else if (chars[i] > 'A') chars[i] = (char)('A' + upperRotation); } return new string(chars); } private static int Rotate(int c, int delta, int max) { c += delta; while (c > max) c -= max; return c; } }
Quickly creating a simple host application and testing this:
Click "RotThirteen":
Click "RotThirteen" again:
Working as expected!
Usages
In contrast to most ciphers, RotThirteen doesn't use secret keys. Instead, all messages are encoded with the public key 13. While RotThirteen is not very secure, its simplicity and elegance makes it popular where only simple encryption is needed. For instance:
- As an anti-spam measure.
- A convenient way to write both a puzzle and vgf nafjre in the same place, without giving away the answer prematurely.
You should try double-rot13. Two layers of encryption!
ReplyDeleteHi Anonymous,
ReplyDeleteUnfortunately, that won't work. RotThirteen-encrypted text is only really encrypted if you apply RotThirteen an odd number of times.
Though if you apply another cipher (like a simple XOR) between the two RotThirteen encodings, you will benefit from the extra RotThirteen layer. Is that what you meant?
Albert. Check out this quote from Wikipedia:
ReplyDeleteROT13 has become a catchphrase to refer to any conspicuously weak encryption scheme; a critic might claim that "56-bit DES is little better than ROT13 these days." Also, in a play on real terms like "double DES", the terms "double ROT13", "ROT26" or "2ROT13" crop up with humorous intent, including a spoof academic paper "On the 2ROT13 Encryption Algorithm".
It probably was a joke.
Oh! I get it now. "ROT26" indeed. Quite drôle. :)
ReplyDeleteC'est pas drôle. Il se moque de toi.
ReplyDelete[spoiler]IHBT[/spoiler]