You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Add Password Decryption to Your Component


Add the following code before using the password (don't add any dependency to your component):

...
...

//Add Java block to limit the life time of decrypted password.
{
   String decryptedPassword = SecurityUtilities.decryptString(encryptedPassword);

   //Use the decryptedPassword.
   ...
}

...
...
  • No labels