RSA

crates.io Documentation Build Status MSRV Project Chat dependency status

A portable RSA implementation in pure Rust.

⚠️ 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, RsaPublicKey, PaddingScheme};

let mut rng = rand::threadrng(); let bits = 2048; let privkey = RsaPrivateKey::new(&mut rng, bits).expect("failed to generate a key"); let pubkey = RsaPublicKey::from(&privkey);

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

// Decrypt let decdata = privkey.decrypt(PaddingScheme::newpkcs1v15encrypt(), &encdata).expect("failed to decrypt"); asserteq!(&data[..], &dec_data[..]); ```

Note: If you encounter unusually slow key generation time while using RsaPrivateKey::new you can try to compile in release mode or add the following to your Cargo.toml. Key generation is much faster when building with higher optimization levels, but this will increase the compile time a bit. toml [profile.debug] opt-level = 3 If you don't want to turn on optimizations for all dependencies, you can only optimize the num-bigint-dig dependency. This should give most of the speedups. toml [profile.dev.package.num-bigint-dig] opt-level = 3

Status

Currently at Phase 1 (v) 🚧

There will be three phases before 1.0 🚢 can be released.

  1. 🚧 Make it work
  2. 🚀 Make it fast
  3. 🔐 Make it secure

Minimum Supported Rust Version (MSRV)

All crates in this repository support Rust 1.65 or higher.

In the future MSRV 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.