func crypto/internal/fips140deps/byteorder.BEUint64

24 uses

	crypto/internal/fips140deps/byteorder (current package)
		byteorder.go#L19: func BEUint64(b []byte) uint64 {

	crypto/internal/fips140/aes
		ctr.go#L35: 		ivlo:   byteorder.BEUint64(iv[8:16]),
		ctr.go#L36: 		ivhi:   byteorder.BEUint64(iv[0:8]),

	crypto/internal/fips140/aes/gcm
		gcm_nonces.go#L76: 	counter := byteorder.BEUint64(nonce[len(nonce)-8:])
		gcm_nonces.go#L133: 	counter := byteorder.BEUint64(nonce[len(nonce)-8:])
		gcm_nonces.go#L179: 	counter := byteorder.BEUint64(nonce[len(nonce)-8:])
		gcm_nonces.go#L233: 	counter := byteorder.BEUint64(nonce[len(nonce)-8:])
		ghash.go#L49: 		byteorder.BEUint64(H[:8]),
		ghash.go#L50: 		byteorder.BEUint64(H[8:]),
		ghash.go#L145: 		y.low ^= byteorder.BEUint64(blocks)
		ghash.go#L146: 		y.high ^= byteorder.BEUint64(blocks[8:])

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

	crypto/internal/fips140/drbg
		ctrdrbg.go#L88: 	hi := byteorder.BEUint64(v[:8])
		ctrdrbg.go#L89: 	lo := byteorder.BEUint64(v[8:])

	crypto/internal/fips140/nistec
		p256_asm.go#L185: 	l[0] = byteorder.BEUint64(b[24:])
		p256_asm.go#L186: 	l[1] = byteorder.BEUint64(b[16:])
		p256_asm.go#L187: 	l[2] = byteorder.BEUint64(b[8:])
		p256_asm.go#L188: 	l[3] = byteorder.BEUint64(b[:])

	crypto/internal/fips140/sha256
		sha256.go#L112: 	return b[8:], byteorder.BEUint64(b)

	crypto/internal/fips140/sha512
		sha512.go#L195: 	return b[8:], byteorder.BEUint64(b)

	crypto/internal/fips140/subtle
		constant_time.go#L43: 		x0 := byteorder.BEUint64(x[len(x)-8:])
		constant_time.go#L44: 		y0 := byteorder.BEUint64(y[len(y)-8:])
		constant_time.go#L54: 		x0 := byteorder.BEUint64(xb)
		constant_time.go#L55: 		y0 := byteorder.BEUint64(yb)