Skip to main content
priyar0002
April 6, 2023
Solved

How to encrypt and store passwords?

  • April 6, 2023
  • 2 replies
  • 0 views

I want to store my passwords in an encrypted format and then decrypt them when using in integration. Is there a way to do that?

    Best answer by harshitb6843

    You can do one or a combination of these three things. 

    1. Use encryptedTextField
    2. Use textField with masked as true
    3. Create your own encrypting and decrypting algorithm and keep the key in a constant that not a lot of people have access to, from the designers. 

    2 replies

    harshitb6843
    April 6, 2023

    You can do one or a combination of these three things. 

    1. Use encryptedTextField
    2. Use textField with masked as true
    3. Create your own encrypting and decrypting algorithm and keep the key in a constant that not a lot of people have access to, from the designers. 
    priyar0002
    April 7, 2023

    Thanks for the help!