Skip to content

Instantly share code, notes, and snippets.

View p53ud0k0d3's full-sized avatar

Vishnu Ashok p53ud0k0d3

View GitHub Profile
@p53ud0k0d3
p53ud0k0d3 / caesar_wheel.py
Last active August 29, 2015 14:07
This is a cipher that was used by Julius Caesar two thousand years ago. The good news is that it is simple and easy to learn. The bad news is that because it is so simple, it is also easy for a cryptanalyst to break it. But we can use it just as a simple learning exercise. The Caesar Cipher is also explained on Wikipedia here : http://en.wikiped…
"""Caesar_wheel.py
Author : Vishnu Ashok
Contact : [email protected]
[email protected]
This is a cipher that was used by Julius Caesar two thousand years ago. The good news is that it is simple and easy to learn. The bad news is that because it is so simple, it is also easy for a cryptanalyst to break it. But we can use it just as a simple learning exercise. The Caesar Cipher is also explained on Wikipedia here :
http://en.wikipedia.org/wiki/Caesar_cipher
"""