decryptAesGcm method

  1. @override
Future<String> decryptAesGcm(
  1. String masterKey,
  2. String cipherText
)
override

Decrypts the provided cipherText using AES-GCM with the given masterKey.

Returns the original plain text string.

Implementation

@override
Future<String> decryptAesGcm(String masterKey, String cipherText) async {
  return await decryptAesGcmWeb(masterKey, cipherText);
}