Skip to content

Commit

Permalink
Added my user settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul authored and Paul committed Jan 31, 2023
1 parent aa18b31 commit f5c109a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions IDE/WIN/user_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,41 @@
#define WOLFSSL_DTLS13
#define WOLFSSL_DTLS_CID

// Enable things needed to decode SSL messages with wireshark.
#define HAVE_SECRET_CALLBACK

// Enable support for post-handshake authentication in TLS 1.3
#define WOLFSSL_POST_HANDSHAKE_AUTH

// Enable key generation:
// https://www.wolfssl.com/documentation/manuals/wolfssl/chapter07.html#rsa-key-generation
#define WOLFSSL_KEY_GEN

// Enable certificate generation:
// https://www.wolfssl.com/documentation/manuals/wolfssl/chapter07.html#certificate-generation
#define WOLFSSL_CERT_GEN

// Enable certificate request generation:
// https://www.wolfssl.com/documentation/manuals/wolfssl/chapter07.html#certificate-signing-request-csr-generation
#define WOLFSSL_CERT_REQ

// Enable debugging and logging support
// https://www.wolfssl.com/documentation/manuals/wolfssl/chapter08.html
#define DEBUG_WOLFSSL

// Enable additional debugging during a TLS connection
// https://www.wolfssl.com/documentation/manuals/wolfssl/chapter02.html#wolfssl_debug_tls
#define WOLFSSL_DEBUG_TLS

// Force callback set in wolfSSL_CTX_set_verify to be called every time (not just on failure)
// see: https://www.wolfssl.com/forums/post2349.html#p2349
#define WOLFSSL_ALWAYS_VERIFY_CB

// Support certificate extensions. If an unsupported or unknown extension that is marked as critical is found,
// then an error message is returned, otherwise unsupported or unknown extensions found are ignored.
// see: https://www.wolfssl.com/documentation/manuals/wolfssl/chapter07.html#supported-certificate-extensions
#define WOLFSSL_CERT_EXT

/* Configurations */
#if defined(HAVE_FIPS)
/* FIPS */
Expand Down

0 comments on commit f5c109a

Please sign in to comment.