2003-04-24 10:18:25 -03:00
|
|
|
import warnings
|
|
|
|
|
|
|
|
warnings.filterwarnings("ignore",
|
|
|
|
category=DeprecationWarning,
|
|
|
|
message='.*is deprecated', module=__name__)
|
|
|
|
|
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)
|
2004-02-12 13:35:32 -04:00
|
|
|
print repr(a)
|
1996-12-23 19:39:42 -04:00
|
|
|
b = r.encryptmore(B)
|
2004-02-12 13:35:32 -04:00
|
|
|
print repr(b)
|
1996-12-23 19:39:42 -04:00
|
|
|
|
|
|
|
A1 = r.decrypt(a)
|
|
|
|
print A1
|
2000-12-12 19:11:42 -04:00
|
|
|
if A1 != A:
|
1996-12-23 19:39:42 -04:00
|
|
|
print 'decrypt failed'
|
|
|
|
|
|
|
|
B1 = r.decryptmore(b)
|
|
|
|
print B1
|
2000-12-12 19:11:42 -04:00
|
|
|
if B1 != B:
|
1996-12-23 19:39:42 -04:00
|
|
|
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!')
|