You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
347 B

// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package hash
type Digest interface {
// See hash.Hash
Hash
// Close the digest by writing the last bits and storing the hash
// in dst. This prepares the digest for reuse, calls Hash.Reset.
Close(dst []byte, bits uint8, bcnt uint8) error
}