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#L47: func (h *HMAC) Sum(in []byte) []byte {

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

	crypto/internal/fips140/ecdsa
		hmacdrbg.go#L87: 	K = h.Sum(K[:0])
		hmacdrbg.go#L91: 	d.V = h.Sum(d.V[:0])
		hmacdrbg.go#L109: 	K = h.Sum(K[:0])
		hmacdrbg.go#L113: 	d.V = h.Sum(d.V[:0])
		hmacdrbg.go#L155: 		d.V = d.hK.Sum(d.V[:0])
		hmacdrbg.go#L168: 	K := d.hK.Sum(nil)
		hmacdrbg.go#L172: 	d.V = d.hK.Sum(d.V[:0])

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

	crypto/internal/fips140/tls12
		tls12.go#L31: 	a := h.Sum(nil)
		tls12.go#L37: 		b := h.Sum(nil)
		tls12.go#L43: 		a = h.Sum(nil)