Poly1305 constructor
Constructor for the Poly1305 class.
Parameters:
key: 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);
}