Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLess (0.06 sec)

  1. lib/fips140/v1.0.0.zip

    whether x is all zeroes in constant time. func isZero(x []byte) bool { var acc byte for _, b := range x { acc |= b } return acc == 0 } // isLess reports whether a < b, where a and b are big-endian buffers of the // same length and shorter than 72 bytes. func isLess(a, b []byte) bool { if len(a) != len(b) { panic("crypto/ecdh: internal error: mismatched isLess inputs") } // Copy the values into a fixed-size preallocated little-endian buffer. // 72 bytes is enough for every scalar in this package,...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  2. api/go1.14.txt

    pkg syscall (freebsd-arm64), type Rusage struct, Idrss int64
    pkg syscall (freebsd-arm64), type Rusage struct, Inblock int64
    pkg syscall (freebsd-arm64), type Rusage struct, Isrss int64
    pkg syscall (freebsd-arm64), type Rusage struct, Ixrss int64
    pkg syscall (freebsd-arm64), type Rusage struct, Majflt int64
    pkg syscall (freebsd-arm64), type Rusage struct, Maxrss int64
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  3. api/go1.20.txt

    pkg syscall (freebsd-riscv64), type Rusage struct, Idrss int64 #53466
    pkg syscall (freebsd-riscv64), type Rusage struct, Inblock int64 #53466
    pkg syscall (freebsd-riscv64), type Rusage struct, Isrss int64 #53466
    pkg syscall (freebsd-riscv64), type Rusage struct, Ixrss int64 #53466
    pkg syscall (freebsd-riscv64), type Rusage struct, Majflt int64 #53466
    pkg syscall (freebsd-riscv64), type Rusage struct, Maxrss int64 #53466
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
Back to top