AesGcm.with192bits constructor

AesGcm.with192bits({
  1. int nonceLength = AesGcm.defaultNonceLength,
})

Implementation

factory AesGcm.with192bits({
  int nonceLength = AesGcm.defaultNonceLength,
}) {
  return AesGcm._(
    secretKeyLength: 24,
    nonceLength: nonceLength,
  );
}