cpython/Lib/dos-8x3/test_rot.py

29 lines
426 B
Python
Raw Normal View History

1997-04-02 02:13:34 -04:00
import rotor
r = rotor.newrotor("you'll never guess this")
r = rotor.newrotor("you'll never guess this", 12)
A = 'spam and eggs'
B = 'cheese shop'
a = r.encrypt(A)
1997-08-14 21:45:26 -03:00
print `a`
1997-04-02 02:13:34 -04:00
b = r.encryptmore(B)
1997-10-06 17:19:59 -03:00
print `b`
1997-04-02 02:13:34 -04:00
A1 = r.decrypt(a)
print A1
if A1 <> A:
print 'decrypt failed'
B1 = r.decryptmore(b)
print B1
if B1 <> B:
print 'decryptmore failed'
try:
r.setkey()
except TypeError:
pass
r.setkey('you guessed it!')