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: rust-openssl/rust-openssl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: openssl-sys-v0.9.115
Choose a base ref
...
head repository: rust-openssl/rust-openssl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: openssl-sys-v0.9.116
Choose a head ref
  • 3 commits
  • 8 files changed
  • 2 contributors

Commits on May 10, 2026

  1. Prefer Homebrew openssl@4 and stop looking for openssl@1.1 (#2633)

    Updates the macOS Homebrew auto-detection to try `openssl@4` first,
    falling back to `openssl@3` / `openssl@3.0`. The pre-3.0 `openssl@1.1`
    formula is no longer probed.
    
    Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    alex and claude authored May 10, 2026
    Configuration menu
    Copy the full SHA
    b460eb3 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2026

  1. Fix output buffer overflow in cipher_update_inplace for AES key-wrap-…

    …with-padding (#2638)
    
    #2630 fixed CipherCtxRef::cipher_update and cipher_update_vec to size
    their output as round_up(inlen, 8) + 8 for wrap-mode ciphers but missed
    cipher_update_inplace, which kept the inlen + block_size bound. For
    Cipher::aes_256_wrap_pad() with 9 bytes of input, the assertion accepts
    a 17-byte slice while OpenSSL writes 24 bytes through it — a 7-byte
    out-of-bounds write reachable from safe Rust.
    
    Switch cipher_update_inplace to the shared cipher_update_output_size
    helper and add a regression test.
    
    Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    alex and claude authored May 16, 2026
    Configuration menu
    Copy the full SHA
    19eceb2 View commit details
    Browse the repository at this point in the history
  2. Release openssl 0.10.80 and openssl-sys 0.9.116 (#2639)

    Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    alex and claude authored May 16, 2026
    Configuration menu
    Copy the full SHA
    35be7ae View commit details
    Browse the repository at this point in the history
Loading