Lines Matching refs:__owur

633 OSSL_DEPRECATEDIN_3_0 __owur int SSL_SRP_CTX_init(SSL *s);
634 OSSL_DEPRECATEDIN_3_0 __owur int SSL_CTX_SRP_CTX_init(SSL_CTX *ctx);
637 OSSL_DEPRECATEDIN_3_0 __owur int SSL_srp_server_param_with_username(SSL *s,
639 OSSL_DEPRECATEDIN_3_0 __owur int SRP_Calc_A_param(SSL *s);
731 __owur int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e);
783 __owur int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
792 __owur int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
794 __owur int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
831 __owur int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint);
832 __owur int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);
855 __owur int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx,
858 __owur int SSL_CTX_add_client_custom_ext(SSL_CTX *ctx,
866 __owur int SSL_CTX_add_server_custom_ext(SSL_CTX *ctx,
874 __owur int SSL_CTX_add_custom_ext(SSL_CTX *ctx, unsigned int ext_type,
882 __owur int SSL_extension_supported(unsigned int ext_type);
1511 __owur const BIO_METHOD *BIO_f_ssl(void);
1512 __owur BIO *BIO_new_ssl(SSL_CTX *ctx, int client);
1513 __owur BIO *BIO_new_ssl_connect(SSL_CTX *ctx);
1514 __owur BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx);
1515 __owur int BIO_ssl_copy_session_id(BIO *to, BIO *from);
1518 __owur int SSL_CTX_set_cipher_list(SSL_CTX *, const char *str);
1519 __owur SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth);
1520 __owur SSL_CTX *SSL_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
1524 __owur long SSL_CTX_set_timeout(SSL_CTX *ctx, long t);
1525 __owur long SSL_CTX_get_timeout(const SSL_CTX *ctx);
1526 __owur X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *);
1529 __owur int SSL_want(const SSL *s);
1530 __owur int SSL_clear(SSL *s);
1534 __owur const SSL_CIPHER *SSL_get_current_cipher(const SSL *s);
1535 __owur const SSL_CIPHER *SSL_get_pending_cipher(const SSL *s);
1536 __owur int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits);
1537 __owur const char *SSL_CIPHER_get_version(const SSL_CIPHER *c);
1538 __owur const char *SSL_CIPHER_get_name(const SSL_CIPHER *c);
1539 __owur const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c);
1540 __owur const char *OPENSSL_cipher_name(const char *rfc_name);
1541 __owur uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *c);
1542 __owur uint16_t SSL_CIPHER_get_protocol_id(const SSL_CIPHER *c);
1543 __owur int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c);
1544 __owur int SSL_CIPHER_get_auth_nid(const SSL_CIPHER *c);
1545 __owur const EVP_MD *SSL_CIPHER_get_handshake_digest(const SSL_CIPHER *c);
1546 __owur int SSL_CIPHER_is_aead(const SSL_CIPHER *c);
1548 __owur int SSL_get_fd(const SSL *s);
1549 __owur int SSL_get_rfd(const SSL *s);
1550 __owur int SSL_get_wfd(const SSL *s);
1551 __owur const char *SSL_get_cipher_list(const SSL *s, int n);
1552 __owur char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size);
1553 __owur int SSL_get_read_ahead(const SSL *s);
1554 __owur int SSL_pending(const SSL *s);
1555 __owur int SSL_has_pending(const SSL *s);
1557 __owur int SSL_set_fd(SSL *s, int fd);
1558 __owur int SSL_set_rfd(SSL *s, int fd);
1559 __owur int SSL_set_wfd(SSL *s, int fd);
1564 __owur BIO *SSL_get_rbio(const SSL *s);
1565 __owur BIO *SSL_get_wbio(const SSL *s);
1566 __owur int SSL_set_cipher_list(SSL *s, const char *str);
1567 __owur int SSL_CTX_set_ciphersuites(SSL_CTX *ctx, const char *str);
1568 __owur int SSL_set_ciphersuites(SSL *s, const char *str);
1570 __owur int SSL_get_verify_mode(const SSL *s);
1571 __owur int SSL_get_verify_depth(const SSL *s);
1572 __owur SSL_verify_cb SSL_get_verify_callback(const SSL *s);
1577 OSSL_DEPRECATEDIN_3_0 __owur int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);
1579 __owur int SSL_use_RSAPrivateKey_ASN1(SSL *ssl,
1582 __owur int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);
1583 __owur int SSL_use_PrivateKey_ASN1(int pk, SSL *ssl, const unsigned char *d,
1585 __owur int SSL_use_certificate(SSL *ssl, X509 *x);
1586 __owur int SSL_use_certificate_ASN1(SSL *ssl, const unsigned char *d, int len);
1587 __owur int SSL_use_cert_and_key(SSL *ssl, X509 *x509, EVP_PKEY *privatekey,
1596 __owur int SSL_CTX_use_serverinfo(SSL_CTX *ctx, const unsigned char *serverinfo,
1598 __owur int SSL_CTX_use_serverinfo_ex(SSL_CTX *ctx, unsigned int version,
1601 __owur int SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file);
1605 __owur int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type);
1608 __owur int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type);
1609 __owur int SSL_use_certificate_file(SSL *ssl, const char *file, int type);
1613 __owur int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file,
1616 __owur int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file,
1618 __owur int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file,
1621 __owur int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file);
1622 __owur int SSL_use_certificate_chain_file(SSL *ssl, const char *file);
1623 __owur STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file);
1624 __owur STACK_OF(X509_NAME)
1627 __owur int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs,
1640 __owur const char *SSL_state_string(const SSL *s);
1641 __owur const char *SSL_rstate_string(const SSL *s);
1642 __owur const char *SSL_state_string_long(const SSL *s);
1643 __owur const char *SSL_rstate_string_long(const SSL *s);
1644 __owur long SSL_SESSION_get_time(const SSL_SESSION *s);
1645 __owur long SSL_SESSION_set_time(SSL_SESSION *s, long t);
1646 __owur long SSL_SESSION_get_timeout(const SSL_SESSION *s);
1647 __owur long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
1648 __owur int SSL_SESSION_get_protocol_version(const SSL_SESSION *s);
1649 __owur int SSL_SESSION_set_protocol_version(SSL_SESSION *s, int version);
1651 __owur const char *SSL_SESSION_get0_hostname(const SSL_SESSION *s);
1652 __owur int SSL_SESSION_set1_hostname(SSL_SESSION *s, const char *hostname);
1656 __owur int SSL_SESSION_set1_alpn_selected(SSL_SESSION *s,
1659 __owur const SSL_CIPHER *SSL_SESSION_get0_cipher(const SSL_SESSION *s);
1660 __owur int SSL_SESSION_set_cipher(SSL_SESSION *s, const SSL_CIPHER *cipher);
1661 __owur int SSL_SESSION_has_ticket(const SSL_SESSION *s);
1662 __owur unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s);
1665 __owur uint32_t SSL_SESSION_get_max_early_data(const SSL_SESSION *s);
1666 __owur int SSL_SESSION_set_max_early_data(SSL_SESSION *s,
1668 __owur int SSL_copy_session_id(SSL *to, const SSL *from);
1669 __owur X509 *SSL_SESSION_get0_peer(SSL_SESSION *s);
1670 __owur int SSL_SESSION_set1_id_context(SSL_SESSION *s,
1673 __owur int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid,
1675 __owur int SSL_SESSION_is_resumable(const SSL_SESSION *s);
1677 __owur SSL_SESSION *SSL_SESSION_new(void);
1678 __owur SSL_SESSION *SSL_SESSION_dup(const SSL_SESSION *src);
1683 __owur unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s);
1691 __owur int i2d_SSL_SESSION(const SSL_SESSION *in, unsigned char **pp);
1692 __owur int SSL_set_session(SSL *to, SSL_SESSION *session);
1695 __owur int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb);
1696 __owur int SSL_set_generate_session_id(SSL *s, GEN_SESSION_CB cb);
1697 __owur int SSL_has_matching_session_id(const SSL *s,
1704 __owur X509 *SSL_get0_peer_certificate(const SSL *s);
1705 __owur X509 *SSL_get1_peer_certificate(const SSL *s);
1712 __owur STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s);
1714 __owur int SSL_CTX_get_verify_mode(const SSL_CTX *ctx);
1715 __owur int SSL_CTX_get_verify_depth(const SSL_CTX *ctx);
1716 __owur SSL_verify_cb SSL_CTX_get_verify_callback(const SSL_CTX *ctx);
1726 __owur int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
1728 __owur int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, const unsigned char *d,
1731 __owur int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
1732 __owur int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx,
1734 __owur int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
1735 __owur int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len,
1737 __owur int SSL_CTX_use_cert_and_key(SSL_CTX *ctx, X509 *x509, EVP_PKEY *privatekey,
1749 __owur int SSL_CTX_check_private_key(const SSL_CTX *ctx);
1750 __owur int SSL_check_private_key(const SSL *ctx);
1752 __owur int SSL_CTX_set_session_id_context(SSL_CTX *ctx,
1759 __owur int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
1762 __owur int SSL_CTX_set_purpose(SSL_CTX *ctx, int purpose);
1763 __owur int SSL_set_purpose(SSL *ssl, int purpose);
1764 __owur int SSL_CTX_set_trust(SSL_CTX *ctx, int trust);
1765 __owur int SSL_set_trust(SSL *ssl, int trust);
1767 __owur int SSL_set1_host(SSL *s, const char *hostname);
1768 __owur int SSL_add1_host(SSL *s, const char *hostname);
1769 __owur const char *SSL_get0_peername(SSL *s);
1772 __owur int SSL_CTX_dane_enable(SSL_CTX *ctx);
1773 __owur int SSL_CTX_dane_mtype_set(SSL_CTX *ctx, const EVP_MD *md,
1775 __owur int SSL_dane_enable(SSL *s, const char *basedomain);
1776 __owur int SSL_dane_tlsa_add(SSL *s, uint8_t usage, uint8_t selector,
1778 __owur int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki);
1779 __owur int SSL_get0_dane_tlsa(SSL *s, uint8_t *usage, uint8_t *selector,
1795 __owur int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm);
1796 __owur int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm);
1798 __owur X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx);
1799 __owur X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl);
1824 OSSL_DEPRECATEDIN_3_0 __owur BIGNUM *SSL_get_srp_g(SSL *s);
1825 OSSL_DEPRECATEDIN_3_0 __owur BIGNUM *SSL_get_srp_N(SSL *s);
1827 OSSL_DEPRECATEDIN_3_0 __owur char *SSL_get_srp_username(SSL *s);
1828 OSSL_DEPRECATEDIN_3_0 __owur char *SSL_get_srp_userinfo(SSL *s);
1860 __owur int SSL_waiting_for_async(SSL *s);
1861 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
1862 __owur int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd,
1865 __owur int SSL_CTX_set_async_callback(SSL_CTX *ctx, SSL_async_callback_fn callback);
1866 __owur int SSL_CTX_set_async_callback_arg(SSL_CTX *ctx, void *arg);
1867 __owur int SSL_set_async_callback(SSL *s, SSL_async_callback_fn callback);
1868 __owur int SSL_set_async_callback_arg(SSL *s, void *arg);
1869 __owur int SSL_get_async_status(SSL *s, int *status);
1872 __owur int SSL_accept(SSL *ssl);
1873 __owur int SSL_stateless(SSL *s);
1874 __owur int SSL_connect(SSL *ssl);
1875 __owur int SSL_read(SSL *ssl, void *buf, int num);
1876 __owur int SSL_read_ex(SSL *ssl, void *buf, size_t num, size_t *readbytes);
1882 __owur int SSL_read_early_data(SSL *s, void *buf, size_t num,
1884 __owur int SSL_peek(SSL *ssl, void *buf, int num);
1885 __owur int SSL_peek_ex(SSL *ssl, void *buf, size_t num, size_t *readbytes);
1886 __owur ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size,
1888 __owur int SSL_write(SSL *ssl, const void *buf, int num);
1889 __owur int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written);
1890 __owur int SSL_write_early_data(SSL *s, const void *buf, size_t num,
1901 __owur int SSL_get_early_data_status(const SSL *s);
1903 __owur int SSL_get_error(const SSL *s, int ret_code);
1904 __owur const char *SSL_get_version(const SSL *s);
1909 __owur int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth);
1914 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *SSLv3_method(void); /* SSLv3 */
1915 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *SSLv3_server_method(void);
1916 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *SSLv3_client_method(void);
1925 __owur const SSL_METHOD *TLS_method(void);
1926 __owur const SSL_METHOD *TLS_server_method(void);
1927 __owur const SSL_METHOD *TLS_client_method(void);
1931 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_method(void); /* TLSv1.0 */
1932 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_server_method(void);
1933 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_client_method(void);
1939 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_1_method(void); /* TLSv1.1 */
1940 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_1_server_method(void);
1941 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_1_client_method(void);
1947 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_2_method(void); /* TLSv1.2 */
1948 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_2_server_method(void);
1949 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_2_client_method(void);
1955 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_method(void); /* DTLSv1.0 */
1956 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_server_method(void);
1957 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_client_method(void);
1964 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_2_method(void);
1965 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_2_server_method(void);
1966 OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_2_client_method(void);
1970 __owur const SSL_METHOD *DTLS_method(void); /* DTLS 1.0 and 1.2 */
1971 __owur const SSL_METHOD *DTLS_server_method(void); /* DTLS 1.0 and 1.2 */
1972 __owur const SSL_METHOD *DTLS_client_method(void); /* DTLS 1.0 and 1.2 */
1974 __owur size_t DTLS_get_data_mtu(const SSL *s);
1976 __owur STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s);
1977 __owur STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx);
1978 __owur STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s);
1979 __owur STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s);
1981 __owur int SSL_do_handshake(SSL *s);
1986 __owur int SSL_renegotiate_pending(const SSL *s);
1989 __owur int SSL_verify_client_post_handshake(SSL *s);
1993 __owur const SSL_METHOD *SSL_CTX_get_ssl_method(const SSL_CTX *ctx);
1994 __owur const SSL_METHOD *SSL_get_ssl_method(const SSL *s);
1995 __owur int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method);
1996 __owur const char *SSL_alert_type_string_long(int value);
1997 __owur const char *SSL_alert_type_string(int value);
1998 __owur const char *SSL_alert_desc_string_long(int value);
1999 __owur const char *SSL_alert_desc_string(int value);
2003 __owur const STACK_OF(X509_NAME) *SSL_get0_CA_list(const SSL *s);
2004 __owur const STACK_OF(X509_NAME) *SSL_CTX_get0_CA_list(const SSL_CTX *ctx);
2005 __owur int SSL_add1_to_CA_list(SSL *ssl, const X509 *x);
2006 __owur int SSL_CTX_add1_to_CA_list(SSL_CTX *ctx, const X509 *x);
2007 __owur const STACK_OF(X509_NAME) *SSL_get0_peer_CA_list(const SSL *s);
2011 __owur STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s);
2012 __owur STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *s);
2013 __owur int SSL_add_client_CA(SSL *ssl, X509 *x);
2014 __owur int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x);
2019 __owur long SSL_get_default_timeout(const SSL *s);
2025 __owur char *SSL_CIPHER_description(const SSL_CIPHER *, char *buf, int size);
2026 __owur STACK_OF(X509_NAME) *SSL_dup_CA_list(const STACK_OF(X509_NAME) *sk);
2028 __owur SSL *SSL_dup(SSL *ssl);
2030 __owur X509 *SSL_get_certificate(const SSL *ssl);
2036 __owur X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx);
2037 __owur EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx);
2040 __owur int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx);
2042 __owur int SSL_get_quiet_shutdown(const SSL *ssl);
2044 __owur int SSL_get_shutdown(const SSL *ssl);
2045 __owur int SSL_version(const SSL *ssl);
2046 __owur int SSL_client_version(const SSL *s);
2047 __owur int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx);
2048 __owur int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx);
2049 __owur int SSL_CTX_set_default_verify_file(SSL_CTX *ctx);
2050 __owur int SSL_CTX_set_default_verify_store(SSL_CTX *ctx);
2051 __owur int SSL_CTX_load_verify_file(SSL_CTX *ctx, const char *CAfile);
2052 __owur int SSL_CTX_load_verify_dir(SSL_CTX *ctx, const char *CApath);
2053 __owur int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore);
2054 __owur int SSL_CTX_load_verify_locations(SSL_CTX *ctx,
2058 __owur SSL_SESSION *SSL_get_session(const SSL *ssl);
2059 __owur SSL_SESSION *SSL_get1_session(SSL *ssl); /* obtain a reference count */
2060 __owur SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl);
2066 __owur OSSL_HANDSHAKE_STATE SSL_get_state(const SSL *ssl);
2069 __owur long SSL_get_verify_result(const SSL *ssl);
2070 __owur STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s);
2072 __owur size_t SSL_get_client_random(const SSL *ssl, unsigned char *out,
2074 __owur size_t SSL_get_server_random(const SSL *ssl, unsigned char *out,
2076 __owur size_t SSL_SESSION_get_master_key(const SSL_SESSION *sess,
2078 __owur int SSL_SESSION_set1_master_key(SSL_SESSION *sess,
2084 __owur int SSL_set_ex_data(SSL *ssl, int idx, void *data);
2088 __owur int SSL_SESSION_set_ex_data(SSL_SESSION *ss, int idx, void *data);
2092 __owur int SSL_CTX_set_ex_data(SSL_CTX *ssl, int idx, void *data);
2095 __owur int SSL_get_ex_data_X509_STORE_CTX_idx(void);
2151 __owur const COMP_METHOD *SSL_get_current_compression(const SSL *s);
2152 __owur const COMP_METHOD *SSL_get_current_expansion(const SSL *s);
2153 __owur const char *SSL_COMP_get_name(const COMP_METHOD *comp);
2154 __owur const char *SSL_COMP_get0_name(const SSL_COMP *comp);
2155 __owur int SSL_COMP_get_id(const SSL_COMP *comp);
2157 __owur STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP)
2162 __owur int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm);
2172 __owur int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len);
2174 __owur int SSL_set_session_ticket_ext_cb(SSL *s,
2179 __owur int SSL_set_session_secret_cb(SSL *s,
2215 __owur int SSL_session_reused(const SSL *s);
2216 __owur int SSL_is_server(const SSL *s);
2218 __owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);
2222 __owur unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx,
2224 __owur int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre);
2229 __owur int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value);
2230 __owur int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv);
2231 __owur int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);
2403 __owur int SSL_get_security_level(const SSL *s);
2413 __owur void *SSL_get0_security_ex_data(const SSL *s);
2416 __owur int SSL_CTX_get_security_level(const SSL_CTX *ctx);
2428 __owur void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx);
2440 __owur const struct openssl_ssl_test_functions *SSL_test_functions(void);
2443 __owur int SSL_free_buffers(SSL *ssl);
2444 __owur int SSL_alloc_buffers(SSL *ssl);