Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ int32_t CryptoNative_EvpPKeyGenerateByEcCurveOid(

#ifdef NEED_OPENSSL_1_1
// The portable build should only use the legacy OSSL 1.1 code path if OSSL 3.0+ APIs aren't present.
#if FEATURE_DISTRO_AGNOSTIC_SSL
#ifdef FEATURE_DISTRO_AGNOSTIC_SSL
if (rc == 3)
#endif
{
Expand Down Expand Up @@ -1718,7 +1718,7 @@ int32_t CryptoNative_EvpPKeyCreateByEcParameters(

#ifdef NEED_OPENSSL_1_1
// The portable build should only use the legacy OSSL 1.1 code path if OSSL 3.0+ APIs aren't present.
#if FEATURE_DISTRO_AGNOSTIC_SSL
#ifdef FEATURE_DISTRO_AGNOSTIC_SSL
if (rc == 3)
#endif
{
Expand Down Expand Up @@ -2085,7 +2085,7 @@ int32_t CryptoNative_EvpPKeyCreateByEcExplicitParameters(

#ifdef NEED_OPENSSL_1_1
// The portable build should only use the legacy OSSL 1.1 code path if OSSL 3.0+ APIs aren't present.
#if FEATURE_DISTRO_AGNOSTIC_SSL
#ifdef FEATURE_DISTRO_AGNOSTIC_SSL
if (rc == 3)
#endif
{
Expand Down
Loading