所以我写了一个程序,允许用户输入他的密码,密码被相当多的ord()
字符转移:
encrypt=str(ord(letter)*x+x*7) #where x is a random number picked from an array
然后将密码发送到文件:
passwrd=input("nokay then " + name + " now enter your password which we will encrypt nnew password:")
x=int(random.choice(randomNumber)) #The randomNumber array
myfile.write(str(x) + "n")
pasw_file=open('secerateStuff.txt', 'w')
for letter in passwrd: #passwrd is the user input
encrypt=str(ord(letter)*x+x*7)
pasw_file.write(encrypt + "n")
pasw_file.close()
mypassword
的一种可能的编码是:
6 # In myfile
696 # In pasw_file
768
714
624
732
732
756
708
726
642
我的问题是,如何将密码从ord()
方法转换回其原始字符?(与chr()
有关?
感谢您的任何回复!
由于您使用代码编写盐,因此可以使用以下内容。
>>> passw = """6
696
768
714
624
732
732
756
708
726
642"""
>>> passw = map(int, passw.split())
>>> salt, passw = passw[0], passw[1:]
>>> salt
6
>>> passw
[696, 768, 714, 624, 732, 732, 756, 708, 726, 642]
>>> "".join([chr(elem/salt - 7) for elem in passw])
'mypassword'
在Python 3中,你可以做以下事情,在我看来这看起来要好得多。(感谢J.F.塞巴斯蒂安)
>>> salt, *passw = map(int, passw.split())