Add S/MIME support with SM algorithms

This commit is contained in:
Zhi Guan
2019-02-13 22:03:23 +08:00
parent 7fb6f48802
commit 258e44ea89
7 changed files with 5677 additions and 5429 deletions

View File

@@ -1,3 +1,51 @@
/* ====================================================================
* Copyright (c) 2016 - 2019 The GmSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgment:
* "This product includes software developed by the GmSSL Project.
* (http://gmssl.org/)"
*
* 4. The name "GmSSL Project" must not be used to endorse or promote
* products derived from this software without prior written
* permission. For written permission, please contact
* guanzhi1980@gmail.com.
*
* 5. Products derived from this software may not be called "GmSSL"
* nor may "GmSSL" appear in their names without prior written
* permission of the GmSSL Project.
*
* 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the GmSSL Project
* (http://gmssl.org/)"
*
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*/
/*
* Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
*
@@ -472,6 +520,19 @@ static int ec_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
X509_ALGOR_set0(alg2, OBJ_nid2obj(snid), V_ASN1_UNDEF, 0);
}
return 1;
#ifndef OPENSSL_NO_SM2
case ASN1_PKEY_CTRL_PKCS7_ENCRYPT:
if (arg1 == 0) {
X509_ALGOR *alg = NULL;
PKCS7_RECIP_INFO_get0_alg(arg2, &alg);
if (alg) {
X509_ALGOR_set0(alg, OBJ_nid2obj(NID_sm2encrypt_with_sm3), V_ASN1_NULL, 0);
}
}
return 1;
#endif
#ifndef OPENSSL_NO_CMS
case ASN1_PKEY_CTRL_CMS_SIGN:
if (arg1 == 0) {

View File

@@ -1,3 +1,51 @@
/* ====================================================================
* Copyright (c) 2016 - 2019 The GmSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgment:
* "This product includes software developed by the GmSSL Project.
* (http://gmssl.org/)"
*
* 4. The name "GmSSL Project" must not be used to endorse or promote
* products derived from this software without prior written
* permission. For written permission, please contact
* guanzhi1980@gmail.com.
*
* 5. Products derived from this software may not be called "GmSSL"
* nor may "GmSSL" appear in their names without prior written
* permission of the GmSSL Project.
*
* 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the GmSSL Project
* (http://gmssl.org/)"
*
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*/
/*
* Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
*
@@ -540,6 +588,14 @@ static int pkey_ec_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
case EVP_PKEY_CTRL_CMS_SIGN:
return 1;
#ifndef OPENSSL_NO_SM2
case EVP_PKEY_CTRL_PKCS7_ENCRYPT:
case EVP_PKEY_CTRL_PKCS7_DECRYPT:
case EVP_PKEY_CTRL_CMS_DECRYPT:
case EVP_PKEY_CTRL_CMS_ENCRYPT:
return 1;
#endif
default:
return -2;

View File

@@ -1,3 +1,51 @@
/* ====================================================================
* Copyright (c) 2016 - 2019 The GmSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgment:
* "This product includes software developed by the GmSSL Project.
* (http://gmssl.org/)"
*
* 4. The name "GmSSL Project" must not be used to endorse or promote
* products derived from this software without prior written
* permission. For written permission, please contact
* guanzhi1980@gmail.com.
*
* 5. Products derived from this software may not be called "GmSSL"
* nor may "GmSSL" appear in their names without prior written
* permission of the GmSSL Project.
*
* 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the GmSSL Project
* (http://gmssl.org/)"
*
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*/
/*
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
*
@@ -14,6 +62,9 @@
#include <openssl/x509.h>
#include <openssl/x509v3.h>
#include <openssl/err.h>
#ifndef OPENSSL_NO_SM2
# include <openssl/sm2.h>
#endif
static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
void *value);
@@ -105,6 +156,13 @@ static int pkcs7_encode_rinfo(PKCS7_RECIP_INFO *ri,
if (EVP_PKEY_encrypt_init(pctx) <= 0)
goto err;
#ifndef OPENSSL_NO_SM2
if (OBJ_obj2nid(ri->key_enc_algor->algorithm) == NID_sm2encrypt_with_sm3) {
EVP_PKEY_CTX_set_ec_scheme(pctx, NID_sm_scheme);
EVP_PKEY_CTX_set_ec_encrypt_param(pctx, NID_sm3);
}
#endif
if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_ENCRYPT,
EVP_PKEY_CTRL_PKCS7_ENCRYPT, 0, ri) <= 0) {
PKCS7err(PKCS7_F_PKCS7_ENCODE_RINFO, PKCS7_R_CTRL_ERROR);
@@ -152,6 +210,13 @@ static int pkcs7_decrypt_rinfo(unsigned char **pek, int *peklen,
if (EVP_PKEY_decrypt_init(pctx) <= 0)
goto err;
#ifndef OPENSSL_NO_SM2
if (OBJ_obj2nid(ri->key_enc_algor->algorithm) == NID_sm2encrypt_with_sm3) {
EVP_PKEY_CTX_set_ec_scheme(pctx, NID_sm_scheme);
EVP_PKEY_CTX_set_ec_encrypt_param(pctx, NID_sm3);
}
#endif
if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DECRYPT,
EVP_PKEY_CTRL_PKCS7_DECRYPT, 0, ri) <= 0) {
PKCS7err(PKCS7_F_PKCS7_DECRYPT_RINFO, PKCS7_R_CTRL_ERROR);
@@ -832,6 +897,12 @@ int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
if (EVP_DigestSignInit(mctx, &pctx, md, NULL, si->pkey) <= 0)
goto err;
#ifndef OPENSSL_NO_SM2
if (OBJ_obj2nid(si->digest_enc_alg->algorithm) == NID_sm2sign_with_sm3) {
EVP_PKEY_CTX_set_ec_scheme(pctx, NID_sm_scheme);
}
#endif
if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
EVP_PKEY_CTRL_PKCS7_SIGN, 0, si) <= 0) {
PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
@@ -940,6 +1011,9 @@ int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
STACK_OF(X509_ATTRIBUTE) *sk;
BIO *btmp;
EVP_PKEY *pkey;
#ifndef OPENSSL_NO_SM2
EVP_PKEY_CTX *pctx;
#endif
mdc_tmp = EVP_MD_CTX_new();
if (mdc_tmp == NULL) {
@@ -985,6 +1059,13 @@ int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
if (!EVP_MD_CTX_copy_ex(mdc_tmp, mdc))
goto err;
os = si->enc_digest;
pkey = X509_get0_pubkey(x509);
if (!pkey) {
ret = -1;
goto err;
}
sk = si->auth_attr;
if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0)) {
unsigned char md_dat[EVP_MAX_MD_SIZE], *abuf = NULL;
@@ -1007,9 +1088,15 @@ int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
goto err;
}
if (!EVP_VerifyInit_ex(mdc_tmp, EVP_get_digestbynid(md_type), NULL))
if (!EVP_DigestVerifyInit(mdc_tmp, &pctx,
EVP_get_digestbynid(md_type), NULL, pkey)) {
goto err;
}
#ifndef OPENSSL_NO_SM2
if (OBJ_obj2nid(si->digest_enc_alg->algorithm) == NID_sm2sign_with_sm3) {
EVP_PKEY_CTX_set_ec_scheme(pctx, NID_sm_scheme);
}
#endif
alen = ASN1_item_i2d((ASN1_VALUE *)sk, &abuf,
ASN1_ITEM_rptr(PKCS7_ATTR_VERIFY));
if (alen <= 0) {
@@ -1017,20 +1104,13 @@ int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
ret = -1;
goto err;
}
if (!EVP_VerifyUpdate(mdc_tmp, abuf, alen))
if (!EVP_DigestVerifyUpdate(mdc_tmp, abuf, alen))
goto err;
OPENSSL_free(abuf);
}
os = si->enc_digest;
pkey = X509_get0_pubkey(x509);
if (!pkey) {
ret = -1;
goto err;
}
i = EVP_VerifyFinal(mdc_tmp, os->data, os->length, pkey);
i = EVP_DigestVerifyFinal(mdc_tmp, os->data, os->length);
if (i <= 0) {
PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_SIGNATURE_FAILURE);
ret = -1;

View File

@@ -1,3 +1,51 @@
/* ====================================================================
* Copyright (c) 2016 - 2019 The GmSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgment:
* "This product includes software developed by the GmSSL Project.
* (http://gmssl.org/)"
*
* 4. The name "GmSSL Project" must not be used to endorse or promote
* products derived from this software without prior written
* permission. For written permission, please contact
* guanzhi1980@gmail.com.
*
* 5. Products derived from this software may not be called "GmSSL"
* nor may "GmSSL" appear in their names without prior written
* permission of the GmSSL Project.
*
* 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the GmSSL Project
* (http://gmssl.org/)"
*
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*/
/*
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
*
@@ -146,6 +194,9 @@ PKCS7_SIGNER_INFO *PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert,
|| !add_cipher_smcap(smcap, NID_aes_192_cbc, -1)
|| !add_cipher_smcap(smcap, NID_aes_128_cbc, -1)
|| !add_cipher_smcap(smcap, NID_des_ede3_cbc, -1)
#ifndef OPENSSL_NO_SMS4
|| !add_cipher_smcap(smcap, NID_sms4_cbc, -1)
#endif
|| !add_cipher_smcap(smcap, NID_rc2_cbc, 128)
|| !add_cipher_smcap(smcap, NID_rc2_cbc, 64)
|| !add_cipher_smcap(smcap, NID_des_cbc, -1)

View File

@@ -41,9 +41,9 @@ extern "C" {
*/
# define OPENSSL_VERSION_NUMBER 0x1010004fL
# ifdef OPENSSL_FIPS
# define OPENSSL_VERSION_TEXT "GmSSL 2.4.5 - OpenSSL 1.1.0d-fips 2 Feb 2019"
# define OPENSSL_VERSION_TEXT "GmSSL 2.5.0 - OpenSSL 1.1.0d-fips 13 Feb 2019"
# else
# define OPENSSL_VERSION_TEXT "GmSSL 2.4.5 - OpenSSL 1.1.0d 2 Feb 2019"
# define OPENSSL_VERSION_TEXT "GmSSL 2.5.0 - OpenSSL 1.1.0d 13 Feb 2019"
# endif
/*-

File diff suppressed because it is too large Load Diff

View File

@@ -1,411 +1,411 @@
SSL_CTX_set_info_callback 1 1_1_0d EXIST::FUNCTION:
SSL_free 2 1_1_0d EXIST::FUNCTION:
BIO_f_ssl 3 1_1_0d EXIST::FUNCTION:
SSL_use_RSAPrivateKey_ASN1 4 1_1_0d EXIST::FUNCTION:RSA
SSL_CIPHER_get_kx_nid 5 1_1_0d EXIST::FUNCTION:
SSL_is_server 6 1_1_0d EXIST::FUNCTION:
SSL_set_session_secret_cb 7 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_auth_nid 8 1_1_0d EXIST::FUNCTION:
DTLS_client_method 9 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_set_get_cb 10 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_cb_arg 11 1_1_0d EXIST::FUNCTION:SRP
SSL_COMP_get0_name 12 1_1_0d EXIST::FUNCTION:
SSL_enable_ct 13 1_1_0d EXIST::FUNCTION:CT
SSL_CTX_set_client_cert_cb 14 1_1_0d EXIST::FUNCTION:
SSL_extension_supported 15 1_1_0d EXIST::FUNCTION:
SSL_in_init 16 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_hostname 17 1_1_0d EXIST::FUNCTION:
SSL_set_verify_result 18 1_1_0d EXIST::FUNCTION:
SSL_get_shutdown 19 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_username 20 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_sess_get_remove_cb 21 1_1_0d EXIST::FUNCTION:
SSL_peek 22 1_1_0d EXIST::FUNCTION:
TLSv1_client_method 23 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
SSL_CTX_use_serverinfo_file 24 1_1_0d EXIST::FUNCTION:
SSL_set_accept_state 25 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_quiet_shutdown 26 1_1_0d EXIST::FUNCTION:
SSL_get_options 27 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_client_pwd_callback 28 1_1_0d EXIST::FUNCTION:SRP
SSL_SESSION_free 29 1_1_0d EXIST::FUNCTION:
SSL_CTX_dane_enable 30 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_timeout 31 1_1_0d EXIST::FUNCTION:
SSL_set_alpn_protos 32 1_1_0d EXIST::FUNCTION:
SSL_get_verify_callback 33 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_master_key 34 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_peer 35 1_1_0d EXIST::FUNCTION:
SSL_set_tlsext_use_srtp 36 1_1_0d EXIST::FUNCTION:SRTP
SSL_CTX_get_verify_depth 37 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_verify_file 38 1_1_0d EXIST::FUNCTION:
SSL_set_session_ticket_ext_cb 39 1_1_0d EXIST::FUNCTION:
DTLS_server_method 1 1_1_0d EXIST::FUNCTION:
SSL_select_next_proto 2 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_timeout 3 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_client_pwd_callback 4 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_set_tlsext_use_srtp 5 1_1_0d EXIST::FUNCTION:SRTP
SSL_CTX_set_cert_store 6 1_1_0d EXIST::FUNCTION:
SSL_alert_type_string 7 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_psk_identity_hint 8 1_1_0d EXIST::FUNCTION:PSK
BIO_ssl_copy_session_id 9 1_1_0d EXIST::FUNCTION:
SSL_use_certificate_ASN1 10 1_1_0d EXIST::FUNCTION:
SSL_set_shutdown 11 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_verify_mode 12 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_auth_nid 13 1_1_0d EXIST::FUNCTION:
SSL_dane_tlsa_add 14 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_cert_verify_callback 15 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_purpose 16 1_1_0d EXIST::FUNCTION:
SSL_connect 17 1_1_0d EXIST::FUNCTION:
SSL_alert_type_string_long 18 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_PrivateKey 19 1_1_0d EXIST::FUNCTION:
SSL_set_generate_session_id 20 1_1_0d EXIST::FUNCTION:
SSL_dup 21 1_1_0d EXIST::FUNCTION:
SSL_CONF_cmd 22 1_1_0d EXIST::FUNCTION:
SSL_CTX_flush_sessions 23 1_1_0d EXIST::FUNCTION:
SSL_srp_server_param_with_username 24 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_enable_ct 25 1_1_0d EXIST::FUNCTION:CT
SSL_CIPHER_is_aead 26 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_cookie_generate_cb 27 1_1_0d EXIST::FUNCTION:
SSL_set_connect_state 28 1_1_0d EXIST::FUNCTION:
SSL_get_changed_async_fds 29 1_1_0d EXIST::FUNCTION:
SSL_set_default_passwd_cb_userdata 30 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_serverinfo_file 31 1_1_0d EXIST::FUNCTION:
SSL_new 32 1_1_0d EXIST::FUNCTION:
SSL_CTX_dane_set_flags 33 1_1_0d EXIST::FUNCTION:
SSL_set_bio 34 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_not_resumable_session_callback 35 1_1_0d EXIST::FUNCTION:
SSL_COMP_get_name 36 1_1_0d EXIST::FUNCTION:
SSL_CTX_dane_enable 37 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_verify_callback 38 1_1_0d EXIST::FUNCTION:
SSL_CTX_has_client_custom_ext 39 1_1_0d EXIST::FUNCTION:
SRP_Calc_A_param 40 1_1_0d EXIST::FUNCTION:SRP
SSL_set1_host 41 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_purpose 42 1_1_0d EXIST::FUNCTION:
GMTLS_client_method 43 1_1_0d EXIST::FUNCTION:GMTLS
TLS_server_method 44 1_1_0d EXIST::FUNCTION:
SSL_get_srp_N 45 1_1_0d EXIST::FUNCTION:SRP
SSL_alert_desc_string_long 46 1_1_0d EXIST::FUNCTION:
SSL_get_security_level 47 1_1_0d EXIST::FUNCTION:
SSL_set_read_ahead 48 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_cert_verify_callback 49 1_1_0d EXIST::FUNCTION:
SSL_get_verify_result 50 1_1_0d EXIST::FUNCTION:
PEM_write_SSL_SESSION 51 1_1_0d EXIST::FUNCTION:STDIO
SSL_set_session_id_context 52 1_1_0d EXIST::FUNCTION:
SSL_get_session 53 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_set_ssl 54 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_verify_mode 55 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate 56 1_1_0d EXIST::FUNCTION:
SSL_get_fd 57 1_1_0d EXIST::FUNCTION:
SSL_dup_CA_list 58 1_1_0d EXIST::FUNCTION:
SSL_trace 59 1_1_0d EXIST::FUNCTION:SSL_TRACE
SSL_get_client_random 60 1_1_0d EXIST::FUNCTION:
SSL_get_ciphers 61 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_session_id_context 62 1_1_0d EXIST::FUNCTION:
SSL_set_session 63 1_1_0d EXIST::FUNCTION:
SSL_rstate_string_long 64 1_1_0d EXIST::FUNCTION:
PEM_read_bio_SSL_SESSION 65 1_1_0d EXIST::FUNCTION:
SSL_set0_rbio 66 1_1_0d EXIST::FUNCTION:
SSL_SESSION_up_ref 67 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_next_proto_select_cb 68 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
SSL_CIPHER_get_version 69 1_1_0d EXIST::FUNCTION:
SSL_set_msg_callback 70 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_ex_data 71 1_1_0d EXIST::FUNCTION:
SSL_dane_set_flags 72 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_next_protos_advertised_cb 73 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
PEM_read_SSL_SESSION 74 1_1_0d EXIST::FUNCTION:STDIO
SSL_use_PrivateKey 75 1_1_0d EXIST::FUNCTION:
SSL_CTX_add_client_CA 76 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_finish 77 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set_time 78 1_1_0d EXIST::FUNCTION:
SSL_get_error 79 1_1_0d EXIST::FUNCTION:
SSL_version 80 1_1_0d EXIST::FUNCTION:
SSL_SESSION_print_keylog 81 1_1_0d EXIST::FUNCTION:
SSL_do_handshake 82 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_param 83 1_1_0d EXIST::FUNCTION:
SSL_get_peer_certificate 84 1_1_0d EXIST::FUNCTION:
SSL_use_RSAPrivateKey 85 1_1_0d EXIST::FUNCTION:RSA
SSL_set_shutdown 86 1_1_0d EXIST::FUNCTION:
SSL_get0_param 87 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_tlsext_use_srtp 88 1_1_0d EXIST::FUNCTION:SRTP
SSL_CTX_sess_set_remove_cb 89 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_digest_nid 90 1_1_0d EXIST::FUNCTION:
SSL_CTX_set1_param 91 1_1_0d EXIST::FUNCTION:
SSL_get_srp_userinfo 92 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_use_RSAPrivateKey 93 1_1_0d EXIST::FUNCTION:RSA
SSL_select_next_proto 94 1_1_0d EXIST::FUNCTION:
SSL_use_RSAPrivateKey_file 95 1_1_0d EXIST::FUNCTION:RSA
BIO_new_ssl 96 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_compress_id 97 1_1_0d EXIST::FUNCTION:
SSL_get1_supported_ciphers 98 1_1_0d EXIST::FUNCTION:
TLSv1_2_method 99 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
SSL_CTX_flush_sessions 100 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_standard_name 101 1_1_0d EXIST::FUNCTION:SSL_TRACE
SSL_CTX_set_client_cert_engine 102 1_1_0d EXIST::FUNCTION:ENGINE
SSL_add_file_cert_subjects_to_stack 103 1_1_0d EXIST::FUNCTION:
SSL_get_verify_mode 104 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_RSAPrivateKey_ASN1 105 1_1_0d EXIST::FUNCTION:RSA
SSL_get0_peer_scts 106 1_1_0d EXIST::FUNCTION:CT
SSL_rstate_string 107 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_ciphers 108 1_1_0d EXIST::FUNCTION:
SSL_get_verify_depth 109 1_1_0d EXIST::FUNCTION:
SSL_get_client_CA_list 110 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_psk_server_callback 111 1_1_0d EXIST::FUNCTION:PSK
SSL_dup 112 1_1_0d EXIST::FUNCTION:
SSL_get_certificate 113 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_ssl_version 114 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_set_flags 115 1_1_0d EXIST::FUNCTION:
SSL_get_sigalgs 116 1_1_0d EXIST::FUNCTION:
SSL_srp_server_param_with_username 117 1_1_0d EXIST::FUNCTION:SRP
SSL_set_psk_server_callback 118 1_1_0d EXIST::FUNCTION:PSK
SSL_use_PrivateKey_file 119 1_1_0d EXIST::FUNCTION:
SSL_use_psk_identity_hint 120 1_1_0d EXIST::FUNCTION:PSK
SSL_CTX_sessions 121 1_1_0d EXIST::FUNCTION:
SSL_clear 122 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_get_get_cb 123 1_1_0d EXIST::FUNCTION:
SSL_SRP_CTX_init 124 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_get_default_passwd_cb_userdata 125 1_1_0d EXIST::FUNCTION:
SSL_CTX_dane_clear_flags 126 1_1_0d EXIST::FUNCTION:
SSL_set_ssl_method 127 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_username_callback 128 1_1_0d EXIST::FUNCTION:SRP
SSL_alert_desc_string 129 1_1_0d EXIST::FUNCTION:
SSL_get_ssl_method 130 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_id_context 131 1_1_0d EXIST::FUNCTION:
GMTLS_server_method 132 1_1_0d EXIST::FUNCTION:GMTLS
SSL_SRP_CTX_free 133 1_1_0d EXIST::FUNCTION:SRP
SSL_get_info_callback 134 1_1_0d EXIST::FUNCTION:
SSL_set_not_resumable_session_callback 135 1_1_0d EXIST::FUNCTION:
SSL_renegotiate_pending 136 1_1_0d EXIST::FUNCTION:
GMTLS_method 137 1_1_0d EXIST::FUNCTION:GMTLS
SSL_get0_verified_chain 138 1_1_0d EXIST::FUNCTION:
SSLv3_method 139 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
SSL_export_keying_material 140 1_1_0d EXIST::FUNCTION:
SSL_set_default_passwd_cb 141 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_ctlog_list_file 142 1_1_0d EXIST::FUNCTION:CT
TLSv1_server_method 143 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
SSL_CTX_get_cert_store 144 1_1_0d EXIST::FUNCTION:
SSL_get_selected_srtp_profile 145 1_1_0d EXIST::FUNCTION:SRTP
SSL_new 146 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_clear_flags 147 1_1_0d EXIST::FUNCTION:
SSL_alert_type_string_long 148 1_1_0d EXIST::FUNCTION:
i2d_SSL_SESSION 149 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_cookie_verify_cb 150 1_1_0d EXIST::FUNCTION:
DTLSv1_server_method 151 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
SSL_get_current_compression 152 1_1_0d EXIST::FUNCTION:
TLSv1_1_method 153 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
SSL_get_srp_username 154 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_set_cert_cb 155 1_1_0d EXIST::FUNCTION:
SSL_read 156 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_options 157 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_id 158 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_ticket 159 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_is_aead 160 1_1_0d EXIST::FUNCTION:
SSL_check_chain 161 1_1_0d EXIST::FUNCTION:
BIO_ssl_copy_session_id 162 1_1_0d EXIST::FUNCTION:
SSL_SESSION_has_ticket 163 1_1_0d EXIST::FUNCTION:
SSL_get_read_ahead 164 1_1_0d EXIST::FUNCTION:
SSL_get_servername 165 1_1_0d EXIST::FUNCTION:
SSL_CTX_add_session 166 1_1_0d EXIST::FUNCTION:
SSL_get_default_passwd_cb 167 1_1_0d EXIST::FUNCTION:
d2i_SSL_SESSION 168 1_1_0d EXIST::FUNCTION:
OPENSSL_init_ssl 169 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_security_level 170 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_PrivateKey_file 171 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_security_callback 172 1_1_0d EXIST::FUNCTION:
TLS_method 173 1_1_0d EXIST::FUNCTION:
SSL_CTX_set0_security_ex_data 174 1_1_0d EXIST::FUNCTION:
TLS_client_method 175 1_1_0d EXIST::FUNCTION:
TLSv1_2_server_method 176 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
SSL_CTX_set_cipher_list 177 1_1_0d EXIST::FUNCTION:
SSL_copy_session_id 178 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_find 179 1_1_0d EXIST::FUNCTION:
SSL_pending 180 1_1_0d EXIST::FUNCTION:
SSL_use_certificate 181 1_1_0d EXIST::FUNCTION:
SSL_test_functions 182 1_1_0d EXIST::FUNCTION:UNIT_TEST
SSL_is_dtls 183 1_1_0d EXIST::FUNCTION:
SSL_get1_session 184 1_1_0d EXIST::FUNCTION:
SSL_set0_security_ex_data 185 1_1_0d EXIST::FUNCTION:
SSL_use_certificate_chain_file 186 1_1_0d EXIST::FUNCTION:
SSL_get_peer_cert_chain 187 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_generate_session_id 188 1_1_0d EXIST::FUNCTION:
SSL_CTX_clear_options 189 1_1_0d EXIST::FUNCTION:
SSL_set_hostflags 190 1_1_0d EXIST::FUNCTION:
SSL_use_certificate_ASN1 191 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_psk_identity_hint 192 1_1_0d EXIST::FUNCTION:PSK
SSL_has_matching_session_id 193 1_1_0d EXIST::FUNCTION:
SSL_session_reused 194 1_1_0d EXIST::FUNCTION:
SSL_get_quiet_shutdown 195 1_1_0d EXIST::FUNCTION:
SSL_CTX_enable_ct 196 1_1_0d EXIST::FUNCTION:CT
BIO_new_ssl_connect 197 1_1_0d EXIST::FUNCTION:
SSL_set_ct_validation_callback 198 1_1_0d EXIST::FUNCTION:CT
SSL_set_connect_state 199 1_1_0d EXIST::FUNCTION:
SSL_set_security_level 200 1_1_0d EXIST::FUNCTION:
SSL_set_tmp_dh_callback 201 1_1_0d EXIST::FUNCTION:DH
SSL_add_dir_cert_subjects_to_stack 202 1_1_0d EXIST::FUNCTION:
SSL_connect 203 1_1_0d EXIST::FUNCTION:
SSL_alert_type_string 204 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_verify_dir 205 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_security_level 206 1_1_0d EXIST::FUNCTION:
SSL_is_init_finished 207 1_1_0d EXIST::FUNCTION:
SSL_CTX_SRP_CTX_init 208 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_free 209 1_1_0d EXIST::FUNCTION:
SSL_CTX_add_client_custom_ext 210 1_1_0d EXIST::FUNCTION:
SSL_CTX_remove_session 211 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set_ex_data 212 1_1_0d EXIST::FUNCTION:
SSL_get0_dane_authority 213 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate_chain_file 214 1_1_0d EXIST::FUNCTION:
SSL_ct_is_enabled 215 1_1_0d EXIST::FUNCTION:CT
SSL_add1_host 216 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set1_id_context 217 1_1_0d EXIST::FUNCTION:
BIO_new_buffer_ssl_connect 218 1_1_0d EXIST::FUNCTION:
SSL_renegotiate 219 1_1_0d EXIST::FUNCTION:
SSL_get0_security_ex_data 220 1_1_0d EXIST::FUNCTION:
SSL_COMP_set0_compression_methods 221 1_1_0d EXIST::FUNCTION:
DTLSv1_listen 222 1_1_0d EXIST::FUNCTION:SOCK
SSL_CTX_set_default_ctlog_list_file 223 1_1_0d EXIST::FUNCTION:CT
SSL_get_servername_type 224 1_1_0d EXIST::FUNCTION:
SSL_get_client_ciphers 225 1_1_0d EXIST::FUNCTION:
SSL_clear_options 226 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_options 227 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_timeout 228 1_1_0d EXIST::FUNCTION:
SSL_get_wbio 229 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_client_cert_cb 230 1_1_0d EXIST::FUNCTION:
SSL_get_ex_data_X509_STORE_CTX_idx 231 1_1_0d EXIST::FUNCTION:
SSL_get0_dane_tlsa 232 1_1_0d EXIST::FUNCTION:
SSL_CTX_callback_ctrl 233 1_1_0d EXIST::FUNCTION:
SSL_set_cipher_list 234 1_1_0d EXIST::FUNCTION:
SSL_set_SSL_CTX 235 1_1_0d EXIST::FUNCTION:
SSL_set1_param 236 1_1_0d EXIST::FUNCTION:
SSL_want 237 1_1_0d EXIST::FUNCTION:
SSL_get_rbio 238 1_1_0d EXIST::FUNCTION:
SSL_state_string_long 239 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_verify_paths 240 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set1_id 241 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_PrivateKey_ASN1 242 1_1_0d EXIST::FUNCTION:
SSL_SESSION_new 243 1_1_0d EXIST::FUNCTION:
SSL_CTX_check_private_key 244 1_1_0d EXIST::FUNCTION:
SSL_get_changed_async_fds 245 1_1_0d EXIST::FUNCTION:
SSL_CTX_has_client_custom_ext 246 1_1_0d EXIST::FUNCTION:
SSL_waiting_for_async 247 1_1_0d EXIST::FUNCTION:
SSL_CTX_dane_set_flags 248 1_1_0d EXIST::FUNCTION:
SSL_certs_clear 249 1_1_0d EXIST::FUNCTION:
SSL_get_srtp_profiles 250 1_1_0d EXIST::FUNCTION:SRTP
SSL_CONF_CTX_set_ssl_ctx 251 1_1_0d EXIST::FUNCTION:
SSL_CONF_cmd_value_type 252 1_1_0d EXIST::FUNCTION:
SSL_is_gmtls 253 1_1_0d EXIST::FUNCTION:
SSL_get_privatekey 254 1_1_0d EXIST::FUNCTION:
SSL_set_bio 255 1_1_0d EXIST::FUNCTION:
SSL_CTX_add_server_custom_ext 256 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_default_passwd_cb 257 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_client_CA_list 258 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_read_buffer_len 259 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_protocol_version 260 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_RSAPrivateKey_file 261 1_1_0d EXIST::FUNCTION:RSA
SSL_set_purpose 262 1_1_0d EXIST::FUNCTION:
SSL_get_default_timeout 263 1_1_0d EXIST::FUNCTION:
SSL_CTX_new 264 1_1_0d EXIST::FUNCTION:
SSL_get0_peername 265 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_get_new_cb 266 1_1_0d EXIST::FUNCTION:
SSL_get0_next_proto_negotiated 267 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
SSL_CTX_use_serverinfo 268 1_1_0d EXIST::FUNCTION:
SSL_get_wfd 269 1_1_0d EXIST::FUNCTION:
SSL_set_trust 270 1_1_0d EXIST::FUNCTION:
SSL_add_ssl_module 271 1_1_0d EXIST::FUNCTION:
SSL_dane_enable 272 1_1_0d EXIST::FUNCTION:
SSLv3_server_method 273 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
SSL_get_ex_data 274 1_1_0d EXIST::FUNCTION:
SSL_get_peer_finished 275 1_1_0d EXIST::FUNCTION:
SSL_add_client_CA 276 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_not_resumable_session_callback 277 1_1_0d EXIST::FUNCTION:
SSL_up_ref 278 1_1_0d EXIST::FUNCTION:
SSL_CTX_ct_is_enabled 279 1_1_0d EXIST::FUNCTION:CT
SSL_CTX_set_cookie_generate_cb 280 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_free 281 1_1_0d EXIST::FUNCTION:
SSL_shutdown 282 1_1_0d EXIST::FUNCTION:
DTLS_method 283 1_1_0d EXIST::FUNCTION:
SSL_get0_alpn_selected 284 1_1_0d EXIST::FUNCTION:
SSL_get_current_expansion 285 1_1_0d EXIST::FUNCTION:
TLSv1_2_client_method 286 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
SSL_CTX_set_verify_depth 287 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_trust 288 1_1_0d EXIST::FUNCTION:
SSL_COMP_get_id 289 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_client_CA_list 290 1_1_0d EXIST::FUNCTION:
SSL_get_SSL_CTX 291 1_1_0d EXIST::FUNCTION:
SSL_CTX_ctrl 292 1_1_0d EXIST::FUNCTION:
SSL_set_debug 293 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0
DTLSv1_client_method 294 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
SSL_CTX_sess_set_new_cb 295 1_1_0d EXIST::FUNCTION:
SSL_config 296 1_1_0d EXIST::FUNCTION:
SSL_get_state 297 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_password 298 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_set_security_callback 299 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_cipher 300 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_privatekey 301 1_1_0d EXIST::FUNCTION:
SSL_set_psk_client_callback 302 1_1_0d EXIST::FUNCTION:PSK
SSL_dane_clear_flags 303 1_1_0d EXIST::FUNCTION:
SSL_callback_ctrl 304 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_verify_callback 305 1_1_0d EXIST::FUNCTION:
SSL_set_options 306 1_1_0d EXIST::FUNCTION:
SSL_has_pending 307 1_1_0d EXIST::FUNCTION:
SSL_set_session_ticket_ext 308 1_1_0d EXIST::FUNCTION:
SSL_get_current_cipher 309 1_1_0d EXIST::FUNCTION:
SSL_SESSION_print_fp 310 1_1_0d EXIST::FUNCTION:STDIO
SSL_set_fd 311 1_1_0d EXIST::FUNCTION:SOCK
DTLSv1_method 312 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
ERR_load_SSL_strings 313 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_quiet_shutdown 314 1_1_0d EXIST::FUNCTION:
SSL_set_verify 315 1_1_0d EXIST::FUNCTION:
TLSv1_1_server_method 316 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
SSL_CTX_set_msg_callback 317 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_certificate 318 1_1_0d EXIST::FUNCTION:
SSL_get_srp_g 319 1_1_0d EXIST::FUNCTION:SRP
SSL_set0_wbio 320 1_1_0d EXIST::FUNCTION:
SSL_get_cipher_list 321 1_1_0d EXIST::FUNCTION:
SSL_write 322 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_name 323 1_1_0d EXIST::FUNCTION:
TLSv1_method 324 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
SSL_CTX_set_tmp_dh_callback 325 1_1_0d EXIST::FUNCTION:DH
SSL_set_srp_server_param 326 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_set_alpn_protos 327 1_1_0d EXIST::FUNCTION:
SSL_load_client_CA_file 328 1_1_0d EXIST::FUNCTION:
SSL_get_security_callback 329 1_1_0d EXIST::FUNCTION:
DTLSv1_2_method 330 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
SSL_CIPHER_description 331 1_1_0d EXIST::FUNCTION:
SSL_get_server_random 332 1_1_0d EXIST::FUNCTION:
SSL_get_psk_identity 333 1_1_0d EXIST::FUNCTION:PSK
SSL_CTX_get_ssl_method 334 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_ex_data 335 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_ctlog_store 336 1_1_0d EXIST::FUNCTION:CT
SSL_CTX_set_cert_store 337 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_ticket_lifetime_hint 338 1_1_0d EXIST::FUNCTION:
SSL_SESSION_print 339 1_1_0d EXIST::FUNCTION:
SSL_CTX_load_verify_locations 340 1_1_0d EXIST::FUNCTION:
SSL_CONF_cmd 341 1_1_0d EXIST::FUNCTION:
SSL_CTX_config 342 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_bits 343 1_1_0d EXIST::FUNCTION:
SSL_get_version 344 1_1_0d EXIST::FUNCTION:
SSL_set_info_callback 345 1_1_0d EXIST::FUNCTION:
DTLSv1_2_server_method 346 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
SSL_SESSION_get_ex_data 347 1_1_0d EXIST::FUNCTION:
SSL_CONF_cmd_argv 348 1_1_0d EXIST::FUNCTION:
SSL_set_verify_depth 349 1_1_0d EXIST::FUNCTION:
SSL_set_srp_server_param_pw 350 1_1_0d EXIST::FUNCTION:SRP
SSL_use_certificate_file 351 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_verify_param_callback 352 1_1_0d EXIST::FUNCTION:SRP
SSL_SESSION_get_time 353 1_1_0d EXIST::FUNCTION:
BIO_ssl_shutdown 354 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_new 355 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_verify 356 1_1_0d EXIST::FUNCTION:
SSL_ctrl 357 1_1_0d EXIST::FUNCTION:
SSL_get_default_passwd_cb_userdata 358 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_passwd_cb_userdata 359 1_1_0d EXIST::FUNCTION:
SSL_get_shared_sigalgs 360 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_set1_prefix 361 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_psk_client_callback 362 1_1_0d EXIST::FUNCTION:PSK
SSL_check_private_key 363 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_info_callback 364 1_1_0d EXIST::FUNCTION:
DTLS_server_method 365 1_1_0d EXIST::FUNCTION:
SSL_set_cert_cb 366 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_timeout 367 1_1_0d EXIST::FUNCTION:
PEM_write_bio_SSL_SESSION 368 1_1_0d EXIST::FUNCTION:
SSL_get0_dane 369 1_1_0d EXIST::FUNCTION:
SSL_get_shared_ciphers 370 1_1_0d EXIST::FUNCTION:
SSL_CTX_set0_ctlog_store 371 1_1_0d EXIST::FUNCTION:CT
SSL_state_string 372 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate_ASN1 373 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_security_ex_data 374 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set_timeout 375 1_1_0d EXIST::FUNCTION:
SSL_COMP_get_name 376 1_1_0d EXIST::FUNCTION:
SSL_COMP_get_compression_methods 377 1_1_0d EXIST::FUNCTION:
SSL_set_wfd 378 1_1_0d EXIST::FUNCTION:SOCK
SSL_get_all_async_fds 379 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_passwd_cb 380 1_1_0d EXIST::FUNCTION:
SSL_get_rfd 381 1_1_0d EXIST::FUNCTION:
SSL_set_rfd 382 1_1_0d EXIST::FUNCTION:SOCK
SSL_CTX_set_srp_strength 383 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_up_ref 384 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_cipher_nid 385 1_1_0d EXIST::FUNCTION:
SSL_CTX_SRP_CTX_free 386 1_1_0d EXIST::FUNCTION:SRP
SSL_client_version 387 1_1_0d EXIST::FUNCTION:
SSL_use_PrivateKey_ASN1 388 1_1_0d EXIST::FUNCTION:
SSL_accept 389 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_alpn_select_cb 390 1_1_0d EXIST::FUNCTION:
SSL_set_quiet_shutdown 391 1_1_0d EXIST::FUNCTION:
SSL_set_client_CA_list 392 1_1_0d EXIST::FUNCTION:
TLSv1_1_client_method 393 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
SSL_set_ex_data 394 1_1_0d EXIST::FUNCTION:
SSL_dane_tlsa_add 395 1_1_0d EXIST::FUNCTION:
SSL_in_before 396 1_1_0d EXIST::FUNCTION:
SSL_COMP_add_compression_method 397 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate_file 398 1_1_0d EXIST::FUNCTION:
SSL_set_default_passwd_cb_userdata 399 1_1_0d EXIST::FUNCTION:
SSL_set_security_callback 400 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_ct_validation_callback 401 1_1_0d EXIST::FUNCTION:CT
SSL_get_psk_identity_hint 402 1_1_0d EXIST::FUNCTION:PSK
SSL_get_finished 403 1_1_0d EXIST::FUNCTION:
SSL_set_generate_session_id 404 1_1_0d EXIST::FUNCTION:
DTLSv1_2_client_method 405 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
SSL_set_default_read_buffer_len 406 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_id 407 1_1_0d EXIST::FUNCTION:
SSL_CTX_dane_mtype_set 408 1_1_0d EXIST::FUNCTION:
SSLv3_client_method 409 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
SSL_renegotiate_abbreviated 410 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_PrivateKey 411 1_1_0d EXIST::FUNCTION:
SSL_add1_host 41 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_version 42 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set1_id_context 43 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_default_passwd_cb_userdata 44 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate_ASN1 45 1_1_0d EXIST::FUNCTION:
SSL_renegotiate 46 1_1_0d EXIST::FUNCTION:
SSL_get_sigalgs 47 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_ciphers 48 1_1_0d EXIST::FUNCTION:
SSL_SESSION_new 49 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_set_ssl_ctx 50 1_1_0d EXIST::FUNCTION:
SSL_get_srtp_profiles 51 1_1_0d EXIST::FUNCTION:SRTP
SSL_CTX_get_security_callback 52 1_1_0d EXIST::FUNCTION:
SSL_CONF_cmd_value_type 53 1_1_0d EXIST::FUNCTION:
SSL_peek 54 1_1_0d EXIST::FUNCTION:
TLS_client_method 55 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_cipher_list 56 1_1_0d EXIST::FUNCTION:
SSL_get_default_passwd_cb 57 1_1_0d EXIST::FUNCTION:
SSL_clear 58 1_1_0d EXIST::FUNCTION:
SSL_get0_dane_authority 59 1_1_0d EXIST::FUNCTION:
SSL_is_gmtls 60 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_session_id_context 61 1_1_0d EXIST::FUNCTION:
SSL_check_chain 62 1_1_0d EXIST::FUNCTION:
SSL_set_cipher_list 63 1_1_0d EXIST::FUNCTION:
TLS_server_method 64 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_finish 65 1_1_0d EXIST::FUNCTION:
DTLS_method 66 1_1_0d EXIST::FUNCTION:
SSL_use_PrivateKey 67 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_certificate 68 1_1_0d EXIST::FUNCTION:
BIO_ssl_shutdown 69 1_1_0d EXIST::FUNCTION:
SSL_set_verify 70 1_1_0d EXIST::FUNCTION:
SSLv3_server_method 71 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
GMTLS_client_method 72 1_1_0d EXIST::FUNCTION:GMTLS
SSL_CTX_set_generate_session_id 73 1_1_0d EXIST::FUNCTION:
SSL_get_error 74 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_client_cert_cb 75 1_1_0d EXIST::FUNCTION:
SSL_renegotiate_pending 76 1_1_0d EXIST::FUNCTION:
SSL_rstate_string 77 1_1_0d EXIST::FUNCTION:
SSL_use_certificate_chain_file 78 1_1_0d EXIST::FUNCTION:
SSLv3_method 79 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
SSL_CTX_dane_mtype_set 80 1_1_0d EXIST::FUNCTION:
SSL_load_client_CA_file 81 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_id 82 1_1_0d EXIST::FUNCTION:
SSL_CTX_add_client_custom_ext 83 1_1_0d EXIST::FUNCTION:
SSL_ct_is_enabled 84 1_1_0d EXIST::FUNCTION:CT
SSL_SESSION_up_ref 85 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_find 86 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_msg_callback 87 1_1_0d EXIST::FUNCTION:
DTLSv1_2_server_method 88 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
SSL_CTX_set_cert_cb 89 1_1_0d EXIST::FUNCTION:
TLSv1_1_client_method 90 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
SSL_do_handshake 91 1_1_0d EXIST::FUNCTION:
SSL_set_verify_result 92 1_1_0d EXIST::FUNCTION:
SSL_config 93 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_username 94 1_1_0d EXIST::FUNCTION:SRP
SSL_alert_desc_string 95 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_compress_id 96 1_1_0d EXIST::FUNCTION:
SSL_dane_enable 97 1_1_0d EXIST::FUNCTION:
SSL_CTX_clear_options 98 1_1_0d EXIST::FUNCTION:
SSL_CTX_ctrl 99 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_verify_param_callback 100 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_set_security_callback 101 1_1_0d EXIST::FUNCTION:
SSL_get_current_expansion 102 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set1_id 103 1_1_0d EXIST::FUNCTION:
SSL_set_not_resumable_session_callback 104 1_1_0d EXIST::FUNCTION:
SSL_get_rbio 105 1_1_0d EXIST::FUNCTION:
SSL_rstate_string_long 106 1_1_0d EXIST::FUNCTION:
SSL_CTX_set1_param 107 1_1_0d EXIST::FUNCTION:
SSL_get_all_async_fds 108 1_1_0d EXIST::FUNCTION:
TLSv1_client_method 109 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
SSL_CTX_free 110 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_srp_strength 111 1_1_0d EXIST::FUNCTION:SRP
SSL_get0_peername 112 1_1_0d EXIST::FUNCTION:
SSL_add_client_CA 113 1_1_0d EXIST::FUNCTION:
SSL_set_session 114 1_1_0d EXIST::FUNCTION:
SSL_use_PrivateKey_ASN1 115 1_1_0d EXIST::FUNCTION:
SSL_set_hostflags 116 1_1_0d EXIST::FUNCTION:
SSL_read 117 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_passwd_cb_userdata 118 1_1_0d EXIST::FUNCTION:
SSL_version 119 1_1_0d EXIST::FUNCTION:
TLSv1_1_server_method 120 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
SSL_get0_verified_chain 121 1_1_0d EXIST::FUNCTION:
SSL_COMP_get0_name 122 1_1_0d EXIST::FUNCTION:
SSL_get_shutdown 123 1_1_0d EXIST::FUNCTION:
SSL_get_info_callback 124 1_1_0d EXIST::FUNCTION:
SSL_CTX_add_client_CA 125 1_1_0d EXIST::FUNCTION:
SSL_set_wfd 126 1_1_0d EXIST::FUNCTION:SOCK
SSL_certs_clear 127 1_1_0d EXIST::FUNCTION:
SSL_set_srp_server_param_pw 128 1_1_0d EXIST::FUNCTION:SRP
SSL_check_private_key 129 1_1_0d EXIST::FUNCTION:
GMTLS_server_method 130 1_1_0d EXIST::FUNCTION:GMTLS
SSL_CTX_set_srp_cb_arg 131 1_1_0d EXIST::FUNCTION:SRP
SSL_state_string 132 1_1_0d EXIST::FUNCTION:
SSL_CTX_up_ref 133 1_1_0d EXIST::FUNCTION:
SSL_alert_desc_string_long 134 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_set1_prefix 135 1_1_0d EXIST::FUNCTION:
TLSv1_2_client_method 136 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
SSL_set_quiet_shutdown 137 1_1_0d EXIST::FUNCTION:
SSL_get0_alpn_selected 138 1_1_0d EXIST::FUNCTION:
SSL_session_reused 139 1_1_0d EXIST::FUNCTION:
SSL_set_SSL_CTX 140 1_1_0d EXIST::FUNCTION:
SSL_set_options 141 1_1_0d EXIST::FUNCTION:
SSL_set_default_passwd_cb 142 1_1_0d EXIST::FUNCTION:
SSL_get_read_ahead 143 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_protocol_version 144 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_new 145 1_1_0d EXIST::FUNCTION:
SSL_get1_supported_ciphers 146 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_psk_client_callback 147 1_1_0d EXIST::FUNCTION:PSK
SSL_CONF_CTX_clear_flags 148 1_1_0d EXIST::FUNCTION:
SSL_set0_security_ex_data 149 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_set_remove_cb 150 1_1_0d EXIST::FUNCTION:
SSLv3_client_method 151 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
SSL_CTX_get_ssl_method 152 1_1_0d EXIST::FUNCTION:
SSL_SESSION_has_ticket 153 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_description 154 1_1_0d EXIST::FUNCTION:
SSL_SESSION_set_ex_data 155 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_quiet_shutdown 156 1_1_0d EXIST::FUNCTION:
SSL_CTX_load_verify_locations 157 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_passwd_cb 158 1_1_0d EXIST::FUNCTION:
SSL_use_RSAPrivateKey 159 1_1_0d EXIST::FUNCTION:RSA
SSL_in_init 160 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_verify_depth 161 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_ctlog_store 162 1_1_0d EXIST::FUNCTION:CT
SSL_get_client_ciphers 163 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_id 164 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_set_ssl 165 1_1_0d EXIST::FUNCTION:
PEM_read_SSL_SESSION 166 1_1_0d EXIST::FUNCTION:STDIO
SSL_set_srp_server_param 167 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_get_client_CA_list 168 1_1_0d EXIST::FUNCTION:
SSL_set_session_ticket_ext_cb 169 1_1_0d EXIST::FUNCTION:
ERR_load_SSL_strings 170 1_1_0d EXIST::FUNCTION:
SSL_get_peer_cert_chain 171 1_1_0d EXIST::FUNCTION:
SSL_use_PrivateKey_file 172 1_1_0d EXIST::FUNCTION:
SSL_SRP_CTX_free 173 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_set_default_ctlog_list_file 174 1_1_0d EXIST::FUNCTION:CT
SSL_set_fd 175 1_1_0d EXIST::FUNCTION:SOCK
SSL_CTX_set_alpn_select_cb 176 1_1_0d EXIST::FUNCTION:
SSL_get0_dane_tlsa 177 1_1_0d EXIST::FUNCTION:
PEM_read_bio_SSL_SESSION 178 1_1_0d EXIST::FUNCTION:
SSL_get_client_CA_list 179 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_cookie_verify_cb 180 1_1_0d EXIST::FUNCTION:
SSL_free 181 1_1_0d EXIST::FUNCTION:
SSL_set_session_ticket_ext 182 1_1_0d EXIST::FUNCTION:
DTLSv1_2_method 183 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
SSL_set_security_callback 184 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_hostname 185 1_1_0d EXIST::FUNCTION:
SSL_set_verify_depth 186 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_peer 187 1_1_0d EXIST::FUNCTION:
SSL_CTX_set0_ctlog_store 188 1_1_0d EXIST::FUNCTION:CT
SSL_CTX_set_default_verify_file 189 1_1_0d EXIST::FUNCTION:
SSL_get_ciphers 190 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_RSAPrivateKey_ASN1 191 1_1_0d EXIST::FUNCTION:RSA
SSL_accept 192 1_1_0d EXIST::FUNCTION:
SSL_set_psk_client_callback 193 1_1_0d EXIST::FUNCTION:PSK
SSL_dup_CA_list 194 1_1_0d EXIST::FUNCTION:
SSL_get_servername 195 1_1_0d EXIST::FUNCTION:
SSL_set_tmp_dh_callback 196 1_1_0d EXIST::FUNCTION:DH
SSL_CTX_set_srp_password 197 1_1_0d EXIST::FUNCTION:SRP
SSL_renegotiate_abbreviated 198 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_RSAPrivateKey_file 199 1_1_0d EXIST::FUNCTION:RSA
SSL_CONF_cmd_argv 200 1_1_0d EXIST::FUNCTION:
SSL_SRP_CTX_init 201 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_add_server_custom_ext 202 1_1_0d EXIST::FUNCTION:
SSL_set_session_id_context 203 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_get_new_cb 204 1_1_0d EXIST::FUNCTION:
SSL_get_srp_userinfo 205 1_1_0d EXIST::FUNCTION:SRP
PEM_write_bio_SSL_SESSION 206 1_1_0d EXIST::FUNCTION:
SSL_get1_session 207 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_digest_nid 208 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_set_get_cb 209 1_1_0d EXIST::FUNCTION:
DTLS_client_method 210 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_cipher_nid 211 1_1_0d EXIST::FUNCTION:
SSL_set_alpn_protos 212 1_1_0d EXIST::FUNCTION:
SSL_get_wfd 213 1_1_0d EXIST::FUNCTION:
SSL_get_cipher_list 214 1_1_0d EXIST::FUNCTION:
SSL_set1_param 215 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_get_get_cb 216 1_1_0d EXIST::FUNCTION:
GMTLS_method 217 1_1_0d EXIST::FUNCTION:GMTLS
SSL_set_security_level 218 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_client_cert_engine 219 1_1_0d EXIST::FUNCTION:ENGINE
DTLSv1_listen 220 1_1_0d EXIST::FUNCTION:SOCK
SSL_CTX_set_srp_username_callback 221 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_new 222 1_1_0d EXIST::FUNCTION:
SSL_get_rfd 223 1_1_0d EXIST::FUNCTION:
SSL_is_dtls 224 1_1_0d EXIST::FUNCTION:
SSL_extension_supported 225 1_1_0d EXIST::FUNCTION:
SSL_get_ex_data 226 1_1_0d EXIST::FUNCTION:
SSL_set_session_secret_cb 227 1_1_0d EXIST::FUNCTION:
SSL_COMP_get_compression_methods 228 1_1_0d EXIST::FUNCTION:
TLSv1_2_method 229 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
SSL_get_certificate 230 1_1_0d EXIST::FUNCTION:
SSL_shutdown 231 1_1_0d EXIST::FUNCTION:
SSL_COMP_get_id 232 1_1_0d EXIST::FUNCTION:
SSL_enable_ct 233 1_1_0d EXIST::FUNCTION:CT
SSL_CTX_set_verify_depth 234 1_1_0d EXIST::FUNCTION:
SSL_get_wbio 235 1_1_0d EXIST::FUNCTION:
SSL_get_srp_N 236 1_1_0d EXIST::FUNCTION:SRP
SSL_set_accept_state 237 1_1_0d EXIST::FUNCTION:
SSL_CTX_SRP_CTX_free 238 1_1_0d EXIST::FUNCTION:SRP
SSL_SESSION_free 239 1_1_0d EXIST::FUNCTION:
SSL_CONF_CTX_free 240 1_1_0d EXIST::FUNCTION:
i2d_SSL_SESSION 241 1_1_0d EXIST::FUNCTION:
SSL_set_msg_callback 242 1_1_0d EXIST::FUNCTION:
SSL_set_purpose 243 1_1_0d EXIST::FUNCTION:
SSL_get_srp_g 244 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_use_RSAPrivateKey 245 1_1_0d EXIST::FUNCTION:RSA
SSL_set_ssl_method 246 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_security_ex_data 247 1_1_0d EXIST::FUNCTION:
SSL_set_client_CA_list 248 1_1_0d EXIST::FUNCTION:
SSL_write 249 1_1_0d EXIST::FUNCTION:
SSL_pending 250 1_1_0d EXIST::FUNCTION:
d2i_SSL_SESSION 251 1_1_0d EXIST::FUNCTION:
SSL_add_file_cert_subjects_to_stack 252 1_1_0d EXIST::FUNCTION:
SSL_get_default_passwd_cb_userdata 253 1_1_0d EXIST::FUNCTION:
BIO_new_ssl_connect 254 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_timeout 255 1_1_0d EXIST::FUNCTION:
SSL_get0_param 256 1_1_0d EXIST::FUNCTION:
SSL_use_RSAPrivateKey_ASN1 257 1_1_0d EXIST::FUNCTION:RSA
SSL_CTX_get_cert_store 258 1_1_0d EXIST::FUNCTION:
SSL_get_session 259 1_1_0d EXIST::FUNCTION:
SSL_get0_security_ex_data 260 1_1_0d EXIST::FUNCTION:
SSL_waiting_for_async 261 1_1_0d EXIST::FUNCTION:
SSL_get_shared_ciphers 262 1_1_0d EXIST::FUNCTION:
SSL_CTX_SRP_CTX_init 263 1_1_0d EXIST::FUNCTION:SRP
SSL_CTX_set_ct_validation_callback 264 1_1_0d EXIST::FUNCTION:CT
SSL_SESSION_set_timeout 265 1_1_0d EXIST::FUNCTION:
SSL_up_ref 266 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_ex_data 267 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_verify 268 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_time 269 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_tmp_dh_callback 270 1_1_0d EXIST::FUNCTION:DH
SSL_CTX_set_ex_data 271 1_1_0d EXIST::FUNCTION:
DTLSv1_2_client_method 272 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
SSL_CTX_add_session 273 1_1_0d EXIST::FUNCTION:
SSL_is_server 274 1_1_0d EXIST::FUNCTION:
SSL_set_read_ahead 275 1_1_0d EXIST::FUNCTION:
SSL_get_current_compression 276 1_1_0d EXIST::FUNCTION:
TLSv1_server_method 277 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
SSL_set1_host 278 1_1_0d EXIST::FUNCTION:
SSL_set_ex_data 279 1_1_0d EXIST::FUNCTION:
SSL_get_selected_srtp_profile 280 1_1_0d EXIST::FUNCTION:SRTP
SSL_SESSION_set_time 281 1_1_0d EXIST::FUNCTION:
SSL_dane_set_flags 282 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_PrivateKey_ASN1 283 1_1_0d EXIST::FUNCTION:
SSL_copy_session_id 284 1_1_0d EXIST::FUNCTION:
SSL_get_srp_username 285 1_1_0d EXIST::FUNCTION:SRP
SSL_get_version 286 1_1_0d EXIST::FUNCTION:
SSL_trace 287 1_1_0d EXIST::FUNCTION:SSL_TRACE
SSL_use_RSAPrivateKey_file 288 1_1_0d EXIST::FUNCTION:RSA
SSL_SESSION_print 289 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_cipher 290 1_1_0d EXIST::FUNCTION:
SSL_add_dir_cert_subjects_to_stack 291 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_security_level 292 1_1_0d EXIST::FUNCTION:
SSL_get_state 293 1_1_0d EXIST::FUNCTION:
SSL_CTX_sessions 294 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_ssl_version 295 1_1_0d EXIST::FUNCTION:
SSL_get_peer_finished 296 1_1_0d EXIST::FUNCTION:
SSL_get_current_cipher 297 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_timeout 298 1_1_0d EXIST::FUNCTION:
SSL_has_pending 299 1_1_0d EXIST::FUNCTION:
SSL_SESSION_print_fp 300 1_1_0d EXIST::FUNCTION:STDIO
SSL_add_ssl_module 301 1_1_0d EXIST::FUNCTION:
SSL_clear_options 302 1_1_0d EXIST::FUNCTION:
SSL_callback_ctrl 303 1_1_0d EXIST::FUNCTION:
SSL_set_rfd 304 1_1_0d EXIST::FUNCTION:SOCK
SSL_CTX_sess_get_remove_cb 305 1_1_0d EXIST::FUNCTION:
TLSv1_2_server_method 306 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
SSL_SESSION_get_master_key 307 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate_file 308 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_info_callback 309 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_options 310 1_1_0d EXIST::FUNCTION:
SSL_set_trust 311 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_psk_server_callback 312 1_1_0d EXIST::FUNCTION:PSK
SSL_CTX_set_next_proto_select_cb 313 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
SSL_get_fd 314 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_info_callback 315 1_1_0d EXIST::FUNCTION:
SSL_get0_next_proto_negotiated 316 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
SSL_SESSION_get_ex_data 317 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_client_CA_list 318 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_options 319 1_1_0d EXIST::FUNCTION:
SSL_ctrl 320 1_1_0d EXIST::FUNCTION:
DTLSv1_method 321 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
SSL_CIPHER_get_kx_nid 322 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_ticket 323 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_standard_name 324 1_1_0d EXIST::FUNCTION:SSL_TRACE
OPENSSL_init_ssl 325 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_verify_dir 326 1_1_0d EXIST::FUNCTION:
SSL_get_server_random 327 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_trust 328 1_1_0d EXIST::FUNCTION:
SSL_dane_clear_flags 329 1_1_0d EXIST::FUNCTION:
SSL_want 330 1_1_0d EXIST::FUNCTION:
SSL_get_privatekey 331 1_1_0d EXIST::FUNCTION:
SSL_export_keying_material 332 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_ctlog_list_file 333 1_1_0d EXIST::FUNCTION:CT
SSL_CTX_set_next_protos_advertised_cb 334 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
SSL_SESSION_print_keylog 335 1_1_0d EXIST::FUNCTION:
SSL_get_client_random 336 1_1_0d EXIST::FUNCTION:
SSL_is_init_finished 337 1_1_0d EXIST::FUNCTION:
SSL_set_tlsext_use_srtp 338 1_1_0d EXIST::FUNCTION:SRTP
SSL_CTX_check_private_key 339 1_1_0d EXIST::FUNCTION:
SSL_get_peer_certificate 340 1_1_0d EXIST::FUNCTION:
SSL_set_default_read_buffer_len 341 1_1_0d EXIST::FUNCTION:
SSL_set0_wbio 342 1_1_0d EXIST::FUNCTION:
SSL_get0_dane 343 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get_ticket_lifetime_hint 344 1_1_0d EXIST::FUNCTION:
SSL_use_certificate_file 345 1_1_0d EXIST::FUNCTION:
BIO_new_ssl 346 1_1_0d EXIST::FUNCTION:
SSL_set_psk_server_callback 347 1_1_0d EXIST::FUNCTION:PSK
SSL_CTX_get_client_cert_cb 348 1_1_0d EXIST::FUNCTION:
SSL_CTX_config 349 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate_chain_file 350 1_1_0d EXIST::FUNCTION:
SSL_in_before 351 1_1_0d EXIST::FUNCTION:
SSL_set_cert_cb 352 1_1_0d EXIST::FUNCTION:
SSL_has_matching_session_id 353 1_1_0d EXIST::FUNCTION:
SSL_SESSION_get0_id_context 354 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_serverinfo 355 1_1_0d EXIST::FUNCTION:
SSL_client_version 356 1_1_0d EXIST::FUNCTION:
SSL_get_security_callback 357 1_1_0d EXIST::FUNCTION:
SSL_CIPHER_get_name 358 1_1_0d EXIST::FUNCTION:
SSL_get_servername_type 359 1_1_0d EXIST::FUNCTION:
SSL_get_verify_depth 360 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_verify_paths 361 1_1_0d EXIST::FUNCTION:
SSL_get_security_level 362 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_default_read_buffer_len 363 1_1_0d EXIST::FUNCTION:
SSL_get_psk_identity 364 1_1_0d EXIST::FUNCTION:PSK
SSL_get_shared_sigalgs 365 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_certificate 366 1_1_0d EXIST::FUNCTION:
SSL_CTX_callback_ctrl 367 1_1_0d EXIST::FUNCTION:
SSL_get_options 368 1_1_0d EXIST::FUNCTION:
TLSv1_1_method 369 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
SSL_test_functions 370 1_1_0d EXIST::FUNCTION:UNIT_TEST
SSL_use_certificate 371 1_1_0d EXIST::FUNCTION:
SSL_get_verify_callback 372 1_1_0d EXIST::FUNCTION:
SSL_get_psk_identity_hint 373 1_1_0d EXIST::FUNCTION:PSK
SSL_CTX_set_alpn_protos 374 1_1_0d EXIST::FUNCTION:
SSL_get_verify_result 375 1_1_0d EXIST::FUNCTION:
SSL_CTX_sess_set_new_cb 376 1_1_0d EXIST::FUNCTION:
SSL_COMP_set0_compression_methods 377 1_1_0d EXIST::FUNCTION:
SSL_get_default_timeout 378 1_1_0d EXIST::FUNCTION:
DTLSv1_server_method 379 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
SSL_CTX_remove_session 380 1_1_0d EXIST::FUNCTION:
SSL_COMP_add_compression_method 381 1_1_0d EXIST::FUNCTION:
SSL_get_verify_mode 382 1_1_0d EXIST::FUNCTION:
SSL_CTX_dane_clear_flags 383 1_1_0d EXIST::FUNCTION:
SSL_state_string_long 384 1_1_0d EXIST::FUNCTION:
SSL_get_ex_data_X509_STORE_CTX_idx 385 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_default_passwd_cb 386 1_1_0d EXIST::FUNCTION:
SSL_get0_peer_scts 387 1_1_0d EXIST::FUNCTION:CT
SSL_set_debug 388 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0
PEM_write_SSL_SESSION 389 1_1_0d EXIST::FUNCTION:STDIO
SSL_get_finished 390 1_1_0d EXIST::FUNCTION:
TLS_method 391 1_1_0d EXIST::FUNCTION:
SSL_CTX_get_quiet_shutdown 392 1_1_0d EXIST::FUNCTION:
SSL_set_ct_validation_callback 393 1_1_0d EXIST::FUNCTION:CT
SSL_get_quiet_shutdown 394 1_1_0d EXIST::FUNCTION:
SSL_CTX_set0_security_ex_data 395 1_1_0d EXIST::FUNCTION:
SSL_get_SSL_CTX 396 1_1_0d EXIST::FUNCTION:
SSL_CTX_ct_is_enabled 397 1_1_0d EXIST::FUNCTION:CT
SSL_CONF_CTX_set_flags 398 1_1_0d EXIST::FUNCTION:
TLSv1_method 399 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
SSL_CIPHER_get_bits 400 1_1_0d EXIST::FUNCTION:
BIO_new_buffer_ssl_connect 401 1_1_0d EXIST::FUNCTION:
SSL_get_ssl_method 402 1_1_0d EXIST::FUNCTION:
SSL_set0_rbio 403 1_1_0d EXIST::FUNCTION:
DTLSv1_client_method 404 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
SSL_CTX_get0_privatekey 405 1_1_0d EXIST::FUNCTION:
SSL_CTX_get0_param 406 1_1_0d EXIST::FUNCTION:
SSL_CTX_set_security_level 407 1_1_0d EXIST::FUNCTION:
SSL_set_info_callback 408 1_1_0d EXIST::FUNCTION:
BIO_f_ssl 409 1_1_0d EXIST::FUNCTION:
SSL_CTX_use_PrivateKey_file 410 1_1_0d EXIST::FUNCTION:
SSL_use_psk_identity_hint 411 1_1_0d EXIST::FUNCTION:PSK