SecretBox constructor

SecretBox(
  1. List<int> cipherText, {
  2. required List<int> nonce,
  3. required Mac mac,
})

Implementation

SecretBox(
  this.cipherText, {
  required this.nonce,
  required this.mac,
});