2018-08-19 05:04:03 -04:00
|
|
|
try:
|
|
|
|
import uhashlib as hashlib
|
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
import hashlib
|
|
|
|
except ImportError:
|
|
|
|
# This is neither uPy, nor cPy, so must be uPy with
|
|
|
|
# uhashlib module disabled.
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
try:
|
|
|
|
hashlib.md5
|
|
|
|
except AttributeError:
|
|
|
|
# MD5 is only available on some ports
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
md5 = hashlib.md5(b"hello")
|
|
|
|
md5.update(b"world")
|
2018-08-19 05:04:03 -04:00
|
|
|
print(md5.digest())
|