decryptString function
this handles general string decryption like name, email and phone number @param encrypted @return plainText @throws Exception
Implementation
String decryptString(String cipher) {
return CipherControl.instance().decryptGenericData(cipher);
}