Updated for 2.1a3
[python/dscho.git] / Lib / test / test_rotor.py
blob28c5af5b1c6b0b253325601c9e63a88d51352e61
1 import rotor
3 r = rotor.newrotor("you'll never guess this")
4 r = rotor.newrotor("you'll never guess this", 12)
6 A = 'spam and eggs'
7 B = 'cheese shop'
9 a = r.encrypt(A)
10 print `a`
11 b = r.encryptmore(B)
12 print `b`
14 A1 = r.decrypt(a)
15 print A1
16 if A1 != A:
17 print 'decrypt failed'
19 B1 = r.decryptmore(b)
20 print B1
21 if B1 != B:
22 print 'decryptmore failed'
24 try:
25 r.setkey()
26 except TypeError:
27 pass
28 r.setkey('you guessed it!')