RSA

crates.io Documentation Build Status minimum rustc 1.44 Project Chat dependency status

A portable RSA implementation in pure Rust.

:warning: WARNING: This crate has been audited by a 3rd party, but a full blog post with the results and the updates made since the audit has not been officially released yet. See #60 for more information.

Example

```rust use rsa::{PublicKey, RSAPrivateKey, PaddingScheme}; use rand::rngs::OsRng;

let mut rng = OsRng; let bits = 2048; let privkey = RSAPrivateKey::new(&mut rng, bits).expect("failed to generate a key"); let pubkey = RSAPublicKey::from(&priv_key);

// Encrypt let data = b"hello world"; let encdata = pubkey.encrypt(&mut rng, PaddingScheme::newpkcs1v15(), &data[..]).expect("failed to encrypt"); assertne!(&data[..], &enc_data[..]);

// Decrypt let decdata = privkey.decrypt(PaddingScheme::newpkcs1v15(), &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

Minimum Supported Rust Version (MSRV)

All crates in this repository support Rust 1.44 or higher. In future minimally supported version of Rust can be changed, but it will be done with a minor version bump.

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.