Skip to content
Snippets Groups Projects
Commit 4a1c80c2 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests: Add test for hashlib.sha256 .

parent a944183b
No related branches found
No related tags found
No related merge requests found
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())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment