Hiding Passwords

0
How do i hide a password string that is entered? Iv tried every data type but still no luck
asked
3 answers
7

There is a property for a string input field: Show as password. When you set that property to Yes your input in the field will be shown as: * in stead of the plain text.

answered
1

And to hide it in the database use the community commons module from the AppStore and encrypt the password to both the attribute you are using now and another attribute when the 2 are different.

And decrypt before using (in memory, no storage in the database!)

answered
0

Thank you very much

answered