0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00
cpython/Lib/test/test_rotor.py
Barry Warsaw 5e056bbb76 test_rotor.py: New test of the rotor module.
test_*: converted to the new test harness.  GvR note!  test_signal.py
works interatively (i.e. when verbose=1) but does not work inside the
test harness.  It must be a timing issue, but I haven't figured it out
yet.
1996-12-23 23:39:42 +00:00

26 lines
386 B
Python

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)
print a
b = r.encryptmore(B)
print b
A1 = r.decrypt(a)
print A1
if A1 <> A:
print 'decrypt failed'
B1 = r.decryptmore(b)
print B1
if B1 <> B:
print 'decryptmore failed'
r.setkey()
r.setkey('you guessed it!')