您能帮我解决这个问题吗?
TypeError: can't concat bytes to str
我正在尝试安全地存储哈希盐密码.
我认为问题是我的盐是一个字节对象.
如何将其转换为字符串?
还是有更好的哈希方法?
import base64
import hashlib
import os
def getDigest(password, salt=None):
if not salt:
salt = base64.b64encode(os.urandom(32))
digest = hashlib.sha256(salt + password).hexdigest()
return salt, digest
def isPassword(password, salt, digest):
return getDigest(password, salt)[1] == digest
print(getDigest('batman'))
解决方法:
在将salt编码后,可以将salt = salt.decode(“ utf-8”)转换为字符串.