Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Code Block
languagejava
themeEclipse
...
...

...


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

   //Use the decryptedPassword.
   ...
}

...

...
...

...