- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for TrailingZeroBits (0.66 sec)
-
lib/fips140/v1.0.0.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 Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)