mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
5e056bbb76
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.
26 lines
386 B
Python
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!')
|