caesars_cipher_python

Caesar's cipher encryption, decryption & cracking tools
git clone git://mcdim.xyz/caesars_cipher_python.git
Log | Files | Refs | README | LICENSE

README.md (694B)


      1 # CAESAR'S CIPHER IN PYTHON
      2 A Caesar's Cipher implementation in Python including a bruteforcing tool for cracking the cipher.
      3 The code is as minimalistic as it gets and well optimized.
      4 
      5 Usage example: python cen.py 10 'This is text to be encrypted'.
      6 Make sure you include the apostrophes.
      7 # WARNING!
      8 Caesar's cipher is completely insecure and broken. Do not use it in any scenario in which actual security is required.
      9 The fact that I provide an 100% successful bruteforcing tool (bf.py) used to crack the Caesar's cipher should be indicative of its security, or lack thereof.
     10 You can use it to avoid word detection algorithms, but that's pretty much it.
     11 This is for educational purposes only.