Poly1305 class

This is where the Poly1305 MAC algorithm is created.

Constructors

Poly1305()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

keyGen(String key, String nonce) String
Using the ChaCha20 block, a 64 character hexadecimal string is created. This will then serve as the key for the tag creation.
mac(String macData, String oneTimeKey) String