Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-118224: Load default OpenSSL provider for nonsecurity algorithms #118236

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Apr 24, 2024

  1. pythongh-118224: Load default OpenSSL provider for nonsecurity algori…

    …thms
    
    When OpenSSL is configured to only load "base+fips" providers into the
    Null library context, md5 might not be available at all. In such cases
    currently CPython fallsback to internal hashlib implementation is
    there is one - as there might not be if one compiles python with
    --with-builtin-hashlib-hashes=blake2. With this change "default"
    provider is attempted to be loaded to access nonsecurity hashes.
    xnox committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    c8adf9e View commit details
    Browse the repository at this point in the history
  2. Add blurb

    xnox committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    a47a53f View commit details
    Browse the repository at this point in the history