mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
Update opt and fpe command
This commit is contained in:
@@ -11,7 +11,7 @@ IF[{- !$disabled{apps} -}]
|
||||
s_client.c s_server.c s_time.c sess_id.c smime.c speed.c spkac.c \
|
||||
srp.c ts.c verify.c version.c x509.c rehash.c \
|
||||
apps.c opt.c s_cb.c s_socket.c \
|
||||
app_rand.c cpk.c sm2.c sm9.c otp.c \
|
||||
app_rand.c cpk.c sm2.c sm9.c otp.c fpe.c \
|
||||
{- $target{apps_aux_src} -}
|
||||
INCLUDE[gmssl]=.. ../include
|
||||
DEPEND[gmssl]=../libssl
|
||||
|
||||
286
apps/fpe.c
Normal file
286
apps/fpe.c
Normal file
@@ -0,0 +1,286 @@
|
||||
/* ====================================================================
|
||||
* Copyright (c) 2014 - 2018 The GmSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project.
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* 4. The name "GmSSL Project" must not be used to endorse or promote
|
||||
* products derived from this software without prior written
|
||||
* permission. For written permission, please contact
|
||||
* guanzhi1980@gmail.com.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "GmSSL"
|
||||
* nor may "GmSSL" appear in their names without prior written
|
||||
* permission of the GmSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
#include <openssl/opensslconf.h>
|
||||
#ifdef OPENSSL_NO_FPE
|
||||
NON_EMPTY_TRANSLATION_UNIT
|
||||
#else
|
||||
|
||||
# include <ctype.h>
|
||||
# include <stdio.h>
|
||||
# include <string.h>
|
||||
# include <openssl/bio.h>
|
||||
# include <openssl/err.h>
|
||||
# include <openssl/evp.h>
|
||||
# include <openssl/ffx.h>
|
||||
# include "apps.h"
|
||||
|
||||
typedef enum OPTION_choice {
|
||||
OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
|
||||
OPT_LIST,
|
||||
OPT_E, OPT_D,
|
||||
OPT_CIPHER, OPT_UPPER_K, OPT_TWEAK,
|
||||
OPT_ENGINE, OPT_CONFIG
|
||||
} OPTION_CHOICE;
|
||||
|
||||
OPTIONS fpe_options[] = {
|
||||
{"help", OPT_HELP, '-', "Display this summary"},
|
||||
{"ciphers", OPT_LIST, '-', "List ciphers"},
|
||||
{"e", OPT_E, '-', "Encrypt"},
|
||||
{"d", OPT_D, '-', "Decrypt"},
|
||||
{"K", OPT_UPPER_K, 's', "Raw key, in hex"},
|
||||
{"tweak", OPT_TWEAK, 's', "Tweak string"},
|
||||
{"", OPT_CIPHER, '-', "Any supported cipher"},
|
||||
#ifndef OPENSSL_NO_ENGINE
|
||||
{"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
|
||||
{"config", OPT_CONFIG, 's', "A config file"},
|
||||
#endif
|
||||
{NULL}
|
||||
};
|
||||
|
||||
static void show_ciphers(const OBJ_NAME *name, void *bio_);
|
||||
static int set_hex(char *in, unsigned char *out, int size);
|
||||
|
||||
int fpe_main(int argc, char **argv)
|
||||
{
|
||||
int ret = 1;
|
||||
BIO *in = NULL, *out = NULL;
|
||||
char *prog;
|
||||
OPTION_CHOICE o;
|
||||
int enc = 1;
|
||||
unsigned char key[32] = {0};
|
||||
char *hkey = NULL, *tweak = NULL;
|
||||
const EVP_CIPHER *cipher = NULL;
|
||||
CONF *conf = NULL;
|
||||
char *configfile = default_config_file;
|
||||
ENGINE *e = NULL;
|
||||
char inbuf[32] = {0};
|
||||
char outbuf[32] = {0};
|
||||
FFX_CTX *ctx = NULL;
|
||||
|
||||
|
||||
prog = opt_init(argc, argv, fpe_options);
|
||||
while ((o = opt_next()) != OPT_EOF) {
|
||||
switch (o) {
|
||||
case OPT_EOF:
|
||||
case OPT_ERR:
|
||||
help:
|
||||
BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
|
||||
goto end;
|
||||
case OPT_HELP:
|
||||
opt_help(fpe_options);
|
||||
ret = 0;
|
||||
goto end;
|
||||
case OPT_LIST:
|
||||
BIO_printf(bio_err, "Supported ciphers:\n");
|
||||
OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH,
|
||||
show_ciphers, bio_err);
|
||||
BIO_printf(bio_err, "\n");
|
||||
goto end;
|
||||
case OPT_E:
|
||||
enc = 1;
|
||||
break;
|
||||
case OPT_D:
|
||||
enc = 0;
|
||||
break;
|
||||
case OPT_UPPER_K:
|
||||
hkey = opt_arg();
|
||||
break;
|
||||
case OPT_TWEAK:
|
||||
tweak = opt_arg();
|
||||
break;
|
||||
case OPT_CIPHER:
|
||||
if (!opt_cipher(opt_unknown(), &cipher))
|
||||
goto help;
|
||||
break;
|
||||
case OPT_ENGINE:
|
||||
e = setup_engine(opt_arg(), 0);
|
||||
break;
|
||||
case OPT_CONFIG:
|
||||
configfile = opt_arg();
|
||||
break;
|
||||
}
|
||||
}
|
||||
argc = opt_num_rest();
|
||||
if (argc != 0)
|
||||
goto help;
|
||||
|
||||
in = BIO_new_fp(stdin, BIO_NOCLOSE);
|
||||
out = BIO_new_fp(stdout, BIO_NOCLOSE);
|
||||
|
||||
/* engine */
|
||||
if (e)
|
||||
BIO_printf(bio_err, "Using configuration from %s\n", configfile);
|
||||
|
||||
if ((conf = app_load_config(configfile)) == NULL)
|
||||
goto end;
|
||||
if (configfile != default_config_file && !app_load_modules(conf))
|
||||
goto end;
|
||||
|
||||
/* get cipher */
|
||||
if (EVP_CIPHER_mode(cipher) != EVP_CIPH_ECB_MODE) {
|
||||
BIO_printf(bio_err, "%s: Only block cipher with ECB mode is supported\n", prog);
|
||||
goto end;
|
||||
}
|
||||
|
||||
/* get key */
|
||||
if (!hkey) {
|
||||
BIO_printf(bio_err, "%s: no key given\n", prog);
|
||||
goto end;
|
||||
}
|
||||
if (!set_hex(hkey, key, EVP_CIPHER_key_length(cipher))) {
|
||||
BIO_printf(bio_err, "%s: invalid hex key value\n", prog);
|
||||
goto end;
|
||||
}
|
||||
|
||||
/* get tweak */
|
||||
if (!tweak) {
|
||||
BIO_printf(bio_err, "%s: `-tweak` required\n", prog);
|
||||
goto end;
|
||||
}
|
||||
if (strlen(tweak) < FFX_MIN_TWEAKLEN || strlen(tweak) > FFX_MAX_TWEAKLEN) {
|
||||
BIO_printf(bio_err, "%s: invalid tweak length, should be %d to %d\n",
|
||||
prog, FFX_MIN_TWEAKLEN, FFX_MAX_TWEAKLEN);
|
||||
goto end;
|
||||
}
|
||||
|
||||
/* get input digits */
|
||||
if (BIO_read(in, inbuf, sizeof(inbuf) - 1) <= 0) {
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
if (strlen(inbuf) < FFX_MIN_DIGITS || strlen(inbuf) > FFX_MAX_DIGITS) {
|
||||
BIO_printf(bio_err, "%s: invalid digits length, should be %d to %d\n",
|
||||
prog, FFX_MIN_DIGITS, FFX_MAX_DIGITS);
|
||||
goto end;
|
||||
}
|
||||
|
||||
/* encrypt/decrypt */
|
||||
if (!(ctx = FFX_CTX_new())
|
||||
|| !FFX_init(ctx, cipher, key, 0)) {
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
if (enc) {
|
||||
if (!FFX_encrypt(ctx, inbuf, outbuf, strlen(inbuf),
|
||||
(unsigned char *)tweak, strlen(tweak))) {
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
} else {
|
||||
if (!FFX_decrypt(ctx, inbuf, outbuf, strlen(inbuf),
|
||||
(unsigned char *)tweak, strlen(tweak))) {
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (BIO_write(out, outbuf, strlen(outbuf)) != strlen(outbuf)) {
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
BIO_puts(out, "\n");
|
||||
|
||||
ret = 0;
|
||||
|
||||
end:
|
||||
BIO_free(in);
|
||||
BIO_free(out);
|
||||
OPENSSL_cleanse(key, sizeof(key));
|
||||
if (enc)
|
||||
OPENSSL_cleanse(inbuf, sizeof(inbuf));
|
||||
FFX_CTX_free(ctx);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void show_ciphers(const OBJ_NAME *name, void *bio_)
|
||||
{
|
||||
BIO *bio = bio_;
|
||||
static int n;
|
||||
|
||||
if (!islower((unsigned char)*name->name))
|
||||
return;
|
||||
|
||||
BIO_printf(bio, "-%-25s", name->name);
|
||||
if (++n == 3) {
|
||||
BIO_printf(bio, "\n");
|
||||
n = 0;
|
||||
} else
|
||||
BIO_printf(bio, " ");
|
||||
}
|
||||
|
||||
static int set_hex(char *in, unsigned char *out, int size)
|
||||
{
|
||||
int i, n;
|
||||
unsigned char j;
|
||||
|
||||
n = strlen(in);
|
||||
if (n > (size * 2)) {
|
||||
BIO_printf(bio_err, "hex string is too long\n");
|
||||
return (0);
|
||||
}
|
||||
memset(out, 0, size);
|
||||
for (i = 0; i < n; i++) {
|
||||
j = (unsigned char)*in;
|
||||
*(in++) = '\0';
|
||||
if (j == 0)
|
||||
break;
|
||||
if (!isxdigit(j)) {
|
||||
BIO_printf(bio_err, "non-hex digit\n");
|
||||
return (0);
|
||||
}
|
||||
j = (unsigned char)OPENSSL_hexchar2int(j);
|
||||
if (i & 1)
|
||||
out[i / 2] |= j;
|
||||
else
|
||||
out[i / 2] = (j << 4);
|
||||
}
|
||||
return (1);
|
||||
}
|
||||
#endif
|
||||
@@ -121,7 +121,7 @@ opthelp:
|
||||
unsigned char key[32];
|
||||
|
||||
if (!RAND_bytes(key, sizeof(key))) {
|
||||
ERR_print_errors_fp(stderr);
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@ opthelp:
|
||||
goto end;
|
||||
}
|
||||
|
||||
printf("generate OTP seed in '%s'\n", outfile);
|
||||
BIO_printf(bio_err, "generate OTP seed in '%s'\n", outfile);
|
||||
|
||||
} else if (genkey) {
|
||||
|
||||
@@ -152,12 +152,12 @@ opthelp:
|
||||
goto end;
|
||||
|
||||
if (BIO_read(bio, key, sizeof(key)) != sizeof(key)) {
|
||||
ERR_print_errors_fp(stderr);
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!OTP_generate(¶ms, event, sizeof(event), &otp, key, sizeof(key))) {
|
||||
ERR_print_errors_fp(stderr);
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
||||
@@ -41,6 +41,7 @@ extern int enc_main(int argc, char *argv[]);
|
||||
extern int engine_main(int argc, char *argv[]);
|
||||
extern int errstr_main(int argc, char *argv[]);
|
||||
extern int exit_main(int argc, char *argv[]);
|
||||
extern int fpe_main(int argc, char *argv[]);
|
||||
extern int gendsa_main(int argc, char *argv[]);
|
||||
extern int genpkey_main(int argc, char *argv[]);
|
||||
extern int genrsa_main(int argc, char *argv[]);
|
||||
@@ -94,6 +95,7 @@ extern OPTIONS enc_options[];
|
||||
extern OPTIONS engine_options[];
|
||||
extern OPTIONS errstr_options[];
|
||||
extern OPTIONS exit_options[];
|
||||
extern OPTIONS fpe_options[];
|
||||
extern OPTIONS gendsa_options[];
|
||||
extern OPTIONS genpkey_options[];
|
||||
extern OPTIONS genrsa_options[];
|
||||
@@ -169,6 +171,7 @@ static FUNCTION functions[] = {
|
||||
#endif
|
||||
{ FT_general, "errstr", errstr_main, errstr_options },
|
||||
{ FT_general, "exit", exit_main, exit_options },
|
||||
{ FT_general, "fpe", fpe_main, fpe_options },
|
||||
#ifndef OPENSSL_NO_DSA
|
||||
{ FT_general, "gendsa", gendsa_main, gendsa_options },
|
||||
#endif
|
||||
|
||||
4998
util/libcrypto.num
4998
util/libcrypto.num
File diff suppressed because it is too large
Load Diff
411
util/libssl.num
411
util/libssl.num
@@ -0,0 +1,411 @@
|
||||
SSL_CTX_get_ex_data 1 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_security_level 2 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_dane_enable 3 1_1_0d EXIST::FUNCTION:
|
||||
SSLv3_client_method 4 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
|
||||
SSL_CTX_load_verify_locations 5 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_new 6 1_1_0d EXIST::FUNCTION:
|
||||
d2i_SSL_SESSION 7 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_default_passwd_cb 8 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_get_bits 9 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_sess_set_remove_cb 10 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_info_callback 11 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_set1_id 12 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_2_client_method 13 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
|
||||
SSL_CTX_set_client_cert_cb 14 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_default_passwd_cb 15 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_cert_cb 16 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_security_level 17 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_verify_depth 18 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_tlsext_use_srtp 19 1_1_0d EXIST::FUNCTION:SRTP
|
||||
SSL_CTX_sess_get_new_cb 20 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set1_param 21 1_1_0d EXIST::FUNCTION:
|
||||
DTLS_client_method 22 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_session_id_context 23 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_current_cipher 24 1_1_0d EXIST::FUNCTION:
|
||||
SSL_rstate_string_long 25 1_1_0d EXIST::FUNCTION:
|
||||
SSL_COMP_get_compression_methods 26 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_ex_data 27 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set0_ctlog_store 28 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_get_ciphers 29 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_default_passwd_cb 30 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_RSAPrivateKey 31 1_1_0d EXIST::FUNCTION:RSA
|
||||
SSL_CTX_get_client_CA_list 32 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_remove_session 33 1_1_0d EXIST::FUNCTION:
|
||||
SSL_add_file_cert_subjects_to_stack 34 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_RSAPrivateKey_file 35 1_1_0d EXIST::FUNCTION:RSA
|
||||
SSL_CTX_set_options 36 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_cert_cb 37 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_not_resumable_session_callback 38 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_psk_client_callback 39 1_1_0d EXIST::FUNCTION:PSK
|
||||
SSL_set_ct_validation_callback 40 1_1_0d EXIST::FUNCTION:CT
|
||||
DTLSv1_2_client_method 41 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
|
||||
SSL_CTX_get0_certificate 42 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_ssl_version 43 1_1_0d EXIST::FUNCTION:
|
||||
BIO_f_ssl 44 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_cmd_argv 45 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_alpn_protos 46 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_RSAPrivateKey_ASN1 47 1_1_0d EXIST::FUNCTION:RSA
|
||||
SSL_set0_wbio 48 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_SSL_CTX 49 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_RSAPrivateKey_file 50 1_1_0d EXIST::FUNCTION:RSA
|
||||
SSL_export_keying_material 51 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get1_session 52 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_srp_cb_arg 53 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_get_servername_type 54 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_error 55 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_srp_userinfo 56 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_get_ex_data 57 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_serverinfo 58 1_1_0d EXIST::FUNCTION:
|
||||
SSL_shutdown 59 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_privatekey 60 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_psk_server_callback 61 1_1_0d EXIST::FUNCTION:PSK
|
||||
DTLSv1_client_method 62 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
|
||||
SSL_get0_param 63 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_client_CA_list 64 1_1_0d EXIST::FUNCTION:
|
||||
SSL_check_private_key 65 1_1_0d EXIST::FUNCTION:
|
||||
SSL_COMP_set0_compression_methods 66 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_certificate 67 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_finish 68 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_get_version 69 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_SRP_CTX_free 70 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_renegotiate_abbreviated 71 1_1_0d EXIST::FUNCTION:
|
||||
SSL_dane_clear_flags 72 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_cookie_generate_cb 73 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_add_session 74 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_generate_session_id 75 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_ctlog_list_file 76 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_get_current_expansion 77 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_alpn_protos 78 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_cipher_list 79 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_sigalgs 80 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_serverinfo_file 81 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_srp_strength 82 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_get0_dane_authority 83 1_1_0d EXIST::FUNCTION:
|
||||
SSL_COMP_get_name 84 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get1_supported_ciphers 85 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_session_ticket_ext 86 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_options 87 1_1_0d EXIST::FUNCTION:
|
||||
SSL_ct_is_enabled 88 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_CTX_set_default_verify_file 89 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get_time 90 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_client_cert_engine 91 1_1_0d EXIST::FUNCTION:ENGINE
|
||||
SSL_SESSION_get0_hostname 92 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_session 93 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_default_passwd_cb_userdata 94 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_srp_server_param 95 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_set_ex_data 96 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_sess_get_remove_cb 97 1_1_0d EXIST::FUNCTION:
|
||||
PEM_write_bio_SSL_SESSION 98 1_1_0d EXIST::FUNCTION:
|
||||
SSL_has_pending 99 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get_ticket_lifetime_hint 100 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_psk_server_callback 101 1_1_0d EXIST::FUNCTION:PSK
|
||||
SSL_get_default_passwd_cb_userdata 102 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_free 103 1_1_0d EXIST::FUNCTION:
|
||||
SSL_free 104 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_new 105 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get0_privatekey 106 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_certificate_file 107 1_1_0d EXIST::FUNCTION:
|
||||
DTLSv1_server_method 108 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
|
||||
SSL_SESSION_get0_cipher 109 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_enable_ct 110 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_get_version 111 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_sess_get_get_cb 112 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_shared_ciphers 113 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_client_ciphers 114 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_psk_identity_hint 115 1_1_0d EXIST::FUNCTION:PSK
|
||||
SSL_set_client_CA_list 116 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_tlsext_use_srtp 117 1_1_0d EXIST::FUNCTION:SRTP
|
||||
SSL_get_info_callback 118 1_1_0d EXIST::FUNCTION:
|
||||
SSL_write 119 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_msg_callback 120 1_1_0d EXIST::FUNCTION:
|
||||
SSL_is_gmtls 121 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_psk_identity_hint 122 1_1_0d EXIST::FUNCTION:PSK
|
||||
SSL_set_verify 123 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_1_server_method 124 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
|
||||
TLS_server_method 125 1_1_0d EXIST::FUNCTION:
|
||||
GMTLS_server_method 126 1_1_0d EXIST::FUNCTION:GMTLS
|
||||
SSL_waiting_for_async 127 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_srp_username 128 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_set_rfd 129 1_1_0d EXIST::FUNCTION:SOCK
|
||||
SSL_CTX_set_cert_verify_callback 130 1_1_0d EXIST::FUNCTION:
|
||||
SSL_config 131 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_fd 132 1_1_0d EXIST::FUNCTION:SOCK
|
||||
SSL_CTX_get_timeout 133 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_get_kx_nid 134 1_1_0d EXIST::FUNCTION:
|
||||
PEM_write_SSL_SESSION 135 1_1_0d EXIST::FUNCTION:STDIO
|
||||
SSL_SESSION_free 136 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_PrivateKey 137 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_get_cipher_nid 138 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_default_passwd_cb_userdata 139 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_srp_N 140 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_CTX_set_not_resumable_session_callback 141 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_dane_set_flags 142 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_cookie_verify_cb 143 1_1_0d EXIST::FUNCTION:
|
||||
DTLSv1_2_method 144 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
|
||||
SSL_use_psk_identity_hint 145 1_1_0d EXIST::FUNCTION:PSK
|
||||
SSL_get_verify_result 146 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SRP_CTX_free 147 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_CTX_set_default_read_buffer_len 148 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_1_client_method 149 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
|
||||
SSL_set0_security_ex_data 150 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_shutdown 151 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get_id 152 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_verify 153 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_2_server_method 154 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
|
||||
SSL_get_server_random 155 1_1_0d EXIST::FUNCTION:
|
||||
DTLSv1_2_server_method 156 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD
|
||||
SSL_CTX_free 157 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SRP_CTX_init 158 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_callback_ctrl 159 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_shared_sigalgs 160 1_1_0d EXIST::FUNCTION:
|
||||
SSL_extension_supported 161 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_default_passwd_cb 162 1_1_0d EXIST::FUNCTION:
|
||||
TLS_client_method 163 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_security_level 164 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_hostflags 165 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_read_ahead 166 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_quiet_shutdown 167 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_set_time 168 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_wfd 169 1_1_0d EXIST::FUNCTION:SOCK
|
||||
SSL_set_info_callback 170 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_print_fp 171 1_1_0d EXIST::FUNCTION:STDIO
|
||||
BIO_new_buffer_ssl_connect 172 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_PrivateKey_file 173 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_add_client_custom_ext 174 1_1_0d EXIST::FUNCTION:
|
||||
DTLS_server_method 175 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_srtp_profiles 176 1_1_0d EXIST::FUNCTION:SRTP
|
||||
SSL_CTX_up_ref 177 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_config 178 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_check_private_key 179 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_security_callback 180 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_RSAPrivateKey 181 1_1_0d EXIST::FUNCTION:RSA
|
||||
SSL_new 182 1_1_0d EXIST::FUNCTION:
|
||||
SSL_check_chain 183 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_cert_store 184 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_finished 185 1_1_0d EXIST::FUNCTION:
|
||||
SSL_alert_desc_string 186 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_security_ex_data 187 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_default_ctlog_list_file 188 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_enable_ct 189 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_CTX_set_ct_validation_callback 190 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_CTX_get_ssl_method 191 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_msg_callback 192 1_1_0d EXIST::FUNCTION:
|
||||
SSL_COMP_get_id 193 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_add_server_custom_ext 194 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_peer_cert_chain 195 1_1_0d EXIST::FUNCTION:
|
||||
GMTLS_client_method 196 1_1_0d EXIST::FUNCTION:GMTLS
|
||||
SSL_CTX_set_srp_password 197 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_use_certificate_chain_file 198 1_1_0d EXIST::FUNCTION:
|
||||
PEM_read_SSL_SESSION 199 1_1_0d EXIST::FUNCTION:STDIO
|
||||
SSL_CTX_set_trust 200 1_1_0d EXIST::FUNCTION:
|
||||
SSL_connect 201 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_default_timeout 202 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get_timeout 203 1_1_0d EXIST::FUNCTION:
|
||||
TLS_method 204 1_1_0d EXIST::FUNCTION:
|
||||
SSL_state_string_long 205 1_1_0d EXIST::FUNCTION:
|
||||
SSL_add_dir_cert_subjects_to_stack 206 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_SSL_CTX 207 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_alpn_select_cb 208 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_wfd 209 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_read_ahead 210 1_1_0d EXIST::FUNCTION:
|
||||
SSL_test_functions 211 1_1_0d EXIST::FUNCTION:UNIT_TEST
|
||||
SSL_CTX_set_client_CA_list 212 1_1_0d EXIST::FUNCTION:
|
||||
SSL_client_version 213 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_certificate 214 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_RSAPrivateKey_ASN1 215 1_1_0d EXIST::FUNCTION:RSA
|
||||
SSL_SESSION_get_ex_data 216 1_1_0d EXIST::FUNCTION:
|
||||
SSL_in_init 217 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get0_security_ex_data 218 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_certificate_chain_file 219 1_1_0d EXIST::FUNCTION:
|
||||
SSL_state_string 220 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_add_client_CA 221 1_1_0d EXIST::FUNCTION:
|
||||
BIO_ssl_copy_session_id 222 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_find 223 1_1_0d EXIST::FUNCTION:
|
||||
SSL_trace 224 1_1_0d EXIST::FUNCTION:SSL_TRACE
|
||||
SSL_CTX_dane_mtype_set 225 1_1_0d EXIST::FUNCTION:
|
||||
SSL_session_reused 226 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_verify_depth 227 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set0_rbio 228 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get_protocol_version 229 1_1_0d EXIST::FUNCTION:
|
||||
SSL_select_next_proto 230 1_1_0d EXIST::FUNCTION:
|
||||
SSL_alert_type_string_long 231 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_dane_tlsa 232 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_SRP_CTX_init 233 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_CTX_ct_is_enabled 234 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_set_default_read_buffer_len 235 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_purpose 236 1_1_0d EXIST::FUNCTION:
|
||||
SSL_certs_clear 237 1_1_0d EXIST::FUNCTION:
|
||||
SSL_add1_host 238 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_client_random 239 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_PrivateKey_ASN1 240 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_cert_store 241 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_generate_session_id 242 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_security_callback 243 1_1_0d EXIST::FUNCTION:
|
||||
SSL_alert_desc_string_long 244 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_set1_id_context 245 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_clear_flags 246 1_1_0d EXIST::FUNCTION:
|
||||
GMTLS_method 247 1_1_0d EXIST::FUNCTION:GMTLS
|
||||
SSL_set_connect_state 248 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_dane_clear_flags 249 1_1_0d EXIST::FUNCTION:
|
||||
SSL_renegotiate_pending 250 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_srp_username_callback 251 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_CTX_set0_security_ex_data 252 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_certificate_ASN1 253 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_set_timeout 254 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_set_ssl_ctx 255 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_certificate_ASN1 256 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get0_ctlog_store 257 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_CTX_set_timeout 258 1_1_0d EXIST::FUNCTION:
|
||||
DTLSv1_method 259 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD
|
||||
SSL_has_matching_session_id 260 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_ssl_method 261 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_set1_prefix 262 1_1_0d EXIST::FUNCTION:
|
||||
BIO_new_ssl_connect 263 1_1_0d EXIST::FUNCTION:
|
||||
OPENSSL_init_ssl 264 1_1_0d EXIST::FUNCTION:
|
||||
SSL_COMP_add_compression_method 265 1_1_0d EXIST::FUNCTION:
|
||||
SSL_dane_tlsa_add 266 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_info_callback 267 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_verify_mode 268 1_1_0d EXIST::FUNCTION:
|
||||
SSL_do_handshake 269 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_wbio 270 1_1_0d EXIST::FUNCTION:
|
||||
SSL_read 271 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_sess_set_get_cb 272 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_peer_certificate 273 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_next_proto_select_cb 274 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
|
||||
SSL_get_session 275 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_set_ex_data 276 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_default_passwd_cb_userdata 277 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_peer_scts 278 1_1_0d EXIST::FUNCTION:CT
|
||||
SSL_get_rbio 279 1_1_0d EXIST::FUNCTION:
|
||||
SSL_clear_options 280 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_srp_verify_param_callback 281 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_set_srp_server_param_pw 282 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_version 283 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_session_secret_cb 284 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_quiet_shutdown 285 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_srp_username 286 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_set_options 287 1_1_0d EXIST::FUNCTION:
|
||||
SSL_peek 288 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get_compress_id 289 1_1_0d EXIST::FUNCTION:
|
||||
SSL_ctrl 290 1_1_0d EXIST::FUNCTION:
|
||||
SSL_copy_session_id 291 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_print_keylog 292 1_1_0d EXIST::FUNCTION:
|
||||
SSL_COMP_get0_name 293 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_verify_callback 294 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_cmd 295 1_1_0d EXIST::FUNCTION:
|
||||
BIO_new_ssl 296 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_srp_client_pwd_callback 297 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_get_security_level 298 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get0_peer 299 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_verified_chain 300 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_next_proto_negotiated 301 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
|
||||
SSL_CTX_set_cipher_list 302 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_get_id 303 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_ex_data_X509_STORE_CTX_idx 304 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_set_ssl 305 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_PrivateKey_file 306 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_all_async_fds 307 1_1_0d EXIST::FUNCTION:
|
||||
PEM_read_bio_SSL_SESSION 308 1_1_0d EXIST::FUNCTION:
|
||||
SSL_srp_server_param_with_username 309 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_CTX_set_default_verify_dir 310 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_server_method 311 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
|
||||
SSL_SESSION_has_ticket 312 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_peer_finished 313 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_verify_result 314 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_verify_mode 315 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_flush_sessions 316 1_1_0d EXIST::FUNCTION:
|
||||
DTLSv1_listen 317 1_1_0d EXIST::FUNCTION:SOCK
|
||||
SSL_set1_host 318 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_ctrl 319 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_has_client_custom_ext 320 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_cipher_list 321 1_1_0d EXIST::FUNCTION:
|
||||
SSL_dup_CA_list 322 1_1_0d EXIST::FUNCTION:
|
||||
SRP_Calc_A_param 323 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_set_trust 324 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_peername 325 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_verify_depth 326 1_1_0d EXIST::FUNCTION:
|
||||
SSL_alert_type_string 327 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_CTX_set_flags 328 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_callback_ctrl 329 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_verify_depth 330 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_1_method 331 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD
|
||||
SSL_get_psk_identity 332 1_1_0d EXIST::FUNCTION:PSK
|
||||
SSL_use_certificate 333 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_selected_srtp_profile 334 1_1_0d EXIST::FUNCTION:SRTP
|
||||
SSL_CTX_get_verify_callback 335 1_1_0d EXIST::FUNCTION:
|
||||
SSL_add_client_CA 336 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_default_verify_paths 337 1_1_0d EXIST::FUNCTION:
|
||||
SSL_dup 338 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_debug 339 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0
|
||||
SSL_accept 340 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_bio 341 1_1_0d EXIST::FUNCTION:
|
||||
SSL_dane_set_flags 342 1_1_0d EXIST::FUNCTION:
|
||||
SSL_use_PrivateKey_ASN1 343 1_1_0d EXIST::FUNCTION:
|
||||
SSLv3_method 344 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
|
||||
SSL_is_server 345 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_tmp_dh_callback 346 1_1_0d EXIST::FUNCTION:DH
|
||||
SSL_up_ref 347 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_client_cert_cb 348 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get_master_key 349 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_up_ref 350 1_1_0d EXIST::FUNCTION:
|
||||
SSLv3_server_method 351 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD
|
||||
SSL_set1_param 352 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get0_param 353 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_state 354 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_get_auth_nid 355 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_print 356 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_alpn_selected 357 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_purpose 358 1_1_0d EXIST::FUNCTION:
|
||||
SSL_want 359 1_1_0d EXIST::FUNCTION:
|
||||
SSL_dane_enable 360 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_fd 361 1_1_0d EXIST::FUNCTION:
|
||||
SSL_is_dtls 362 1_1_0d EXIST::FUNCTION:
|
||||
SSL_in_before 363 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get0_dane 364 1_1_0d EXIST::FUNCTION:
|
||||
SSL_rstate_string 365 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_get_digest_nid 366 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_shutdown 367 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_2_method 368 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD
|
||||
BIO_ssl_shutdown 369 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_tmp_dh_callback 370 1_1_0d EXIST::FUNCTION:DH
|
||||
SSL_SESSION_new 371 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_quiet_shutdown 372 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CONF_cmd_value_type 373 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_security_callback 374 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_security_callback 375 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_accept_state 376 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_servername 377 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_standard_name 378 1_1_0d EXIST::FUNCTION:SSL_TRACE
|
||||
SSL_CIPHER_get_name 379 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_srp_g 380 1_1_0d EXIST::FUNCTION:SRP
|
||||
SSL_renegotiate 381 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_sessions 382 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_psk_client_callback 383 1_1_0d EXIST::FUNCTION:PSK
|
||||
SSL_pending 384 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_client_method 385 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
|
||||
DTLS_method 386 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_rfd 387 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_quiet_shutdown 388 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_session_ticket_ext_cb 389 1_1_0d EXIST::FUNCTION:
|
||||
SSL_load_client_CA_file 390 1_1_0d EXIST::FUNCTION:
|
||||
SSL_add_ssl_module 391 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_session_id_context 392 1_1_0d EXIST::FUNCTION:
|
||||
i2d_SSL_SESSION 393 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_set_next_protos_advertised_cb 394 1_1_0d EXIST::FUNCTION:NEXTPROTONEG
|
||||
ERR_load_SSL_strings 395 1_1_0d EXIST::FUNCTION:
|
||||
SSL_is_init_finished 396 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_description 397 1_1_0d EXIST::FUNCTION:
|
||||
SSL_set_ssl_method 398 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_current_compression 399 1_1_0d EXIST::FUNCTION:
|
||||
TLSv1_method 400 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD
|
||||
SSL_CTX_use_PrivateKey 401 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_options 402 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_sess_set_new_cb 403 1_1_0d EXIST::FUNCTION:
|
||||
SSL_clear 404 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get0_ticket 405 1_1_0d EXIST::FUNCTION:
|
||||
SSL_SESSION_get0_id_context 406 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_clear_options 407 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CIPHER_is_aead 408 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_get_ciphers 409 1_1_0d EXIST::FUNCTION:
|
||||
SSL_CTX_use_certificate_file 410 1_1_0d EXIST::FUNCTION:
|
||||
SSL_get_changed_async_fds 411 1_1_0d EXIST::FUNCTION:
|
||||
|
||||
Reference in New Issue
Block a user