使用:Python 3.2.3、scrypt 0.5.5 模块、Ubuntu 12.04
我很好地安装了 scrypt 模块。我很好地在页面上运行了示例代码。我还找到了示例代码的扩展版本,它也做得很好。但是我想测试它是否会两次对同一个单词进行哈希处理,所以我添加了对 Encrypt() 的部分调用,以模拟对数据库进行一次哈希处理,然后在用户登录时再次进行哈希处理的概念,所以我的完整代码看起来像这样:
import random,scrypt
class Encrypt(object):
def __init__(self):
pass
def randSTR(self,length):
return ''.join(chr(random.randint(0,255)) for i in range(length))
def hashPWD(self,pwd, maxtime=0.5, datalength=64):
return scrypt.encrypt(self.randSTR(datalength), pwd, maxtime=maxtime)
def verifyPWD(self,hashed_password, guessed_password, maxtime=0.5):
try:
scrypt.decrypt(hashed_password, guessed_password, maxtime)
return True
except scrypt.error:
return False
if __name__ == '__main__':
e = Encrypt()
user_pw = 'theansweris42'
user_salt = 't9'
pw_salt = user_pw + user_salt
hashed_pw = e.hashPWD(pw_salt) # To be stored len()==192
y = e.verifyPWD(hashed_pw, pw_salt) # True
n = e.verifyPWD(hashed_pw, 'guessing'+ pw_salt) # False
print(y)
print(n)
#print("Hash: %s" % (hashed_pw))
x = Encrypt()
user_pw2 = 'theansweris42'
user_salt2 = 't9'
pw_salt2 = user_pw2 + user_salt2
hashed_pw2 = x.hashPWD(pw_salt2) # To be stored len()==192
y2 = x.verifyPWD(hashed_pw, hashed_pw2) # True
print(y2)
print(pw_salt)
print(pw_salt2)
print(hashed_pw)
print(hashed_pw2)
...如您所见,我还对盐进行了硬编码(用于测试)。奇怪的是,每次我运行它时, hashed_pw 和 hashed_pw2 总是不同的。为什么每次对相同的密码进行不同的哈希处理?每次我给它完全相同的输入时,它不应该输出相同的哈希吗?我一直在尝试解决这个问题一个小时,所以我想我最好问一下。