Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RustCrypto/RSA
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.8
Choose a base ref
...
head repository: RustCrypto/RSA
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.10
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Oct 15, 2025

  1. Support for cryptographic operations with larger keys (#594)

    Currently, this crate allows instantiation of public keys larger than
    4096 bit (via `RsaPublicKey::new_with_max_size`), but doing
    cryptographic operations with such public keys fails in
    `key::check_public`, which always checks the modulus size against the
    constant `RsaPublicKey::MAX_SIZE`.
    
    I think it would be nice to cap both public and private key sizes to
    4096 bit by default, but to allow opt-in creation of larger keys
    (complete with working cryptographic operations).
    hko-s authored Oct 15, 2025
    Configuration menu
    Copy the full SHA
    c1f00a3 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2025

  1. chore: release 0.9.9

    dignifiedquire committed Nov 13, 2025
    Configuration menu
    Copy the full SHA
    488d2ad View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2026

  1. Configuration menu
    Copy the full SHA
    2926c91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    da2af9a View commit details
    Browse the repository at this point in the history
Loading