aesGcm method

  1. @override
AesGcm aesGcm({
  1. int secretKeyLength = 32,
  2. int nonceLength = 12,
})
override

A factory used by AesGcm.

Implementation

@override
AesGcm aesGcm({
  int secretKeyLength = 32,
  int nonceLength = 12,
}) {
  return DartAesGcm(
    secretKeyLength: secretKeyLength,
    nonceLength: nonceLength,
    random: _random,
  );
}