forked from LBRYCommunity/lbry-sdk
9 lines
157 B
Python
9 lines
157 B
Python
import hashlib
|
|
from cryptography.hazmat.backends import default_backend
|
|
|
|
|
|
backend = default_backend()
|
|
|
|
|
|
def get_lbry_hash_obj():
|
|
return hashlib.sha384()
|