func crypto/internal/fips140deps/byteorder.BEUint64

20 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#L208: 		return uint(byteorder.BEUint64(buf))

	crypto/internal/fips140/drbg
		ctrdrbg.go#L80: 	hi := byteorder.BEUint64(v[:8])
		ctrdrbg.go#L81: 	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#L106: 	return b[8:], byteorder.BEUint64(b)

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