RSA implementation in pure Rust
  • Rust 98.5%
  • Shell 1.3%
  • Dockerfile 0.2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-03 23:05:01 +02:00
benches chore: remove direct dependency on chacha20 (#601) 2025-11-06 07:10:48 -07:00
marvin-toolkit chore: sync dependencies (monorepo) 2026-03-25 17:28:50 +01:00
src chore: sync dependencies (monorepo) 2026-03-26 14:38:30 +01:00
tests chore: sync dependencies (monorepo) 2026-03-26 14:38:30 +01:00
thirdparty Vendorification 2026-03-26 10:52:18 +01:00
.gitattributes Fix PKCS#1/PKCS#8 line endings on Windows (#181) 2022-09-06 10:38:54 -06:00
.gitignore v0.8.2 (#266) 2023-03-01 21:54:18 -07:00
Cargo.lock Vendorification 2026-03-26 10:52:18 +01:00
Cargo.toml fix(rsa): Replace all path deps with git refs for kade distribution 2026-06-03 23:05:01 +02:00
LICENSE-APACHE chore: basic setup 2018-07-17 21:16:31 +02:00
LICENSE-MIT chore: basic setup 2018-07-17 21:16:31 +02:00
README.md Bump rand dev-dependency to v0.10 (#654) 2026-02-08 12:39:40 -07:00
release.toml chore: update release.toml to work with latest cargo-release 2022-04-08 16:24:15 +02:00

RustCrypto: RSA

crates.io Documentation Build Status Dependency Status Apache2/MIT licensed MSRV Project Chat

A portable RSA implementation in pure Rust.

Example

use rsa::{Pkcs1v15Encrypt, RsaPrivateKey, RsaPublicKey};

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

// Encrypt
let data = b"hello world";
let enc_data = pub_key.encrypt(&mut rng, Pkcs1v15Encrypt, &data[..]).expect("failed to encrypt");
assert_ne!(&data[..], &enc_data[..]);

// Decrypt
let dec_data = priv_key.decrypt(Pkcs1v15Encrypt, &enc_data).expect("failed to decrypt");
assert_eq!(&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.

[profile.debug]
opt-level = 3

Status

Currently at Phase 1 (v) 🚧

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

  1. 🚧 Make it work
    • Prime generation
    • Key generation
    • PKCS1v1.5: Encryption & Decryption
    • PKCS1v1.5: Sign & Verify
    • PKCS1v1.5 (session key): Encryption & Decryption
    • OAEP: Encryption & Decryption
    • PSS: Sign & Verify
    • Key import & export
  2. 🚀 Make it fast
    • Benchmarks
    • compare to other implementations 🚧
    • optimize 🚧
  3. 🔐 Make it secure
    • Fuzz testing
    • Security Audits

⚠️Security Warning

This crate has received one security audit by Include Security, with only one minor finding which has since been addressed.

See the open security issues on our issue tracker for other known problems.

Notably the implementation of modular exponentiation is not constant time, but timing variability is masked using random blinding, a commonly used technique. This crate is vulnerable to the Marvin Attack which could enable private key recovery by a network attacker (see RUSTSEC-2023-0071).

You can follow our work on mitigating this issue in #390.

Minimum Supported Rust Version (MSRV)

This crate supports Rust 1.85 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.