https://github.com/crodriguezvega/probabilisticpubkey
Probabilistic public-key crypto systems in Rust
https://github.com/crodriguezvega/probabilisticpubkey
blum-goldwasser crypto cryptography cryptography-library goldwasser-micali probabilistic-pubkey public-key-cryptography rust rust-lang
Last synced: about 2 months ago
JSON representation
Probabilistic public-key crypto systems in Rust
- Host: GitHub
- URL: https://github.com/crodriguezvega/probabilisticpubkey
- Owner: crodriguezvega
- License: mit
- Created: 2019-03-25T20:44:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-09T12:07:21.000Z (over 4 years ago)
- Last Synced: 2025-04-12T13:19:35.689Z (about 2 months ago)
- Topics: blum-goldwasser, crypto, cryptography, cryptography-library, goldwasser-micali, probabilistic-pubkey, public-key-cryptography, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# probabilisticpubkey
[](https://travis-ci.org/crodriguezvega/probabilisticpubkey)
Probabilistic public-key crypto systems in Rust. Implementations of Goldwasser-Micali and Blum-Goldwasser algorithms as described in [chapter 8](http://cacr.uwaterloo.ca/hac/about/chap8.pdf) of "Handbook of Applied Cryptography" by Alfred J. Menezes et al.
Build:
`cargo build`
Run tests:
`cargo test`
Generate documentation:
`cargo doc --no-deps --document-private-items --open`
Run examples:
`cargo run --example goldwasser_micali`
`cargo run --example blum_goldwasser`