lbry-sdk/lbrynet/cryptoutils.py

10 lines
157 B
Python
Raw Normal View History

2017-07-24 09:04:49 +02:00
import hashlib
2019-01-22 18:49:43 +01:00
from cryptography.hazmat.backends import default_backend
backend = default_backend()
2015-08-20 17:27:15 +02:00
def get_lbry_hash_obj():
2017-07-24 09:04:49 +02:00
return hashlib.sha384()