2000-09-07 08:44:13 +00:00
|
|
|
ERR_load_SSL_strings 1 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_description 2 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_add_client_CA 3 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_add_session 4 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_check_private_key 5 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_ctrl 6 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_flush_sessions 7 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_free 8 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_client_CA_list 9 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_verify_callback 10 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_verify_mode 11 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_new 12 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_remove_session 13 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_cipher_list 15 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_client_CA_list 16 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_default_passwd_cb 17 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_ssl_version 19 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_verify 21 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_use_PrivateKey 22 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_use_PrivateKey_ASN1 23 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_CTX_use_PrivateKey_file 24 EXIST::FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_CTX_use_RSAPrivateKey 25 EXIST::FUNCTION:RSA
|
|
|
|
SSL_CTX_use_RSAPrivateKey_ASN1 26 EXIST::FUNCTION:RSA
|
Introduce the possibility to access global variables through
functions on platform were that's the best way to handle exporting
global variables in shared libraries. To enable this functionality,
one must configure with "EXPORT_VAR_AS_FN" or defined the C macro
"OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter
is normally done by Configure or something similar).
To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL
in the source file (foo.c) like this:
OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1;
OPENSSL_IMPLEMENT_GLOBAL(double,bar);
To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL
and OPENSSL_GLOBAL_REF in the header file (foo.h) like this:
OPENSSL_DECLARE_GLOBAL(int,foo);
#define foo OPENSSL_GLOBAL_REF(foo)
OPENSSL_DECLARE_GLOBAL(double,bar);
#define bar OPENSSL_GLOBAL_REF(bar)
The #defines are very important, and therefore so is including the
header file everywere where the defined globals are used.
The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition
of ASN.1 items, but that structure is a bt different.
The largest change is in util/mkdef.pl which has been enhanced with
better and easier to understand logic to choose which symbols should
go into the Windows .def files as well as a number of fixes and code
cleanup (among others, algorithm keywords are now sorted
lexicographically to avoid constant rewrites).
2001-03-02 10:38:19 +00:00
|
|
|
SSL_CTX_use_RSAPrivateKey_file 27 EXIST::FUNCTION:RSA,STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_CTX_use_certificate 28 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_use_certificate_ASN1 29 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_CTX_use_certificate_file 30 EXIST::FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_SESSION_free 31 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_new 32 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
SSL_SESSION_print 33 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_print_fp 34 EXIST::FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_accept 35 EXIST::FUNCTION:
|
|
|
|
SSL_add_client_CA 36 EXIST::FUNCTION:
|
|
|
|
SSL_alert_desc_string 37 EXIST::FUNCTION:
|
|
|
|
SSL_alert_desc_string_long 38 EXIST::FUNCTION:
|
|
|
|
SSL_alert_type_string 39 EXIST::FUNCTION:
|
|
|
|
SSL_alert_type_string_long 40 EXIST::FUNCTION:
|
|
|
|
SSL_check_private_key 41 EXIST::FUNCTION:
|
|
|
|
SSL_clear 42 EXIST::FUNCTION:
|
|
|
|
SSL_connect 43 EXIST::FUNCTION:
|
|
|
|
SSL_copy_session_id 44 EXIST::FUNCTION:
|
|
|
|
SSL_ctrl 45 EXIST::FUNCTION:
|
|
|
|
SSL_dup 46 EXIST::FUNCTION:
|
|
|
|
SSL_dup_CA_list 47 EXIST::FUNCTION:
|
|
|
|
SSL_free 48 EXIST::FUNCTION:
|
|
|
|
SSL_get_certificate 49 EXIST::FUNCTION:
|
|
|
|
SSL_get_cipher_list 52 EXIST::FUNCTION:
|
|
|
|
SSL_get_ciphers 55 EXIST::FUNCTION:
|
|
|
|
SSL_get_client_CA_list 56 EXIST::FUNCTION:
|
|
|
|
SSL_get_default_timeout 57 EXIST::FUNCTION:
|
|
|
|
SSL_get_error 58 EXIST::FUNCTION:
|
|
|
|
SSL_get_fd 59 EXIST::FUNCTION:
|
|
|
|
SSL_get_peer_cert_chain 60 EXIST::FUNCTION:
|
|
|
|
SSL_get_peer_certificate 61 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
SSL_get_rbio 63 EXIST::FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_get_read_ahead 64 EXIST::FUNCTION:
|
|
|
|
SSL_get_shared_ciphers 65 EXIST::FUNCTION:
|
|
|
|
SSL_get_ssl_method 66 EXIST::FUNCTION:
|
|
|
|
SSL_get_verify_callback 69 EXIST::FUNCTION:
|
|
|
|
SSL_get_verify_mode 70 EXIST::FUNCTION:
|
|
|
|
SSL_get_version 71 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
SSL_get_wbio 72 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_load_client_CA_file 73 EXIST::FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_load_error_strings 74 EXIST::FUNCTION:
|
|
|
|
SSL_new 75 EXIST::FUNCTION:
|
|
|
|
SSL_peek 76 EXIST::FUNCTION:
|
|
|
|
SSL_pending 77 EXIST::FUNCTION:
|
|
|
|
SSL_read 78 EXIST::FUNCTION:
|
|
|
|
SSL_renegotiate 79 EXIST::FUNCTION:
|
|
|
|
SSL_rstate_string 80 EXIST::FUNCTION:
|
|
|
|
SSL_rstate_string_long 81 EXIST::FUNCTION:
|
|
|
|
SSL_set_accept_state 82 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
SSL_set_bio 83 EXIST::FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_set_cipher_list 84 EXIST::FUNCTION:
|
|
|
|
SSL_set_client_CA_list 85 EXIST::FUNCTION:
|
|
|
|
SSL_set_connect_state 86 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_set_fd 87 EXIST::FUNCTION:SOCK
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_set_read_ahead 88 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_set_rfd 89 EXIST::FUNCTION:SOCK
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_set_session 90 EXIST::FUNCTION:
|
|
|
|
SSL_set_ssl_method 91 EXIST::FUNCTION:
|
|
|
|
SSL_set_verify 94 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_set_wfd 95 EXIST::FUNCTION:SOCK
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_shutdown 96 EXIST::FUNCTION:
|
|
|
|
SSL_state_string 97 EXIST::FUNCTION:
|
|
|
|
SSL_state_string_long 98 EXIST::FUNCTION:
|
|
|
|
SSL_use_PrivateKey 99 EXIST::FUNCTION:
|
|
|
|
SSL_use_PrivateKey_ASN1 100 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_use_PrivateKey_file 101 EXIST::FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_use_RSAPrivateKey 102 EXIST::FUNCTION:RSA
|
|
|
|
SSL_use_RSAPrivateKey_ASN1 103 EXIST::FUNCTION:RSA
|
Introduce the possibility to access global variables through
functions on platform were that's the best way to handle exporting
global variables in shared libraries. To enable this functionality,
one must configure with "EXPORT_VAR_AS_FN" or defined the C macro
"OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter
is normally done by Configure or something similar).
To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL
in the source file (foo.c) like this:
OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1;
OPENSSL_IMPLEMENT_GLOBAL(double,bar);
To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL
and OPENSSL_GLOBAL_REF in the header file (foo.h) like this:
OPENSSL_DECLARE_GLOBAL(int,foo);
#define foo OPENSSL_GLOBAL_REF(foo)
OPENSSL_DECLARE_GLOBAL(double,bar);
#define bar OPENSSL_GLOBAL_REF(bar)
The #defines are very important, and therefore so is including the
header file everywere where the defined globals are used.
The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition
of ASN.1 items, but that structure is a bt different.
The largest change is in util/mkdef.pl which has been enhanced with
better and easier to understand logic to choose which symbols should
go into the Windows .def files as well as a number of fixes and code
cleanup (among others, algorithm keywords are now sorted
lexicographically to avoid constant rewrites).
2001-03-02 10:38:19 +00:00
|
|
|
SSL_use_RSAPrivateKey_file 104 EXIST::FUNCTION:RSA,STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_use_certificate 105 EXIST::FUNCTION:
|
|
|
|
SSL_use_certificate_ASN1 106 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_use_certificate_file 107 EXIST::FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_write 108 EXIST::FUNCTION:
|
|
|
|
SSLeay_add_ssl_algorithms 109 NOEXIST::FUNCTION:
|
2015-03-30 23:18:31 +00:00
|
|
|
SSLv23_client_method 110 NOEXIST::FUNCTION:
|
2015-03-27 23:01:51 +00:00
|
|
|
SSLv23_method 111 NOEXIST::FUNCTION:
|
|
|
|
SSLv23_server_method 112 NOEXIST::FUNCTION:
|
2014-11-30 14:35:22 +00:00
|
|
|
SSLv2_client_method 113 NOEXIST::FUNCTION:
|
|
|
|
SSLv2_method 114 NOEXIST::FUNCTION:
|
|
|
|
SSLv2_server_method 115 NOEXIST::FUNCTION:
|
2014-10-29 12:51:31 +00:00
|
|
|
SSLv3_client_method 116 EXIST::FUNCTION:SSL3_METHOD
|
|
|
|
SSLv3_method 117 EXIST::FUNCTION:SSL3_METHOD
|
|
|
|
SSLv3_server_method 118 EXIST::FUNCTION:SSL3_METHOD
|
2000-09-07 08:44:13 +00:00
|
|
|
d2i_SSL_SESSION 119 EXIST::FUNCTION:
|
|
|
|
i2d_SSL_SESSION 120 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
BIO_f_ssl 121 EXIST::FUNCTION:
|
|
|
|
BIO_new_ssl 122 EXIST::FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
BIO_proxy_ssl_copy_session_id 123 NOEXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
BIO_ssl_copy_session_id 124 EXIST::FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_do_handshake 125 EXIST::FUNCTION:
|
|
|
|
SSL_get_privatekey 126 EXIST::FUNCTION:
|
|
|
|
SSL_get_current_cipher 127 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_get_bits 128 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_get_version 129 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_get_name 130 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
BIO_ssl_shutdown 131 EXIST::FUNCTION:
|
2008-06-04 11:52:36 +00:00
|
|
|
SSL_SESSION_cmp 132 NOEXIST::FUNCTION:
|
|
|
|
SSL_SESSION_hash 133 NOEXIST::FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_SESSION_get_time 134 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_set_time 135 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_get_timeout 136 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_set_timeout 137 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_ex_data 138 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_quiet_shutdown 140 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_load_verify_locations 141 EXIST::FUNCTION:
|
2000-09-11 11:45:02 +00:00
|
|
|
SSL_CTX_set_default_verify_paths 142 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_CTX_set_def_verify_paths 142 EXIST:VMS:FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_CTX_set_ex_data 143 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_quiet_shutdown 145 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_get_ex_data 146 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_set_ex_data 148 EXIST::FUNCTION:
|
|
|
|
SSL_get_SSL_CTX 150 EXIST::FUNCTION:
|
|
|
|
SSL_get_ex_data 151 EXIST::FUNCTION:
|
|
|
|
SSL_get_quiet_shutdown 153 EXIST::FUNCTION:
|
|
|
|
SSL_get_session 154 EXIST::FUNCTION:
|
|
|
|
SSL_get_shutdown 155 EXIST::FUNCTION:
|
|
|
|
SSL_get_verify_result 157 EXIST::FUNCTION:
|
|
|
|
SSL_set_ex_data 158 EXIST::FUNCTION:
|
|
|
|
SSL_set_info_callback 160 EXIST::FUNCTION:
|
|
|
|
SSL_set_quiet_shutdown 161 EXIST::FUNCTION:
|
|
|
|
SSL_set_shutdown 162 EXIST::FUNCTION:
|
|
|
|
SSL_set_verify_result 163 EXIST::FUNCTION:
|
|
|
|
SSL_version 164 EXIST::FUNCTION:
|
|
|
|
SSL_get_info_callback 165 EXIST::FUNCTION:
|
|
|
|
SSL_state 166 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_ex_new_index 167 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_get_ex_new_index 168 EXIST::FUNCTION:
|
|
|
|
SSL_get_ex_new_index 169 EXIST::FUNCTION:
|
|
|
|
TLSv1_method 170 EXIST::FUNCTION:
|
|
|
|
TLSv1_server_method 171 EXIST::FUNCTION:
|
|
|
|
TLSv1_client_method 172 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
BIO_new_buffer_ssl_connect 173 EXIST::FUNCTION:
|
|
|
|
BIO_new_ssl_connect 174 EXIST::FUNCTION:
|
2000-09-11 11:45:02 +00:00
|
|
|
SSL_get_ex_data_X509_STORE_CTX_idx 175 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_get_ex_d_X509_STORE_CTX_idx 175 EXIST:VMS:FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_CTX_set_tmp_dh_callback 176 EXIST::FUNCTION:DH
|
|
|
|
SSL_CTX_set_tmp_rsa_callback 177 EXIST::FUNCTION:RSA
|
|
|
|
SSL_CTX_set_timeout 178 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_timeout 179 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_cert_store 180 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_cert_store 181 EXIST::FUNCTION:
|
|
|
|
SSL_want 182 EXIST::FUNCTION:
|
|
|
|
SSL_library_init 183 EXIST::FUNCTION:
|
2015-05-08 16:05:36 +00:00
|
|
|
SSL_COMP_add_compression_method 184 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_add_file_cert_subjects_to_stack 185 EXIST:!VMS:FUNCTION:STDIO
|
|
|
|
SSL_add_file_cert_subjs_to_stk 185 EXIST:VMS:FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_set_tmp_rsa_callback 186 EXIST::FUNCTION:RSA
|
|
|
|
SSL_set_tmp_dh_callback 187 EXIST::FUNCTION:DH
|
2003-02-05 16:40:29 +00:00
|
|
|
SSL_add_dir_cert_subjects_to_stack 188 EXIST:!VMS:FUNCTION:STDIO
|
2004-07-12 11:25:48 +00:00
|
|
|
SSL_add_dir_cert_subjs_to_stk 188 EXIST:VMS:FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_set_session_id_context 189 EXIST::FUNCTION:
|
2000-12-29 00:19:12 +00:00
|
|
|
SSL_CTX_use_certificate_chain_file 222 EXIST:!VMS:FUNCTION:STDIO
|
|
|
|
SSL_CTX_use_cert_chain_file 222 EXIST:VMS:FUNCTION:STDIO
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_CTX_set_verify_depth 225 EXIST::FUNCTION:
|
|
|
|
SSL_set_verify_depth 226 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_verify_depth 228 EXIST::FUNCTION:
|
|
|
|
SSL_get_verify_depth 229 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_session_id_context 231 EXIST::FUNCTION:
|
2000-09-11 11:45:02 +00:00
|
|
|
SSL_CTX_set_cert_verify_callback 232 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_CTX_set_cert_verify_cb 232 EXIST:VMS:FUNCTION:
|
2014-07-23 12:18:06 +00:00
|
|
|
SSL_test_functions 233 EXIST::FUNCTION:UNIT_TEST
|
2000-09-11 11:45:02 +00:00
|
|
|
SSL_CTX_set_default_passwd_cb_userdata 235 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_CTX_set_def_passwd_cb_ud 235 EXIST:VMS:FUNCTION:
|
2000-09-07 08:44:13 +00:00
|
|
|
SSL_set_purpose 236 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_trust 237 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_purpose 238 EXIST::FUNCTION:
|
|
|
|
SSL_set_trust 239 EXIST::FUNCTION:
|
|
|
|
SSL_get_finished 240 EXIST::FUNCTION:
|
|
|
|
SSL_get_peer_finished 241 EXIST::FUNCTION:
|
|
|
|
SSL_get1_session 242 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_callback_ctrl 243 EXIST::FUNCTION:
|
|
|
|
SSL_callback_ctrl 244 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_sessions 245 EXIST::FUNCTION:
|
2001-09-14 09:31:07 +00:00
|
|
|
SSL_get_rfd 246 EXIST::FUNCTION:
|
|
|
|
SSL_get_wfd 247 EXIST::FUNCTION:
|
2015-05-12 09:27:53 +00:00
|
|
|
kssl_cget_tkt 248 NOEXIST::FUNCTION:
|
2001-09-14 09:31:07 +00:00
|
|
|
SSL_has_matching_session_id 249 EXIST::FUNCTION:
|
2015-05-12 09:27:53 +00:00
|
|
|
kssl_err_set 250 NOEXIST::FUNCTION:
|
|
|
|
kssl_ctx_show 251 NOEXIST::FUNCTION:
|
|
|
|
kssl_validate_times 252 NOEXIST::FUNCTION:
|
|
|
|
kssl_check_authent 253 NOEXIST::FUNCTION:
|
|
|
|
kssl_ctx_new 254 NOEXIST::FUNCTION:
|
|
|
|
kssl_build_principal_2 255 NOEXIST::FUNCTION:
|
|
|
|
kssl_skip_confound 256 NOEXIST::FUNCTION:
|
|
|
|
kssl_sget_tkt 257 NOEXIST::FUNCTION:
|
2001-09-14 09:31:07 +00:00
|
|
|
SSL_set_generate_session_id 258 EXIST::FUNCTION:
|
2015-05-12 09:27:53 +00:00
|
|
|
kssl_ctx_setkey 259 NOEXIST::FUNCTION:
|
|
|
|
kssl_ctx_setprinc 260 NOEXIST::FUNCTION:
|
|
|
|
kssl_ctx_free 261 NOEXIST::FUNCTION:
|
|
|
|
kssl_krb5_free_data_contents 262 NOEXIST::FUNCTION:
|
|
|
|
kssl_ctx_setstring 263 NOEXIST::FUNCTION:
|
2001-09-14 09:31:07 +00:00
|
|
|
SSL_CTX_set_generate_session_id 264 EXIST::FUNCTION:
|
2001-09-20 22:54:09 +00:00
|
|
|
SSL_renegotiate_pending 265 EXIST::FUNCTION:
|
2001-10-24 15:32:14 +00:00
|
|
|
SSL_CTX_set_msg_callback 266 EXIST::FUNCTION:
|
|
|
|
SSL_set_msg_callback 267 EXIST::FUNCTION:
|
2005-05-09 00:22:02 +00:00
|
|
|
DTLSv1_client_method 268 EXIST::FUNCTION:
|
2015-03-14 22:42:55 +00:00
|
|
|
SSL_CTX_set_tmp_ecdh_callback 269 EXIST::FUNCTION:EC
|
|
|
|
SSL_set_tmp_ecdh_callback 270 EXIST::FUNCTION:EC
|
2015-05-08 16:05:36 +00:00
|
|
|
SSL_COMP_get_name 271 EXIST::FUNCTION:
|
|
|
|
SSL_get_current_compression 272 EXIST::FUNCTION:
|
2005-05-09 00:22:02 +00:00
|
|
|
DTLSv1_method 273 EXIST::FUNCTION:
|
2015-05-08 16:05:36 +00:00
|
|
|
SSL_get_current_expansion 274 EXIST::FUNCTION:
|
2005-05-09 00:22:02 +00:00
|
|
|
DTLSv1_server_method 275 EXIST::FUNCTION:
|
2015-05-08 16:05:36 +00:00
|
|
|
SSL_COMP_get_compression_methods 276 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_COMP_get_compress_methods 276 EXIST:VMS:FUNCTION:
|
2005-05-09 00:22:02 +00:00
|
|
|
SSL_SESSION_get_id 277 EXIST::FUNCTION:
|
2006-11-30 13:47:22 +00:00
|
|
|
SSL_CTX_sess_set_new_cb 278 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_sess_get_get_cb 279 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_sess_set_get_cb 280 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_cookie_verify_cb 281 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_info_callback 282 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_cookie_generate_cb 283 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_client_cert_cb 284 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_sess_set_remove_cb 285 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_info_callback 286 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_sess_get_new_cb 287 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_client_cert_cb 288 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_sess_get_remove_cb 289 EXIST::FUNCTION:
|
|
|
|
SSL_set_SSL_CTX 290 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_get_servername 291 EXIST::FUNCTION:
|
|
|
|
SSL_get_servername_type 292 EXIST::FUNCTION:
|
2008-06-05 11:10:49 +00:00
|
|
|
SSL_CTX_set_client_cert_engine 293 EXIST::FUNCTION:ENGINE
|
|
|
|
SSL_CTX_use_psk_identity_hint 294 EXIST::FUNCTION:PSK
|
|
|
|
SSL_CTX_set_psk_client_callback 295 EXIST::FUNCTION:PSK
|
|
|
|
PEM_write_bio_SSL_SESSION 296 EXIST::FUNCTION:
|
|
|
|
SSL_get_psk_identity_hint 297 EXIST::FUNCTION:PSK
|
|
|
|
SSL_set_psk_server_callback 298 EXIST::FUNCTION:PSK
|
|
|
|
SSL_use_psk_identity_hint 299 EXIST::FUNCTION:PSK
|
|
|
|
SSL_set_psk_client_callback 300 EXIST::FUNCTION:PSK
|
2015-02-04 23:50:00 +00:00
|
|
|
PEM_read_SSL_SESSION 301 EXIST::FUNCTION:
|
2008-06-05 11:10:49 +00:00
|
|
|
PEM_read_bio_SSL_SESSION 302 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_psk_server_callback 303 EXIST::FUNCTION:PSK
|
|
|
|
SSL_get_psk_identity 304 EXIST::FUNCTION:PSK
|
2015-02-04 23:50:00 +00:00
|
|
|
PEM_write_SSL_SESSION 305 EXIST::FUNCTION:
|
2009-03-31 22:05:04 +00:00
|
|
|
SSL_set_session_ticket_ext 306 EXIST::FUNCTION:
|
|
|
|
SSL_set_session_secret_cb 307 EXIST::FUNCTION:
|
|
|
|
SSL_set_session_ticket_ext_cb 308 EXIST::FUNCTION:
|
2009-07-08 09:19:53 +00:00
|
|
|
SSL_set1_param 309 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set1_param 310 EXIST::FUNCTION:
|
2011-12-22 16:11:47 +00:00
|
|
|
SSL_tls1_key_exporter 311 NOEXIST::FUNCTION:
|
2010-08-26 14:27:17 +00:00
|
|
|
SSL_renegotiate_abbreviated 312 EXIST::FUNCTION:
|
|
|
|
TLSv1_1_method 313 EXIST::FUNCTION:
|
|
|
|
TLSv1_1_client_method 314 EXIST::FUNCTION:
|
|
|
|
TLSv1_1_server_method 315 EXIST::FUNCTION:
|
2011-03-23 00:11:32 +00:00
|
|
|
SSL_CTX_set_srp_client_pwd_callback 316 EXIST:!VMS:FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_client_pwd_cb 316 EXIST:VMS:FUNCTION:SRP
|
|
|
|
SSL_get_srp_g 317 EXIST::FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_username_callback 318 EXIST:!VMS:FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_un_cb 318 EXIST:VMS:FUNCTION:SRP
|
|
|
|
SSL_get_srp_userinfo 319 EXIST::FUNCTION:SRP
|
|
|
|
SSL_set_srp_server_param 320 EXIST::FUNCTION:SRP
|
|
|
|
SSL_set_srp_server_param_pw 321 EXIST::FUNCTION:SRP
|
|
|
|
SSL_get_srp_N 322 EXIST::FUNCTION:SRP
|
|
|
|
SSL_get_srp_username 323 EXIST::FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_password 324 EXIST::FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_strength 325 EXIST::FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_verify_param_callback 326 EXIST:!VMS:FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_vfy_param_cb 326 EXIST:VMS:FUNCTION:SRP
|
2011-12-22 16:11:47 +00:00
|
|
|
SSL_CTX_set_srp_miss_srp_un_cb 327 NOEXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_srp_missing_srp_username_callback 327 NOEXIST::FUNCTION:
|
2011-03-23 00:11:32 +00:00
|
|
|
SSL_CTX_set_srp_cb_arg 328 EXIST::FUNCTION:SRP
|
|
|
|
SSL_CTX_set_srp_username 329 EXIST::FUNCTION:SRP
|
|
|
|
SSL_CTX_SRP_CTX_init 330 EXIST::FUNCTION:SRP
|
|
|
|
SSL_SRP_CTX_init 331 EXIST::FUNCTION:SRP
|
|
|
|
SRP_Calc_A_param 332 EXIST::FUNCTION:SRP
|
2015-06-25 14:06:14 +00:00
|
|
|
SRP_gen_server_master_secret 333 NOEXIST::FUNCTION:
|
|
|
|
SRP_generate_server_master_secret 333 NOEXIST::FUNCTION:
|
2011-03-23 00:11:32 +00:00
|
|
|
SSL_CTX_SRP_CTX_free 334 EXIST::FUNCTION:SRP
|
2015-06-25 14:06:14 +00:00
|
|
|
SRP_gen_client_master_secret 335 NOEXIST::FUNCTION:
|
|
|
|
SRP_generate_client_master_secret 335 NOEXIST::FUNCTION:
|
2011-03-23 00:11:32 +00:00
|
|
|
SSL_srp_server_param_with_username 336 EXIST:!VMS:FUNCTION:SRP
|
|
|
|
SSL_srp_server_param_with_un 336 EXIST:VMS:FUNCTION:SRP
|
2011-12-23 14:09:30 +00:00
|
|
|
SRP_have_to_put_srp_username 337 NOEXIST::FUNCTION:
|
2011-03-23 00:11:32 +00:00
|
|
|
SSL_SRP_CTX_free 338 EXIST::FUNCTION:SRP
|
2011-05-11 23:04:10 +00:00
|
|
|
SSL_set_debug 339 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_get0_peer 340 EXIST::FUNCTION:
|
|
|
|
TLSv1_2_client_method 341 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_set1_id_context 342 EXIST::FUNCTION:
|
|
|
|
TLSv1_2_server_method 343 EXIST::FUNCTION:
|
|
|
|
SSL_cache_hit 344 EXIST::FUNCTION:
|
2015-05-12 09:27:53 +00:00
|
|
|
SSL_get0_kssl_ctx 345 NOEXIST::FUNCTION:
|
|
|
|
SSL_set0_kssl_ctx 346 NOEXIST::FUNCTION:
|
2011-12-22 16:11:47 +00:00
|
|
|
SSL_SESSION_get0_id 347 NOEXIST::FUNCTION:
|
2011-05-11 23:04:10 +00:00
|
|
|
SSL_set_state 348 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_get_id 349 EXIST::FUNCTION:
|
|
|
|
TLSv1_2_method 350 EXIST::FUNCTION:
|
2011-12-22 16:11:47 +00:00
|
|
|
SSL_SESSION_get_id_len 351 NOEXIST::FUNCTION:
|
2015-05-12 09:27:53 +00:00
|
|
|
kssl_ctx_get0_client_princ 352 NOEXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_export_keying_material 353 EXIST::FUNCTION:
|
2014-10-15 00:23:07 +00:00
|
|
|
SSL_set_tlsext_use_srtp 354 EXIST::FUNCTION:SRTP
|
2011-11-21 22:57:41 +00:00
|
|
|
SSL_CTX_set_next_protos_advertised_cb 355 EXIST:!VMS:FUNCTION:NEXTPROTONEG
|
|
|
|
SSL_CTX_set_next_protos_adv_cb 355 EXIST:VMS:FUNCTION:NEXTPROTONEG
|
|
|
|
SSL_get0_next_proto_negotiated 356 EXIST::FUNCTION:NEXTPROTONEG
|
2014-10-15 00:23:07 +00:00
|
|
|
SSL_get_selected_srtp_profile 357 EXIST::FUNCTION:SRTP
|
|
|
|
SSL_CTX_set_tlsext_use_srtp 358 EXIST::FUNCTION:SRTP
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_select_next_proto 359 EXIST::FUNCTION:
|
2014-10-15 00:23:07 +00:00
|
|
|
SSL_get_srtp_profiles 360 EXIST::FUNCTION:SRTP
|
2011-11-21 22:57:41 +00:00
|
|
|
SSL_CTX_set_next_proto_select_cb 361 EXIST:!VMS:FUNCTION:NEXTPROTONEG
|
|
|
|
SSL_CTX_set_next_proto_sel_cb 361 EXIST:VMS:FUNCTION:NEXTPROTONEG
|
2011-12-22 16:11:47 +00:00
|
|
|
SSL_SESSION_get_compress_id 362 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_get0_param 363 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get0_privatekey 364 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_get_shared_sigalgs 365 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_CONF_CTX_finish 366 EXIST::FUNCTION:
|
|
|
|
DTLS_method 367 EXIST::FUNCTION:
|
|
|
|
DTLS_client_method 368 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_standard_name 369 EXIST::FUNCTION:SSL_TRACE
|
|
|
|
SSL_set_alpn_protos 370 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_srv_supp_data 371 NOEXIST::FUNCTION:
|
|
|
|
SSL_CONF_cmd_argv 372 EXIST::FUNCTION:
|
|
|
|
DTLSv1_2_server_method 373 EXIST::FUNCTION:
|
|
|
|
SSL_COMP_set0_compress_methods 374 NOEXIST::FUNCTION:
|
2015-05-08 16:05:36 +00:00
|
|
|
SSL_COMP_set0_compression_methods 374 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_COMP_set0_compr_methods 374 EXIST:VMS:FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_CTX_set_cert_cb 375 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_CTX_add_client_custom_ext 376 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_is_server 377 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get0_param 378 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_cmd 379 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_ssl_method 380 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_CTX_set_ssl_ctx 381 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_find 382 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_CTX_use_serverinfo 383 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
DTLSv1_2_client_method 384 EXIST::FUNCTION:
|
|
|
|
SSL_get0_alpn_selected 385 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_CTX_clear_flags 386 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_alpn_protos 387 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_CTX_add_server_custom_ext 389 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_CTX_get0_certificate 390 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_alpn_select_cb 391 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_cmd_value_type 392 EXIST::FUNCTION:
|
|
|
|
SSL_set_cert_cb 393 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_get_sigalgs 394 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_CONF_CTX_set1_prefix 395 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_CTX_new 396 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_CTX_set_flags 397 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_CTX_set_ssl 398 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_check_chain 399 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_certs_clear 400 EXIST::FUNCTION:
|
|
|
|
SSL_CONF_CTX_free 401 EXIST::FUNCTION:
|
|
|
|
SSL_trace 402 EXIST::FUNCTION:SSL_TRACE
|
|
|
|
SSL_CTX_set_cli_supp_data 403 NOEXIST::FUNCTION:
|
|
|
|
DTLSv1_2_method 404 EXIST::FUNCTION:
|
|
|
|
DTLS_server_method 405 EXIST::FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_CTX_use_serverinfo_file 406 EXIST::FUNCTION:STDIO
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_COMP_free_compress_methods 407 NOEXIST::FUNCTION:
|
2015-05-08 16:05:36 +00:00
|
|
|
SSL_COMP_free_compression_methods 407 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_COMP_free_compr_methods 407 EXIST:VMS:FUNCTION:
|
2015-05-15 09:49:56 +00:00
|
|
|
SSL_extension_supported 409 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_CTX_get_security_callback 410 EXIST::FUNCTION:
|
2015-02-04 23:50:00 +00:00
|
|
|
SSL_SESSION_print_keylog 411 EXIST::FUNCTION:
|
2014-08-28 17:39:03 +00:00
|
|
|
SSL_CTX_set_not_resumable_session_callback 412 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_CTX_set_not_resumbl_sess_cb 412 EXIST:VMS:FUNCTION:
|
|
|
|
SSL_get0_security_ex_data 413 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_security_callback 414 EXIST::FUNCTION:
|
|
|
|
SSL_get1_supported_ciphers 415 EXIST::FUNCTION:
|
|
|
|
SSL_set_security_level 416 EXIST::FUNCTION:
|
|
|
|
SSL_set0_security_ex_data 417 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_security_level 418 EXIST::FUNCTION:
|
|
|
|
SSL_set_not_resumable_session_callback 419 EXIST:!VMS:FUNCTION:
|
|
|
|
SSL_set_not_resumbl_sess_cb 419 EXIST:VMS:FUNCTION:
|
|
|
|
SSL_get_security_callback 420 EXIST::FUNCTION:
|
|
|
|
SSL_get_security_level 421 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set0_security_ex_data 422 EXIST::FUNCTION:
|
|
|
|
SSL_set_security_callback 423 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get_security_level 424 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_get0_security_ex_data 425 EXIST::FUNCTION:
|
2015-03-14 22:42:55 +00:00
|
|
|
SSL_SESSION_has_ticket 426 EXIST::FUNCTION:
|
|
|
|
SSL_set_wbio 427 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_get0_ticket 428 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_get_ticket_lifetime_hint 429 EXIST::FUNCTION:
|
|
|
|
SSL_set_rbio 430 EXIST::FUNCTION:
|
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-24 19:26:15 +00:00
|
|
|
SSL_CIPHER_get_digest_nid 431 EXIST::FUNCTION:
|
|
|
|
SSL_CIPHER_get_cipher_nid 432 EXIST::FUNCTION:
|
2015-05-07 13:59:08 +00:00
|
|
|
SSL_use_certificate_chain_file 433 EXIST::FUNCTION:STDIO
|
2015-03-27 23:01:51 +00:00
|
|
|
TLS_server_method 434 EXIST::FUNCTION:
|
|
|
|
TLS_method 435 EXIST::FUNCTION:
|
2015-03-30 23:18:31 +00:00
|
|
|
TLS_client_method 436 EXIST::FUNCTION:
|
2015-05-28 15:36:51 +00:00
|
|
|
SSL_get_server_random 437 EXIST::FUNCTION:
|
|
|
|
SSL_get_client_ciphers 438 EXIST::FUNCTION:
|
|
|
|
SSL_get_client_random 439 EXIST::FUNCTION:
|
|
|
|
SSL_SESSION_get_master_key 440 EXIST::FUNCTION:
|
2015-09-22 15:50:32 +00:00
|
|
|
SSL_CTX_set_default_verify_dir 441 EXIST::FUNCTION:
|
|
|
|
SSL_CTX_set_default_verify_file 442 EXIST::FUNCTION:
|