clux / quadratic

Quadratic reciprocity and the Jacobi Symbol for rust
http://clux.github.io/quadratic
Other
3 stars 1 forks source link

Jacobi and Legendre symbol on `openssl::bn::BigNum` #4

Open lowlevl opened 3 years ago

lowlevl commented 3 years ago

Hello,

since I'm going to need to implement the Jacobi symbol computation for openssl::bn::BigNum, would you be interested in including my implementation of this in your library with a feature (named something like openssl) when I'm done ?

clux commented 3 years ago

Yeah, sure, if you feel that this can be extended in a nice way. Note that this library was a learning project and it hasn't been updated since it was made (even CI provider was dead).

I would probably prefer doing an implementation like this generically with something like num-bigint and then have the openssl specific conversion from that type.