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

Support OpenSSL 3.0 #3609

Merged
merged 1 commit into from
May 3, 2022
Merged

Support OpenSSL 3.0 #3609

merged 1 commit into from
May 3, 2022

Commits on May 3, 2022

  1. sdk/core: Reimplement Md5OpenSSL using EVP API

    The MD5_Init/Update/Final functions are deprecated in OpenSSL 3.0 and result in
    a compile-time warning. Due to the default usage of -Werror during compilation,
    these warnings are treated as errors and prevent the SDK from being built on
    Ubuntu 22.04, which ships with OpenSSL by default. The deprecated APIs should
    be replaced by the EVP APIs, which are already in use for the SHA family of
    functions, and supported on all versions of OpenSSL.
    jepio committed May 3, 2022
    Configuration menu
    Copy the full SHA
    536941e View commit details
    Browse the repository at this point in the history