D
Size: a a a
D
D
СК
>>> import struct
>>> struct.pack("!I", 0xaeee73ed)
b'\xae\xees\xed'
>>> b = b'\xae\xees\xed'
>>> struct.unpack("!I", b)
(2934862829,)
>>> n = b[0]
>>> n <<= 8
>>> n |= b[1]
>>> n <<= 8
>>> n |= b[2]
>>> n <<= 8
>>> n |= b[3]
>>> n
2934862829
>>>
D
СК
СК
kvxmmu@debian:/tmp/AES$ python3 test.py
Testing AES-128 lib with b'dAtAbAsE9suck431' message and dAtAbAsE98765432 key...
Encrypt time with 10000 iterations: 2.64217827199991
Decrypt time with 10000 iterations: 6.044143660999907
СК
D
D
СК
D
D
D
DY
AR
DY
AB
M