func crypto/internal/fips140deps/byteorder.LEUint64
19 uses
crypto/internal/fips140deps/byteorder (current package)
byteorder.go#L23: func LEUint64(b []byte) uint64 {
crypto/internal/fips140/ecdh
ecdh.go#L302: limbA, limbB := byteorder.LEUint64(bufA[i:]), byteorder.LEUint64(bufB[i:])
crypto/internal/fips140/edwards25519
scalar.go#L183: s0 := byteorder.LEUint64(s[:8])
scalar.go#L184: s1 := byteorder.LEUint64(s[8:16])
scalar.go#L185: s2 := byteorder.LEUint64(s[16:24])
scalar.go#L186: s3 := byteorder.LEUint64(s[24:])
scalar.go#L188: l0 := byteorder.LEUint64(scalarMinusOneBytes[:8])
scalar.go#L189: l1 := byteorder.LEUint64(scalarMinusOneBytes[8:16])
scalar.go#L190: l2 := byteorder.LEUint64(scalarMinusOneBytes[16:24])
scalar.go#L191: l3 := byteorder.LEUint64(scalarMinusOneBytes[24:])
scalar.go#L283: digits[i] = byteorder.LEUint64(b[i*8:])
crypto/internal/fips140/edwards25519/field
fe.go#L201: v.l0 = byteorder.LEUint64(x[0:8])
fe.go#L204: v.l1 = byteorder.LEUint64(x[6:14]) >> 3
fe.go#L207: v.l2 = byteorder.LEUint64(x[12:20]) >> 6
fe.go#L210: v.l3 = byteorder.LEUint64(x[19:27]) >> 1
fe.go#L214: v.l4 = byteorder.LEUint64(x[24:32]) >> 12
crypto/internal/fips140/nistec
p256_asm.go#L336: newTable[i] = byteorder.LEUint64(x[:])
crypto/internal/fips140/sha3
keccakf.go#L48: a[i] = byteorder.LEUint64(da[i*8:])
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)