Using Rotor with password file
Paul Rubin
phr-n2003b at NOSPAMnightsong.com
Sat Feb 1 22:08:47 EST 2003
More information about the Python-list mailing list
Sat Feb 1 22:08:47 EST 2003
- Previous message (by thread): Using Rotor with password file
- Next message (by thread): Using Rotor with password file
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Colin Meeks <colin at meeks.ca> writes: > I've tried p2.py also, but get the same problem. Here's an example of > what I'm getting Don't put raw binary into a human editable config file. Convert it to hex with binascii.hexlify or something like that. Do you really need to be able to decrypt those passwords? As several other people have said, if you don't need to actually decrypt the password, you should use an unreverseable hash function instead of encryption.
- Previous message (by thread): Using Rotor with password file
- Next message (by thread): Using Rotor with password file
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list