A constructor for a Checksum that may be used to calculate an HMAC. Implementing classes should not directly hold the provided key in memory beyond the lexical scope of the constructor.

interface ChecksumConstructor {
    new ChecksumConstructornew (secret?): Checksum;
}

Constructors

Constructors