Set password
Set password
I would like to set a hash and salt from the php server script . I do not want to pass it from the browser client to the script. How can I do this? I have looked through the docs but it does not reveal a value setter for server fields. Could some one please point me in the right direction?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You could use the
setFormatter
option for theField
class (docs.That provides the ability to modify the data sent from the client to match whatever you need - for example you could use the PHP's
password_hash
, orbcrypt
or anything else.Allan