RSA icon indicating copy to clipboard operation
RSA copied to clipboard

RSA implementation in pure Rust

Results 65 RSA issues
Sort by recently updated
recently updated
newest added

warning: the following packages contain code that will be rejected by a future version of Rust: num-bigint-dig v0.8.4 note: to see what the problems were, use the option `--future-incompat-report`, or...

typos-check here: https://github.com/RustCrypto/RSA/commit/1e21564801803af8f8944f1e40a89178bb08a4fc ``` Warning: "ba" should be "by" or "be". error: ba should be by, be --> ./src/pkcs1v15/encrypting_key.rs:54:20 | 54 | "92ba5fe2430203010001", ``` I've had to disable it in...

There are bunch of references that lead to nowhere so rustdoc doesn't check they exist. It would be great maybe to turn them into [intra-doc links](https://doc.rust-lang.org/rustdoc/write-documentation/linking-to-items-by-name.html) so it gets complained...

```rust /// Decrypts a plaintext using RSA and the padding scheme from PKCS#1 v1.5. /// /// If an `rng` is passed, it uses RSA blinding to avoid timing side-channel attacks....

Would be feasible to add builder-state pattern over vararg for the from_components It's kinda pain to remember n/e/d/primes placement and the type/lengths somewhat limit the footgun but regardless Would be...