This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate pgp

Dependencies

(46 total, 33 outdated, 1 insecure)

CrateRequiredLatestStatus
 aes^0.80.9.3out of date
 base64^0.21.00.23.1out of date
 bitfield^0.140.19.5out of date
 block-padding^0.3.20.4.2out of date
 blowfish^0.90.10.0out of date
 bstr^1.4.01.13.1up to date
 buffer-redux^1.0.01.1.0up to date
 byteorder^1.41.5.0up to date
 camellia^0.10.2.1out of date
 cast5^0.11.00.12.0out of date
 cfb-mode^0.8.10.9.1out of date
 chrono^0.4.230.4.45up to date
 cipher^0.40.5.2out of date
 crc24^0.10.1.6up to date
 curve25519-dalek^4.0.0-rc.35.0.0out of date
 derive_builder^0.12.00.20.2out of date
 des^0.80.9.0out of date
 digest^0.100.11.3out of date
 ed25519-dalek^2.0.0-rc.33.0.0out of date
 elliptic-curve^0.130.14.1out of date
 flate2^1.01.1.10up to date
 generic-array^0.141.4.5out of date
 getrandom^0.2.60.4.3out of date
 gperftools^0.2.00.2.0up to date
 hex^0.40.4.3up to date
 idea^0.50.6.0out of date
 log^0.4.60.4.34up to date
 md-5^0.10.50.11.0out of date
 nom^7.08.0.0out of date
 num-bigint-dig^0.8.10.9.1out of date
 num-derive^0.4.00.5.1out of date
 num-traits^0.2.60.2.19up to date
 p256^0.130.14.0out of date
 p384^0.130.14.0out of date
 rand^0.80.10.3out of date
 ripemd^0.1.30.2.0out of date
 rsa ⚠️^0.9.00.9.10insecure
 sha1^0.10.50.11.0out of date
 sha2^0.10.60.11.0out of date
 sha3^0.10.50.12.0out of date
 signature^2.0.03.0.0out of date
 smallvec^1.8.01.16.1up to date
 thiserror^1.0.302.0.21out of date
 twofish^0.70.8.0out of date
 x25519-dalek^2.0.0-rc.33.0.0out of date
 zeroize^1.51.9.0up to date

Dev dependencies

(9 total, 4 outdated)

CrateRequiredLatestStatus
 glob^0.30.3.4up to date
 hex-literal^0.31.1.0out of date
 pretty_assertions^11.4.1up to date
 pretty_env_logger^0.40.5.0out of date
 rand_chacha^0.30.10.0out of date
 rand_xorshift^0.30.5.0out of date
 regex^1.71.13.1up to date
 serde^1.01.0.229up to date
 serde_json^1.01.0.151up to date

Security Vulnerabilities

rsa: Marvin Attack: potential key recovery through timing sidechannels

RUSTSEC-2023-0071

Impact

Due to a non-constant-time implementation, information about the private key is leaked through timing information which is observable over the network. An attacker may be able to use that information to recover the key.

Patches

No patch is yet available. The crypto-bigint migration (RustCrypto/RSA#394) did not close this. Tracking is RustCrypto/RSA#626 (padding still not constant-time). Implicit rejection work is in RustCrypto/RSA#680; default-path blinding is in RustCrypto/RSA#702.

Still affected as of 2026-09-12: rsa 0.9.10 (latest stable) and rsa 0.10.0-rc.18 (latest). patched = [] is intentional.

Workarounds

Avoid using the rsa crate in settings where attackers can observe timing, for example over the network. Local use on a non-compromised computer is fine.

References

This vulnerability was discovered as part of the "Marvin Attack", which revealed several implementations of RSA including OpenSSL had not properly mitigated timing sidechannel attacks.