scicrypt-he 0.7.1

A scicrypt crate implementing several well-known partially homomorphic (threshold) cryptosystems
Documentation
1
2
3
4
5
6
7
8
/// Implementation of the ElGamal cryptosystem over an elliptic curve.
pub mod curve_el_gamal;
/// Implementation of the ElGamal cryptosystem over a safe prime group.
pub mod integer_el_gamal;
/// Implementation of the Paillier cryptosystem.
pub mod paillier;
/// Implementation of the RSA cryptosystem.
pub mod rsa;