错误哈希+盐密码

时间:2015-06-17 15:53:28

标签: python authentication python-3.x hash salt

你能帮我解决这个问题:

TypeError: can't concat bytes to str

我正在尝试安全地存储哈希+盐密码 我认为问题是我的salt是一个字节对象。

如何将其转换为字符串?
或者有没有办法更好地散列它?

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'))

1 个答案:

答案 0 :(得分:3)

salt = salt.decode("utf-8")编码后,您可以salt将其转换为字符串。