1996-12-23 19:39:42 -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 16:55:00 -03:00
|
|
|
print `a`
|
1996-12-23 19:39:42 -04:00
|
|
|
b = r.encryptmore(B)
|
1997-08-18 10:42:28 -03:00
|
|
|
print `b`
|
1996-12-23 19:39:42 -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'
|
|
|
|
|
1997-01-02 16:02:44 -04:00
|
|
|
try:
|
|
|
|
r.setkey()
|
|
|
|
except TypeError:
|
|
|
|
pass
|
1996-12-23 19:39:42 -04:00
|
|
|
r.setkey('you guessed it!')
|