RSA

crates.io Documentation Build Status dependency status minimum rustc 1.36

A portable RSA implementation in pure Rust.

:warning: WARNING: This library has not been audited, so please do not use for production code.

Example

```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[..]); ```

Status

Currently at Phase 1 (v) :construction:.

There will be three phases before 1.0 :ship: can be released.

  1. :construction: Make it work
  2. :rocket: Make it fast
  3. :lock: Make it secure

License

Licensed under either of

at your option.

Contribution

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.