AesGcm.with256bits constructor

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

Implementation

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