kopia lustrzana https://github.com/micropython/micropython-lib
22 wiersze
430 B
Python
22 wiersze
430 B
Python
|
from binascii import hexlify, unhexlify
|
||
|
import utime
|
||
|
|
||
|
data = b'zlutoucky kun upel dabelske ody'
|
||
|
h = hexlify(data)
|
||
|
|
||
|
if h != b'7a6c75746f75636b79206b756e207570656c20646162656c736b65206f6479':
|
||
|
raise Exception("Error")
|
||
|
|
||
|
data2 = unhexlify(h)
|
||
|
|
||
|
if data2 != data:
|
||
|
raise Exception("Error")
|
||
|
|
||
|
start = utime.time()
|
||
|
for x in range(100000):
|
||
|
d = unhexlify(h)
|
||
|
|
||
|
print("100000 iterations in: " + str(utime.time() - start))
|
||
|
|
||
|
print("OK")
|