Poly1305 constructor
Constructor for the Poly1305 class.
This constructor initializes the Poly1305 instance with a provided key and sets up the necessary data structures for Poly1305 calculations.
Parameters:
key: AList<int>containing the key used for Poly1305 authentication and data integrity verification.
Implementation
Poly1305(List<int> key) {
/// Initialize the Poly1305 instance with the provided key.
_init(key);
}