pgpDecrypt function
Implementation
Future<String> pgpDecrypt({
required String cipherText,
required String privateKeyArmored,
}) async {
try {
return OpenPGP.decrypt(cipherText, privateKeyArmored, '');
} catch (e) {
log('pgpDecrypt Error $e');
rethrow;
}
}