fix typo with NO_CERTS macro

This commit is contained in:
JacobBarthelmeh
2024-05-29 17:08:01 -06:00
parent 200f309e0e
commit cf61df129c
4 changed files with 4 additions and 4 deletions

View File

@ -86,7 +86,7 @@
#define NO_RABBIT #define NO_RABBIT
#define NO_MD5 #define NO_MD5
#define NO_SIG_WRAPPER #define NO_SIG_WRAPPER
#define NO_CERT #define NO_CERTS
#define NO_SESSION_CACHE #define NO_SESSION_CACHE
#define NO_HC128 #define NO_HC128
#define NO_DES3 #define NO_DES3

View File

@ -23273,7 +23273,7 @@ wolfSSL_CTX_keylog_cb_func wolfSSL_CTX_get_keylog_callback(
#endif /* OPENSSL_EXTRA */ #endif /* OPENSSL_EXTRA */
#ifndef NO_CERT #ifndef NO_CERTS
#define WOLFSSL_X509_INCLUDED #define WOLFSSL_X509_INCLUDED
#include "src/x509.c" #include "src/x509.c"
#endif #endif

View File

@ -14583,7 +14583,7 @@ void wolfSSL_X509_ATTRIBUTE_free(WOLFSSL_X509_ATTRIBUTE* attr)
} }
#endif #endif
#endif /* !NO_CERT */ #endif /* !NO_CERTS */
#endif /* !WOLFCRYPT_ONLY */ #endif /* !WOLFCRYPT_ONLY */

View File

@ -3534,7 +3534,7 @@ int CheckBitString(const byte* input, word32* inOutIdx, int* len,
((defined(HAVE_ED25519) || defined(HAVE_ED448)) && \ ((defined(HAVE_ED25519) || defined(HAVE_ED448)) && \
(defined(WOLFSSL_CERT_GEN) || defined(WOLFSSL_KEY_GEN) || \ (defined(WOLFSSL_CERT_GEN) || defined(WOLFSSL_KEY_GEN) || \
defined(OPENSSL_EXTRA))) || \ defined(OPENSSL_EXTRA))) || \
(defined(WC_ENABLE_ASYM_KEY_EXPORT) && !defined(NO_CERT)) || \ (defined(WC_ENABLE_ASYM_KEY_EXPORT) && !defined(NO_CERTS)) || \
(!defined(NO_DSA) && !defined(HAVE_SELFTEST) && defined(WOLFSSL_KEY_GEN)) || \ (!defined(NO_DSA) && !defined(HAVE_SELFTEST) && defined(WOLFSSL_KEY_GEN)) || \
(!defined(NO_DH) && defined(WOLFSSL_DH_EXTRA)) (!defined(NO_DH) && defined(WOLFSSL_DH_EXTRA))