crypto/internal/fips140/hmac.HMAC.Sum (method, view implemented interface methods)

15 uses

	crypto/internal/fips140/hmac (current package)
		cast.go#L29: 		if got := h.Sum(nil); !bytes.Equal(got, want) {
		hmac.go#L44: func (h *HMAC) Sum(in []byte) []byte {

	crypto/internal/fips140/check
		check.go#L90: 	sum := h.Sum(nil)

	crypto/internal/fips140/ecdsa
		hmacdrbg.go#L86: 	K = h.Sum(K[:0])
		hmacdrbg.go#L90: 	d.V = h.Sum(d.V[:0])
		hmacdrbg.go#L108: 	K = h.Sum(K[:0])
		hmacdrbg.go#L112: 	d.V = h.Sum(d.V[:0])
		hmacdrbg.go#L154: 		d.V = d.hK.Sum(d.V[:0])
		hmacdrbg.go#L167: 	K := d.hK.Sum(nil)
		hmacdrbg.go#L171: 	d.V = d.hK.Sum(d.V[:0])

	crypto/internal/fips140/hkdf
		hkdf.go#L23: 	return extractor.Sum(nil)
		hkdf.go#L44: 		buf = expander.Sum(buf[:0])

	crypto/internal/fips140/tls12
		tls12.go#L30: 	a := h.Sum(nil)
		tls12.go#L36: 		b := h.Sum(nil)
		tls12.go#L42: 		a = h.Sum(nil)