I have a field in my register form for verifying the password, as such:
Field <http://127.0.0.1:8000/examples/global/vars/Field>('password',
'password', length=512, readable=False),
Field <http://127.0.0.1:8000/examples/global/vars/Field>('password_verify',
'password', length=512, readable=False, requires=CRYPT
<http://127.0.0.1:8000/examples/global/vars/CRYPT>(digest_alg='sha512'))
Even though I added requires CRYPT, this field gets stored as the user's actual
password
(without any encryption). I take it this is not a good thing.
How can I encrypt even the verify password field on my registration form?
Thanks
--