Onionr/src/onionrcrypto/hashers.py

16 lines
348 B
Python
Raw Normal View History

2019-07-19 19:49:56 +00:00
import hashlib, nacl.hash
def sha3_hash(data):
try:
data = data.encode()
except AttributeError:
pass
hasher = hashlib.sha3_256()
hasher.update(data)
return hasher.hexdigest()
def blake2b_hash(data):
try:
data = data.encode()
except AttributeError:
pass
return nacl.hash.blake2b(data)