Poly1305 constructor

Poly1305(
  1. List<int> key
)

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: A List<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);
}