We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a674da2 commit 8e8d607Copy full SHA for 8e8d607
Cryptopal-Challenges/brice/python/utils.py
@@ -12,17 +12,6 @@
12
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
13
from cryptography.hazmat.backends import default_backend
14
15
-class Test(object):
16
- def __init__(self):
17
- self.plaintext = bytearray("""There was once a lamb with purple wool.
18
-The others in the flock thought him a fool.
19
-Shame for them, when easter came,
20
-The purple wool went to the fair
21
-The other lambs ended up as easter fare!
22
-""")
23
-
24
-TEST = Test()
25
26
27
def mapKeys(d, newKey):
28
return dict([(newKey(k), v) for k,v in d.items()])
0 commit comments