caesar (version 1.3, 13 March 2001)
index
../caesar.py

caesar.py - caesar cipher for python.
 
You'll need cipher.py by Tesla Coil <tescoil@irtc.net>,
which you can get from
http://www.lowerstandard.com/python/cipher.py
 
The standard rotation for this caesar is 3 or one of your choice
(so you can rot13 messages too). This differs from caesar(6),
which appears to use a rotation of 20.
 
Just press Enter when you're asked for a rotation for standard
caesar, or choose your favourite.

 
Modules
            
cipher
string

 
Functions
            
cencdec(dir, rot, text)
Encrypt to or decrypt from caesar given direction and
rotation
rotate(dir, rot, text)
Generate rotated text according to given rotation and
direction

 
Data
             __author__ = 'Sean Dwyer <ewe2@can.org.au>'
__credits__ = 'cipher.py by Tesla Coil <tescoil@irtc.net>'
__date__ = '13 March 2001'
__file__ = './caesar.py'
__name__ = 'caesar'
__version__ = '$Revision: 1.4 $'

 
Author
             Sean Dwyer <ewe2@can.org.au>

 
Credits
             cipher.py by Tesla Coil <tescoil@irtc.net>