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.
15 lines
320 B
15 lines
320 B
# Inplace operations (input and output buffer is the same)
|
|
try:
|
|
from ucryptolib import aes
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
crypto = aes(b"1234" * 4, 1)
|
|
buf = bytearray(bytes(range(32)))
|
|
crypto.encrypt(buf, buf)
|
|
print(buf)
|
|
|
|
crypto = aes(b"1234" * 4, 1)
|
|
crypto.decrypt(buf, buf)
|
|
print(buf)
|
|
|