func crypto/internal/fips140deps/byteorder.BEPutUint32

18 uses

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

	crypto/internal/fips140/aes
		aes_generic.go#L82: 	byteorder.BEPutUint32(dst[0:4], s0)
		aes_generic.go#L83: 	byteorder.BEPutUint32(dst[4:8], s1)
		aes_generic.go#L84: 	byteorder.BEPutUint32(dst[8:12], s2)
		aes_generic.go#L85: 	byteorder.BEPutUint32(dst[12:16], s3)
		aes_generic.go#L129: 	byteorder.BEPutUint32(dst[0:4], s0)
		aes_generic.go#L130: 	byteorder.BEPutUint32(dst[4:8], s1)
		aes_generic.go#L131: 	byteorder.BEPutUint32(dst[8:12], s2)
		aes_generic.go#L132: 	byteorder.BEPutUint32(dst[12:16], s3)

	crypto/internal/fips140/aes/gcm
		gcm_generic.go#L92: 	byteorder.BEPutUint32(ctr, byteorder.BEUint32(ctr)+1)

	crypto/internal/fips140/sha256
		sha256.go#L219: 	byteorder.BEPutUint32(digest[0:], d.h[0])
		sha256.go#L220: 	byteorder.BEPutUint32(digest[4:], d.h[1])
		sha256.go#L221: 	byteorder.BEPutUint32(digest[8:], d.h[2])
		sha256.go#L222: 	byteorder.BEPutUint32(digest[12:], d.h[3])
		sha256.go#L223: 	byteorder.BEPutUint32(digest[16:], d.h[4])
		sha256.go#L224: 	byteorder.BEPutUint32(digest[20:], d.h[5])
		sha256.go#L225: 	byteorder.BEPutUint32(digest[24:], d.h[6])
		sha256.go#L227: 		byteorder.BEPutUint32(digest[28:], d.h[7])