AeadParams constructor

AeadParams(
  1. int tagLength,
  2. int nonceLength
)

Constructs an instance of AeadParams with the given tagLength and nonceLength.

Both tagLength and nonceLength must be positive integers.

Implementation

AeadParams(this.tagLength, this.nonceLength);