File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10754,7 +10754,11 @@ const char* wolfSSL_OpenSSL_version(int type)
1075410754 case OPENSSL_CFLAGS:
1075510755 return "compiler: information not available";
1075610756 case OPENSSL_BUILT_ON:
10757+ #ifdef HAVE_REPRODUCIBLE_BUILD
10758+ return "built on: date not available";
10759+ #else
1075710760 return "built on: " __DATE__ " " __TIME__;
10761+ #endif
1075810762 case OPENSSL_PLATFORM:
1075910763 return "platform: information not available";
1076010764 case OPENSSL_DIR:
Original file line number Diff line number Diff line change @@ -18656,7 +18656,8 @@ defined(OPENSSL_EXTRA) && defined(WOLFSSL_DH_EXTRA)
1865618656static int test_wolfSSL_i2d_PUBKEY_bio(void)
1865718657{
1865818658 EXPECT_DECLS;
18659- #if defined(OPENSSL_EXTRA) && !defined(NO_BIO)
18659+ #if defined(OPENSSL_EXTRA) && !defined(NO_BIO) && \
18660+ !defined(NO_ASN) && !defined(NO_PWDBASED)
1866018661 BIO* bio = NULL;
1866118662 EVP_PKEY* pkey = NULL;
1866218663 EVP_PKEY* pkey2 = NULL;
You can’t perform that action at this time.
0 commit comments