EVP_MD* md = EVP_MD_fetch(NULL,"SHA256","provider=CPartialHashProvider"); The provider is able to load properly (InitProvider function is properly called), and during EVP_MD_fetch call, QueryOperation returns well the OSSL_ALGORITHM array, but in the end EVP_MD_fetch return NULL. Am ...
EVP_MD* explicit_md = EVP_MD_fetch(nullptr, real_name, nullptr); if (!explicit_md) return; #endif // OPENSSL_VERSION_MAJOR >= 3Environment* env = static_cast<Environment*>(arg); env->supported_hash_algorithms.push_back(from);#
s2n_evp_mds[S2N_HASH_SHA384] = EVP_MD_fetch(NULL, "SHA384", NULL); s2n_evp_mds[S2N_HASH_SHA512] = EVP_MD_fetch(NULL, "SHA512", NULL); #else s2n_evp_mds[S2N_HASH_MD5] = EVP_md5(); s2n_evp_mds[S2N_HASH_SHA1] = EVP_sha1(); s2n_evp_mds[S2N_HASH_SHA224] = EVP_sha...
Oct 31, 2023 - I am able to build the image of openssl 3.0.8 version and when i try to use the openssl image to build kerberos with crytpo as openssl im getting undefined reference to `evp_cipher_fetch',EVP_MD_get_size. Here is my docker commands that are used for installing openss...