Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ByteOrder (0.07 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    , b) } func bytesToLimbs(l *[4]uint64, b *[32]byte) { l[0] = byteorder.BEUint64(b[24:]) l[1] = byteorder.BEUint64(b[16:]) l[2] = byteorder.BEUint64(b[8:]) l[3] = byteorder.BEUint64(b[:]) } func p256LittleToBig(b *[32]byte, l *p256Element) { limbsToBytes(b, (*[4]uint64)(l)) } func limbsToBytes(b *[32]byte, l *[4]uint64) { byteorder.BEPutUint64(b[24:], l[0]) byteorder.BEPutUint64(b[16:], l[1]) byteorder.BEPutUint64(b[8:], l[2]) byteorder.BEPutUint64(b[:], l[3]) } // p256Add sets res = x + y. func p256Add(res,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    encoded // form is reduced modulo l. func isReduced(s []byte) bool { if len(s) != 32 { return false } s0 := byteorder.LEUint64(s[:8]) s1 := byteorder.LEUint64(s[8:16]) s2 := byteorder.LEUint64(s[16:24]) s3 := byteorder.LEUint64(s[24:]) l0 := byteorder.LEUint64(scalarMinusOneBytes[:8]) l1 := byteorder.LEUint64(scalarMinusOneBytes[8:16]) l2 := byteorder.LEUint64(scalarMinusOneBytes[16:24]) l3 := byteorder.LEUint64(scalarMinusOneBytes[24:]) // Do a constant time subtraction chain scalarMinusOneBytes - s. If...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg debug/dwarf, const TagSkeletonUnit Tag
    pkg debug/dwarf, method (*Data) AddSection(string, []uint8) error
    pkg debug/dwarf, method (*LineReader) Files() []*LineFile
    pkg debug/dwarf, method (*Reader) ByteOrder() binary.ByteOrder
    pkg encoding/asn1, const TagBMPString = 30
    pkg encoding/asn1, const TagBMPString ideal-int
    pkg encoding/json, method (*Decoder) InputOffset() int64
    pkg go/build, type Context struct, Dir string
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
Back to top