2016-10-28 08:53:15 -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")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2016-10-28 08:53:15 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
hashlib.sha1
|
|
|
|
except AttributeError:
|
|
|
|
# SHA1 is only available on some ports
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2016-10-28 08:53:15 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
sha1 = hashlib.sha1(b"hello")
|
|
|
|
sha1.update(b"world")
|
2016-10-28 08:53:15 -04:00
|
|
|
print(sha1.digest())
|
2018-05-06 13:26:10 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
sha1 = hashlib.sha1(b"hello")
|
2018-05-06 13:26:10 -04:00
|
|
|
try:
|
2022-01-29 17:14:01 -05:00
|
|
|
sha1.update("world")
|
2018-05-06 13:26:10 -04:00
|
|
|
except TypeError as e:
|
|
|
|
print("TypeError")
|
|
|
|
print(sha1.digest())
|