summaryrefslogtreecommitdiffstats
path: root/Lib/dos_8x3/test_rot.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/dos_8x3/test_rot.py')
-rw-r--r--Lib/dos_8x3/test_rot.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/Lib/dos_8x3/test_rot.py b/Lib/dos_8x3/test_rot.py
deleted file mode 100644
index 99724bc..0000000
--- a/Lib/dos_8x3/test_rot.py
+++ /dev/null
@@ -1,28 +0,0 @@
-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'
-
-try:
- r.setkey()
-except TypeError:
- pass
-r.setkey('you guessed it!')