Highlights
- Pro
Pinned Loading
-
-
factor-from-random-known-bits
factor-from-random-known-bits PublicPython's library written in Rust to quickly factor `n = pq` when around >50% bits of `p` and `q` are known which are distributed at random.
Rust 18
-
simple CSIDH implementation. DO NOT ...
simple CSIDH implementation. DO NOT use for cryptographic purpose. 1# Use a small prime for brevity
2p = 4 * 3 * 5 * 7 - 1
3primes = [3, 5, 7]
4Fp = GF(p)
5 -
implementation of Reed-Solomon Codin...
implementation of Reed-Solomon Coding using a case in https://static.chunichi.co.jp/chunichi/pages/feature/science/galois_field_in_auto_factory.html 1# https://static.chunichi.co.jp/chunichi/pages/feature/QR/galois_field_in_auto_factory.html
2X = GF(2).polynomial_ring().gen()
3poly = X ** 8 + X ** 4 + X ** 3 + X ** 2 + 1
4F = GF(2 ** 8, name="a", modulus=poly)
5R.<x> = PolynomialRing(F)
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.