summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/ucryptolib_aes128_ecb_enc.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/ucryptolib_aes128_ecb_enc.py')
-rw-r--r--tests/extmod/ucryptolib_aes128_ecb_enc.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/extmod/ucryptolib_aes128_ecb_enc.py b/tests/extmod/ucryptolib_aes128_ecb_enc.py
new file mode 100644
index 0000000000..55b676d361
--- /dev/null
+++ b/tests/extmod/ucryptolib_aes128_ecb_enc.py
@@ -0,0 +1,16 @@
+# This tests minimal configuration of ucrypto module, which is
+# AES128 encryption (anything else, including AES128 decryption,
+# is optional).
+try:
+ from Crypto.Cipher import AES
+ 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)