Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TrailingZeroBits (0.08 sec)

  1. lib/fips140/v1.1.0-rc1.zip

    t.Fatalf("unexpected LCM: got %s, want %s", got, LCM) } }) default: t.Fatalf("unknown key %q on line %d", k, lineNum) } } if err := scanner.Err(); err != nil { t.Fatal(err) } } func oddDivisorLargerThan(b []byte) bool { x := new(big.Int).SetBytes(b) x.Rsh(x, x.TrailingZeroBits()) return x.BitLen() > 32 } func addOne(b []byte) []byte { x := new(big.Int).SetBytes(b) x.Add(x, big.NewInt(1)) return x.Bytes() } func decodeHex(t *testing.T, s string) []byte { t.Helper() if len(s)%2 != 0 { s = "0" + s } b, err := hex.DecodeString(s)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top