circuitpython/tests/extmod/ucryptolib_aes128_ecb.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
329 B
Python
Raw Normal View History

try:
from Crypto.Cipher import AES
2021-04-20 01:22:44 -04:00
aes = AES.new
except ImportError:
try:
from ucryptolib import aes
except ImportError:
print("SKIP")
raise SystemExit
crypto = aes(b"1234" * 4, 1)
enc = crypto.encrypt(bytes(range(32)))
print(enc)
crypto = aes(b"1234" * 4, 1)
print(crypto.decrypt(enc))