micropython/tests/extmod/cryptolib_aes256_ecb.py
Jim Mussared 4216bc7d13 tests: Replace umodule with module everywhere.
This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2023-06-08 17:54:24 +10:00

17 lines
328 B
Python

try:
from Crypto.Cipher import AES
aes = AES.new
except ImportError:
try:
from cryptolib import aes
except ImportError:
print("SKIP")
raise SystemExit
crypto = aes(b"1234" * 8, 1)
enc = crypto.encrypt(bytes(range(32)))
print(enc)
crypto = aes(b"1234" * 8, 1)
print(crypto.decrypt(enc))