无法将明文加密为密码

时间:2016-03-26 02:32:10

标签: python python-2.7 authentication freeradius cryptographic-hash-function

我正在尝试增强当前隐藏密码隐藏的实现

我错误地使用它了吗?以下是我的代码:

import hashlib
import binascii
def Encrypt_Pass(password, authenticator, secret):
        m = hashlib.md5()
        m.update(secret+authenticator)
        return "".join(chr(ord(x) ^ ord(y)) for x, y in zip(password.ljust
       (16,'\0')[:16], m.digest()[:16]))
result = Encrypt_Pass("abcd1","344c71c77a2b845b8856ffa968740b73","sharedsecret")
ciphertext = "6ed3a35440abe69b2e8698109b809932"#plaintext is cisco123
print result.encode("hex")

结果如下所示:

2509f347a7c5bde3977bb944ae0eb89a

正如您所看到的,返回的密文与我捕获的加密密码不匹配!我错误地使用了代码吗?我确认使用的纯文本密码和共享密钥是准确的。

感谢有人能指出正确的方向。

1 个答案:

答案 0 :(得分:3)

您的身份验证器是十六进制字符串。它需要转换为二进制字符串。

import hashlib
from binascii import a2b_hex

def Encrypt_Pass(password, authenticator, secret):
    m = hashlib.md5()
    m.update(secret + a2b_hex(authenticator))
    return "".join(chr(ord(x) ^ ord(y)) for x, y in zip(password.ljust
       (16,'\0')[:16], m.digest()[:16]))

result = Encrypt_Pass("cisco123","344c71c77a2b845b8856ffa968740b73","sharedsecret")
ciphertext = "6ed3a35440abe69b2e8698109b809932"#plaintext is cisco123
print result.encode("hex")