Popular recipes tagged "cipher" but not "game"http://code.activestate.com/recipes/tags/cipher-game/2014-07-22T16:23:39-07:00ActiveState Code RecipesSimple Cipher (Python) 2014-07-22T16:23:39-07:00Stephen Driffillhttp://code.activestate.com/recipes/users/4190452/http://code.activestate.com/recipes/578912-simple-cipher/ <p style="color: grey"> Python recipe 578912 by <a href="/recipes/users/4190452/">Stephen Driffill</a> (<a href="/recipes/tags/cipher/">cipher</a>, <a href="/recipes/tags/code/">code</a>, <a href="/recipes/tags/cryptography/">cryptography</a>). </p> <p>Takes a string and encodes it using a simple cipher.</p> Brute Force Break Caesar Cipher in Python (Python) 2013-06-03T17:54:16-07:00Captain DeadBoneshttp://code.activestate.com/recipes/users/4184772/http://code.activestate.com/recipes/578546-brute-force-break-caesar-cipher-in-python/ <p style="color: grey"> Python recipe 578546 by <a href="/recipes/users/4184772/">Captain DeadBones</a> (<a href="/recipes/tags/bruteforce/">bruteforce</a>, <a href="/recipes/tags/cipher/">cipher</a>, <a href="/recipes/tags/decryption/">decryption</a>, <a href="/recipes/tags/python/">python</a>). </p> <p>This script was written for an article I wrote it generates all the combinations possible for brute force breaking a Caesar Cipher. For more information <a href="http://thelivingpearl.com/2013/06/03/caesar-ciphers-in-python/">Caesar Ciphers In Python</a></p> Simple Substitution Cipher Algorithm (Python) 2013-06-03T17:51:00-07:00Captain DeadBoneshttp://code.activestate.com/recipes/users/4184772/http://code.activestate.com/recipes/578544-simple-substitution-cipher-algorithm/ <p style="color: grey"> Python recipe 578544 by <a href="/recipes/users/4184772/">Captain DeadBones</a> (<a href="/recipes/tags/cipher/">cipher</a>, <a href="/recipes/tags/encryption/">encryption</a>, <a href="/recipes/tags/python/">python</a>). </p> <p>This script was written for an article I wrote It converts any plain text into a Caesar Cipher message. For more information <a href="http://thelivingpearl.com/2013/06/03/caesar-ciphers-in-python/">Caesar Ciphers In Python</a></p> Caesar Ciphers Program in Python (Python) 2013-06-03T17:52:24-07:00Captain DeadBoneshttp://code.activestate.com/recipes/users/4184772/http://code.activestate.com/recipes/578545-caesar-ciphers-program-in-python/ <p style="color: grey"> Python recipe 578545 by <a href="/recipes/users/4184772/">Captain DeadBones</a> (<a href="/recipes/tags/cipher/">cipher</a>, <a href="/recipes/tags/encryption_decryption/">encryption_decryption</a>, <a href="/recipes/tags/python/">python</a>). </p> <p>This script was written for an article I wrote it encrypts and decrypts any plain text into a Caesar Cipher message. For more information <a href="http://thelivingpearl.com/2013/06/03/caesar-ciphers-in-python/">Caesar Ciphers In Python</a></p>