A portable RSA implementation in pure Rust.
:warning: WARNING: This library has not been audited, so please do not use for production code.
```rust extern crate rsa; extern crate rand;
use rsa::{PublicKey, RSAPrivateKey, PaddingScheme}; use rand::rngs::OsRng;
let mut rng = OsRng; let bits = 2048; let key = RSAPrivateKey::new(&mut rng, bits).expect("failed to generate a key");
// Encrypt let data = b"hello world"; let encdata = key.encrypt(&mut rng, PaddingScheme::PKCS1v15, &data[..]).expect("failed to encrypt"); assertne!(&data[..], &enc_data[..]);
// Decrypt let decdata = key.decrypt(PaddingScheme::PKCS1v15, &encdata).expect("failed to decrypt"); asserteq!(&data[..], &decdata[..]); ```
Currently at Phase 1 (v) :construction:.
There will be three phases before 1.0
:ship: can be released.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.