Erik
Erik
I'm interested in performing cryptographic arithmetic involving negative (signed) integers. As is made evident in #1, this crate does not yet provide support for this. I'm exploring what writing the...
I believe there is a minor mistake in the documentation of `Uint`'s `lt` and `gt` functions. Respectively, the two read: - "/// Returns the truthy value if `self = rhs`...
In the `VerifyCmd` interface, the `h` flag is added as a shorthand for the `program hash` parameter. However, this flag conflicts with the `-h` flag shortcut for `--help`. This was...
Continuation of the work started in #755
This PR introduces an implementation of Optimized Binary GCD. Ref: [Pornin, Algorithm 2](https://eprint.iacr.org/2020/972.pdf). ### _Upsides to this technique:_ - it is up to 27x faster than the `gcd` algorithm currently...