ex:
username:zjm1126 password:11
i stored the password to the datastore on gae,
when i see the data view at /_ah/admin, i can see the password all people's password who register,
i think it is not safe , yes ?
is password stroed like this ?
how to stored password,
thanks
and the check_password method is :
user=MyUser.get_by_key_name(self.request.get('username'))
if user.password == self.request.get('password'):
session['user.key']=str(user.key())
else:
raise Exception('error 404')