Is there a way to decrypt PBKDF2
password in java. Java has implementation of PBKDF2
algorithm as PBKDF2WithHmacSHA1
. I got the code to create hashes for password. I referred to below link for hashing technique:
My requirement is to store the third Party FTP server password in the encrypted format and get back the password in plain text form from DB when there is a need to login into the server. Can anyone suggest best password encryption method?