You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some one use OpenSSL 1.x to create p12 file, and the framework is base OpenSSL 3.x. I use OSSL_PROVIDER *provider = OSSL_PROVIDER_load(library_context, "legacy"); to load legacy algorithm, but the provider is NULL, and I get the error message is
80634BF201000000:error:12800067:DSO support routines:DSO_load:could not load the shared library:crypto/dso/dso_lib.c:147:
80634BF201000000:error:07880025:common libcrypto routines:provider_init:reason(37):crypto/provider_core.c:949:name=legacy
how can i do?
The text was updated successfully, but these errors were encountered:
Append additional settings in each /Configure statement: -no-module enable-weak-ssl-ciphers and then rebuild the framework.
make SIGNING_IDENTITY="Apple Distribution"
...
...
...
error: No signing certificate "Developer ID Application" found: No "Developer ID Application" signing certificate matching team ID "67RAULRX93" with a private key was found. (in target 'OpenSSL (macOS)' from project 'OpenSSL')
** BUILD FAILED **
The following build commands failed:
Building project OpenSSL with scheme OpenSSL (macOS) and configuration Release
Some one use OpenSSL 1.x to create p12 file, and the framework is base OpenSSL 3.x. I use
OSSL_PROVIDER *provider = OSSL_PROVIDER_load(library_context, "legacy");
to load legacy algorithm, but theprovider
is NULL, and I get the error message ishow can i do?
The text was updated successfully, but these errors were encountered: