You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
tests: Add test for hashlib.sha256 .
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
try:
|
||||
import uhashlib as hashlib
|
||||
except ImportError:
|
||||
import hashlib
|
||||
|
||||
|
||||
h = hashlib.sha256()
|
||||
print(h.digest())
|
||||
|
||||
h = hashlib.sha256()
|
||||
h.update(b"123")
|
||||
print(h.digest())
|
||||
|
||||
h = hashlib.sha256()
|
||||
h.update(b"abcd" * 1000)
|
||||
print(h.digest())
|
||||
|
||||
print(hashlib.sha256(b"\xff" * 64).digest())
|
||||
|
||||
# TODO: running .digest() several times in row is not supported()
|
||||
#h = hashlib.sha256(b'123')
|
||||
#print(h.digest())
|
||||
#print(h.digest())
|
||||
|
||||
# TODO: partial digests are not supported
|
||||
#h = hashlib.sha256(b'123')
|
||||
#print(h.digest())
|
||||
#h.update(b'456')
|
||||
#print(h.digest())
|
||||
Reference in New Issue
Block a user