Thanks to visit codestin.com
Credit goes to github.com

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-v0.10.78
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: master
Choose a head ref
  • 3 commits
  • 2 files changed
  • 4 contributors

Commits on Apr 20, 2026

  1. Bump actions/cache from 5.0.4 to 5.0.5 (#2610)

    Bumps [actions/cache](https://github.com/actions/cache) from 5.0.4 to 5.0.5.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@6682284...27d5ce7)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-version: 5.0.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 20, 2026
    Configuration menu
    Copy the full SHA
    8a910a5 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2026

  1. Configuration menu
    Copy the full SHA
    edc7f12 View commit details
    Browse the repository at this point in the history
  2. Require &mut BigNumContextRef for EcPointRef mul/invert (#2615)

    EC_POINT_mul and EC_POINT_invert mutate the BN_CTX's internal stack
    of temporaries via BN_CTX_start/BN_CTX_get/BN_CTX_end, so accepting
    a shared &BigNumContextRef was unsound: BigNumContext is Send+Sync,
    which let safe code race two threads on the same context.
    
    Deprecate EcPointRef::mul, mul_generator, and invert, and add mul2,
    mul_generator2, and invert2 taking &mut BigNumContextRef.
    
    Co-authored-by: Claude Opus 4.7 (1M context) <[email protected]>
    alex and claude authored Apr 22, 2026
    Configuration menu
    Copy the full SHA
    af7251d View commit details
    Browse the repository at this point in the history
Loading