decryptPassword function

String decryptPassword(
  1. String encrypted
)

this handles password decryption @param context @param encrypted @return @throws Exception

Implementation

String decryptPassword(String encrypted) {
  return CipherControl.instance().decryptPassword(encrypted);
}