You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
354 B
17 lines
354 B
7 years ago
|
try:
|
||
|
from Crypto.Cipher import AES
|
||
5 years ago
|
|
||
7 years ago
|
aes = AES.new
|
||
|
except ImportError:
|
||
|
try:
|
||
2 years ago
|
from cryptolib import aes
|
||
7 years ago
|
except ImportError:
|
||
|
print("SKIP")
|
||
|
raise SystemExit
|
||
|
|
||
|
crypto = aes(b"1234" * 8, 2, b"5678" * 4)
|
||
|
enc = crypto.encrypt(bytes(range(32)))
|
||
|
print(enc)
|
||
|
crypto = aes(b"1234" * 8, 2, b"5678" * 4)
|
||
|
print(crypto.decrypt(enc))
|