This commit is contained in:
guanzhi
2017-05-15 19:29:17 +08:00
parent 79e2936664
commit 463db17a86
8 changed files with 5709 additions and 5260 deletions

View File

@@ -86,7 +86,14 @@ int EC_KEY_set_ECCPUBLICKEYBLOB(EC_KEY *ec_key, const ECCPUBLICKEYBLOB *blob)
return 0; return 0;
} }
#if 1
nbytes = 64;
#else
/* we assume that the coordinates are stored in big-endian format.
* but if it is not
*/
nbytes = (blob->BitLen + 7)/8; nbytes = (blob->BitLen + 7)/8;
#endif
if (!(x = BN_bin2bn(blob->XCoordinate, nbytes, NULL))) { if (!(x = BN_bin2bn(blob->XCoordinate, nbytes, NULL))) {
GMAPIerr(GMAPI_F_EC_KEY_SET_ECCPUBLICKEYBLOB, ERR_R_BN_LIB); GMAPIerr(GMAPI_F_EC_KEY_SET_ECCPUBLICKEYBLOB, ERR_R_BN_LIB);

View File

@@ -54,11 +54,6 @@
int SM2_get_public_key_data(EC_KEY *ec_key, unsigned char *out, size_t *outlen); int SM2_get_public_key_data(EC_KEY *ec_key, unsigned char *out, size_t *outlen);
int SM2_compute_message_digest(const EVP_MD *id_md, const EVP_MD *msg_md,
const unsigned char *msg, size_t msglen, const char *id, size_t idlen,
unsigned char *out, size_t *outlen,
EC_KEY *ec_key);
struct SM2CiphertextValue_st { struct SM2CiphertextValue_st {
BIGNUM *xCoordinate; BIGNUM *xCoordinate;
BIGNUM *yCoordinate; BIGNUM *yCoordinate;
@@ -97,11 +92,5 @@ struct sm2_kap_ctx_st {
}; };
int i2o_SM2CiphertextValue(const EC_GROUP *group, const SM2CiphertextValue *cv,
unsigned char **pout);
SM2CiphertextValue *o2i_SM2CiphertextValue(const EC_GROUP *group, const EVP_MD *md,
SM2CiphertextValue **cv, const unsigned char **pin, long len);

View File

@@ -76,6 +76,11 @@ extern "C" {
/* compute identity digest Z */ /* compute identity digest Z */
int SM2_compute_id_digest(const EVP_MD *md, const char *id, size_t idlen, int SM2_compute_id_digest(const EVP_MD *md, const char *id, size_t idlen,
unsigned char *out, size_t *outlen, EC_KEY *ec_key); unsigned char *out, size_t *outlen, EC_KEY *ec_key);
int SM2_compute_message_digest(const EVP_MD *id_md, const EVP_MD *msg_md,
const unsigned char *msg, size_t msglen, const char *id, size_t idlen,
unsigned char *out, size_t *outlen,
EC_KEY *ec_key);
/* SM2 digital signature */ /* SM2 digital signature */
int SM2_sign_setup(EC_KEY *ec_key, BN_CTX *ctx, BIGNUM **a, BIGNUM **b); int SM2_sign_setup(EC_KEY *ec_key, BN_CTX *ctx, BIGNUM **a, BIGNUM **b);
@@ -101,6 +106,11 @@ int SM2_verify(int type, const unsigned char *dgst, int dgstlen,
typedef struct SM2CiphertextValue_st SM2CiphertextValue; typedef struct SM2CiphertextValue_st SM2CiphertextValue;
DECLARE_ASN1_FUNCTIONS(SM2CiphertextValue) DECLARE_ASN1_FUNCTIONS(SM2CiphertextValue)
int i2o_SM2CiphertextValue(const EC_GROUP *group, const SM2CiphertextValue *cv,
unsigned char **pout);
SM2CiphertextValue *o2i_SM2CiphertextValue(const EC_GROUP *group, const EVP_MD *md,
SM2CiphertextValue **cv, const unsigned char **pin, long len);
SM2CiphertextValue *SM2_do_encrypt(const EVP_MD *md, SM2CiphertextValue *SM2_do_encrypt(const EVP_MD *md,
const unsigned char *in, size_t inlen, EC_KEY *ec_key); const unsigned char *in, size_t inlen, EC_KEY *ec_key);
int SM2_do_decrypt(const EVP_MD *md, const SM2CiphertextValue *in, int SM2_do_decrypt(const EVP_MD *md, const SM2CiphertextValue *in,

439
pod2htmd.tmp Normal file
View File

@@ -0,0 +1,439 @@
apps:crypto:ssl
./doc
SSL_set_fd ../ssl/SSL_set_fd
DH_generate_key ../crypto/DH_generate_key
SSL_CTX_set_tlsext_ticket_key_cb ../ssl/SSL_CTX_set_tlsext_ticket_key_cb
EVP_PKEY_verify_recover ../crypto/EVP_PKEY_verify_recover
OPENSSL_VERSION_NUMBER ../crypto/OPENSSL_VERSION_NUMBER
bio ../crypto/bio
BN_BLINDING_new ../crypto/BN_BLINDING_new
CMS_get0_SignerInfos ../crypto/CMS_get0_SignerInfos
BIO_s_null ../crypto/BIO_s_null
CTLOG_STORE_new ../crypto/CTLOG_STORE_new
SMIME_read_CMS ../crypto/SMIME_read_CMS
RSA_new ../crypto/RSA_new
SSL_CTX_add1_chain_cert ../ssl/SSL_CTX_add1_chain_cert
CMS_get0_type ../crypto/CMS_get0_type
BN_add ../crypto/BN_add
SSL_free ../ssl/SSL_free
SSL_CTX_set_ctlog_list_file ../ssl/SSL_CTX_set_ctlog_list_file
BN_bn2bin ../crypto/BN_bn2bin
dsaparam ../apps/dsaparam
SSL_clear ../ssl/SSL_clear
ASN1_generate_nconf ../crypto/ASN1_generate_nconf
ASN1_TIME_set ../crypto/ASN1_TIME_set
SSL_CTX_get0_param ../ssl/SSL_CTX_get0_param
OPENSSL_malloc ../crypto/OPENSSL_malloc
passwd ../apps/passwd
PKCS7_verify ../crypto/PKCS7_verify
X509_ALGOR_dup ../crypto/X509_ALGOR_dup
SSL_CTX_set_session_id_context ../ssl/SSL_CTX_set_session_id_context
RSA_generate_key ../crypto/RSA_generate_key
X509_get_pubkey ../crypto/X509_get_pubkey
OPENSSL_LH_COMPFUNC ../crypto/OPENSSL_LH_COMPFUNC
asn1parse ../apps/asn1parse
SSL_get_SSL_CTX ../ssl/SSL_get_SSL_CTX
BIO_get_ex_new_index ../crypto/BIO_get_ex_new_index
SSL_SESSION_set1_id ../ssl/SSL_SESSION_set1_id
BN_CTX_start ../crypto/BN_CTX_start
RAND_egd ../crypto/RAND_egd
SHA256_Init ../crypto/SHA256_Init
SMIME_write_PKCS7 ../crypto/SMIME_write_PKCS7
X509_STORE_new ../crypto/X509_STORE_new
pkcs7 ../apps/pkcs7
SSL_CTX_set_msg_callback ../ssl/SSL_CTX_set_msg_callback
RIPEMD160_Init ../crypto/RIPEMD160_Init
SSL_CTX_set_mode ../ssl/SSL_CTX_set_mode
req ../apps/req
OCSP_resp_find_status ../crypto/OCSP_resp_find_status
X509V3_get_d2i ../crypto/X509V3_get_d2i
RAND_bytes ../crypto/RAND_bytes
EC_GROUP_new ../crypto/EC_GROUP_new
CMS_encrypt ../crypto/CMS_encrypt
rehash ../apps/rehash
X509_verify_cert ../crypto/X509_verify_cert
SSL_get_version ../ssl/SSL_get_version
SSL_get_current_cipher ../ssl/SSL_get_current_cipher
ec ../apps/ec
DH_size ../crypto/DH_size
X509_NAME_add_entry_by_txt ../crypto/X509_NAME_add_entry_by_txt
ASN1_STRING_new ../crypto/ASN1_STRING_new
X509_NAME_get0_der ../crypto/X509_NAME_get0_der
BF_encrypt ../crypto/BF_encrypt
SSL_SESSION_get0_cipher ../ssl/SSL_SESSION_get0_cipher
ERR_load_strings ../crypto/ERR_load_strings
crypto ../crypto/crypto
s_client ../apps/s_client
DH_generate_parameters ../crypto/DH_generate_parameters
genpkey ../apps/genpkey
SSL_CTX_free ../ssl/SSL_CTX_free
nseq ../apps/nseq
X509_get_notBefore ../crypto/X509_get_notBefore
PKCS5_PBKDF2_HMAC ../crypto/PKCS5_PBKDF2_HMAC
ocsp ../apps/ocsp
SSL_SESSION_get0_id_context ../ssl/SSL_SESSION_get0_id_context
d2i_PrivateKey ../crypto/d2i_PrivateKey
d2i_DHparams ../crypto/d2i_DHparams
s_time ../apps/s_time
SSL_CTX_set_verify ../ssl/SSL_CTX_set_verify
ERR_load_crypto_strings ../crypto/ERR_load_crypto_strings
ASN1_STRING_length ../crypto/ASN1_STRING_length
DH_get_1024_160 ../crypto/DH_get_1024_160
RAND_add ../crypto/RAND_add
SSL_get_peer_certificate ../ssl/SSL_get_peer_certificate
X509_check_issued ../crypto/X509_check_issued
EVP_PKEY_CTX_ctrl ../crypto/EVP_PKEY_CTX_ctrl
BIO_read ../crypto/BIO_read
X509_get_version ../crypto/X509_get_version
X509_STORE_CTX_get_error ../crypto/X509_STORE_CTX_get_error
SSL_get_all_async_fds ../ssl/SSL_get_all_async_fds
sess_id ../apps/sess_id
SMIME_write_CMS ../crypto/SMIME_write_CMS
X509_NAME_ENTRY_get_object ../crypto/X509_NAME_ENTRY_get_object
X509_check_ca ../crypto/X509_check_ca
SSL_rstate_string ../ssl/SSL_rstate_string
OCSP_cert_to_id ../crypto/OCSP_cert_to_id
SSL_CTX_config ../ssl/SSL_CTX_config
CONF_modules_free ../crypto/CONF_modules_free
SSL_set_shutdown ../ssl/SSL_set_shutdown
SSL_CTX_set_quiet_shutdown ../ssl/SSL_CTX_set_quiet_shutdown
ciphers ../apps/ciphers
crl ../apps/crl
EVP_EncryptInit ../crypto/EVP_EncryptInit
BN_set_bit ../crypto/BN_set_bit
PKCS12_parse ../crypto/PKCS12_parse
x509 ../apps/x509
SSL_get_client_CA_list ../ssl/SSL_get_client_CA_list
des_modes ../crypto/des_modes
pkcs8 ../apps/pkcs8
X509_get0_signature ../crypto/X509_get0_signature
BIO_ctrl ../crypto/BIO_ctrl
BN_zero ../crypto/BN_zero
DSA_meth_new ../crypto/DSA_meth_new
SSL_CTX_set_cert_store ../ssl/SSL_CTX_set_cert_store
EVP_DigestSignInit ../crypto/EVP_DigestSignInit
DSA_new ../crypto/DSA_new
BIO_new ../crypto/BIO_new
EC_KEY_get_enc_flags ../crypto/EC_KEY_get_enc_flags
EVP_DigestVerifyInit ../crypto/EVP_DigestVerifyInit
evp ../crypto/evp
DH_new ../crypto/DH_new
RSA_size ../crypto/RSA_size
SSL_connect ../ssl/SSL_connect
ASN1_TYPE_get ../crypto/ASN1_TYPE_get
X509_STORE_CTX_set_verify_cb ../crypto/X509_STORE_CTX_set_verify_cb
BIO_f_ssl ../crypto/BIO_f_ssl
DH_meth_new ../crypto/DH_meth_new
ERR_print_errors ../crypto/ERR_print_errors
EVP_EncodeInit ../crypto/EVP_EncodeInit
d2i_PKCS8PrivateKey_bio ../crypto/d2i_PKCS8PrivateKey_bio
version ../apps/version
EC_POINT_new ../crypto/EC_POINT_new
EC_GROUP_copy ../crypto/EC_GROUP_copy
PKCS7_encrypt ../crypto/PKCS7_encrypt
BUF_MEM_new ../crypto/BUF_MEM_new
SSL_CTX_sess_set_get_cb ../ssl/SSL_CTX_sess_set_get_cb
ERR_remove_state ../crypto/ERR_remove_state
tsget ../apps/tsget
SSL_get_fd ../ssl/SSL_get_fd
RAND_set_rand_method ../crypto/RAND_set_rand_method
PEM_read_bio_PrivateKey ../crypto/PEM_read_bio_PrivateKey
DSA_generate_key ../crypto/DSA_generate_key
RSA_padding_add_PKCS1_type_1 ../crypto/RSA_padding_add_PKCS1_type_1
EVP_OpenInit ../crypto/EVP_OpenInit
X509_check_host ../crypto/X509_check_host
CTLOG_new ../crypto/CTLOG_new
OPENSSL_init_ssl ../ssl/OPENSSL_init_ssl
OCSP_response_status ../crypto/OCSP_response_status
SSL_CTX_add_session ../ssl/SSL_CTX_add_session
SSL_get_ciphers ../ssl/SSL_get_ciphers
DSA_size ../crypto/DSA_size
SSL_CTX_has_client_custom_ext ../ssl/SSL_CTX_has_client_custom_ext
SSL_set_connect_state ../ssl/SSL_set_connect_state
CT_POLICY_EVAL_CTX_new ../crypto/CT_POLICY_EVAL_CTX_new
SSL_CTX_load_verify_locations ../ssl/SSL_CTX_load_verify_locations
SSL_CONF_CTX_set_ssl_ctx ../ssl/SSL_CONF_CTX_set_ssl_ctx
BIO_s_socket ../crypto/BIO_s_socket
SSL_get_client_random ../ssl/SSL_get_client_random
pkeyutl ../apps/pkeyutl
SCT_validate ../crypto/SCT_validate
OpenSSL_add_all_algorithms ../crypto/OpenSSL_add_all_algorithms
PEM_read ../crypto/PEM_read
CMS_compress ../crypto/CMS_compress
SSL_CTX_set_tmp_dh_callback ../ssl/SSL_CTX_set_tmp_dh_callback
SSL_get_shared_sigalgs ../ssl/SSL_get_shared_sigalgs
BN_rand ../crypto/BN_rand
SSL_get_psk_identity ../ssl/SSL_get_psk_identity
CMS_add1_recipient_cert ../crypto/CMS_add1_recipient_cert
ASN1_INTEGER_get_int64 ../crypto/ASN1_INTEGER_get_int64
SSL_CTX_set_tlsext_status_cb ../ssl/SSL_CTX_set_tlsext_status_cb
BIO_f_base64 ../crypto/BIO_f_base64
EVP_PKEY_derive ../crypto/EVP_PKEY_derive
smime ../apps/smime
ENGINE_add ../crypto/ENGINE_add
pkey ../apps/pkey
ERR_put_error ../crypto/ERR_put_error
EVP_PKEY_cmp ../crypto/EVP_PKEY_cmp
SSL_COMP_add_compression_method ../ssl/SSL_COMP_add_compression_method
OPENSSL_Applink ../crypto/OPENSSL_Applink
ts ../apps/ts
ct ../crypto/ct
X509_get_subject_name ../crypto/X509_get_subject_name
SSL_want ../ssl/SSL_want
CMS_verify_receipt ../crypto/CMS_verify_receipt
PEM_read_CMS ../crypto/PEM_read_CMS
SSL_state_string ../ssl/SSL_state_string
DES_random_key ../crypto/DES_random_key
SSL_CTX_add_extra_chain_cert ../ssl/SSL_CTX_add_extra_chain_cert
SSL_CTX_set_session_cache_mode ../ssl/SSL_CTX_set_session_cache_mode
BIO_set_callback ../crypto/BIO_set_callback
X509_get_serialNumber ../crypto/X509_get_serialNumber
ERR_clear_error ../crypto/ERR_clear_error
PKCS12_create ../crypto/PKCS12_create
speed ../apps/speed
BIO_parse_hostserv ../crypto/BIO_parse_hostserv
SSL_extension_supported ../ssl/SSL_extension_supported
ECPKParameters_print ../crypto/ECPKParameters_print
RSA_set_method ../crypto/RSA_set_method
SMIME_read_PKCS7 ../crypto/SMIME_read_PKCS7
BIO_f_cipher ../crypto/BIO_f_cipher
SSL_CONF_cmd_argv ../ssl/SSL_CONF_cmd_argv
X509_new ../crypto/X509_new
SSL_shutdown ../ssl/SSL_shutdown
PEM_write_bio_CMS_stream ../crypto/PEM_write_bio_CMS_stream
RSA_print ../crypto/RSA_print
EC_GFp_simple_method ../crypto/EC_GFp_simple_method
SSL_CTX_set_info_callback ../ssl/SSL_CTX_set_info_callback
DSA_set_method ../crypto/DSA_set_method
ASYNC_WAIT_CTX_new ../crypto/ASYNC_WAIT_CTX_new
DSA_generate_parameters ../crypto/DSA_generate_parameters
EVP_PKEY_new ../crypto/EVP_PKEY_new
SCT_new ../crypto/SCT_new
X509_NAME_get_index_by_NID ../crypto/X509_NAME_get_index_by_NID
BN_mod_mul_reciprocal ../crypto/BN_mod_mul_reciprocal
BIO_push ../crypto/BIO_push
i2d_re_X509_tbs ../crypto/i2d_re_X509_tbs
verify ../apps/verify
SSL_check_chain ../ssl/SSL_check_chain
DSA_do_sign ../crypto/DSA_do_sign
CONF_modules_load_file ../crypto/CONF_modules_load_file
SSL_CONF_CTX_set1_prefix ../ssl/SSL_CONF_CTX_set1_prefix
SCT_print ../crypto/SCT_print
ASN1_OBJECT_new ../crypto/ASN1_OBJECT_new
SSL_set_session ../ssl/SSL_set_session
CMS_uncompress ../crypto/CMS_uncompress
SSL_CTX_set_cipher_list ../ssl/SSL_CTX_set_cipher_list
SSL_CTX_set_client_CA_list ../ssl/SSL_CTX_set_client_CA_list
EVP_PKEY_decrypt ../crypto/EVP_PKEY_decrypt
SSL_SESSION_get_time ../ssl/SSL_SESSION_get_time
SSL_do_handshake ../ssl/SSL_do_handshake
SSL_set_bio ../crypto/SSL_set_bio
SSL_CONF_CTX_new ../ssl/SSL_CONF_CTX_new
X509_CRL_get0_by_serial ../crypto/X509_CRL_get0_by_serial
SSL_get_default_timeout ../ssl/SSL_get_default_timeout
CA.pl ../apps/CA.pl
PEM_write_bio_PKCS7_stream ../crypto/PEM_write_bio_PKCS7_stream
X509_VERIFY_PARAM_set_flags ../crypto/X509_VERIFY_PARAM_set_flags
EVP_PKEY_CTX_set_tls1_prf_md ../crypto/EVP_PKEY_CTX_set_tls1_prf_md
DEFINE_STACK_OF ../crypto/DEFINE_STACK_OF
SSL_library_init ../ssl/SSL_library_init
SSL_SESSION_get_protocol_version ../ssl/SSL_SESSION_get_protocol_version
SSL_SESSION_free ../ssl/SSL_SESSION_free
SSL_CTX_use_serverinfo ../ssl/SSL_CTX_use_serverinfo
CMS_add0_cert ../crypto/CMS_add0_cert
SSL_CTX_set_cert_verify_callback ../ssl/SSL_CTX_set_cert_verify_callback
PKCS12_newpass ../crypto/PKCS12_newpass
SSL_CTX_set_ssl_version ../ssl/SSL_CTX_set_ssl_version
rand ../apps/rand
BIO_connect ../crypto/BIO_connect
i2d_CMS_bio_stream ../crypto/i2d_CMS_bio_stream
SSL_get_verify_result ../ssl/SSL_get_verify_result
X509_EXTENSION_set_object ../crypto/X509_EXTENSION_set_object
RAND_load_file ../crypto/RAND_load_file
rsautl ../apps/rsautl
SSL_CTX_get_verify_mode ../ssl/SSL_CTX_get_verify_mode
X509_sign ../crypto/X509_sign
BN_add_word ../crypto/BN_add_word
SSL_CTX_set_timeout ../ssl/SSL_CTX_set_timeout
SSL_get_session ../ssl/SSL_get_session
BIO_f_md ../crypto/BIO_f_md
ECDSA_SIG_new ../crypto/ECDSA_SIG_new
DSA_get0_pqg ../crypto/DSA_get0_pqg
RSA_blinding_on ../crypto/RSA_blinding_on
EVP_VerifyInit ../crypto/EVP_VerifyInit
PKCS7_sign ../crypto/PKCS7_sign
BN_mod_inverse ../crypto/BN_mod_inverse
SSL_CTX_set1_sigalgs ../ssl/SSL_CTX_set1_sigalgs
ASYNC_start_job ../crypto/ASYNC_start_job
BN_mod_mul_montgomery ../crypto/BN_mod_mul_montgomery
SSL_get_extms_support ../ssl/SSL_get_extms_support
SSL_get_peer_cert_chain ../ssl/SSL_get_peer_cert_chain
SSL_write ../ssl/SSL_write
md5 ../crypto/md5
OBJ_nid2obj ../crypto/OBJ_nid2obj
BN_copy ../crypto/BN_copy
SSL_get_rbio ../ssl/SSL_get_rbio
BIO_meth_new ../crypto/BIO_meth_new
BN_num_bytes ../crypto/BN_num_bytes
SSL_CTX_use_certificate ../ssl/SSL_CTX_use_certificate
engine ../apps/engine
X509_digest ../crypto/X509_digest
OPENSSL_LH_stats ../crypto/OPENSSL_LH_stats
enc ../apps/enc
cms ../apps/cms
OPENSSL_init_crypto ../crypto/OPENSSL_init_crypto
BIO_f_null ../crypto/BIO_f_null
BIO_new_CMS ../crypto/BIO_new_CMS
SSL_CTX_ctrl ../ssl/SSL_CTX_ctrl
CRYPTO_THREAD_run_once ../crypto/CRYPTO_THREAD_run_once
RSA_sign_ASN1_OCTET_STRING ../crypto/RSA_sign_ASN1_OCTET_STRING
OPENSSL_instrument_bus ../crypto/OPENSSL_instrument_bus
X509_PUBKEY_new ../crypto/X509_PUBKEY_new
SSL_pending ../ssl/SSL_pending
SSL_CTX_set1_curves ../ssl/SSL_CTX_set1_curves
CMS_final ../crypto/CMS_final
X509_STORE_get0_param ../crypto/X509_STORE_get0_param
OCSP_REQUEST_new ../crypto/OCSP_REQUEST_new
config ../apps/config
CMS_get0_RecipientInfos ../crypto/CMS_get0_RecipientInfos
PKCS7_sign_add_signer ../crypto/PKCS7_sign_add_signer
SSL_CTX_set_ct_validation_callback ../ssl/SSL_CTX_set_ct_validation_callback
X509_NAME_print_ex ../crypto/X509_NAME_print_ex
gmssl ../apps/gmssl
EVP_CIPHER_CTX_get_cipher_data ../crypto/EVP_CIPHER_CTX_get_cipher_data
SSL_CTX_set_psk_client_callback ../ssl/SSL_CTX_set_psk_client_callback
pkeyparam ../apps/pkeyparam
ERR_error_string ../crypto/ERR_error_string
BIO_s_connect ../crypto/BIO_s_connect
DSA_dup_DH ../crypto/DSA_dup_DH
BIO_ADDR ../crypto/BIO_ADDR
SSL_CTX_set_options ../ssl/SSL_CTX_set_options
x509v3_config ../apps/x509v3_config
CTLOG_STORE_get0_log_by_id ../crypto/CTLOG_STORE_get0_log_by_id
BIO_s_bio ../crypto/BIO_s_bio
CMS_sign ../crypto/CMS_sign
SSL_accept ../ssl/SSL_accept
CMS_add1_signer ../crypto/CMS_add1_signer
DSA_sign ../crypto/DSA_sign
SSL_CTX_set1_verify_cert_store ../ssl/SSL_CTX_set1_verify_cert_store
SSL_CTX_new ../ssl/SSL_CTX_new
EVP_PKEY_keygen ../crypto/EVP_PKEY_keygen
SSL_CTX_sessions ../ssl/SSL_CTX_sessions
X509_STORE_set_verify_cb_func ../crypto/X509_STORE_set_verify_cb_func
X509_dup ../crypto/X509_dup
SSL_set_verify_result ../ssl/SSL_set_verify_result
DH_get0_pqg ../crypto/DH_get0_pqg
BIO_get_data ../crypto/BIO_get_data
EVP_PKEY_encrypt ../crypto/EVP_PKEY_encrypt
RSA_get0_key ../crypto/RSA_get0_key
BN_CTX_new ../crypto/BN_CTX_new
BIO_s_accept ../crypto/BIO_s_accept
BIO_find_type ../crypto/BIO_find_type
dsa ../apps/dsa
d2i_SSL_SESSION ../ssl/d2i_SSL_SESSION
SSL_CTX_set_generate_session_id ../ssl/SSL_CTX_set_generate_session_id
X509v3_get_ext_by_NID ../crypto/X509v3_get_ext_by_NID
dhparam ../apps/dhparam
OPENSSL_ia32cap ../crypto/OPENSSL_ia32cap
X509_STORE_CTX_new ../crypto/X509_STORE_CTX_new
EVP_SignInit ../crypto/EVP_SignInit
EVP_PKEY_set1_RSA ../crypto/EVP_PKEY_set1_RSA
BIO_s_file ../crypto/BIO_s_file
EVP_PKEY_get_default_digest_nid ../crypto/EVP_PKEY_get_default_digest_nid
X509_LOOKUP_hash_dir ../crypto/X509_LOOKUP_hash_dir
UI_new ../crypto/UI_new
SSL_CTX_set_default_passwd_cb ../ssl/SSL_CTX_set_default_passwd_cb
SSL_get0_peer_scts ../ssl/SSL_get0_peer_scts
EC_KEY_new ../crypto/EC_KEY_new
SSL_CTX_flush_sessions ../ssl/SSL_CTX_flush_sessions
BN_swap ../crypto/BN_swap
RSA_meth_new ../crypto/RSA_meth_new
EVP_MD_meth_new ../crypto/EVP_MD_meth_new
ERR_GET_LIB ../crypto/ERR_GET_LIB
SSL_CTX_set_min_proto_version ../ssl/SSL_CTX_set_min_proto_version
BIO_f_buffer ../crypto/BIO_f_buffer
CMS_sign_receipt ../crypto/CMS_sign_receipt
SSL_CTX_set_split_send_fragment ../ssl/SSL_CTX_set_split_send_fragment
d2i_Netscape_RSA ../crypto/d2i_Netscape_RSA
errstr ../apps/errstr
EVP_PKEY_verify ../crypto/EVP_PKEY_verify
SSL_CTX_set_max_cert_list ../ssl/SSL_CTX_set_max_cert_list
dgst ../apps/dgst
EC_POINT_add ../crypto/EC_POINT_add
X509_get0_uids ../crypto/X509_get0_uids
ssl ../ssl/ssl
EVP_BytesToKey ../crypto/EVP_BytesToKey
OPENSSL_load_builtin_modules ../crypto/OPENSSL_load_builtin_modules
SSL_set1_host ../ssl/SSL_set1_host
RC4_set_key ../crypto/RC4_set_key
RSA_public_encrypt ../crypto/RSA_public_encrypt
SSL_session_reused ../ssl/SSL_session_reused
SSL_CONF_CTX_set_flags ../ssl/SSL_CONF_CTX_set_flags
SSL_get_error ../ssl/SSL_get_error
hmac ../crypto/hmac
BIO_s_mem ../crypto/BIO_s_mem
RSA_private_encrypt ../crypto/RSA_private_encrypt
OPENSSL_config ../crypto/OPENSSL_config
ca ../apps/ca
CMS_verify ../crypto/CMS_verify
ERR_set_mark ../crypto/ERR_set_mark
SSL_CTX_set_client_cert_cb ../ssl/SSL_CTX_set_client_cert_cb
SSL_CTX_sess_number ../ssl/SSL_CTX_sess_number
PKCS7_decrypt ../crypto/PKCS7_decrypt
o2i_SCT_LIST ../crypto/o2i_SCT_LIST
EVP_PKEY_sign ../crypto/EVP_PKEY_sign
X509_get_extension_flags ../crypto/X509_get_extension_flags
RSA_check_key ../crypto/RSA_check_key
pkcs12 ../apps/pkcs12
BN_cmp ../crypto/BN_cmp
BIO_should_retry ../crypto/BIO_should_retry
gendsa ../apps/gendsa
genrsa ../apps/genrsa
i2d_PKCS7_bio_stream ../crypto/i2d_PKCS7_bio_stream
ecparam ../apps/ecparam
d2i_X509 ../crypto/d2i_X509
MDC2_Init ../crypto/MDC2_Init
ASN1_STRING_print_ex ../crypto/ASN1_STRING_print_ex
DH_set_method ../crypto/DH_set_method
EVP_PKEY_CTX_set_hkdf_md ../crypto/EVP_PKEY_CTX_set_hkdf_md
EVP_SealInit ../crypto/EVP_SealInit
crl2pkcs7 ../apps/crl2pkcs7
SSL_SESSION_get0_hostname ../ssl/SSL_SESSION_get0_hostname
list ../apps/list
BN_generate_prime ../crypto/BN_generate_prime
EVP_PKEY_print_private ../crypto/EVP_PKEY_print_private
CMS_decrypt ../crypto/CMS_decrypt
SSL_alert_type_string ../ssl/SSL_alert_type_string
SSL_load_client_CA_file ../ssl/SSL_load_client_CA_file
SSL_CTX_set_security_level ../ssl/SSL_CTX_set_security_level
OCSP_sendreq_new ../crypto/OCSP_sendreq_new
OCSP_request_add1_nonce ../crypto/OCSP_request_add1_nonce
SSL_CTX_set_read_ahead ../ssl/SSL_CTX_set_read_ahead
SSL_SESSION_has_ticket ../ssl/SSL_SESSION_has_ticket
EVP_CIPHER_meth_new ../crypto/EVP_CIPHER_meth_new
BIO_s_fd ../crypto/BIO_s_fd
DTLSv1_listen ../ssl/DTLSv1_listen
SSL_CTX_use_psk_identity_hint ../ssl/SSL_CTX_use_psk_identity_hint
SSL_CTX_set_cert_cb ../ssl/SSL_CTX_set_cert_cb
BIO_ADDRINFO ../crypto/BIO_ADDRINFO
spkac ../apps/spkac
BN_new ../crypto/BN_new
SSL_CTX_sess_set_cache_size ../ssl/SSL_CTX_sess_set_cache_size
EVP_DigestInit ../crypto/EVP_DigestInit
SSL_CONF_cmd ../ssl/SSL_CONF_cmd
s_server ../apps/s_server
DSA_SIG_new ../crypto/DSA_SIG_new
SSL_new ../ssl/SSL_new
SSL_CTX_set_alpn_select_cb ../ssl/SSL_CTX_set_alpn_select_cb
X509_SIG_get0 ../crypto/X509_SIG_get0
SSL_CIPHER_get_name ../ssl/SSL_CIPHER_get_name
OPENSSL_secure_malloc ../crypto/OPENSSL_secure_malloc
SSL_read ../ssl/SSL_read
EVP_PKEY_CTX_new ../crypto/EVP_PKEY_CTX_new
CMS_get1_ReceiptRequest ../crypto/CMS_get1_ReceiptRequest
rsa ../apps/rsa
RSA_sign ../crypto/RSA_sign
SSL_CTX_dane_enable ../ssl/SSL_CTX_dane_enable
CRYPTO_get_ex_new_index ../crypto/CRYPTO_get_ex_new_index
RAND_cleanup ../crypto/RAND_cleanup
ERR_get_error ../crypto/ERR_get_error

BIN
test/a.out Executable file

Binary file not shown.

View File

@@ -340,9 +340,10 @@ static int test_sm2_sign(const EC_GROUP *group,
} }
if (verbose > 1) { if (verbose > 1) {
int j;
printf("id=%s\n", id); printf("id=%s\n", id);
printf("zid(xx):"); printf("zid(xx):");
for (int j = 0; j < dgstlen; j++) { printf("%02x", dgst[j]); } printf("\n"); for (j = 0; j < dgstlen; j++) { printf("%02x", dgst[j]); } printf("\n");
} }
if (!hexequbin(Z, dgst, dgstlen)) { if (!hexequbin(Z, dgst, dgstlen)) {

File diff suppressed because it is too large Load Diff

View File

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