func crypto/internal/fips140deps/byteorder.BEAppendUint32

9 uses

	crypto/internal/fips140deps/byteorder (current package)
		byteorder.go#L47: func BEAppendUint32(b []byte, v uint32) []byte {

	crypto/internal/fips140/sha256
		sha256.go#L69: 	b = byteorder.BEAppendUint32(b, d.h[0])
		sha256.go#L70: 	b = byteorder.BEAppendUint32(b, d.h[1])
		sha256.go#L71: 	b = byteorder.BEAppendUint32(b, d.h[2])
		sha256.go#L72: 	b = byteorder.BEAppendUint32(b, d.h[3])
		sha256.go#L73: 	b = byteorder.BEAppendUint32(b, d.h[4])
		sha256.go#L74: 	b = byteorder.BEAppendUint32(b, d.h[5])
		sha256.go#L75: 	b = byteorder.BEAppendUint32(b, d.h[6])
		sha256.go#L76: 	b = byteorder.BEAppendUint32(b, d.h[7])