You should never store a password in plain text.
Use a ir-reversable data hashing algorithm, like sha or md5
Here is how you can create a hash in python:
from hashlib import sha256from random import randomrandom_key = random()sha256('%s%s%s'%('YOUR SECRET KEY',random_key,password))
You should also store the random key and hash the user supplied password similarly.
Moon blue diary: Introducing GAETestBase - 0 views
1 - 8 of 8
Showing 20▼ items per page