aesEncrypt method

Future<SealedBox> aesEncrypt({
  1. required Uint8List plaintext,
  2. required Uint8List key,
  3. required Uint8List nonce,
})

Implementation

Future<SealedBox> aesEncrypt(
    {required Uint8List plaintext,
    required Uint8List key,
    required Uint8List nonce}) async {
  throw UnimplementedError('platformVersion() has not been implemented.');
}