My Project
|
Functions | |
WOLFSSL_METHOD * | wolfSSLv23_method (void) |
This function returns a WOLFSSL_METHOD similar to wolfSSLv23_client_method except that it is not determined which side yet (server/client). More... | |
WOLFSSL_METHOD * | wolfSSLv3_server_method (void) |
The wolfSSLv3_server_method() function is used to indicate that the application is a server and will only support the SSL 3.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfSSLv3_client_method (void) |
The wolfSSLv3_client_method() function is used to indicate that the application is a client and will only support the SSL 3.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_server_method (void) |
The wolfTLSv1_server_method() function is used to indicate that the application is a server and will only support the TLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_client_method (void) |
The wolfTLSv1_client_method() function is used to indicate that the application is a client and will only support the TLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_1_server_method (void) |
The wolfTLSv1_1_server_method() function is used to indicate that the application is a server and will only support the TLS 1.1 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_1_client_method (void) |
The wolfTLSv1_1_client_method() function is used to indicate that the application is a client and will only support the TLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_2_server_method (void) |
The wolfTLSv1_2_server_method() function is used to indicate that the application is a server and will only support the TLS 1.2 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_2_client_method (void) |
The wolfTLSv1_2_client_method() function is used to indicate that the application is a client and will only support the TLS 1.2 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfDTLSv1_client_method (void) |
The wolfDTLSv1_client_method() function is used to indicate that the application is a client and will only support the DTLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS). More... | |
WOLFSSL_METHOD * | wolfDTLSv1_server_method (void) |
The wolfDTLSv1_server_method() function is used to indicate that the application is a server and will only support the DTLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS). More... | |
WOLFSSL_METHOD * | wolfDTLSv1_3_server_method (void) |
The wolfDTLSv1_3_server_method() function is used to indicate that the application is a server and will only support the DTLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLSv1.3 support (–enable-dtls13, or by defining wolfSSL_DTLS13). More... | |
WOLFSSL_METHOD * | wolfDTLSv1_3_client_method (void) |
The wolfDTLSv1_3_client_method() function is used to indicate that the application is a client and will only support the DTLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLSv1.3 support (–enable-dtls13, or by defining wolfSSL_DTLS13). More... | |
WOLFSSL_METHOD * | wolfDTLS_server_method (void) |
The wolfDTLS_server_method() function is used to indicate that the application is a server and will support the highest version of DTLS available and all the version up to the minimum version allowed. The default minimum version allowed is based on the define WOLFSSL_MIN_DTLS_DOWNGRADE and can be changed at runtime using wolfSSL_SetMinVersion(). This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS). More... | |
WOLFSSL_METHOD * | wolfDTLS_client_method (void) |
The wolfDTLS_client_method() function is used to indicate that the application is a client and will support the highest version of DTLS available and all the version up to the minimum version allowed. The default minimum version allowed is based on the define WOLFSSL_MIN_DTLS_DOWNGRADE and can be changed at runtime using wolfSSL_SetMinVersion(). This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS). More... | |
int | wolfSSL_use_old_poly (WOLFSSL *ssl, int value) |
Since there is some differences between the first release and newer versions of chacha-poly AEAD construction we have added an option to communicate with servers/clients using the older version. By default wolfSSL uses the new version. More... | |
int | wolfSSL_CTX_trust_peer_cert (WOLFSSL_CTX *ctx, const char *file, int type) |
This function loads a certificate to use for verifying a peer when performing a TLS/SSL handshake. The peer certificate sent during the handshake is compared by using the SKID when available and the signature. If these two things do not match then any loaded CAs are used. Feature is enabled by defining the macro WOLFSSL_TRUST_PEER_CERT. Please see the examples for proper usage. More... | |
long | wolfSSL_CTX_get_verify_depth (WOLFSSL_CTX *ctx) |
This function gets the certificate chaining depth using the CTX structure. More... | |
WOLFSSL_CTX * | wolfSSL_CTX_new (WOLFSSL_METHOD *) |
This function creates a new SSL context, taking a desired SSL/TLS protocol method for input. More... | |
WOLFSSL * | wolfSSL_new (WOLFSSL_CTX *) |
This function creates a new SSL session, taking an already created SSL context as input. More... | |
int | wolfSSL_set_fd (WOLFSSL *ssl, int fd) |
This function assigns a file descriptor (fd) as the input/output facility for the SSL connection. Typically this will be a socket file descriptor. More... | |
int | wolfSSL_set_dtls_fd_connected (WOLFSSL *ssl, int fd) |
This function assigns a file descriptor (fd) as the input/output facility for the SSL connection. Typically this will be a socket file descriptor. This is a DTLS specific API because it marks that the socket is connected. recvfrom and sendto calls on this fd will have the addr and addr_len parameters set to NULL. More... | |
int | wolfDTLS_SetChGoodCb (WOLFSSL *ssl, ClientHelloGoodCb cb, void *user_ctx) |
Allows setting a callback for a correctly processed and verified DTLS client hello. When using a cookie exchange mechanism (either the HelloVerifyRequest in DTLS 1.2 or the HelloRetryRequest with a cookie extension in DTLS 1.3) this callback is called after the cookie exchange has succeeded. This is useful to use one WOLFSSL object as the listener for new connections and being able to isolate the WOLFSSL object once the ClientHello is verified (either through a cookie exchange or just checking if the ClientHello had the correct format). DTLS 1.2: https://datatracker.ietf.org/doc/html/rfc6347#section-4.2.1 DTLS 1.3: https://www.rfc-editor.org/rfc/rfc8446#section-4.2.2. More... | |
void | wolfSSL_set_using_nonblock (WOLFSSL *ssl, int nonblock) |
This function informs the WOLFSSL object that the underlying I/O is non-blocking. After an application creates a WOLFSSL object, if it will be used with a non-blocking socket, call wolfSSL_set_using_nonblock() on it. This lets the WOLFSSL object know that receiving EWOULDBLOCK means that the recvfrom call would block rather than that it timed out. More... | |
void | wolfSSL_CTX_free (WOLFSSL_CTX *) |
This function frees an allocated WOLFSSL_CTX object. This function decrements the CTX reference count and only frees the context when the reference count has reached 0. More... | |
void | wolfSSL_free (WOLFSSL *) |
This function frees an allocated wolfSSL object. More... | |
int | wolfSSL_set_session (WOLFSSL *ssl, WOLFSSL_SESSION *session) |
This function sets the session to be used when the SSL object, ssl, is used to establish a SSL/TLS connection. For session resumption, before calling wolfSSL_shutdown() with your session object, an application should save the session ID from the object with a call to wolfSSL_get1_session(), which returns a pointer to the session. Later, the application should create a new WOLFSSL object and assign the saved session with wolfSSL_set_session(). At this point, the application may call wolfSSL_connect() and wolfSSL will try to resume the session. The wolfSSL server code allows session resumption by default. The object returned by wolfSSL_get1_session() needs to be freed after the application is done with it by calling wolfSSL_SESSION_free() on it. More... | |
void | wolfSSL_CTX_set_verify (WOLFSSL_CTX *ctx, int mode, VerifyCallback verify_callback) |
This function sets the verification method for remote peers and also allows a verify callback to be registered with the SSL context. The verify callback will be called only when a verification failure has occurred. If no verify callback is desired, the NULL pointer can be used for verify_callback. The verification mode of peer certificates is a logically OR’d list of flags. The possible flag values include: SSL_VERIFY_NONE Client mode: the client will not verify the certificate received from the server and the handshake will continue as normal. Server mode: the server will not send a certificate request to the client. As such, client verification will not be enabled. SSL_VERIFY_PEER Client mode: the client will verify the certificate received from the server during the handshake. This is turned on by default in wolfSSL, therefore, using this option has no effect. Server mode: the server will send a certificate request to the client and verify the client certificate received. SSL_VERIFY_FAIL_IF_NO_PEER_CERT Client mode: no effect when used on the client side. Server mode: the verification will fail on the server side if the client fails to send a certificate when requested to do so (when using SSL_VERIFY_PEER on the SSL server). SSL_VERIFY_FAIL_EXCEPT_PSK Client mode: no effect when used on the client side. Server mode: the verification is the same as SSL_VERIFY_FAIL_IF_NO_PEER_CERT except in the case of a PSK connection. If a PSK connection is being made then the connection will go through without a peer cert. More... | |
void | wolfSSL_set_verify (WOLFSSL *ssl, int mode, VerifyCallback verify_callback) |
This function sets the verification method for remote peers and also allows a verify callback to be registered with the SSL session. The verify callback will be called only when a verification failure has occurred. If no verify callback is desired, the NULL pointer can be used for verify_callback. The verification mode of peer certificates is a logically OR’d list of flags. The possible flag values include: SSL_VERIFY_NONE Client mode: the client will not verify the certificate received from the server and the handshake will continue as normal. Server mode: the server will not send a certificate request to the client. As such, client verification will not be enabled. SSL_VERIFY_PEER Client mode: the client will verify the certificate received from the server during the handshake. This is turned on by default in wolfSSL, therefore, using this option has no effect. Server mode: the server will send a certificate request to the client and verify the client certificate received. SSL_VERIFY_FAIL_IF_NO_PEER_CERT Client mode: no effect when used on the client side. Server mode: the verification will fail on the server side if the client fails to send a certificate when requested to do so (when using SSL_VERIFY_PEER on the SSL server). SSL_VERIFY_FAIL_EXCEPT_PSK Client mode: no effect when used on the client side. Server mode: the verification is the same as SSL_VERIFY_FAIL_IF_NO_PEER_CERT except in the case of a PSK connection. If a PSK connection is being made then the connection will go through without a peer cert. More... | |
long | wolfSSL_CTX_set_session_cache_mode (WOLFSSL_CTX *ctx, long mode) |
This function enables or disables SSL session caching. Behavior depends on the value used for mode. The following values for mode are available: SSL_SESS_CACHE_OFF- disable session caching. Session caching is turned on by default. SSL_SESS_CACHE_NO_AUTO_CLEAR - Disable auto-flushing of the session cache. Auto-flushing is turned on by default. More... | |
int | wolfSSL_CTX_memrestore_cert_cache (WOLFSSL_CTX *ctx, const void *mem, int sz) |
This function restores the certificate cache from memory. More... | |
int | wolfSSL_CTX_set_cipher_list (WOLFSSL_CTX *ctx, const char *list) |
This function sets cipher suite list for a given WOLFSSL_CTX. This cipher suite list becomes the default list for any new SSL sessions (WOLFSSL) created using this context. The ciphers in the list should be sorted in order of preference from highest to lowest. Each call to wolfSSL_CTX_set_cipher_list() resets the cipher suite list for the specific SSL context to the provided list each time the function is called. The cipher suite list, list, is a null-terminated text string, and a colon-delimited list. For example, one value for list may be "DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:AES256-SHA256" Valid cipher values are the full name values from the cipher_names[] array in src/internal.c (for a definite list of valid cipher values check src/internal.c) More... | |
int | wolfSSL_set_cipher_list (WOLFSSL *ssl, const char *list) |
This function sets cipher suite list for a given WOLFSSL object (SSL session). The ciphers in the list should be sorted in order of preference from highest to lowest. Each call to wolfSSL_set_cipher_list() resets the cipher suite list for the specific SSL session to the provided list each time the function is called. The cipher suite list, list, is a null-terminated text string, and a colon-delimited list. For example, one value for list may be "DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:AES256-SHA256". Valid cipher values are the full name values from the cipher_names[] array in src/internal.c (for a definite list of valid cipher values check src/internal.c) More... | |
void | wolfSSL_dtls13_set_send_more_acks (WOLFSSL *ssl, int value) |
This function sets whether the library should send ACKs to the other peer immediately when detecting disruption or not. Sending ACKs immediately assures minimum latency but it may consume more bandwidth than necessary. If the application manages the timer by itself and this option is set to 0 then application code can use wolfSSL_dtls13_use_quick_timeout() to determine if it should setup a quicker timeout to send those delayed ACKs. More... | |
int | wolfSSL_dtls_set_timeout_init (WOLFSSL *ssl, int) |
This function sets the dtls timeout. More... | |
WOLFSSL_SESSION * | wolfSSL_get1_session (WOLFSSL *ssl) |
This function returns the WOLFSSL_SESSION from the WOLFSSL structure as a reference type. This requires calling wolfSSL_SESSION_free to release the session reference. The WOLFSSL_SESSION pointed to contains all the necessary information required to perform a session resumption and reestablish the connection without a new handshake. For session resumption, before calling wolfSSL_shutdown() with your session object, an application should save the session ID from the object with a call to wolfSSL_get1_session(), which returns a pointer to the session. Later, the application should create a new WOLFSSL object and assign the saved session with wolfSSL_set_session(). At this point, the application may call wolfSSL_connect() and wolfSSL will try to resume the session. The wolfSSL server code allows session resumption by default. The object returned by wolfSSL_get1_session() needs to be freed after the application is done with it by calling wolfSSL_SESSION_free() on it. More... | |
WOLFSSL_METHOD * | wolfSSLv23_client_method (void) |
The wolfSSLv23_client_method() function is used to indicate that the application is a client and will support the highest protocol version supported by the server between SSL 3.0 - TLS 1.3. This function allocates memory for and initializes a new WOLFSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). Both wolfSSL clients and servers have robust version downgrade capability. If a specific protocol version method is used on either side, then only that version will be negotiated or an error will be returned. For example, a client that uses TLSv1 and tries to connect to a SSLv3 only server will fail, likewise connecting to a TLSv1.1 will fail as well. To resolve this issue, a client that uses the wolfSSLv23_client_method() function will use the highest protocol version supported by the server and downgrade to SSLv3 if needed. In this case, the client will be able to connect to a server running SSLv3 - TLSv1.3. More... | |
WOLFSSL_BIGNUM * | wolfSSL_ASN1_INTEGER_to_BN (const WOLFSSL_ASN1_INTEGER *ai, WOLFSSL_BIGNUM *bn) |
This function is used to copy a WOLFSSL_ASN1_INTEGER value to a WOLFSSL_BIGNUM structure. More... | |
long | wolfSSL_CTX_add_extra_chain_cert (WOLFSSL_CTX *ctx, WOLFSSL_X509 *x509) |
This function adds the certificate to the internal chain being built in the WOLFSSL_CTX structure. More... | |
int | wolfSSL_CTX_get_read_ahead (WOLFSSL_CTX *ctx) |
This function returns the get read ahead flag from a WOLFSSL_CTX structure. More... | |
int | wolfSSL_CTX_set_read_ahead (WOLFSSL_CTX *ctx, int v) |
This function sets the read ahead flag in the WOLFSSL_CTX structure. More... | |
long | wolfSSL_CTX_set_tlsext_status_arg (WOLFSSL_CTX *ctx, void *arg) |
This function sets the options argument to use with OCSP. More... | |
long | wolfSSL_CTX_set_tlsext_opaque_prf_input_callback_arg (WOLFSSL_CTX *ctx, void *arg) |
This function sets the optional argument to be passed to the PRF callback. More... | |
long | wolfSSL_set_options (WOLFSSL *s, long op) |
This function sets the options mask in the ssl. Some valid options are, SSL_OP_ALL, SSL_OP_COOKIE_EXCHANGE, SSL_OP_NO_SSLv2, SSL_OP_NO_SSLv3, SSL_OP_NO_TLSv1, SSL_OP_NO_TLSv1_1, SSL_OP_NO_TLSv1_2, SSL_OP_NO_COMPRESSION. More... | |
long | wolfSSL_get_options (const WOLFSSL *ssl) |
This function returns the current options mask. More... | |
long | wolfSSL_set_tlsext_debug_arg (WOLFSSL *ssl, void *arg) |
This is used to set the debug argument passed around. More... | |
long | wolfSSL_get_verify_result (const WOLFSSL *ssl) |
This is used to get the results after trying to verify the peer's certificate. More... | |
int | wolfSSL_CTX_allow_anon_cipher (WOLFSSL_CTX *) |
This function enables the havAnon member of the CTX structure if HAVE_ANON is defined during compilation. More... | |
WOLFSSL_METHOD * | wolfSSLv23_server_method (void) |
The wolfSSLv23_server_method() function is used to indicate that the application is a server and will support clients connecting with protocol version from SSL 3.0 - TLS 1.3. This function allocates memory for and initializes a new WOLFSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
int | wolfSSL_state (WOLFSSL *ssl) |
This is used to get the internal error state of the WOLFSSL structure. More... | |
int | wolfSSL_check_domain_name (WOLFSSL *ssl, const char *dn) |
wolfSSL by default checks the peer certificate for a valid date range and a verified signature. Calling this function before wolfSSL_connect() or wolfSSL_accept() will add a domain name check to the list of checks to perform. dn holds the domain name to check against the peer certificate when it’s received. More... | |
int | wolfSSL_set_compression (WOLFSSL *ssl) |
Turns on the ability to use compression for the SSL connection. Both sides must have compression turned on otherwise compression will not be used. The zlib library performs the actual data compression. To compile into the library use –with-libz for the configure system and define HAVE_LIBZ otherwise. Keep in mind that while compressing data before sending decreases the actual size of the messages being sent and received, the amount of data saved by compression usually takes longer in time to analyze than it does to send it raw on all but the slowest of networks. More... | |
int | wolfSSL_set_timeout (WOLFSSL *ssl, unsigned int to) |
This function sets the SSL session timeout value in seconds. More... | |
int | wolfSSL_CTX_set_timeout (WOLFSSL_CTX *ctx, unsigned int to) |
This function sets the timeout value for SSL sessions, in seconds, for the specified SSL context. More... | |
int | wolfSSL_CTX_UnloadCAs (WOLFSSL_CTX *) |
This function unloads the CA signer list and frees the whole signer table. More... | |
int | wolfSSL_CTX_UnloadIntermediateCerts (WOLFSSL_CTX *ctx) |
This function unloads intermediate certificates added to the CA signer list and frees them. More... | |
int | wolfSSL_CTX_Unload_trust_peers (WOLFSSL_CTX *) |
This function is used to unload all previously loaded trusted peer certificates. Feature is enabled by defining the macro WOLFSSL_TRUST_PEER_CERT. More... | |
int | wolfSSL_CTX_trust_peer_buffer (WOLFSSL_CTX *ctx, const unsigned char *in, long sz, int format) |
This function loads a certificate to use for verifying a peer when performing a TLS/SSL handshake. The peer certificate sent during the handshake is compared by using the SKID when available and the signature. If these two things do not match then any loaded CAs are used. Is the same functionality as wolfSSL_CTX_trust_peer_cert except is from a buffer instead of a file. Feature is enabled by defining the macro WOLFSSL_TRUST_PEER_CERT Please see the examples for proper usage. More... | |
int | wolfSSL_CTX_set_group_messages (WOLFSSL_CTX *) |
This function turns on grouping of handshake messages where possible. More... | |
int | wolfSSL_set_group_messages (WOLFSSL *) |
This function turns on grouping of handshake messages where possible. More... | |
int | wolfSSL_CTX_SetMinVersion (WOLFSSL_CTX *ctx, int version) |
This function sets the minimum downgrade version allowed. Applicable only when the connection allows downgrade using (wolfSSLv23_client_method or wolfSSLv23_server_method). More... | |
int | wolfSSL_SetVersion (WOLFSSL *ssl, int version) |
This function sets the SSL/TLS protocol version for the specified SSL session (WOLFSSL object) using the version as specified by version. This will override the protocol setting for the SSL session (ssl) - originally defined and set by the SSL context (wolfSSL_CTX_new()) method type. More... | |
int | wolfSSL_UseALPN (WOLFSSL *ssl, char *protocol_name_list, unsigned int protocol_name_listSz, unsigned char options) |
Setup ALPN use for a wolfSSL session. More... | |
int | wolfSSL_CTX_UseSessionTicket (WOLFSSL_CTX *ctx) |
This function sets wolfSSL context to use a session ticket. More... | |
int | wolfSSL_check_private_key (const WOLFSSL *ssl) |
This function checks that the private key is a match with the certificate being used. More... | |
int | wolfSSL_use_certificate (WOLFSSL *ssl, WOLFSSL_X509 *x509) |
his is used to set the certificate for WOLFSSL structure to use during a handshake. More... | |
int | wolfSSL_use_certificate_ASN1 (WOLFSSL *ssl, unsigned char *der, int derSz) |
This is used to set the certificate for WOLFSSL structure to use during a handshake. A DER formatted buffer is expected. More... | |
int | wolfSSL_SESSION_get_master_key (const WOLFSSL_SESSION *ses, unsigned char *out, int outSz) |
This is used to get the master key after completing a handshake. More... | |
int | wolfSSL_SESSION_get_master_key_length (const WOLFSSL_SESSION *ses) |
This is used to get the master secret key length. More... | |
void | wolfSSL_CTX_set_cert_store (WOLFSSL_CTX *ctx, WOLFSSL_X509_STORE *str) |
This is a setter function for the WOLFSSL_X509_STORE structure in ctx. More... | |
WOLFSSL_X509_STORE * | wolfSSL_CTX_get_cert_store (WOLFSSL_CTX *ctx) |
This is a getter function for the WOLFSSL_X509_STORE structure in ctx. More... | |
size_t | wolfSSL_get_server_random (const WOLFSSL *ssl, unsigned char *out, size_t outlen) |
This is used to get the random data sent by the server during the handshake. More... | |
size_t | wolfSSL_get_client_random (const WOLFSSL *ssl, unsigned char *out, size_t outSz) |
This is used to get the random data sent by the client during the handshake. More... | |
wc_pem_password_cb * | wolfSSL_CTX_get_default_passwd_cb (WOLFSSL_CTX *ctx) |
This is a getter function for the password callback set in ctx. More... | |
void * | wolfSSL_CTX_get_default_passwd_cb_userdata (WOLFSSL_CTX *ctx) |
This is a getter function for the password callback user data set in ctx. More... | |
long | wolfSSL_CTX_clear_options (WOLFSSL_CTX *ctx, long opt) |
This function resets option bits of WOLFSSL_CTX object. More... | |
int | wolfSSL_set_msg_callback (WOLFSSL *ssl, SSL_Msg_Cb cb) |
This function sets a callback in the ssl. The callback is to observe handshake messages. NULL value of cb resets the callback. More... | |
int | wolfSSL_set_msg_callback_arg (WOLFSSL *ssl, void *arg) |
This function sets associated callback context value in the ssl. The value is handed over to the callback argument. More... | |
int | wolfSSL_send_hrr_cookie (WOLFSSL *ssl, const unsigned char *secret, unsigned int secretSz) |
This function is called on the server side to indicate that a HelloRetryRequest message must contain a Cookie and, in case of using protocol DTLS v1.3, that the handshake will always include a cookie exchange. Please note that when using protocol DTLS v1.3, the cookie exchange is enabled by default. The Cookie holds a hash of the current transcript so that another server process can handle the ClientHello in reply. The secret is used when generating the integrity check on the Cookie data. More... | |
int | wolfSSL_disable_hrr_cookie (WOLFSSL *ssl) |
This function is called on the server side to indicate that a HelloRetryRequest message must NOT contain a Cookie and that, if using protocol DTLS v1.3, a cookie exchange will not be included in the handshake. Please note that not doing a cookie exchange when using protocol DTLS v1.3 can make the server susceptible to DoS/Amplification attacks. More... | |
int | wolfSSL_CTX_no_ticket_TLSv13 (WOLFSSL_CTX *ctx) |
This function is called on the server to stop it from sending a resumption session ticket once the handshake is complete. More... | |
int | wolfSSL_no_ticket_TLSv13 (WOLFSSL *ssl) |
This function is called on the server to stop it from sending a resumption session ticket once the handshake is complete. More... | |
int | wolfSSL_CTX_no_dhe_psk (WOLFSSL_CTX *ctx) |
This function is called on a TLS v1.3 wolfSSL context to disallow Diffie-Hellman (DH) style key exchanges when handshakes are using pre-shared keys for authentication. More... | |
int | wolfSSL_no_dhe_psk (WOLFSSL *ssl) |
This function is called on a TLS v1.3 client or server wolfSSL to disallow Diffie-Hellman (DH) style key exchanges when handshakes are using pre-shared keys for authentication. More... | |
int | wolfSSL_CTX_allow_post_handshake_auth (WOLFSSL_CTX *ctx) |
This function is called on a TLS v1.3 client wolfSSL context to allow a client certificate to be sent post handshake upon request from server. This is useful when connecting to a web server that has some pages that require client authentication and others that don't. More... | |
int | wolfSSL_allow_post_handshake_auth (WOLFSSL *ssl) |
This function is called on a TLS v1.3 client wolfSSL to allow a client certificate to be sent post handshake upon request from server. A Post-Handshake Client Authentication extension is sent in the ClientHello. This is useful when connecting to a web server that has some pages that require client authentication and others that don't. More... | |
int | wolfSSL_CTX_set1_groups_list (WOLFSSL_CTX *ctx, char *list) |
This function sets the list of elliptic curve groups to allow on a wolfSSL context in order of preference. The list is a null-terminated text string, and a colon-delimited list. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections. More... | |
int | wolfSSL_set1_groups_list (WOLFSSL *ssl, char *list) |
This function sets the list of elliptic curve groups to allow on a wolfSSL in order of preference. The list is a null-terminated text string, and a colon-delimited list. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections. More... | |
int | wolfSSL_CTX_set_groups (WOLFSSL_CTX *ctx, int *groups, int count) |
This function sets the list of elliptic curve groups to allow on a wolfSSL context in order of preference. The list is an array of group identifiers with the number of identifiers specified in count. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections. More... | |
int | wolfSSL_set_groups (WOLFSSL *ssl, int *groups, int count) |
This function sets the list of elliptic curve groups to allow on a wolfSSL. The list is an array of group identifiers with the number of identifiers specified in count. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections. More... | |
int | wolfSSL_CTX_set_max_early_data (WOLFSSL_CTX *ctx, unsigned int sz) |
This function sets the maximum amount of early data that a TLS v1.3 client or server is willing to exchange using the wolfSSL context. Call this function to limit the amount of early data to process to mitigate replay attacks. Early data is protected by keys derived from those of the connection that the session ticket was sent and therefore will be the same every time a session ticket is used in resumption. The value is included in the session ticket for resumption. A server value of zero indicates no early data is to be sent by client using session tickets. A client value of zero indicates that the client will not send any early data. It is recommended that the number of early data bytes be kept as low as practically possible in the application. More... | |
int | wolfSSL_set_max_early_data (WOLFSSL *ssl, unsigned int sz) |
This function sets the maximum amount of early data that a TLS v1.3 client or server is willing to exchange. Call this function to limit the amount of early data to process to mitigate replay attacks. Early data is protected by keys derived from those of the connection that the session ticket was sent and therefore will be the same every time a session ticket is used in resumption. The value is included in the session ticket for resumption. A server value of zero indicates no early data is to be sent by client using session tickets. A client value of zero indicates that the client will not send any early data. It is recommended that the number of early data bytes be kept as low as practically possible in the application. More... | |
void | wolfSSL_CTX_set_psk_client_tls13_callback (WOLFSSL_CTX *ctx, wc_psk_client_tls13_callback cb) |
This function sets the Pre-Shared Key (PSK) client side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the client_psk_tls13_cb member of the WOLFSSL_CTX structure. More... | |
void | wolfSSL_set_psk_client_tls13_callback (WOLFSSL *ssl, wc_psk_client_tls13_callback cb) |
This function sets the Pre-Shared Key (PSK) client side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the client_psk_tls13_cb member of the options field in WOLFSSL structure. More... | |
void | wolfSSL_CTX_set_psk_server_tls13_callback (WOLFSSL_CTX *ctx, wc_psk_server_tls13_callback cb) |
This function sets the Pre-Shared Key (PSK) server side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the server_psk_tls13_cb member of the WOLFSSL_CTX structure. More... | |
void | wolfSSL_set_psk_server_tls13_callback (WOLFSSL *ssl, wc_psk_server_tls13_callback cb) |
This function sets the Pre-Shared Key (PSK) server side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the server_psk_tls13_cb member of the options field in WOLFSSL structure. More... | |
int | wolfSSL_UseKeyShare (WOLFSSL *ssl, word16 group) |
This function creates a key share entry from the group including generating a key pair. The KeyShare extension contains all the generated public keys for key exchange. If this function is called, then only the groups specified will be included. Call this function when a preferred group has been previously established for the server. More... | |
int | wolfSSL_NoKeyShares (WOLFSSL *ssl) |
This function is called to ensure no key shares are sent in the ClientHello. This will force the server to respond with a HelloRetryRequest if a key exchange is required in the handshake. Call this function when the expected key exchange group is not known and to avoid the generation of keys unnecessarily. Note that an extra round-trip will be required to complete the handshake when a key exchange is required. More... | |
WOLFSSL_METHOD * | wolfTLSv1_3_server_method_ex (void *heap) |
This function is used to indicate that the application is a server and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_3_client_method_ex (void *heap) |
This function is used to indicate that the application is a client and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_3_server_method (void) |
This function is used to indicate that the application is a server and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_3_client_method (void) |
This function is used to indicate that the application is a client and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). More... | |
WOLFSSL_METHOD * | wolfTLSv1_3_method_ex (void *heap) |
This function returns a WOLFSSL_METHOD similar to wolfTLSv1_3_client_method except that it is not determined which side yet (server/client). More... | |
WOLFSSL_METHOD * | wolfTLSv1_3_method (void) |
This function returns a WOLFSSL_METHOD similar to wolfTLSv1_3_client_method except that it is not determined which side yet (server/client). More... | |
int | wolfSSL_CTX_set_client_cert_type (WOLFSSL_CTX *ctx, const char *buf, int len) |
In case this function is called in a client side, set certificate types that can be sent to its peer. In case called in a server side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set. More... | |
int | wolfSSL_CTX_set_server_cert_type (WOLFSSL_CTX *ctx, const char *buf, int len) |
In case this function is called in a server side, set certificate types that can be sent to its peer. In case called in a client side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set. More... | |
int | wolfSSL_set_client_cert_type (WOLFSSL *ssl, const char *buf, int len) |
In case this function is called in a client side, set certificate types that can be sent to its peer. In case called in a server side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set. More... | |
int | wolfSSL_set_server_cert_type (WOLFSSL *ssl, const char *buf, int len) |
In case this function is called in a server side, set certificate types that can be sent to its peer. In case called in a client side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set. More... | |
void * | wolfSSL_GetCookieCtx (WOLFSSL *ssl) |
This function returns the IOCB_CookieCtx member of the WOLFSSL structure. More... | |
int | wolfSSL_SetIO_ISOTP (WOLFSSL *ssl, isotp_wolfssl_ctx *ctx, can_recv_fn recv_fn, can_send_fn send_fn, can_delay_fn delay_fn, word32 receive_delay, char *receive_buffer, int receive_buffer_size, void *arg) |
This function sets up the ISO-TP context if wolfSSL, for use when wolfSSL is compiled with WOLFSSL_ISOTP. More... | |
WOLFSSL_METHOD* wolfDTLS_client_method | ( | void | ) |
The wolfDTLS_client_method() function is used to indicate that the application is a client and will support the highest version of DTLS available and all the version up to the minimum version allowed. The default minimum version allowed is based on the define WOLFSSL_MIN_DTLS_DOWNGRADE and can be changed at runtime using wolfSSL_SetMinVersion(). This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS).
none | No parameters. |
Example
WOLFSSL_METHOD* wolfDTLS_server_method | ( | void | ) |
The wolfDTLS_server_method() function is used to indicate that the application is a server and will support the highest version of DTLS available and all the version up to the minimum version allowed. The default minimum version allowed is based on the define WOLFSSL_MIN_DTLS_DOWNGRADE and can be changed at runtime using wolfSSL_SetMinVersion(). This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS).
none | No parameters. |
Example
int wolfDTLS_SetChGoodCb | ( | WOLFSSL * | ssl, |
ClientHelloGoodCb | cb, | ||
void * | user_ctx | ||
) |
Allows setting a callback for a correctly processed and verified DTLS client hello. When using a cookie exchange mechanism (either the HelloVerifyRequest in DTLS 1.2 or the HelloRetryRequest with a cookie extension in DTLS 1.3) this callback is called after the cookie exchange has succeeded. This is useful to use one WOLFSSL object as the listener for new connections and being able to isolate the WOLFSSL object once the ClientHello is verified (either through a cookie exchange or just checking if the ClientHello had the correct format). DTLS 1.2: https://datatracker.ietf.org/doc/html/rfc6347#section-4.2.1 DTLS 1.3: https://www.rfc-editor.org/rfc/rfc8446#section-4.2.2.
ssl | pointer to the SSL session, created with wolfSSL_new(). |
fd | file descriptor to use with SSL/TLS connection. |
Example
WOLFSSL_METHOD* wolfDTLSv1_3_client_method | ( | void | ) |
The wolfDTLSv1_3_client_method() function is used to indicate that the application is a client and will only support the DTLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLSv1.3 support (–enable-dtls13, or by defining wolfSSL_DTLS13).
none | No parameters. |
Example
WOLFSSL_METHOD* wolfDTLSv1_3_server_method | ( | void | ) |
The wolfDTLSv1_3_server_method() function is used to indicate that the application is a server and will only support the DTLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLSv1.3 support (–enable-dtls13, or by defining wolfSSL_DTLS13).
none | No parameters. |
Example
WOLFSSL_METHOD* wolfDTLSv1_client_method | ( | void | ) |
The wolfDTLSv1_client_method() function is used to indicate that the application is a client and will only support the DTLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS).
none | No parameters. |
Example
WOLFSSL_METHOD* wolfDTLSv1_server_method | ( | void | ) |
The wolfDTLSv1_server_method() function is used to indicate that the application is a server and will only support the DTLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). This function is only available when wolfSSL has been compiled with DTLS support (–enable-dtls, or by defining wolfSSL_DTLS).
none | No parameters. |
Example
int wolfSSL_allow_post_handshake_auth | ( | WOLFSSL * | ssl | ) |
This function is called on a TLS v1.3 client wolfSSL to allow a client certificate to be sent post handshake upon request from server. A Post-Handshake Client Authentication extension is sent in the ClientHello. This is useful when connecting to a web server that has some pages that require client authentication and others that don't.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
Example
WOLFSSL_BIGNUM* wolfSSL_ASN1_INTEGER_to_BN | ( | const WOLFSSL_ASN1_INTEGER * | ai, |
WOLFSSL_BIGNUM * | bn | ||
) |
This function is used to copy a WOLFSSL_ASN1_INTEGER value to a WOLFSSL_BIGNUM structure.
ai | WOLFSSL_ASN1_INTEGER structure to copy from. |
bn | if wanting to copy into an already existing WOLFSSL_BIGNUM struct then pass in a pointer to it. Optionally this can be NULL and a new WOLFSSL_BIGNUM structure will be created. |
Example
int wolfSSL_check_domain_name | ( | WOLFSSL * | ssl, |
const char * | dn | ||
) |
wolfSSL by default checks the peer certificate for a valid date range and a verified signature. Calling this function before wolfSSL_connect() or wolfSSL_accept() will add a domain name check to the list of checks to perform. dn holds the domain name to check against the peer certificate when it’s received.
ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
dn | domain name to check against the peer certificate when received. |
Example
int wolfSSL_check_private_key | ( | const WOLFSSL * | ssl | ) |
This function checks that the private key is a match with the certificate being used.
ssl | WOLFSSL structure to check. |
Example
long wolfSSL_CTX_add_extra_chain_cert | ( | WOLFSSL_CTX * | ctx, |
WOLFSSL_X509 * | x509 | ||
) |
This function adds the certificate to the internal chain being built in the WOLFSSL_CTX structure.
ctx | WOLFSSL_CTX structure to add certificate to. |
x509 | certificate to add to the chain. |
Example
int wolfSSL_CTX_allow_anon_cipher | ( | WOLFSSL_CTX * | ) |
This function enables the havAnon member of the CTX structure if HAVE_ANON is defined during compilation.
ctx | a pointer to a WOLFSSL_CTX structure, created using wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_allow_post_handshake_auth | ( | WOLFSSL_CTX * | ctx | ) |
This function is called on a TLS v1.3 client wolfSSL context to allow a client certificate to be sent post handshake upon request from server. This is useful when connecting to a web server that has some pages that require client authentication and others that don't.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
Example
long wolfSSL_CTX_clear_options | ( | WOLFSSL_CTX * | ctx, |
long | opt | ||
) |
This function resets option bits of WOLFSSL_CTX object.
ctx | pointer to the SSL context. |
Example
void wolfSSL_CTX_free | ( | WOLFSSL_CTX * | ) |
This function frees an allocated WOLFSSL_CTX object. This function decrements the CTX reference count and only frees the context when the reference count has reached 0.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
Example
WOLFSSL_X509_STORE* wolfSSL_CTX_get_cert_store | ( | WOLFSSL_CTX * | ctx | ) |
This is a getter function for the WOLFSSL_X509_STORE structure in ctx.
ctx | pointer to the WOLFSSL_CTX structure for getting cert store pointer. |
Example
wc_pem_password_cb* wolfSSL_CTX_get_default_passwd_cb | ( | WOLFSSL_CTX * | ctx | ) |
This is a getter function for the password callback set in ctx.
ctx | WOLFSSL_CTX structure to get call back from. |
Example
void* wolfSSL_CTX_get_default_passwd_cb_userdata | ( | WOLFSSL_CTX * | ctx | ) |
This is a getter function for the password callback user data set in ctx.
ctx | WOLFSSL_CTX structure to get user data from. |
Example
int wolfSSL_CTX_get_read_ahead | ( | WOLFSSL_CTX * | ctx | ) |
This function returns the get read ahead flag from a WOLFSSL_CTX structure.
ctx | WOLFSSL_CTX structure to get read ahead flag from. |
Example
long wolfSSL_CTX_get_verify_depth | ( | WOLFSSL_CTX * | ctx | ) |
This function gets the certificate chaining depth using the CTX structure.
ctx | a pointer to a WOLFSSL_CTX structure, created using wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_memrestore_cert_cache | ( | WOLFSSL_CTX * | ctx, |
const void * | mem, | ||
int | sz | ||
) |
This function restores the certificate cache from memory.
ctx | a pointer to a WOLFSSL_CTX structure, created using wolfSSL_CTX_new(). |
mem | a void pointer with a value that will be restored to the certificate cache. |
sz | an int type that represents the size of the mem parameter. |
Example
WOLFSSL_CTX* wolfSSL_CTX_new | ( | WOLFSSL_METHOD * | ) |
This function creates a new SSL context, taking a desired SSL/TLS protocol method for input.
method | pointer to the desired WOLFSSL_METHOD to use for the SSL context. This is created using one of the wolfSSLvXX_XXXX_method() functions to specify SSL/TLS/DTLS protocol level. |
Example
int wolfSSL_CTX_no_dhe_psk | ( | WOLFSSL_CTX * | ctx | ) |
This function is called on a TLS v1.3 wolfSSL context to disallow Diffie-Hellman (DH) style key exchanges when handshakes are using pre-shared keys for authentication.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_no_ticket_TLSv13 | ( | WOLFSSL_CTX * | ctx | ) |
This function is called on the server to stop it from sending a resumption session ticket once the handshake is complete.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_set1_groups_list | ( | WOLFSSL_CTX * | ctx, |
char * | list | ||
) |
This function sets the list of elliptic curve groups to allow on a wolfSSL context in order of preference. The list is a null-terminated text string, and a colon-delimited list. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
[in] | list | a string that is a colon-delimited list of elliptic curve groups. |
Example
void wolfSSL_CTX_set_cert_store | ( | WOLFSSL_CTX * | ctx, |
WOLFSSL_X509_STORE * | str | ||
) |
This is a setter function for the WOLFSSL_X509_STORE structure in ctx.
ctx | pointer to the WOLFSSL_CTX structure for setting cert store pointer. |
str | pointer to the WOLFSSL_X509_STORE to set in ctx. |
Example
int wolfSSL_CTX_set_cipher_list | ( | WOLFSSL_CTX * | ctx, |
const char * | list | ||
) |
This function sets cipher suite list for a given WOLFSSL_CTX. This cipher suite list becomes the default list for any new SSL sessions (WOLFSSL) created using this context. The ciphers in the list should be sorted in order of preference from highest to lowest. Each call to wolfSSL_CTX_set_cipher_list() resets the cipher suite list for the specific SSL context to the provided list each time the function is called. The cipher suite list, list, is a null-terminated text string, and a colon-delimited list. For example, one value for list may be "DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:AES256-SHA256" Valid cipher values are the full name values from the cipher_names[] array in src/internal.c (for a definite list of valid cipher values check src/internal.c)
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
list | null-terminated text string and a colon-delimited list of cipher suites to use with the specified SSL context. |
Example
int wolfSSL_CTX_set_client_cert_type | ( | WOLFSSL_CTX * | ctx, |
const char * | buf, | ||
int | len | ||
) |
In case this function is called in a client side, set certificate types that can be sent to its peer. In case called in a server side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set.
ctx | WOLFSSL_CTX object pointer |
buf | A buffer where certificate types are stored |
len | buf size in bytes (same as number of certificate types included) Example int ret;
WOLFSSL_CTX* ctx;
char buf[] = {WOLFSSL_CERT_TYPE_RPK, WOLFSSL_CERT_TYPE_X509};
int len = sizeof(buf)/sizeof(char);
...
ret = wolfSSL_CTX_set_client_cert_type(ctx, buf, len);
int wolfSSL_CTX_set_client_cert_type(WOLFSSL_CTX *ctx, const char *buf, int len) In case this function is called in a client side, set certificate types that can be sent to its peer.... |
int wolfSSL_CTX_set_group_messages | ( | WOLFSSL_CTX * | ) |
This function turns on grouping of handshake messages where possible.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_set_groups | ( | WOLFSSL_CTX * | ctx, |
int * | groups, | ||
int | count | ||
) |
This function sets the list of elliptic curve groups to allow on a wolfSSL context in order of preference. The list is an array of group identifiers with the number of identifiers specified in count. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
[in] | groups | a list of key exchange groups by identifier. |
[in] | count | the number of key exchange groups in groups. |
Example
int wolfSSL_CTX_set_max_early_data | ( | WOLFSSL_CTX * | ctx, |
unsigned int | sz | ||
) |
This function sets the maximum amount of early data that a TLS v1.3 client or server is willing to exchange using the wolfSSL context. Call this function to limit the amount of early data to process to mitigate replay attacks. Early data is protected by keys derived from those of the connection that the session ticket was sent and therefore will be the same every time a session ticket is used in resumption. The value is included in the session ticket for resumption. A server value of zero indicates no early data is to be sent by client using session tickets. A client value of zero indicates that the client will not send any early data. It is recommended that the number of early data bytes be kept as low as practically possible in the application.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
[in] | sz | the amount of early data to accept in bytes. |
Example
void wolfSSL_CTX_set_psk_client_tls13_callback | ( | WOLFSSL_CTX * | ctx, |
wc_psk_client_tls13_callback | cb | ||
) |
This function sets the Pre-Shared Key (PSK) client side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the client_psk_tls13_cb member of the WOLFSSL_CTX structure.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
[in] | cb | a Pre-Shared Key (PSK) callback for a TLS 1.3 client. |
Example
void wolfSSL_CTX_set_psk_server_tls13_callback | ( | WOLFSSL_CTX * | ctx, |
wc_psk_server_tls13_callback | cb | ||
) |
This function sets the Pre-Shared Key (PSK) server side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the server_psk_tls13_cb member of the WOLFSSL_CTX structure.
[in,out] | ctx | a pointer to a WOLFSSL_CTX structure, created with wolfSSL_CTX_new(). |
[in] | cb | a Pre-Shared Key (PSK) callback for a TLS 1.3 server. |
Example
int wolfSSL_CTX_set_read_ahead | ( | WOLFSSL_CTX * | ctx, |
int | v | ||
) |
This function sets the read ahead flag in the WOLFSSL_CTX structure.
ctx | WOLFSSL_CTX structure to set read ahead flag. |
v | read ahead flag |
Example
int wolfSSL_CTX_set_server_cert_type | ( | WOLFSSL_CTX * | ctx, |
const char * | buf, | ||
int | len | ||
) |
In case this function is called in a server side, set certificate types that can be sent to its peer. In case called in a client side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set.
ctx | WOLFSSL_CTX object pointer |
buf | A buffer where certificate types are stored |
len | buf size in bytes (same as number of certificate types included) Example int ret;
WOLFSSL_CTX* ctx;
char buf[] = {WOLFSSL_CERT_TYPE_RPK, WOLFSSL_CERT_TYPE_X509};
int len = sizeof(buf)/sizeof(char);
...
ret = wolfSSL_CTX_set_server_cert_type(ctx, buf, len);
int wolfSSL_CTX_set_server_cert_type(WOLFSSL_CTX *ctx, const char *buf, int len) In case this function is called in a server side, set certificate types that can be sent to its peer.... |
long wolfSSL_CTX_set_session_cache_mode | ( | WOLFSSL_CTX * | ctx, |
long | mode | ||
) |
This function enables or disables SSL session caching. Behavior depends on the value used for mode. The following values for mode are available: SSL_SESS_CACHE_OFF- disable session caching. Session caching is turned on by default. SSL_SESS_CACHE_NO_AUTO_CLEAR - Disable auto-flushing of the session cache. Auto-flushing is turned on by default.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
mode | modifier used to change behavior of the session cache. |
Example
int wolfSSL_CTX_set_timeout | ( | WOLFSSL_CTX * | ctx, |
unsigned int | to | ||
) |
This function sets the timeout value for SSL sessions, in seconds, for the specified SSL context.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
to | session timeout value in seconds. |
Example
long wolfSSL_CTX_set_tlsext_opaque_prf_input_callback_arg | ( | WOLFSSL_CTX * | ctx, |
void * | arg | ||
) |
This function sets the optional argument to be passed to the PRF callback.
ctx | WOLFSSL_CTX structure to set user argument. |
arg | user argument. |
Example
long wolfSSL_CTX_set_tlsext_status_arg | ( | WOLFSSL_CTX * | ctx, |
void * | arg | ||
) |
This function sets the options argument to use with OCSP.
ctx | WOLFSSL_CTX structure to set user argument. |
arg | user argument. |
Example
void wolfSSL_CTX_set_verify | ( | WOLFSSL_CTX * | ctx, |
int | mode, | ||
VerifyCallback | verify_callback | ||
) |
This function sets the verification method for remote peers and also allows a verify callback to be registered with the SSL context. The verify callback will be called only when a verification failure has occurred. If no verify callback is desired, the NULL pointer can be used for verify_callback. The verification mode of peer certificates is a logically OR’d list of flags. The possible flag values include: SSL_VERIFY_NONE Client mode: the client will not verify the certificate received from the server and the handshake will continue as normal. Server mode: the server will not send a certificate request to the client. As such, client verification will not be enabled. SSL_VERIFY_PEER Client mode: the client will verify the certificate received from the server during the handshake. This is turned on by default in wolfSSL, therefore, using this option has no effect. Server mode: the server will send a certificate request to the client and verify the client certificate received. SSL_VERIFY_FAIL_IF_NO_PEER_CERT Client mode: no effect when used on the client side. Server mode: the verification will fail on the server side if the client fails to send a certificate when requested to do so (when using SSL_VERIFY_PEER on the SSL server). SSL_VERIFY_FAIL_EXCEPT_PSK Client mode: no effect when used on the client side. Server mode: the verification is the same as SSL_VERIFY_FAIL_IF_NO_PEER_CERT except in the case of a PSK connection. If a PSK connection is being made then the connection will go through without a peer cert.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
mode | flags indicating verification mode for peer's cert. |
verify_callback | callback to be called when verification fails. If no callback is desired, the NULL pointer can be used for verify_callback. |
Example
int wolfSSL_CTX_SetMinVersion | ( | WOLFSSL_CTX * | ctx, |
int | version | ||
) |
This function sets the minimum downgrade version allowed. Applicable only when the connection allows downgrade using (wolfSSLv23_client_method or wolfSSLv23_server_method).
ctx | a pointer to a WOLFSSL_CTX structure, created using wolfSSL_CTX_new(). |
version | an integer representation of the version to be set as the minimum: WOLFSSL_SSLV3 = 0, WOLFSSL_TLSV1 = 1, WOLFSSL_TLSV1_1 = 2 or WOLFSSL_TLSV1_2 = 3. |
Example
int wolfSSL_CTX_trust_peer_buffer | ( | WOLFSSL_CTX * | ctx, |
const unsigned char * | in, | ||
long | sz, | ||
int | format | ||
) |
This function loads a certificate to use for verifying a peer when performing a TLS/SSL handshake. The peer certificate sent during the handshake is compared by using the SKID when available and the signature. If these two things do not match then any loaded CAs are used. Is the same functionality as wolfSSL_CTX_trust_peer_cert except is from a buffer instead of a file. Feature is enabled by defining the macro WOLFSSL_TRUST_PEER_CERT Please see the examples for proper usage.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
buffer | pointer to the buffer containing certificates. |
sz | length of the buffer input. |
type | type of certificate being loaded i.e. SSL_FILETYPE_ASN1 or SSL_FILETYPE_PEM. |
Example
int wolfSSL_CTX_trust_peer_cert | ( | WOLFSSL_CTX * | ctx, |
const char * | file, | ||
int | type | ||
) |
This function loads a certificate to use for verifying a peer when performing a TLS/SSL handshake. The peer certificate sent during the handshake is compared by using the SKID when available and the signature. If these two things do not match then any loaded CAs are used. Feature is enabled by defining the macro WOLFSSL_TRUST_PEER_CERT. Please see the examples for proper usage.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
file | pointer to name of the file containing certificates |
type | type of certificate being loaded ie SSL_FILETYPE_ASN1 or SSL_FILETYPE_PEM. |
Example
int wolfSSL_CTX_Unload_trust_peers | ( | WOLFSSL_CTX * | ) |
This function is used to unload all previously loaded trusted peer certificates. Feature is enabled by defining the macro WOLFSSL_TRUST_PEER_CERT.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_UnloadCAs | ( | WOLFSSL_CTX * | ) |
This function unloads the CA signer list and frees the whole signer table.
ctx | a pointer to a WOLFSSL_CTX structure, created using wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_UnloadIntermediateCerts | ( | WOLFSSL_CTX * | ctx | ) |
This function unloads intermediate certificates added to the CA signer list and frees them.
ctx | a pointer to a WOLFSSL_CTX structure, created using wolfSSL_CTX_new(). |
Example
int wolfSSL_CTX_UseSessionTicket | ( | WOLFSSL_CTX * | ctx | ) |
This function sets wolfSSL context to use a session ticket.
ctx | The WOLFSSL_CTX structure to use. |
Example
int wolfSSL_disable_hrr_cookie | ( | WOLFSSL * | ssl | ) |
This function is called on the server side to indicate that a HelloRetryRequest message must NOT contain a Cookie and that, if using protocol DTLS v1.3, a cookie exchange will not be included in the handshake. Please note that not doing a cookie exchange when using protocol DTLS v1.3 can make the server susceptible to DoS/Amplification attacks.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
void wolfSSL_dtls13_set_send_more_acks | ( | WOLFSSL * | ssl, |
int | value | ||
) |
This function sets whether the library should send ACKs to the other peer immediately when detecting disruption or not. Sending ACKs immediately assures minimum latency but it may consume more bandwidth than necessary. If the application manages the timer by itself and this option is set to 0 then application code can use wolfSSL_dtls13_use_quick_timeout() to determine if it should setup a quicker timeout to send those delayed ACKs.
ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
value | 1 to set the option, 0 to disable the option |
int wolfSSL_dtls_set_timeout_init | ( | WOLFSSL * | ssl, |
int | |||
) |
This function sets the dtls timeout.
ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
timeout | an int type that will be set to the dtls_timeout_init member of the WOLFSSL structure. |
Example
void wolfSSL_free | ( | WOLFSSL * | ) |
This function frees an allocated wolfSSL object.
ssl | pointer to the SSL object, created with wolfSSL_new(). |
Example
WOLFSSL_SESSION* wolfSSL_get1_session | ( | WOLFSSL * | ssl | ) |
This function returns the WOLFSSL_SESSION from the WOLFSSL structure as a reference type. This requires calling wolfSSL_SESSION_free to release the session reference. The WOLFSSL_SESSION pointed to contains all the necessary information required to perform a session resumption and reestablish the connection without a new handshake. For session resumption, before calling wolfSSL_shutdown() with your session object, an application should save the session ID from the object with a call to wolfSSL_get1_session(), which returns a pointer to the session. Later, the application should create a new WOLFSSL object and assign the saved session with wolfSSL_set_session(). At this point, the application may call wolfSSL_connect() and wolfSSL will try to resume the session. The wolfSSL server code allows session resumption by default. The object returned by wolfSSL_get1_session() needs to be freed after the application is done with it by calling wolfSSL_SESSION_free() on it.
ssl | WOLFSSL structure to get session from. |
Example
size_t wolfSSL_get_client_random | ( | const WOLFSSL * | ssl, |
unsigned char * | out, | ||
size_t | outSz | ||
) |
This is used to get the random data sent by the client during the handshake.
ssl | WOLFSSL structure to get clients random data buffer from. |
out | buffer to hold random data. |
outSz | size of out buffer passed in. (if 0 function will return max buffer size needed) |
Example
long wolfSSL_get_options | ( | const WOLFSSL * | ssl | ) |
This function returns the current options mask.
ssl | WOLFSSL structure to get options mask from. |
Example
size_t wolfSSL_get_server_random | ( | const WOLFSSL * | ssl, |
unsigned char * | out, | ||
size_t | outlen | ||
) |
This is used to get the random data sent by the server during the handshake.
ssl | WOLFSSL structure to get clients random data buffer from. |
out | buffer to hold random data. |
outSz | size of out buffer passed in. (if 0 function will return max buffer size needed) |
Example
long wolfSSL_get_verify_result | ( | const WOLFSSL * | ssl | ) |
This is used to get the results after trying to verify the peer's certificate.
ssl | WOLFSSL structure to get verification results from. |
Example
void* wolfSSL_GetCookieCtx | ( | WOLFSSL * | ssl | ) |
This function returns the IOCB_CookieCtx member of the WOLFSSL structure.
ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
Example
WOLFSSL* wolfSSL_new | ( | WOLFSSL_CTX * | ) |
This function creates a new SSL session, taking an already created SSL context as input.
ctx | pointer to the SSL context, created with wolfSSL_CTX_new(). |
Example
int wolfSSL_no_dhe_psk | ( | WOLFSSL * | ssl | ) |
This function is called on a TLS v1.3 client or server wolfSSL to disallow Diffie-Hellman (DH) style key exchanges when handshakes are using pre-shared keys for authentication.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
Example
int wolfSSL_no_ticket_TLSv13 | ( | WOLFSSL * | ssl | ) |
This function is called on the server to stop it from sending a resumption session ticket once the handshake is complete.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
Example
int wolfSSL_NoKeyShares | ( | WOLFSSL * | ssl | ) |
This function is called to ensure no key shares are sent in the ClientHello. This will force the server to respond with a HelloRetryRequest if a key exchange is required in the handshake. Call this function when the expected key exchange group is not known and to avoid the generation of keys unnecessarily. Note that an extra round-trip will be required to complete the handshake when a key exchange is required.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
Example
int wolfSSL_send_hrr_cookie | ( | WOLFSSL * | ssl, |
const unsigned char * | secret, | ||
unsigned int | secretSz | ||
) |
This function is called on the server side to indicate that a HelloRetryRequest message must contain a Cookie and, in case of using protocol DTLS v1.3, that the handshake will always include a cookie exchange. Please note that when using protocol DTLS v1.3, the cookie exchange is enabled by default. The Cookie holds a hash of the current transcript so that another server process can handle the ClientHello in reply. The secret is used when generating the integrity check on the Cookie data.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
[in] | secret | a pointer to a buffer holding the secret. Passing NULL indicates to generate a new random secret. |
[in] | secretSz | Size of the secret in bytes. Passing 0 indicates to use the default size: WC_SHA256_DIGEST_SIZE (or WC_SHA_DIGEST_SIZE when SHA-256 not available). |
Example
int wolfSSL_SESSION_get_master_key | ( | const WOLFSSL_SESSION * | ses, |
unsigned char * | out, | ||
int | outSz | ||
) |
This is used to get the master key after completing a handshake.
ses | WOLFSSL_SESSION structure to get master secret buffer from. |
out | buffer to hold data. |
outSz | size of out buffer passed in. (if 0 function will return max buffer size needed) |
Example
int wolfSSL_SESSION_get_master_key_length | ( | const WOLFSSL_SESSION * | ses | ) |
This is used to get the master secret key length.
ses | WOLFSSL_SESSION structure to get master secret buffer from. |
Example
int wolfSSL_set1_groups_list | ( | WOLFSSL * | ssl, |
char * | list | ||
) |
This function sets the list of elliptic curve groups to allow on a wolfSSL in order of preference. The list is a null-terminated text string, and a colon-delimited list. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
[in] | list | a string that is a colon separated list of key exchange groups. |
Example
int wolfSSL_set_cipher_list | ( | WOLFSSL * | ssl, |
const char * | list | ||
) |
This function sets cipher suite list for a given WOLFSSL object (SSL session). The ciphers in the list should be sorted in order of preference from highest to lowest. Each call to wolfSSL_set_cipher_list() resets the cipher suite list for the specific SSL session to the provided list each time the function is called. The cipher suite list, list, is a null-terminated text string, and a colon-delimited list. For example, one value for list may be "DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:AES256-SHA256". Valid cipher values are the full name values from the cipher_names[] array in src/internal.c (for a definite list of valid cipher values check src/internal.c)
ssl | pointer to the SSL session, created with wolfSSL_new(). |
list | null-terminated text string and a colon-delimited list of cipher suites to use with the specified SSL session. |
Example
int wolfSSL_set_client_cert_type | ( | WOLFSSL * | ssl, |
const char * | buf, | ||
int | len | ||
) |
In case this function is called in a client side, set certificate types that can be sent to its peer. In case called in a server side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set.
ssl | WOLFSSL object pointer |
buf | A buffer where certificate types are stored |
len | buf size in bytes (same as number of certificate types included) Example int ret;
WOLFSSL* ssl;
char buf[] = {WOLFSSL_CERT_TYPE_RPK, WOLFSSL_CERT_TYPE_X509};
int len = sizeof(buf)/sizeof(char);
...
ret = wolfSSL_set_client_cert_type(ssl, buf, len);
int wolfSSL_set_client_cert_type(WOLFSSL *ssl, const char *buf, int len) In case this function is called in a client side, set certificate types that can be sent to its peer.... |
int wolfSSL_set_compression | ( | WOLFSSL * | ssl | ) |
Turns on the ability to use compression for the SSL connection. Both sides must have compression turned on otherwise compression will not be used. The zlib library performs the actual data compression. To compile into the library use –with-libz for the configure system and define HAVE_LIBZ otherwise. Keep in mind that while compressing data before sending decreases the actual size of the messages being sent and received, the amount of data saved by compression usually takes longer in time to analyze than it does to send it raw on all but the slowest of networks.
ssl | pointer to the SSL session, created with wolfSSL_new(). |
Example
int wolfSSL_set_dtls_fd_connected | ( | WOLFSSL * | ssl, |
int | fd | ||
) |
This function assigns a file descriptor (fd) as the input/output facility for the SSL connection. Typically this will be a socket file descriptor. This is a DTLS specific API because it marks that the socket is connected. recvfrom and sendto calls on this fd will have the addr and addr_len parameters set to NULL.
ssl | pointer to the SSL session, created with wolfSSL_new(). |
fd | file descriptor to use with SSL/TLS connection. |
Example
int wolfSSL_set_fd | ( | WOLFSSL * | ssl, |
int | fd | ||
) |
This function assigns a file descriptor (fd) as the input/output facility for the SSL connection. Typically this will be a socket file descriptor.
ssl | pointer to the SSL session, created with wolfSSL_new(). |
fd | file descriptor to use with SSL/TLS connection. |
Example
int wolfSSL_set_group_messages | ( | WOLFSSL * | ) |
This function turns on grouping of handshake messages where possible.
ssl | pointer to the SSL session, created with wolfSSL_new(). |
Example
int wolfSSL_set_groups | ( | WOLFSSL * | ssl, |
int * | groups, | ||
int | count | ||
) |
This function sets the list of elliptic curve groups to allow on a wolfSSL. The list is an array of group identifiers with the number of identifiers specified in count. Call this function to set the key exchange elliptic curve parameters to use with the TLS v1.3 connections.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
[in] | groups | a list of key exchange groups by identifier. |
[in] | count | the number of key exchange groups in groups. |
Example
int wolfSSL_set_max_early_data | ( | WOLFSSL * | ssl, |
unsigned int | sz | ||
) |
This function sets the maximum amount of early data that a TLS v1.3 client or server is willing to exchange. Call this function to limit the amount of early data to process to mitigate replay attacks. Early data is protected by keys derived from those of the connection that the session ticket was sent and therefore will be the same every time a session ticket is used in resumption. The value is included in the session ticket for resumption. A server value of zero indicates no early data is to be sent by client using session tickets. A client value of zero indicates that the client will not send any early data. It is recommended that the number of early data bytes be kept as low as practically possible in the application.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
[in] | sz | the amount of early data to accept from client in bytes. |
Example
int wolfSSL_set_msg_callback | ( | WOLFSSL * | ssl, |
SSL_Msg_Cb | cb | ||
) |
This function sets a callback in the ssl. The callback is to observe handshake messages. NULL value of cb resets the callback.
ssl | WOLFSSL structure to set callback argument. |
Example
int wolfSSL_set_msg_callback_arg | ( | WOLFSSL * | ssl, |
void * | arg | ||
) |
This function sets associated callback context value in the ssl. The value is handed over to the callback argument.
ssl | WOLFSSL structure to set callback argument. |
Example
long wolfSSL_set_options | ( | WOLFSSL * | s, |
long | op | ||
) |
This function sets the options mask in the ssl. Some valid options are, SSL_OP_ALL, SSL_OP_COOKIE_EXCHANGE, SSL_OP_NO_SSLv2, SSL_OP_NO_SSLv3, SSL_OP_NO_TLSv1, SSL_OP_NO_TLSv1_1, SSL_OP_NO_TLSv1_2, SSL_OP_NO_COMPRESSION.
s | WOLFSSL structure to set options mask. |
op | This function sets the options mask in the ssl. Some valid options are: SSL_OP_ALL SSL_OP_COOKIE_EXCHANGE SSL_OP_NO_SSLv2 SSL_OP_NO_SSLv3 SSL_OP_NO_TLSv1 SSL_OP_NO_TLSv1_1 SSL_OP_NO_TLSv1_2 SSL_OP_NO_COMPRESSION |
Example
void wolfSSL_set_psk_client_tls13_callback | ( | WOLFSSL * | ssl, |
wc_psk_client_tls13_callback | cb | ||
) |
This function sets the Pre-Shared Key (PSK) client side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the client_psk_tls13_cb member of the options field in WOLFSSL structure.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
[in] | cb | a Pre-Shared Key (PSK) callback for a TLS 1.3 client. |
Example
void wolfSSL_set_psk_server_tls13_callback | ( | WOLFSSL * | ssl, |
wc_psk_server_tls13_callback | cb | ||
) |
This function sets the Pre-Shared Key (PSK) server side callback for TLS v1.3 connections. The callback is used to find a PSK identity and return its key and the name of the cipher to use for the handshake. The function sets the server_psk_tls13_cb member of the options field in WOLFSSL structure.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
[in] | cb | a Pre-Shared Key (PSK) callback for a TLS 1.3 server. |
Example
int wolfSSL_set_server_cert_type | ( | WOLFSSL * | ssl, |
const char * | buf, | ||
int | len | ||
) |
In case this function is called in a server side, set certificate types that can be sent to its peer. In case called in a client side, set certificate types that can be acceptable from its peer. Put cert types in the buffer with prioritised order. To reset the settings to default, pass NULL for the buffer or pass zero for len. By default, certificate type is only X509. In case both side intend to send or accept "Raw public key" cert, WOLFSSL_CERT_TYPE_RPK should be included in the buffer to set.
ctx | WOLFSSL_CTX object pointer |
buf | A buffer where certificate types are stored |
len | buf size in bytes (same as number of certificate types included) Example int ret;
WOLFSSL* ssl;
char buf[] = {WOLFSSL_CERT_TYPE_RPK, WOLFSSL_CERT_TYPE_X509};
int len = sizeof(buf)/sizeof(char);
...
ret = wolfSSL_set_server_cert_type(ssl, buf, len);
int wolfSSL_set_server_cert_type(WOLFSSL *ssl, const char *buf, int len) In case this function is called in a server side, set certificate types that can be sent to its peer.... |
int wolfSSL_set_session | ( | WOLFSSL * | ssl, |
WOLFSSL_SESSION * | session | ||
) |
This function sets the session to be used when the SSL object, ssl, is used to establish a SSL/TLS connection. For session resumption, before calling wolfSSL_shutdown() with your session object, an application should save the session ID from the object with a call to wolfSSL_get1_session(), which returns a pointer to the session. Later, the application should create a new WOLFSSL object and assign the saved session with wolfSSL_set_session(). At this point, the application may call wolfSSL_connect() and wolfSSL will try to resume the session. The wolfSSL server code allows session resumption by default. The object returned by wolfSSL_get1_session() needs to be freed after the application is done with it by calling wolfSSL_SESSION_free() on it.
ssl | pointer to the SSL object, created with wolfSSL_new(). |
session | pointer to the WOLFSSL_SESSION used to set the session for ssl. |
Example
int wolfSSL_set_timeout | ( | WOLFSSL * | ssl, |
unsigned int | to | ||
) |
This function sets the SSL session timeout value in seconds.
ssl | pointer to the SSL object, created with wolfSSL_new(). |
to | value, in seconds, used to set the SSL session timeout. |
Example
long wolfSSL_set_tlsext_debug_arg | ( | WOLFSSL * | ssl, |
void * | arg | ||
) |
This is used to set the debug argument passed around.
ssl | WOLFSSL structure to set argument in. |
arg | argument to use. |
Example
void wolfSSL_set_using_nonblock | ( | WOLFSSL * | ssl, |
int | nonblock | ||
) |
This function informs the WOLFSSL object that the underlying I/O is non-blocking. After an application creates a WOLFSSL object, if it will be used with a non-blocking socket, call wolfSSL_set_using_nonblock() on it. This lets the WOLFSSL object know that receiving EWOULDBLOCK means that the recvfrom call would block rather than that it timed out.
ssl | pointer to the SSL session, created with wolfSSL_new(). |
nonblock | value used to set non-blocking flag on WOLFSSL object. Use 1 to specify non-blocking, otherwise 0. |
Example
void wolfSSL_set_verify | ( | WOLFSSL * | ssl, |
int | mode, | ||
VerifyCallback | verify_callback | ||
) |
This function sets the verification method for remote peers and also allows a verify callback to be registered with the SSL session. The verify callback will be called only when a verification failure has occurred. If no verify callback is desired, the NULL pointer can be used for verify_callback. The verification mode of peer certificates is a logically OR’d list of flags. The possible flag values include: SSL_VERIFY_NONE Client mode: the client will not verify the certificate received from the server and the handshake will continue as normal. Server mode: the server will not send a certificate request to the client. As such, client verification will not be enabled. SSL_VERIFY_PEER Client mode: the client will verify the certificate received from the server during the handshake. This is turned on by default in wolfSSL, therefore, using this option has no effect. Server mode: the server will send a certificate request to the client and verify the client certificate received. SSL_VERIFY_FAIL_IF_NO_PEER_CERT Client mode: no effect when used on the client side. Server mode: the verification will fail on the server side if the client fails to send a certificate when requested to do so (when using SSL_VERIFY_PEER on the SSL server). SSL_VERIFY_FAIL_EXCEPT_PSK Client mode: no effect when used on the client side. Server mode: the verification is the same as SSL_VERIFY_FAIL_IF_NO_PEER_CERT except in the case of a PSK connection. If a PSK connection is being made then the connection will go through without a peer cert.
ssl | pointer to the SSL session, created with wolfSSL_new(). |
mode | flags indicating verification mode for peer's cert. |
verify_callback | callback to be called when verification fails. If no callback is desired, the NULL pointer can be used for verify_callback. |
Example
int wolfSSL_SetIO_ISOTP | ( | WOLFSSL * | ssl, |
isotp_wolfssl_ctx * | ctx, | ||
can_recv_fn | recv_fn, | ||
can_send_fn | send_fn, | ||
can_delay_fn | delay_fn, | ||
word32 | receive_delay, | ||
char * | receive_buffer, | ||
int | receive_buffer_size, | ||
void * | arg | ||
) |
This function sets up the ISO-TP context if wolfSSL, for use when wolfSSL is compiled with WOLFSSL_ISOTP.
ssl | the wolfSSL context |
ctx | a user created ISOTP context which this function initializes |
recv_fn | a user CAN bus receive callback |
send_fn | a user CAN bus send callback |
delay_fn | a user microsecond granularity delay function |
receive_delay | a set amount of microseconds to delay each CAN bus packet |
receive_buffer | a user supplied buffer to receive data, recommended that is allocated to ISOTP_DEFAULT_BUFFER_SIZE bytes |
receive_buffer_size | - The size of receive_buffer |
arg | an arbitrary pointer sent to recv_fn and send_fn |
Example
int wolfSSL_SetVersion | ( | WOLFSSL * | ssl, |
int | version | ||
) |
This function sets the SSL/TLS protocol version for the specified SSL session (WOLFSSL object) using the version as specified by version. This will override the protocol setting for the SSL session (ssl) - originally defined and set by the SSL context (wolfSSL_CTX_new()) method type.
ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
version | SSL/TLS protocol version. Possible values include WOLFSSL_SSLV3, WOLFSSL_TLSV1, WOLFSSL_TLSV1_1, WOLFSSL_TLSV1_2. |
Example
int wolfSSL_state | ( | WOLFSSL * | ssl | ) |
This is used to get the internal error state of the WOLFSSL structure.
Example
int wolfSSL_use_certificate | ( | WOLFSSL * | ssl, |
WOLFSSL_X509 * | x509 | ||
) |
his is used to set the certificate for WOLFSSL structure to use during a handshake.
ssl | WOLFSSL structure to set certificate in. |
x509 | certificate to use. |
Example
int wolfSSL_use_certificate_ASN1 | ( | WOLFSSL * | ssl, |
unsigned char * | der, | ||
int | derSz | ||
) |
This is used to set the certificate for WOLFSSL structure to use during a handshake. A DER formatted buffer is expected.
ssl | WOLFSSL structure to set certificate in. |
der | DER certificate to use. |
derSz | size of the DER buffer passed in. |
Example
int wolfSSL_use_old_poly | ( | WOLFSSL * | ssl, |
int | value | ||
) |
Since there is some differences between the first release and newer versions of chacha-poly AEAD construction we have added an option to communicate with servers/clients using the older version. By default wolfSSL uses the new version.
ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
value | whether or not to use the older version of setting up the information for poly1305. Passing a flag value of 1 indicates yes use the old poly AEAD, to switch back to using the new version pass a flag value of 0. |
Example
int wolfSSL_UseALPN | ( | WOLFSSL * | ssl, |
char * | protocol_name_list, | ||
unsigned int | protocol_name_listSz, | ||
unsigned char | options | ||
) |
Setup ALPN use for a wolfSSL session.
ssl | The wolfSSL session to use. |
protocol_name_list | List of protocol names to use. Comma delimited string is required. |
protocol_name_listSz | Size of the list of protocol names. |
options | WOLFSSL_ALPN_CONTINUE_ON_MISMATCH or WOLFSSL_ALPN_FAILED_ON_MISMATCH. |
Example
int wolfSSL_UseKeyShare | ( | WOLFSSL * | ssl, |
word16 | group | ||
) |
This function creates a key share entry from the group including generating a key pair. The KeyShare extension contains all the generated public keys for key exchange. If this function is called, then only the groups specified will be included. Call this function when a preferred group has been previously established for the server.
[in,out] | ssl | a pointer to a WOLFSSL structure, created using wolfSSL_new(). |
[in] | group | a key exchange group identifier. |
Example
WOLFSSL_METHOD* wolfSSLv23_client_method | ( | void | ) |
The wolfSSLv23_client_method() function is used to indicate that the application is a client and will support the highest protocol version supported by the server between SSL 3.0 - TLS 1.3. This function allocates memory for and initializes a new WOLFSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new(). Both wolfSSL clients and servers have robust version downgrade capability. If a specific protocol version method is used on either side, then only that version will be negotiated or an error will be returned. For example, a client that uses TLSv1 and tries to connect to a SSLv3 only server will fail, likewise connecting to a TLSv1.1 will fail as well. To resolve this issue, a client that uses the wolfSSLv23_client_method() function will use the highest protocol version supported by the server and downgrade to SSLv3 if needed. In this case, the client will be able to connect to a server running SSLv3 - TLSv1.3.
none | No parameters |
Example
WOLFSSL_METHOD* wolfSSLv23_method | ( | void | ) |
This function returns a WOLFSSL_METHOD similar to wolfSSLv23_client_method except that it is not determined which side yet (server/client).
none | No parameters. |
Example
WOLFSSL_METHOD* wolfSSLv23_server_method | ( | void | ) |
The wolfSSLv23_server_method() function is used to indicate that the application is a server and will support clients connecting with protocol version from SSL 3.0 - TLS 1.3. This function allocates memory for and initializes a new WOLFSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters |
Example
WOLFSSL_METHOD* wolfSSLv3_client_method | ( | void | ) |
The wolfSSLv3_client_method() function is used to indicate that the application is a client and will only support the SSL 3.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example
WOLFSSL_METHOD* wolfSSLv3_server_method | ( | void | ) |
The wolfSSLv3_server_method() function is used to indicate that the application is a server and will only support the SSL 3.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example
WOLFSSL_METHOD* wolfTLSv1_1_client_method | ( | void | ) |
The wolfTLSv1_1_client_method() function is used to indicate that the application is a client and will only support the TLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example
WOLFSSL_METHOD* wolfTLSv1_1_server_method | ( | void | ) |
The wolfTLSv1_1_server_method() function is used to indicate that the application is a server and will only support the TLS 1.1 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example
WOLFSSL_METHOD* wolfTLSv1_2_client_method | ( | void | ) |
The wolfTLSv1_2_client_method() function is used to indicate that the application is a client and will only support the TLS 1.2 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example
WOLFSSL_METHOD* wolfTLSv1_2_server_method | ( | void | ) |
The wolfTLSv1_2_server_method() function is used to indicate that the application is a server and will only support the TLS 1.2 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example
WOLFSSL_METHOD* wolfTLSv1_3_client_method | ( | void | ) |
This function is used to indicate that the application is a client and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
Example
WOLFSSL_METHOD* wolfTLSv1_3_client_method_ex | ( | void * | heap | ) |
This function is used to indicate that the application is a client and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
[in] | heap | a pointer to a buffer that the static memory allocator will use during dynamic memory allocation. |
Example
WOLFSSL_METHOD* wolfTLSv1_3_method | ( | void | ) |
This function returns a WOLFSSL_METHOD similar to wolfTLSv1_3_client_method except that it is not determined which side yet (server/client).
Example
WOLFSSL_METHOD* wolfTLSv1_3_method_ex | ( | void * | heap | ) |
This function returns a WOLFSSL_METHOD similar to wolfTLSv1_3_client_method except that it is not determined which side yet (server/client).
[in] | heap | a pointer to a buffer that the static memory allocator will use during dynamic memory allocation. |
Example
WOLFSSL_METHOD* wolfTLSv1_3_server_method | ( | void | ) |
This function is used to indicate that the application is a server and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
Example
WOLFSSL_METHOD* wolfTLSv1_3_server_method_ex | ( | void * | heap | ) |
This function is used to indicate that the application is a server and will only support the TLS 1.3 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
[in] | heap | a pointer to a buffer that the static memory allocator will use during dynamic memory allocation. |
Example
WOLFSSL_METHOD* wolfTLSv1_client_method | ( | void | ) |
The wolfTLSv1_client_method() function is used to indicate that the application is a client and will only support the TLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example
WOLFSSL_METHOD* wolfTLSv1_server_method | ( | void | ) |
The wolfTLSv1_server_method() function is used to indicate that the application is a server and will only support the TLS 1.0 protocol. This function allocates memory for and initializes a new wolfSSL_METHOD structure to be used when creating the SSL/TLS context with wolfSSL_CTX_new().
none | No parameters. |
Example