func crypto/internal/fips140deps/byteorder.BEUint32

15 uses

	crypto/internal/fips140deps/byteorder (current package)
		byteorder.go#L15: func BEUint32(b []byte) uint32 {

	crypto/internal/fips140/aes
		aes_generic.go#L47: 	s0 := byteorder.BEUint32(src[0:4])
		aes_generic.go#L48: 	s1 := byteorder.BEUint32(src[4:8])
		aes_generic.go#L49: 	s2 := byteorder.BEUint32(src[8:12])
		aes_generic.go#L50: 	s3 := byteorder.BEUint32(src[12:16])
		aes_generic.go#L94: 	s0 := byteorder.BEUint32(src[0:4])
		aes_generic.go#L95: 	s1 := byteorder.BEUint32(src[4:8])
		aes_generic.go#L96: 	s2 := byteorder.BEUint32(src[8:12])
		aes_generic.go#L97: 	s3 := byteorder.BEUint32(src[12:16])
		aes_generic.go#L155: 		c.enc[i] = byteorder.BEUint32(key[4*i:])

	crypto/internal/fips140/aes/gcm
		gcm_generic.go#L92: 	byteorder.BEPutUint32(ctr, byteorder.BEUint32(ctr)+1)
		gcm_nonces.go#L81: 		g.fixedName = byteorder.BEUint32(nonce[:4])
		gcm_nonces.go#L83: 	if g.fixedName != byteorder.BEUint32(nonce[:4]) {

	crypto/internal/fips140/bigmod
		nat.go#L210: 	return uint(byteorder.BEUint32(buf))

	crypto/internal/fips140/sha256
		sha256.go#L110: 	return b[4:], byteorder.BEUint32(b)