Actually I want to get the password back from the encrypted password.
The password is encrypted as follows:
MessageDigest md = MessageDigest.getInstance("SHA");
md.reset();
byte[] encryptedBinarySource = md.digest(source.getBytes("UTF-8"));
How to decrypt the value of encryptedBinarySource
?