Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bigEndianUint (0.1 sec)

  1. lib/fips140/v1.0.0.zip

    overflows the modulus size") } x.maybeSubtractModulus(no, m) return x, nil } // bigEndianUint returns the contents of buf interpreted as a // big-endian encoded uint value. func bigEndianUint(buf []byte) uint { if _W == 64 { return uint(byteorder.BEUint64(buf)) } return uint(byteorder.BEUint32(buf)) } func (x *Nat) setBytes(b []byte) error { i, k := len(b), 0 for k < len(x.limbs) && i >= _S { x.limbs[k] = bigEndianUint(b[i-_S : i]) i -= _S k++ } for s := 0; s < _W && k < len(x.limbs) && i > 0; s +=...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top