有没有简单的方法来反转这个哈希函数?

时间:2017-08-11 13:53:54

标签: python encryption

我有以下python方法,它获取一个字符串并返回一个整数。我正在寻找能够打印出“伟大成功!”的正确input

input = "XXX"
def enc(pwd):
    inc = 0
    for i in range(1, len(pwd) + 1):
        _1337 = pwd[i - 1]
        _move = ord(_1337) - 47
        if i == 1:
            inc += _move
        else:
            inc += _move * (42 ** (i - 1))
    return inc

if hex(enc(input)) == 0xEA9D1ED352B8:
    print "Great Success!"

0 个答案:

没有答案