encryptAesGcm method
Encrypts the provided plainText
using AES-GCM with the given masterKey
.
Returns a Base64-encoded string representing the encrypted data.
Implementation
@override
Future<String> encryptAesGcm(String masterKey, String plainText) async {
return await encryptAesGcmWeb(masterKey, plainText);
}