blob: ff832d7ef3b0731f9e775e6a58731365eacf8c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Operations with pre-allocated output buffer
try:
from ucryptolib import aes
except ImportError:
print("SKIP")
raise SystemExit
crypto = aes(b"1234" * 4, 1)
enc = bytearray(32)
crypto.encrypt(bytes(range(32)), enc)
print(enc)
crypto = aes(b"1234" * 4, 1)
dec = bytearray(32)
crypto.decrypt(enc, dec)
print(dec)
|