SSL_CTX_set_ssl_version() is intended to adapt an SSL_CTX to a new (presumably, fixed-version) SSL_METHOD, filtering down the cipher list to ciphers that are supported by the new method. However, there is no TLS 1.3-specific method, so f...
LIBS := CSSL #include <openssl/ssl.h> int SSL_CTX_set_max_proto_version(SSL_CTX* ctx, int version) ctx A pointer to a token returned on the SSL_CTX_new or the SSL_CTX_new_shared function call. version Must be one of the following values: TLS1_VERSION TLS1_1_VERSION TLS1_2...
This function sets the minimum supported protocol versions for the CTX. Last updated Added in 2019. Format LIBS := CSSL #include <openssl/ssl.h> int SSL_CTX_set_min_proto_version(SSL_CTX* ctx, int version) ctx A pointer to a token returned on the SSL_CTX_new or the SSL_CTX_new_...