func crypto/internal/fips140deps/byteorder.BEPutUint64

26 uses

	crypto/internal/fips140deps/byteorder (current package)
		byteorder.go#L35: func BEPutUint64(b []byte, v uint64) {

	crypto/internal/fips140/aes
		ctr.go#L134: 		byteorder.BEPutUint64(buf[i:], ivhi)
		ctr.go#L135: 		byteorder.BEPutUint64(buf[i+8:], ivlo)

	crypto/internal/fips140/aes/gcm
		gcm_generic.go#L61: 		byteorder.BEPutUint64(lenBlock[8:], uint64(len(nonce))*8)
		gcm_generic.go#L100: 	byteorder.BEPutUint64(lenBlock[:8], uint64(len(additionalData))*8)
		gcm_generic.go#L101: 	byteorder.BEPutUint64(lenBlock[8:], uint64(len(ciphertext))*8)
		ghash.go#L64: 	byteorder.BEPutUint64(out[:], y.low)
		ghash.go#L65: 	byteorder.BEPutUint64(out[8:], y.high)

	crypto/internal/fips140/check
		check.go#L86: 		byteorder.BEPutUint64(nbuf[:], uint64(n))

	crypto/internal/fips140/drbg
		ctrdrbg.go#L84: 	byteorder.BEPutUint64(v[:8], hi)
		ctrdrbg.go#L85: 	byteorder.BEPutUint64(v[8:], lo)

	crypto/internal/fips140/nistec
		p256_asm.go#L196: 	byteorder.BEPutUint64(b[24:], l[0])
		p256_asm.go#L197: 	byteorder.BEPutUint64(b[16:], l[1])
		p256_asm.go#L198: 	byteorder.BEPutUint64(b[8:], l[2])
		p256_asm.go#L199: 	byteorder.BEPutUint64(b[:], l[3])

	crypto/internal/fips140/sha256
		sha256.go#L210: 	byteorder.BEPutUint64(padlen[t+0:], len)

	crypto/internal/fips140/sha3
		shake.go#L44: 	byteorder.BEPutUint64(b[1:], x)

	crypto/internal/fips140/sha512
		sha512.go#L281: 	byteorder.BEPutUint64(padlen[t+8:], len)
		sha512.go#L289: 	byteorder.BEPutUint64(digest[0:], d.h[0])
		sha512.go#L290: 	byteorder.BEPutUint64(digest[8:], d.h[1])
		sha512.go#L291: 	byteorder.BEPutUint64(digest[16:], d.h[2])
		sha512.go#L292: 	byteorder.BEPutUint64(digest[24:], d.h[3])
		sha512.go#L293: 	byteorder.BEPutUint64(digest[32:], d.h[4])
		sha512.go#L294: 	byteorder.BEPutUint64(digest[40:], d.h[5])
		sha512.go#L296: 		byteorder.BEPutUint64(digest[48:], d.h[6])
		sha512.go#L297: 		byteorder.BEPutUint64(digest[56:], d.h[7])