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

Use New MD5 API Function #791

Merged
merged 3 commits into from
Sep 11, 2023
Merged

Use New MD5 API Function #791

merged 3 commits into from
Sep 11, 2023

Commits on Aug 8, 2023

  1. Use newer MD5 API function

    Newer versions of the OpenSSL library have deprecated the MD5() API
    function in favor of the EVP_* functions.  This commit replaces MD5()
    with EVP_Digest().
    
    Note: The new function generates the same hash values as the old
    function.
    rgmiller committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    c9516ac View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Add check for EVP_Digest() to configure script

    Add a check in the configure script to make sure the OpenSSL library
    does have the EVP_Digest() function that we now need.
    rgmiller committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    8e4cfef View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Use newer MD5 API functions

    Newer versions of the OpenSSL library have deprecated the MD5 API
    functions in favor of the EVP_* functions.  This commit is essentially
    the same as c9516ac, but for the unifyfs-stage util.
    rgmiller committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    0bd9a6b View commit details
    Browse the repository at this point in the history