MacCryptRaw.Poly1305 constructor

MacCryptRaw.Poly1305({
  1. required Uint8List key,
})

Implementation

MacCryptRaw.Poly1305({required Uint8List key}) : _type = MacType.Poly1305 {
  _type = MacType.Poly1305;
  _mac = poly.Poly1305(key);
}