In the application, I would like to create a password encryption when logging in to the application. I used:
How can I hide my password for encryption? Is it possible to use any certificates such as pem file?
Can anyone give an example?
Or maybe there is another way to encrypt the password or login system. The application should be compliant with CFR21 Part11.
Thank you
B4X:
Dim b () As Byte = Cipher.Encrypt (s.GetBytes ("UTF8"), "pwd")
How can I hide my password for encryption? Is it possible to use any certificates such as pem file?
Can anyone give an example?
Or maybe there is another way to encrypt the password or login system. The application should be compliant with CFR21 Part11.
Thank you