cipher | index ../cipher.py |
# cipher.py - Classical Cryptography Functions.
# Version 0.0.01
#
# Unrestricted Submarine Warfare License.
# 2001, Tesla Coil <tescoil@irtc.net>
# -- TNX to Sean Dwyer <ewe2@can.org.au>
# without whom, I might have left it alone.
#
# Expects list input in uppercase letters, e.g.,
#
# import string, cipher
# key = raw_input('keyword please: ')
# key = list(string.upper(key))
# cipher.unstray(key)
#
#
Functions | ||
|
Data | ||
__file__ = './cipher.py' __name__ = 'cipher' digits = '0123456789' uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' upperlist = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', ...] |