zbxcat/utils.py

7 lines
128 B
Python
Raw Normal View History

2017-05-22 18:00:34 -07:00
import hashlib
def sha256(secret):
preimage = secret.encode('utf8')
h = hashlib.sha256(preimage).digest()
return h