From 9a999ae9079b0b11a36b31421d5fbc3fb16f4a97 Mon Sep 17 00:00:00 2001 From: Zhi Guan Date: Fri, 16 Nov 2018 15:26:30 +0800 Subject: [PATCH] Add sm9 and paillier pem support --- apps/s_client.c | 20 +- crypto/asn1/ameth_lib.c | 9 +- crypto/asn1/asn1_err.c | 4 +- crypto/cpk/cpk_err.c | 1 + crypto/evp/evp_err.c | 13 +- crypto/evp/p_lib.c | 54 + crypto/include/internal/asn1_int.h | 7 + crypto/include/internal/evp_int.h | 9 +- crypto/objects/obj_dat.h | 1264 +-- crypto/objects/obj_mac.num | 266 +- crypto/objects/objects.txt | 186 +- crypto/paillier/build.info | 2 +- crypto/paillier/pai_ameth.c | 136 +- crypto/paillier/pai_err.c | 7 +- crypto/paillier/pai_lib.c | 12 +- crypto/paillier/pai_pmeth.c | 3 - crypto/pem/pem3.c | 94 +- crypto/sm9/build.info | 3 +- crypto/sm9/sm9_ameth.c | 411 + crypto/sm9/sm9_asn1.c | 105 +- crypto/sm9/sm9_err.c | 14 + crypto/sm9/sm9_keygen.c | 344 +- crypto/sm9/sm9_lcl.h | 35 +- crypto/sm9/sm9_lib.c | 95 +- .../openssl/pem3.h => crypto/sm9/sm9_prn.c | 134 +- crypto/sm9/sm9_setup.c | 23 +- crypto/x509/x_pubkey.c | 78 + include/openssl/asn1.h | 2 + include/openssl/cpk.h | 1 + include/openssl/evp.h | 48 +- include/openssl/obj_mac.h | 681 +- include/openssl/opensslv.h | 4 +- include/openssl/paillier.h | 7 + include/openssl/pem.h | 36 + include/openssl/sm9.h | 79 +- include/openssl/x509.h | 9 + util/libcrypto.num | 9930 +++++++++-------- util/libssl.num | 822 +- 38 files changed, 7956 insertions(+), 6992 deletions(-) create mode 100644 crypto/sm9/sm9_ameth.c rename include/openssl/pem3.h => crypto/sm9/sm9_prn.c (51%) diff --git a/apps/s_client.c b/apps/s_client.c index eab05e72..aa693b2c 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -538,7 +538,7 @@ typedef enum OPTION_choice { OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH, OPT_SRP_LATEUSER, OPT_SRP_MOREGROUPS, #endif - OPT_SSL3, OPT_SSL_CONFIG, + OPT_SSL3, OPT_CONFIG, OPT_SSL_CONFIG, OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1, OPT_GMTLS, OPT_DTLS1_2, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS, @@ -659,7 +659,8 @@ OPTIONS s_client_options[] = { {"alpn", OPT_ALPN, 's', "Enable ALPN extension, considering named protocols supported (comma-separated list)"}, {"async", OPT_ASYNC, '-', "Support asynchronous operation"}, - {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration file"}, + {"config", OPT_CONFIG, 's', "Use configuration file"}, + {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration section"}, {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'n', "Size used to split data for encrypt pipelines"}, {"max_pipelines", OPT_MAX_PIPELINES, 'n', @@ -726,7 +727,7 @@ OPTIONS s_client_options[] = { "Specify engine to be used for client certificate operations"}, #endif #ifndef OPENSSL_NO_CT - {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapling)"}, + {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapsection)"}, {"noct", OPT_NOCT, '-', "Do not request or parse SCTs (default)"}, {"ctlogfile", OPT_CTLOG_FILE, '<', "CT log list CONF file"}, #endif @@ -838,6 +839,8 @@ int s_client_main(int argc, char **argv) char *servername = NULL; const char *alpn_in = NULL; tlsextctx tlsextcbp = { NULL, 0 }; + CONF *conf = NULL; + const char *configfile = default_config_file; const char *ssl_config = NULL; #define MAX_SI_TYPES 100 unsigned short serverinfo_types[MAX_SI_TYPES]; @@ -1152,6 +1155,9 @@ int s_client_main(int argc, char **argv) min_version = TLS1_VERSION; break; #endif + case OPT_CONFIG: + configfile = opt_arg(); + break; case OPT_SSL_CONFIG: ssl_config = opt_arg(); break; @@ -1347,6 +1353,13 @@ int s_client_main(int argc, char **argv) if (argc != 0) goto opthelp; + 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; + if (proxystr) { int res; char *tmp_host = host, *tmp_port = port; @@ -2522,6 +2535,7 @@ int s_client_main(int argc, char **argv) bio_c_out = NULL; BIO_free(bio_c_msg); bio_c_msg = NULL; + NCONF_free(conf); return (ret); } diff --git a/crypto/asn1/ameth_lib.c b/crypto/asn1/ameth_lib.c index a439db8e..7d5b2968 100644 --- a/crypto/asn1/ameth_lib.c +++ b/crypto/asn1/ameth_lib.c @@ -44,7 +44,14 @@ static const EVP_PKEY_ASN1_METHOD *standard_methods[] = { &dhx_asn1_meth, #endif #ifndef OPENSSL_NO_EC - &ecx25519_asn1_meth + &ecx25519_asn1_meth, +#endif +#ifndef OPENSSL_NO_SM9 + &sm9_asn1_meth, + &sm9_master_asn1_meth, +#endif +#ifndef OPENSSL_NO_PAILLIER + &paillier_asn1_meth, #endif }; diff --git a/crypto/asn1/asn1_err.c b/crypto/asn1/asn1_err.c index fee67563..fd67e6dd 100644 --- a/crypto/asn1/asn1_err.c +++ b/crypto/asn1/asn1_err.c @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -99,6 +99,8 @@ static ERR_STRING_DATA ASN1_str_functs[] = { {ERR_FUNC(ASN1_F_I2D_PRIVATEKEY), "i2d_PrivateKey"}, {ERR_FUNC(ASN1_F_I2D_PUBLICKEY), "i2d_PublicKey"}, {ERR_FUNC(ASN1_F_I2D_RSA_PUBKEY), "i2d_RSA_PUBKEY"}, + {ERR_FUNC(ASN1_F_I2D_SM9_MASTER_PUBKEY), "i2d_SM9_MASTER_PUBKEY"}, + {ERR_FUNC(ASN1_F_I2D_SM9_PUBKEY), "i2d_SM9_PUBKEY"}, {ERR_FUNC(ASN1_F_LONG_C2I), "long_c2i"}, {ERR_FUNC(ASN1_F_OID_MODULE_INIT), "oid_module_init"}, {ERR_FUNC(ASN1_F_PARSE_TAGGING), "parse_tagging"}, diff --git a/crypto/cpk/cpk_err.c b/crypto/cpk/cpk_err.c index 98b057bf..16682204 100644 --- a/crypto/cpk/cpk_err.c +++ b/crypto/cpk/cpk_err.c @@ -55,6 +55,7 @@ static ERR_STRING_DATA CPK_str_reasons[] = { {ERR_REASON(CPK_R_BAD_DATA), "bad data"}, {ERR_REASON(CPK_R_INVALID_ALGORITHM), "invalid algorithm"}, {ERR_REASON(CPK_R_INVALID_ARGUMENT), "invalid argument"}, + {ERR_REASON(CPK_R_INVALID_CURVE), "invalid curve"}, {ERR_REASON(CPK_R_INVALID_ID_LENGTH), "invalid id length"}, {ERR_REASON(CPK_R_INVALID_MAP_ALGOR), "invalid map algor"}, {ERR_REASON(CPK_R_INVALID_PKEY_TYPE), "invalid pkey type"}, diff --git a/crypto/evp/evp_err.c b/crypto/evp/evp_err.c index fa2ded1b..b8a13cbd 100644 --- a/crypto/evp/evp_err.c +++ b/crypto/evp/evp_err.c @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -70,6 +70,12 @@ static ERR_STRING_DATA EVP_str_functs[] = { {ERR_FUNC(EVP_F_EVP_PKEY_GET0_HMAC), "EVP_PKEY_get0_hmac"}, {ERR_FUNC(EVP_F_EVP_PKEY_GET0_PAILLIER), "EVP_PKEY_get0_PAILLIER"}, {ERR_FUNC(EVP_F_EVP_PKEY_GET0_RSA), "EVP_PKEY_get0_RSA"}, + {ERR_FUNC(EVP_F_EVP_PKEY_GET0_SM9), "EVP_PKEY_get0_SM9"}, + {ERR_FUNC(EVP_F_EVP_PKEY_GET0_SM9MASTERSECRET), + "EVP_PKEY_get0_SM9MasterSecret"}, + {ERR_FUNC(EVP_F_EVP_PKEY_GET0_SM9PUBLICPARAMETERS), + "EVP_PKEY_get0_SM9PublicParameters"}, + {ERR_FUNC(EVP_F_EVP_PKEY_GET0_SM9_MASTER), "EVP_PKEY_get0_SM9_MASTER"}, {ERR_FUNC(EVP_F_EVP_PKEY_KEYGEN), "EVP_PKEY_keygen"}, {ERR_FUNC(EVP_F_EVP_PKEY_KEYGEN_INIT), "EVP_PKEY_keygen_init"}, {ERR_FUNC(EVP_F_EVP_PKEY_NEW), "EVP_PKEY_new"}, @@ -120,6 +126,11 @@ static ERR_STRING_DATA EVP_str_reasons[] = { {ERR_REASON(EVP_R_EXPECTING_A_DSA_KEY), "expecting a dsa key"}, {ERR_REASON(EVP_R_EXPECTING_A_EC_KEY), "expecting a ec key"}, {ERR_REASON(EVP_R_EXPECTING_A_PAILLIER), "expecting a paillier"}, + {ERR_REASON(EVP_R_EXPECTING_A_SM9_KEY), "expecting a sm9 key"}, + {ERR_REASON(EVP_R_EXPECTING_A_SM9_MASTER_KEY), + "expecting a sm9 master key"}, + {ERR_REASON(EVP_R_EXPECTING_A_SM9_MASTER_SECRET), + "expecting a sm9 master secret"}, {ERR_REASON(EVP_R_FIPS_MODE_NOT_SUPPORTED), "fips mode not supported"}, {ERR_REASON(EVP_R_ILLEGAL_SCRYPT_PARAMETERS), "illegal scrypt parameters"}, diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c index b497a39d..533e1fa4 100644 --- a/crypto/evp/p_lib.c +++ b/crypto/evp/p_lib.c @@ -370,6 +370,60 @@ PAILLIER *EVP_PKEY_get1_PAILLIER(EVP_PKEY *pkey) } #endif +#ifndef OPENSSL_NO_SM9 + +int EVP_PKEY_set1_SM9_MASTER(EVP_PKEY *pkey, SM9_MASTER_KEY *key) +{ + int ret = EVP_PKEY_assign_SM9_MASTER(pkey, key); + if (ret) + SM9_MASTER_KEY_up_ref(key); + return ret; +} + +SM9_MASTER_KEY *EVP_PKEY_get0_SM9_MASTER(EVP_PKEY *pkey) +{ + if (pkey->type != EVP_PKEY_SM9_MASTER) { + EVPerr(EVP_F_EVP_PKEY_GET0_SM9_MASTER, EVP_R_EXPECTING_A_SM9_MASTER_KEY); + return NULL; + } + return pkey->pkey.sm9_master; +} + +SM9_MASTER_KEY *EVP_PKEY_get1_SM9_MASTER(EVP_PKEY *pkey) +{ + SM9_MASTER_KEY *ret = EVP_PKEY_get0_SM9_MASTER(pkey); + if (ret != NULL) + SM9_MASTER_KEY_up_ref(ret); + return ret; +} + +int EVP_PKEY_set1_SM9(EVP_PKEY *pkey, SM9_KEY *key) +{ + int ret = EVP_PKEY_assign_SM9(pkey, key); + if (ret) + SM9_KEY_up_ref(key); + return ret; +} + +SM9_KEY *EVP_PKEY_get0_SM9(EVP_PKEY *pkey) +{ + if (pkey->type != EVP_PKEY_SM9) { + EVPerr(EVP_F_EVP_PKEY_GET0_SM9, EVP_R_EXPECTING_A_SM9_KEY); + return NULL; + } + return pkey->pkey.sm9; +} + +SM9_KEY *EVP_PKEY_get1_SM9(EVP_PKEY *pkey) +{ + SM9_KEY *ret = EVP_PKEY_get0_SM9(pkey); + if (ret != NULL) + SM9_KEY_up_ref(ret); + return ret; +} + +#endif + #ifndef OPENSSL_NO_DH int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key) diff --git a/crypto/include/internal/asn1_int.h b/crypto/include/internal/asn1_int.h index f70e3b47..63c1bb3e 100644 --- a/crypto/include/internal/asn1_int.h +++ b/crypto/include/internal/asn1_int.h @@ -64,6 +64,13 @@ extern const EVP_PKEY_ASN1_METHOD eckey_asn1_meth; extern const EVP_PKEY_ASN1_METHOD ecx25519_asn1_meth; extern const EVP_PKEY_ASN1_METHOD hmac_asn1_meth; extern const EVP_PKEY_ASN1_METHOD rsa_asn1_meths[2]; +#ifndef OPENSSL_NO_PAILLIER +extern const EVP_PKEY_ASN1_METHOD paillier_asn1_meth; +#endif +#ifndef OPENSSL_NO_SM9 +extern const EVP_PKEY_ASN1_METHOD sm9_master_asn1_meth; +extern const EVP_PKEY_ASN1_METHOD sm9_asn1_meth; +#endif /* * These are used internally in the ASN1_OBJECT to keep track of whether the diff --git a/crypto/include/internal/evp_int.h b/crypto/include/internal/evp_int.h index fd4c2695..a8ab6ea5 100644 --- a/crypto/include/internal/evp_int.h +++ b/crypto/include/internal/evp_int.h @@ -370,8 +370,15 @@ struct evp_pkey_st { # ifndef OPENSSL_NO_EC struct ec_key_st *ec; /* ECC */ # endif -# ifndef OPENSSL_NO_PAILLIER +# ifndef OPENSSL_NO_PAILLIER /* PAILLIER */ struct paillier_st *paillier; +# endif +# ifndef OPENSSL_NO_SM9 /* SM9 */ + struct SM9_MASTER_KEY_st *sm9_master; + struct SM9_KEY_st *sm9; +# endif +# ifndef OPENSSL_NO_CPK /* CPK */ + struct CPK_MASTER_SECERT *cpk; # endif } pkey; int save_parameters; diff --git a/crypto/objects/obj_dat.h b/crypto/objects/obj_dat.h index eac5cace..f4ae00f8 100644 --- a/crypto/objects/obj_dat.h +++ b/crypto/objects/obj_dat.h @@ -10,7 +10,7 @@ */ /* Serialized OID's */ -static const unsigned char so[7927] = { +static const unsigned char so[7886] = { 0x2A,0x86,0x48,0x86,0xF7,0x0D, /* [ 0] OBJ_rsadsi */ 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01, /* [ 6] OBJ_pkcs */ 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x02, /* [ 13] OBJ_md2 */ @@ -982,132 +982,128 @@ static const unsigned char so[7927] = { 0x2B,0x81,0x04,0x01,0x18,0x00, /* [ 6864] OBJ_cmac_aes128_ecies */ 0x2B,0x81,0x04,0x01,0x18,0x01, /* [ 6870] OBJ_cmac_aes192_ecies */ 0x2B,0x81,0x04,0x01,0x18,0x02, /* [ 6876] OBJ_cmac_aes256_ecies */ - 0x2A,0x81,0x1C, /* [ 6882] OBJ_ISO_CN */ - 0x2A,0x81,0x1C,0xCF,0x55, /* [ 6885] OBJ_oscca */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01, /* [ 6890] OBJ_sm_scheme */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x01, /* [ 6896] OBJ_sm6_ecb */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x02, /* [ 6904] OBJ_sm6_cbc */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x03, /* [ 6912] OBJ_sm6_ofb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x04, /* [ 6920] OBJ_sm6_cfb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x01, /* [ 6928] OBJ_sm1_ecb */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x02, /* [ 6936] OBJ_sm1_cbc */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x03, /* [ 6944] OBJ_sm1_ofb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x04, /* [ 6952] OBJ_sm1_cfb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x05, /* [ 6960] OBJ_sm1_cfb1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x06, /* [ 6968] OBJ_sm1_cfb8 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x01, /* [ 6976] OBJ_ssf33_ecb */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x02, /* [ 6984] OBJ_ssf33_cbc */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x03, /* [ 6992] OBJ_ssf33_ofb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x04, /* [ 7000] OBJ_ssf33_cfb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x05, /* [ 7008] OBJ_ssf33_cfb1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x06, /* [ 7016] OBJ_ssf33_cfb8 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x01, /* [ 7024] OBJ_sms4_ecb */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x02, /* [ 7032] OBJ_sms4_cbc */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x03, /* [ 7040] OBJ_sms4_ofb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x04, /* [ 7048] OBJ_sms4_cfb128 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x05, /* [ 7056] OBJ_sms4_cfb1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x06, /* [ 7064] OBJ_sms4_cfb8 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x07, /* [ 7072] OBJ_sms4_ctr */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x08, /* [ 7080] OBJ_sms4_gcm */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x09, /* [ 7088] OBJ_sms4_ccm */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x0A, /* [ 7096] OBJ_sms4_xts */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x0B, /* [ 7104] OBJ_sms4_wrap */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x0C, /* [ 7112] OBJ_sms4_wrap_pad */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x64, /* [ 7120] OBJ_sms4_ocb */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x81,0x49, /* [ 7128] OBJ_sm5 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D, /* [ 7136] OBJ_sm2p256v1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x01, /* [ 7144] OBJ_sm2sign */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03, /* [ 7153] OBJ_sm2encrypt */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x01, /* [ 7162] OBJ_sm2encrypt_recommendedParameters */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02, /* [ 7172] OBJ_sm2encrypt_specifiedParameters */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E, /* [ 7182] OBJ_id_sm9PublicKey */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x01, /* [ 7190] OBJ_sm9sign */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x02, /* [ 7199] OBJ_sm9keyagreement */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03, /* [ 7208] OBJ_sm9encrypt */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x11, /* [ 7217] OBJ_sm3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x11,0x02, /* [ 7225] OBJ_hmac_sm3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x75, /* [ 7234] OBJ_sm2sign_with_sm3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x76, /* [ 7242] OBJ_sm2sign_with_sha1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x77, /* [ 7250] OBJ_sm2sign_with_sha256 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x78, /* [ 7258] OBJ_sm2sign_with_sha512 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x79, /* [ 7266] OBJ_sm2sign_with_sha224 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x7A, /* [ 7274] OBJ_sm2sign_with_sha384 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x7B, /* [ 7282] OBJ_sm2sign_with_rmd160 */ - 0x2A,0x81,0x1C,0xD7,0x63,0x01,0x01,0x02,0x01, /* [ 7290] OBJ_wapip192v1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x86,0x20, /* [ 7299] OBJ_zuc */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x02,0x01, /* [ 7307] OBJ_bfibe */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x02,0x02, /* [ 7317] OBJ_bb1 */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01,0x01, /* [ 7327] OBJ_type1curve */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01,0x02, /* [ 7337] OBJ_type2curve */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01,0x03, /* [ 7347] OBJ_type3curve */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01,0x04, /* [ 7357] OBJ_type4curve */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x03,0x01, /* [ 7367] OBJ_tate_pairing */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x03,0x02, /* [ 7377] OBJ_weil_pairing */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x03,0x03, /* [ 7387] OBJ_ate_pairing */ - 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x03,0x04, /* [ 7397] OBJ_r_ate_pairing */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01, /* [ 7407] OBJ_cpk */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x15, /* [ 7416] OBJ_paillier */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x02, /* [ 7425] OBJ_sm2exchange */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D, /* [ 7434] OBJ_GmSSL */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01, /* [ 7442] OBJ_cpk_map */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x01, /* [ 7452] OBJ_sm2encrypt_with_sm3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x02, /* [ 7463] OBJ_sm2encrypt_with_sha1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x03, /* [ 7474] OBJ_sm2encrypt_with_sha224 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x04, /* [ 7485] OBJ_sm2encrypt_with_sha256 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x05, /* [ 7496] OBJ_sm2encrypt_with_sha384 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x06, /* [ 7507] OBJ_sm2encrypt_with_sha512 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x07, /* [ 7518] OBJ_sm2encrypt_with_rmd160 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x08, /* [ 7529] OBJ_sm2encrypt_with_whirlpool */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x09, /* [ 7540] OBJ_sm2encrypt_with_blake2b512 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x0A, /* [ 7551] OBJ_sm2encrypt_with_blake2s256 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x0B, /* [ 7562] OBJ_sm2encrypt_with_md5 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x84,0x08, /* [ 7573] OBJ_sm2sign_with_whirlpool */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x84,0x09, /* [ 7581] OBJ_sm2sign_with_blake2b512 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x84,0x0A, /* [ 7589] OBJ_sm2sign_with_blake2s256 */ - 0x2B,0x81,0x04,0x01,0x08,0x01, /* [ 7597] OBJ_ecies_with_x9_63_sha1_xor_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x02, /* [ 7603] OBJ_ecies_with_x9_63_sha256_xor_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x03, /* [ 7609] OBJ_ecies_with_x9_63_sha512_xor_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x04, /* [ 7615] OBJ_ecies_with_x9_63_sha1_aes128_cbc_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x05, /* [ 7621] OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x06, /* [ 7627] OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x07, /* [ 7633] OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x08, /* [ 7639] OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac */ - 0x2B,0x81,0x04,0x01,0x08,0x09, /* [ 7645] OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac_half */ - 0x2B,0x81,0x04,0x01,0x08,0x0A, /* [ 7651] OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac_half */ - 0x2B,0x81,0x04,0x01,0x08,0x0B, /* [ 7657] OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac_half */ - 0x2B,0x81,0x04,0x01,0x08,0x0C, /* [ 7663] OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac_half */ - 0x2B,0x81,0x04,0x01,0x08,0x0D, /* [ 7669] OBJ_ecies_with_x9_63_sha1_aes128_cbc_cmac */ - 0x2B,0x81,0x04,0x01,0x08,0x0E, /* [ 7675] OBJ_ecies_with_x9_63_sha256_aes128_cbc_cmac */ - 0x2B,0x81,0x04,0x01,0x08,0x0F, /* [ 7681] OBJ_ecies_with_x9_63_sha512_aes256_cbc_cmac */ - 0x2B,0x81,0x04,0x01,0x08,0x10, /* [ 7687] OBJ_ecies_with_x9_63_sha256_aes128_ctr_cmac */ - 0x2B,0x81,0x04,0x01,0x08,0x11, /* [ 7693] OBJ_ecies_with_x9_63_sha512_aes256_ctr_cmac */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x86,0x20,0x01, /* [ 7699] OBJ_zuc_128eea3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x86,0x20,0x02, /* [ 7708] OBJ_zuc_128eia3 */ - 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x64, /* [ 7717] OBJ_pbe_WithSM3AndSMS4_CBC */ - 0x2A,0x81,0x1C,0xD7,0x63, /* [ 7727] OBJ_bwips */ - 0x2A,0x81,0x1C,0xD7,0x63,0x01, /* [ 7732] OBJ_wapi_crypto */ - 0x2A,0x81,0x1C,0xD7,0x63,0x01,0x01, /* [ 7738] OBJ_wapi_ec */ - 0x2A,0x81,0x1C,0xD7,0x63,0x01,0x01,0x01, /* [ 7745] OBJ_wapi_ecdsa192_sha256 */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x09,0x01, /* [ 7753] OBJ_sm9bn256v1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x04, /* [ 7763] OBJ_sm9hash1 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x04,0x01, /* [ 7772] OBJ_sm9hash1_with_sm3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x04,0x02, /* [ 7782] OBJ_sm9hash1_with_sha256 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x01,0x01, /* [ 7792] OBJ_sm9sign_with_sm3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x01,0x02, /* [ 7802] OBJ_sm9sign_with_sha256 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03,0x01, /* [ 7812] OBJ_sm9encrypt_with_sm3_xor */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03,0x02, /* [ 7822] OBJ_sm9encrypt_with_sm3_sms4_cbc */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03,0x03, /* [ 7832] OBJ_sm9encrypt_with_sm3_sms4_ctr */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x05, /* [ 7842] OBJ_sm9kdf */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x05,0x01, /* [ 7851] OBJ_sm9kdf_with_sm3 */ - 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x05,0x02, /* [ 7861] OBJ_sm9kdf_with_sha256 */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x01, /* [ 7871] OBJ_cpk_map_sha1 */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x02, /* [ 7882] OBJ_cpk_map_sha256 */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x03, /* [ 7893] OBJ_cpk_map_sm3 */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x04, /* [ 7904] OBJ_cpk_map_sha384 */ - 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x05, /* [ 7915] OBJ_cpk_map_sha512 */ + 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x64, /* [ 6882] OBJ_pbe_WithSM3AndSMS4_CBC */ + 0x2B,0x81,0x04,0x01,0x08,0x01, /* [ 6892] OBJ_ecies_with_x9_63_sha1_xor_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x02, /* [ 6898] OBJ_ecies_with_x9_63_sha256_xor_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x03, /* [ 6904] OBJ_ecies_with_x9_63_sha512_xor_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x04, /* [ 6910] OBJ_ecies_with_x9_63_sha1_aes128_cbc_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x05, /* [ 6916] OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x06, /* [ 6922] OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x07, /* [ 6928] OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x08, /* [ 6934] OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac */ + 0x2B,0x81,0x04,0x01,0x08,0x09, /* [ 6940] OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac_half */ + 0x2B,0x81,0x04,0x01,0x08,0x0A, /* [ 6946] OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac_half */ + 0x2B,0x81,0x04,0x01,0x08,0x0B, /* [ 6952] OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac_half */ + 0x2B,0x81,0x04,0x01,0x08,0x0C, /* [ 6958] OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac_half */ + 0x2B,0x81,0x04,0x01,0x08,0x0D, /* [ 6964] OBJ_ecies_with_x9_63_sha1_aes128_cbc_cmac */ + 0x2B,0x81,0x04,0x01,0x08,0x0E, /* [ 6970] OBJ_ecies_with_x9_63_sha256_aes128_cbc_cmac */ + 0x2B,0x81,0x04,0x01,0x08,0x0F, /* [ 6976] OBJ_ecies_with_x9_63_sha512_aes256_cbc_cmac */ + 0x2B,0x81,0x04,0x01,0x08,0x10, /* [ 6982] OBJ_ecies_with_x9_63_sha256_aes128_ctr_cmac */ + 0x2B,0x81,0x04,0x01,0x08,0x11, /* [ 6988] OBJ_ecies_with_x9_63_sha512_aes256_ctr_cmac */ + 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01, /* [ 6994] OBJ_ibcs1 */ + 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01,0x01,0x01, /* [ 7003] OBJ_type1curve */ + 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01,0x02,0x01, /* [ 7014] OBJ_bfibe */ + 0x2A,0x86,0x48,0x01,0x86,0xFD,0x1E,0x01,0x01,0x02,0x02, /* [ 7025] OBJ_bb1ibe */ + 0x2A,0x81,0x1C, /* [ 7036] OBJ_ISO_CN */ + 0x2A,0x81,0x1C,0xCF,0x55, /* [ 7039] OBJ_oscca */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01, /* [ 7044] OBJ_sm_scheme */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x01, /* [ 7050] OBJ_ssf33_ecb */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x02, /* [ 7058] OBJ_ssf33_cbc */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x03, /* [ 7066] OBJ_ssf33_ofb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x04, /* [ 7074] OBJ_ssf33_cfb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x05, /* [ 7082] OBJ_ssf33_cfb1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x06, /* [ 7090] OBJ_ssf33_cfb8 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x67,0x07, /* [ 7098] OBJ_ssf33_cbc_mac */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x01, /* [ 7106] OBJ_sm1_ecb */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x02, /* [ 7114] OBJ_sm1_cbc */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x03, /* [ 7122] OBJ_sm1_ofb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x04, /* [ 7130] OBJ_sm1_cfb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x05, /* [ 7138] OBJ_sm1_cfb1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x66,0x06, /* [ 7146] OBJ_sm1_cfb8 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D, /* [ 7154] OBJ_sm2p256v1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x01, /* [ 7162] OBJ_sm2sign */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x02, /* [ 7171] OBJ_sm2exchange */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03, /* [ 7180] OBJ_sm2encrypt */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x75, /* [ 7189] OBJ_sm2sign_with_sm3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x76, /* [ 7197] OBJ_sm2sign_with_sha1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x77, /* [ 7205] OBJ_sm2sign_with_sha256 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x78, /* [ 7213] OBJ_sm2sign_with_sha512 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x79, /* [ 7221] OBJ_sm2sign_with_sha224 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x7A, /* [ 7229] OBJ_sm2sign_with_sha384 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x7B, /* [ 7237] OBJ_sm2sign_with_rmd160 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x84,0x08, /* [ 7245] OBJ_sm2sign_with_whirlpool */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x84,0x09, /* [ 7253] OBJ_sm2sign_with_blake2b512 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x84,0x0A, /* [ 7261] OBJ_sm2sign_with_blake2s256 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x01, /* [ 7269] OBJ_sm2encrypt_recommendedParameters */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02, /* [ 7279] OBJ_sm2encrypt_specifiedParameters */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x01, /* [ 7289] OBJ_sm2encrypt_with_sm3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x02, /* [ 7300] OBJ_sm2encrypt_with_sha1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x03, /* [ 7311] OBJ_sm2encrypt_with_sha224 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x04, /* [ 7322] OBJ_sm2encrypt_with_sha256 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x05, /* [ 7333] OBJ_sm2encrypt_with_sha384 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x06, /* [ 7344] OBJ_sm2encrypt_with_sha512 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x07, /* [ 7355] OBJ_sm2encrypt_with_rmd160 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x08, /* [ 7366] OBJ_sm2encrypt_with_whirlpool */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x09, /* [ 7377] OBJ_sm2encrypt_with_blake2b512 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x0A, /* [ 7388] OBJ_sm2encrypt_with_blake2s256 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2D,0x03,0x02,0x0B, /* [ 7399] OBJ_sm2encrypt_with_md5 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x11, /* [ 7410] OBJ_sm3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x83,0x11,0x02, /* [ 7418] OBJ_hmac_sm3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x01, /* [ 7427] OBJ_sms4_ecb */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x02, /* [ 7435] OBJ_sms4_cbc */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x03, /* [ 7443] OBJ_sms4_ofb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x04, /* [ 7451] OBJ_sms4_cfb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x05, /* [ 7459] OBJ_sms4_cfb1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x06, /* [ 7467] OBJ_sms4_cfb8 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x07, /* [ 7475] OBJ_sms4_ctr */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x08, /* [ 7483] OBJ_sms4_gcm */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x09, /* [ 7491] OBJ_sms4_ccm */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x0A, /* [ 7499] OBJ_sms4_xts */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x0B, /* [ 7507] OBJ_sms4_wrap */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x0C, /* [ 7515] OBJ_sms4_wrap_pad */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x68,0x64, /* [ 7523] OBJ_sms4_ocb */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x81,0x49, /* [ 7531] OBJ_sm5 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x01, /* [ 7539] OBJ_sm6_ecb */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x02, /* [ 7547] OBJ_sm6_cbc */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x03, /* [ 7555] OBJ_sm6_ofb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x65,0x04, /* [ 7563] OBJ_sm6_cfb128 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E, /* [ 7571] OBJ_id_sm9PublicKey */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x01, /* [ 7579] OBJ_sm9sign */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x02, /* [ 7588] OBJ_sm9keyagreement */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03, /* [ 7597] OBJ_sm9encrypt */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x04, /* [ 7606] OBJ_sm9hash1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x05, /* [ 7615] OBJ_sm9kdf */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x06, /* [ 7624] OBJ_id_sm9MasterSecret */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x06,0x01, /* [ 7633] OBJ_sm9bn256v1 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x01,0x01, /* [ 7643] OBJ_sm9sign_with_sm3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x01,0x02, /* [ 7653] OBJ_sm9sign_with_sha256 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03,0x01, /* [ 7663] OBJ_sm9encrypt_with_sm3_xor */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03,0x02, /* [ 7673] OBJ_sm9encrypt_with_sm3_sms4_cbc */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x03,0x03, /* [ 7683] OBJ_sm9encrypt_with_sm3_sms4_ctr */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x04,0x01, /* [ 7693] OBJ_sm9hash1_with_sm3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x04,0x02, /* [ 7703] OBJ_sm9hash1_with_sha256 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x05,0x01, /* [ 7713] OBJ_sm9kdf_with_sm3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x82,0x2E,0x05,0x02, /* [ 7723] OBJ_sm9kdf_with_sha256 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x86,0x20, /* [ 7733] OBJ_zuc */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x86,0x20,0x01, /* [ 7741] OBJ_zuc_128eea3 */ + 0x2A,0x81,0x1C,0xCF,0x55,0x01,0x86,0x20,0x02, /* [ 7750] OBJ_zuc_128eia3 */ + 0x2A,0x81,0x1C,0xD7,0x63, /* [ 7759] OBJ_bwips */ + 0x2A,0x81,0x1C,0xD7,0x63,0x01, /* [ 7764] OBJ_wapi_crypto */ + 0x2A,0x81,0x1C,0xD7,0x63,0x01,0x01, /* [ 7770] OBJ_wapi_ec */ + 0x2A,0x81,0x1C,0xD7,0x63,0x01,0x01,0x01, /* [ 7777] OBJ_wapi_ecdsa192_sha256 */ + 0x2A,0x81,0x1C,0xD7,0x63,0x01,0x01,0x02,0x01, /* [ 7785] OBJ_wapip192v1 */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D, /* [ 7794] OBJ_GmSSL */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01, /* [ 7802] OBJ_cpk */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01, /* [ 7811] OBJ_cpk_map */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x01, /* [ 7821] OBJ_cpk_map_sha1 */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x02, /* [ 7832] OBJ_cpk_map_sha256 */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x03, /* [ 7843] OBJ_cpk_map_sm3 */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x04, /* [ 7854] OBJ_cpk_map_sha384 */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x01,0x01,0x05, /* [ 7865] OBJ_cpk_map_sha512 */ + 0x2B,0x06,0x01,0x04,0x01,0x83,0x83,0x0D,0x15, /* [ 7876] OBJ_paillier */ }; -#define NUM_NID 1223 +#define NUM_NID 1209 static const ASN1_OBJECT nid_objs[NUM_NID] = { {"UNDEF", "undefined", NID_undef}, {"rsadsi", "RSA Data Security, Inc.", NID_rsadsi, 6, &so[0]}, @@ -2192,149 +2188,135 @@ static const ASN1_OBJECT nid_objs[NUM_NID] = { {"cmac-aes192-ecies", "cmac-aes192-ecies", NID_cmac_aes192_ecies, 6, &so[6870]}, {"cmac-aes256-ecies", "cmac-aes256-ecies", NID_cmac_aes256_ecies, 6, &so[6876]}, { NULL, NULL, NID_undef }, - {"ISO-CN", "ISO CN Member Body", NID_ISO_CN, 3, &so[6882]}, - {"oscca", "oscca", NID_oscca, 5, &so[6885]}, - {"sm-scheme", "sm-scheme", NID_sm_scheme, 6, &so[6890]}, - {"SM6-ECB", "sm6-ecb", NID_sm6_ecb, 8, &so[6896]}, - {"SM6-CBC", "sm6-cbc", NID_sm6_cbc, 8, &so[6904]}, - {"SM6-OFB", "sm6-ofb", NID_sm6_ofb128, 8, &so[6912]}, - {"SM6-CFB", "sm6-cfb", NID_sm6_cfb128, 8, &so[6920]}, - {"SM1-ECB", "sm1-ecb", NID_sm1_ecb, 8, &so[6928]}, - {"SM1-CBC", "sm1-cbc", NID_sm1_cbc, 8, &so[6936]}, - {"SM1-OFB", "sm1-ofb", NID_sm1_ofb128, 8, &so[6944]}, - {"SM1-CFB", "sm1-cfb", NID_sm1_cfb128, 8, &so[6952]}, - {"SM1-CFB1", "sm1-cfb1", NID_sm1_cfb1, 8, &so[6960]}, - {"SM1-CFB8", "sm1-cfb8", NID_sm1_cfb8, 8, &so[6968]}, - {"SSF33-ECB", "ssf33-ecb", NID_ssf33_ecb, 8, &so[6976]}, - {"SSF33-CBC", "ssf33-cbc", NID_ssf33_cbc, 8, &so[6984]}, - {"SSF33-OFB", "ssf33-ofb", NID_ssf33_ofb128, 8, &so[6992]}, - {"SSF33-CFB", "ssf33-cfb", NID_ssf33_cfb128, 8, &so[7000]}, - {"SSF33-CFB1", "ssf33-cfb1", NID_ssf33_cfb1, 8, &so[7008]}, - {"SSF33-CFB8", "ssf33-cfb8", NID_ssf33_cfb8, 8, &so[7016]}, - {"SMS4-ECB", "sms4-ecb", NID_sms4_ecb, 8, &so[7024]}, - {"SMS4-CBC", "sms4-cbc", NID_sms4_cbc, 8, &so[7032]}, - {"SMS4-OFB", "sms4-ofb", NID_sms4_ofb128, 8, &so[7040]}, - {"SMS4-CFB", "sms4-cfb", NID_sms4_cfb128, 8, &so[7048]}, - {"SMS4-CFB1", "sms4-cfb1", NID_sms4_cfb1, 8, &so[7056]}, - {"SMS4-CFB8", "sms4-cfb8", NID_sms4_cfb8, 8, &so[7064]}, - {"SMS4-CTR", "sms4-ctr", NID_sms4_ctr, 8, &so[7072]}, - {"SMS4-GCM", "sms4-gcm", NID_sms4_gcm, 8, &so[7080]}, - {"SMS4-CCM", "sms4-ccm", NID_sms4_ccm, 8, &so[7088]}, - {"SMS4-XTS", "sms4-xts", NID_sms4_xts, 8, &so[7096]}, - {"SMS4-WRAP", "sms4-wrap", NID_sms4_wrap, 8, &so[7104]}, - {"SMS4-WRAP-PAD", "sms4-wrap-pad", NID_sms4_wrap_pad, 8, &so[7112]}, - {"SMS4-OCB", "sms4-ocb", NID_sms4_ocb, 8, &so[7120]}, - {"SM5", "sm5", NID_sm5, 8, &so[7128]}, - {"sm2p256v1", "sm2p256v1", NID_sm2p256v1, 8, &so[7136]}, - {"sm2sign", "sm2sign", NID_sm2sign, 9, &so[7144]}, - { NULL, NULL, NID_undef }, - {"sm2encrypt", "sm2encrypt", NID_sm2encrypt, 9, &so[7153]}, - {"sm2encrypt-recommendedParameters", "sm2encrypt-recommendedParameters", NID_sm2encrypt_recommendedParameters, 10, &so[7162]}, - {"sm2encrypt-specifiedParameters", "sm2encrypt-specifiedParameters", NID_sm2encrypt_specifiedParameters, 10, &so[7172]}, - {"id-sm9PublicKey", "id-sm9PublicKey", NID_id_sm9PublicKey, 8, &so[7182]}, - {"sm9sign", "sm9sign", NID_sm9sign, 9, &so[7190]}, - {"sm9keyagreement", "sm9keyagreement", NID_sm9keyagreement, 9, &so[7199]}, - {"sm9encrypt", "sm9encrypt", NID_sm9encrypt, 9, &so[7208]}, - {"SM3", "sm3", NID_sm3, 8, &so[7217]}, - {"HMAC-SM3", "hmac-sm3", NID_hmac_sm3, 9, &so[7225]}, - {"SM2Sign-with-SM3", "sm2sign-with-sm3", NID_sm2sign_with_sm3, 8, &so[7234]}, - {"SM2Sign-with-SHA1", "sm2sign-with-sha1", NID_sm2sign_with_sha1, 8, &so[7242]}, - {"SM2Sign-with-SHA256", "sm2sign-with-sha256", NID_sm2sign_with_sha256, 8, &so[7250]}, - {"SM2Sign-with-SHA511", "sm2sign-with-sha512", NID_sm2sign_with_sha512, 8, &so[7258]}, - {"SM2Sign-with-SHA224", "sm2sign-with-sha224", NID_sm2sign_with_sha224, 8, &so[7266]}, - {"SM2Sign-with-SHA384", "sm2sign-with-sha384", NID_sm2sign_with_sha384, 8, &so[7274]}, - {"SM2Sign-with-RMD160", "sm2sign-with-rmd160", NID_sm2sign_with_rmd160, 8, &so[7282]}, - {"wapip192v1", "wapip192v1", NID_wapip192v1, 9, &so[7290]}, - {"ZUC", "zuc", NID_zuc, 8, &so[7299]}, - {"bfibe", "bfibe", NID_bfibe, 10, &so[7307]}, - {"bb1", "bb1", NID_bb1, 10, &so[7317]}, - {"type1curve", "type1curve", NID_type1curve, 10, &so[7327]}, - {"type2curve", "type2curve", NID_type2curve, 10, &so[7337]}, - {"type3curve", "type3curve", NID_type3curve, 10, &so[7347]}, - {"type4curve", "type4curve", NID_type4curve, 10, &so[7357]}, - {"tate-pairing", "tate-pairing", NID_tate_pairing, 10, &so[7367]}, - {"weil-pairing", "weil-pairing", NID_weil_pairing, 10, &so[7377]}, - {"ate-pairing", "ate-pairing", NID_ate_pairing, 10, &so[7387]}, - {"r-ate-pairing", "r-ate-pairing", NID_r_ate_pairing, 10, &so[7397]}, - {"CPK", "cpk", NID_cpk, 9, &so[7407]}, - {"paillier", "paillier", NID_paillier, 9, &so[7416]}, - {"sm2exchange", "sm2exchange", NID_sm2exchange, 9, &so[7425]}, - {"gmssl", "GmSSL", NID_GmSSL, 8, &so[7434]}, - {"cpk-map", "cpk-map", NID_cpk_map, 10, &so[7442]}, - { NULL, NULL, NID_undef }, - { NULL, NULL, NID_undef }, - { NULL, NULL, NID_undef }, - {"sm2encrypt-with-sm3", "sm2encrypt-with-sm3", NID_sm2encrypt_with_sm3, 11, &so[7452]}, - {"sm2encrypt-with-sha1", "sm2encrypt-with-sha1", NID_sm2encrypt_with_sha1, 11, &so[7463]}, - {"sm2encrypt-with-sha224", "sm2encrypt-with-sha224", NID_sm2encrypt_with_sha224, 11, &so[7474]}, - {"sm2encrypt-with-sha256", "sm2encrypt-with-sha256", NID_sm2encrypt_with_sha256, 11, &so[7485]}, - {"sm2encrypt-with-sha384", "sm2encrypt-with-sha384", NID_sm2encrypt_with_sha384, 11, &so[7496]}, - {"sm2encrypt-with-sha512", "sm2encrypt-with-sha512", NID_sm2encrypt_with_sha512, 11, &so[7507]}, - {"sm2encrypt-with-rmd160", "sm2encrypt-with-rmd160", NID_sm2encrypt_with_rmd160, 11, &so[7518]}, - {"sm2encrypt-with-whirlpool", "sm2encrypt-with-whirlpool", NID_sm2encrypt_with_whirlpool, 11, &so[7529]}, - {"sm2encrypt-with-blake2b512", "sm2encrypt-with-blake2b512", NID_sm2encrypt_with_blake2b512, 11, &so[7540]}, - {"sm2encrypt-with-blake2s256", "sm2encrypt-with-blake2s256", NID_sm2encrypt_with_blake2s256, 11, &so[7551]}, - {"sm2encrypt-with-md5", "sm2encrypt-with-md5", NID_sm2encrypt_with_md5, 11, &so[7562]}, - {"SM2Sign-with-Whirlpool", "sm2sign-with-whirlpool", NID_sm2sign_with_whirlpool, 8, &so[7573]}, - {"SM2Sign-with-Blake2b512", "sm2sign-with-blake2b512", NID_sm2sign_with_blake2b512, 8, &so[7581]}, - {"SM2Sign-with-Blake2s256", "sm2sign-with-blake2s256", NID_sm2sign_with_blake2s256, 8, &so[7589]}, - {"ecies-with-x9-63-sha1-xor-hmac", "ecies-with-x9-63-sha1-xor-hmac", NID_ecies_with_x9_63_sha1_xor_hmac, 6, &so[7597]}, - {"ecies-with-x9-63-sha256-xor-hmac", "ecies-with-x9-63-sha256-xor-hmac", NID_ecies_with_x9_63_sha256_xor_hmac, 6, &so[7603]}, - {"ecies-with-x9-63-sha512-xor-hmac", "ecies-with-x9-63-sha512-xor-hmac", NID_ecies_with_x9_63_sha512_xor_hmac, 6, &so[7609]}, - {"ecies-with-x9-63-sha1-aes128-cbc-hmac", "ecies-with-x9-63-sha1-aes128-cbc-hmac", NID_ecies_with_x9_63_sha1_aes128_cbc_hmac, 6, &so[7615]}, - {"ecies-with-x9-63-sha256-aes128-cbc-hmac", "ecies-with-x9-63-sha256-aes128-cbc-hmac", NID_ecies_with_x9_63_sha256_aes128_cbc_hmac, 6, &so[7621]}, - {"ecies-with-x9-63-sha512-aes256-cbc-hmac", "ecies-with-x9-63-sha512-aes256-cbc-hmac", NID_ecies_with_x9_63_sha512_aes256_cbc_hmac, 6, &so[7627]}, - {"ecies-with-x9-63-sha256-aes128-ctr-hmac", "ecies-with-x9-63-sha256-aes128-ctr-hmac", NID_ecies_with_x9_63_sha256_aes128_ctr_hmac, 6, &so[7633]}, - {"ecies-with-x9-63-sha512-aes256-ctr-hmac", "ecies-with-x9-63-sha512-aes256-ctr-hmac", NID_ecies_with_x9_63_sha512_aes256_ctr_hmac, 6, &so[7639]}, - {"ecies-with-x9-63-sha256-aes128-cbc-hmac-half", "ecies-with-x9-63-sha256-aes128-cbc-hmac-half", NID_ecies_with_x9_63_sha256_aes128_cbc_hmac_half, 6, &so[7645]}, - {"ecies-with-x9-63-sha512-aes256-cbc-hmac-half", "ecies-with-x9-63-sha512-aes256-cbc-hmac-half", NID_ecies_with_x9_63_sha512_aes256_cbc_hmac_half, 6, &so[7651]}, - {"ecies-with-x9-63-sha256-aes128-ctr-hmac-half", "ecies-with-x9-63-sha256-aes128-ctr-hmac-half", NID_ecies_with_x9_63_sha256_aes128_ctr_hmac_half, 6, &so[7657]}, - {"ecies-with-x9-63-sha512-aes256-ctr-hmac-half", "ecies-with-x9-63-sha512-aes256-ctr-hmac-half", NID_ecies_with_x9_63_sha512_aes256_ctr_hmac_half, 6, &so[7663]}, - {"ecies-with-x9-63-sha1-aes128-cbc-cmac", "ecies-with-x9-63-sha1-aes128-cbc-cmac", NID_ecies_with_x9_63_sha1_aes128_cbc_cmac, 6, &so[7669]}, - {"ecies-with-x9-63-sha256-aes128-cbc-cmac", "ecies-with-x9-63-sha256-aes128-cbc-cmac", NID_ecies_with_x9_63_sha256_aes128_cbc_cmac, 6, &so[7675]}, - {"ecies-with-x9-63-sha512-aes256-cbc-cmac", "ecies-with-x9-63-sha512-aes256-cbc-cmac", NID_ecies_with_x9_63_sha512_aes256_cbc_cmac, 6, &so[7681]}, - {"ecies-with-x9-63-sha256-aes128-ctr-cmac", "ecies-with-x9-63-sha256-aes128-ctr-cmac", NID_ecies_with_x9_63_sha256_aes128_ctr_cmac, 6, &so[7687]}, - {"ecies-with-x9-63-sha512-aes256-ctr-cmac", "ecies-with-x9-63-sha512-aes256-ctr-cmac", NID_ecies_with_x9_63_sha512_aes256_ctr_cmac, 6, &so[7693]}, + {"PBE-SM3-SMS4", "pbeWithSM3AndSMS4-CBC", NID_pbe_WithSM3AndSMS4_CBC, 10, &so[6882]}, + {"ecies-with-x9-63-sha1-xor-hmac", "ecies-with-x9-63-sha1-xor-hmac", NID_ecies_with_x9_63_sha1_xor_hmac, 6, &so[6892]}, + {"ecies-with-x9-63-sha256-xor-hmac", "ecies-with-x9-63-sha256-xor-hmac", NID_ecies_with_x9_63_sha256_xor_hmac, 6, &so[6898]}, + {"ecies-with-x9-63-sha512-xor-hmac", "ecies-with-x9-63-sha512-xor-hmac", NID_ecies_with_x9_63_sha512_xor_hmac, 6, &so[6904]}, + {"ecies-with-x9-63-sha1-aes128-cbc-hmac", "ecies-with-x9-63-sha1-aes128-cbc-hmac", NID_ecies_with_x9_63_sha1_aes128_cbc_hmac, 6, &so[6910]}, + {"ecies-with-x9-63-sha256-aes128-cbc-hmac", "ecies-with-x9-63-sha256-aes128-cbc-hmac", NID_ecies_with_x9_63_sha256_aes128_cbc_hmac, 6, &so[6916]}, + {"ecies-with-x9-63-sha512-aes256-cbc-hmac", "ecies-with-x9-63-sha512-aes256-cbc-hmac", NID_ecies_with_x9_63_sha512_aes256_cbc_hmac, 6, &so[6922]}, + {"ecies-with-x9-63-sha256-aes128-ctr-hmac", "ecies-with-x9-63-sha256-aes128-ctr-hmac", NID_ecies_with_x9_63_sha256_aes128_ctr_hmac, 6, &so[6928]}, + {"ecies-with-x9-63-sha512-aes256-ctr-hmac", "ecies-with-x9-63-sha512-aes256-ctr-hmac", NID_ecies_with_x9_63_sha512_aes256_ctr_hmac, 6, &so[6934]}, + {"ecies-with-x9-63-sha256-aes128-cbc-hmac-half", "ecies-with-x9-63-sha256-aes128-cbc-hmac-half", NID_ecies_with_x9_63_sha256_aes128_cbc_hmac_half, 6, &so[6940]}, + {"ecies-with-x9-63-sha512-aes256-cbc-hmac-half", "ecies-with-x9-63-sha512-aes256-cbc-hmac-half", NID_ecies_with_x9_63_sha512_aes256_cbc_hmac_half, 6, &so[6946]}, + {"ecies-with-x9-63-sha256-aes128-ctr-hmac-half", "ecies-with-x9-63-sha256-aes128-ctr-hmac-half", NID_ecies_with_x9_63_sha256_aes128_ctr_hmac_half, 6, &so[6952]}, + {"ecies-with-x9-63-sha512-aes256-ctr-hmac-half", "ecies-with-x9-63-sha512-aes256-ctr-hmac-half", NID_ecies_with_x9_63_sha512_aes256_ctr_hmac_half, 6, &so[6958]}, + {"ecies-with-x9-63-sha1-aes128-cbc-cmac", "ecies-with-x9-63-sha1-aes128-cbc-cmac", NID_ecies_with_x9_63_sha1_aes128_cbc_cmac, 6, &so[6964]}, + {"ecies-with-x9-63-sha256-aes128-cbc-cmac", "ecies-with-x9-63-sha256-aes128-cbc-cmac", NID_ecies_with_x9_63_sha256_aes128_cbc_cmac, 6, &so[6970]}, + {"ecies-with-x9-63-sha512-aes256-cbc-cmac", "ecies-with-x9-63-sha512-aes256-cbc-cmac", NID_ecies_with_x9_63_sha512_aes256_cbc_cmac, 6, &so[6976]}, + {"ecies-with-x9-63-sha256-aes128-ctr-cmac", "ecies-with-x9-63-sha256-aes128-ctr-cmac", NID_ecies_with_x9_63_sha256_aes128_ctr_cmac, 6, &so[6982]}, + {"ecies-with-x9-63-sha512-aes256-ctr-cmac", "ecies-with-x9-63-sha512-aes256-ctr-cmac", NID_ecies_with_x9_63_sha512_aes256_ctr_cmac, 6, &so[6988]}, + {"ibcs1", "ibcs1", NID_ibcs1, 9, &so[6994]}, + {"type1curve", "type1curve", NID_type1curve, 11, &so[7003]}, + {"bfibe", "bfibe", NID_bfibe, 11, &so[7014]}, + {"bb1ibe", "bb1ibe", NID_bb1ibe, 11, &so[7025]}, + {"ISO-CN", "ISO CN Member Body", NID_ISO_CN, 3, &so[7036]}, + {"oscca", "oscca", NID_oscca, 5, &so[7039]}, + {"sm-scheme", "sm-scheme", NID_sm_scheme, 6, &so[7044]}, + {"SSF33-ECB", "ssf33-ecb", NID_ssf33_ecb, 8, &so[7050]}, + {"SSF33-CBC", "ssf33-cbc", NID_ssf33_cbc, 8, &so[7058]}, + {"SSF33-OFB", "ssf33-ofb", NID_ssf33_ofb128, 8, &so[7066]}, + {"SSF33-CFB", "ssf33-cfb", NID_ssf33_cfb128, 8, &so[7074]}, + {"SSF33-CFB1", "ssf33-cfb1", NID_ssf33_cfb1, 8, &so[7082]}, + {"SSF33-CFB8", "ssf33-cfb8", NID_ssf33_cfb8, 8, &so[7090]}, + {"SSF33-CBC-MAC", "ssf33-cbc-mac", NID_ssf33_cbc_mac, 8, &so[7098]}, + {"SM1-ECB", "sm1-ecb", NID_sm1_ecb, 8, &so[7106]}, + {"SM1-CBC", "sm1-cbc", NID_sm1_cbc, 8, &so[7114]}, + {"SM1-OFB", "sm1-ofb", NID_sm1_ofb128, 8, &so[7122]}, + {"SM1-CFB", "sm1-cfb", NID_sm1_cfb128, 8, &so[7130]}, + {"SM1-CFB1", "sm1-cfb1", NID_sm1_cfb1, 8, &so[7138]}, + {"SM1-CFB8", "sm1-cfb8", NID_sm1_cfb8, 8, &so[7146]}, + {"sm2p256v1", "sm2p256v1", NID_sm2p256v1, 8, &so[7154]}, + {"sm2sign", "sm2sign", NID_sm2sign, 9, &so[7162]}, + {"sm2exchange", "sm2exchange", NID_sm2exchange, 9, &so[7171]}, + {"sm2encrypt", "sm2encrypt", NID_sm2encrypt, 9, &so[7180]}, + {"SM2Sign-with-SM3", "sm2sign-with-sm3", NID_sm2sign_with_sm3, 8, &so[7189]}, + {"SM2Sign-with-SHA1", "sm2sign-with-sha1", NID_sm2sign_with_sha1, 8, &so[7197]}, + {"SM2Sign-with-SHA256", "sm2sign-with-sha256", NID_sm2sign_with_sha256, 8, &so[7205]}, + {"SM2Sign-with-SHA511", "sm2sign-with-sha512", NID_sm2sign_with_sha512, 8, &so[7213]}, + {"SM2Sign-with-SHA224", "sm2sign-with-sha224", NID_sm2sign_with_sha224, 8, &so[7221]}, + {"SM2Sign-with-SHA384", "sm2sign-with-sha384", NID_sm2sign_with_sha384, 8, &so[7229]}, + {"SM2Sign-with-RMD160", "sm2sign-with-rmd160", NID_sm2sign_with_rmd160, 8, &so[7237]}, + {"SM2Sign-with-Whirlpool", "sm2sign-with-whirlpool", NID_sm2sign_with_whirlpool, 8, &so[7245]}, + {"SM2Sign-with-Blake2b512", "sm2sign-with-blake2b512", NID_sm2sign_with_blake2b512, 8, &so[7253]}, + {"SM2Sign-with-Blake2s256", "sm2sign-with-blake2s256", NID_sm2sign_with_blake2s256, 8, &so[7261]}, + {"sm2encrypt-recommendedParameters", "sm2encrypt-recommendedParameters", NID_sm2encrypt_recommendedParameters, 10, &so[7269]}, + {"sm2encrypt-specifiedParameters", "sm2encrypt-specifiedParameters", NID_sm2encrypt_specifiedParameters, 10, &so[7279]}, + {"sm2encrypt-with-sm3", "sm2encrypt-with-sm3", NID_sm2encrypt_with_sm3, 11, &so[7289]}, + {"sm2encrypt-with-sha1", "sm2encrypt-with-sha1", NID_sm2encrypt_with_sha1, 11, &so[7300]}, + {"sm2encrypt-with-sha224", "sm2encrypt-with-sha224", NID_sm2encrypt_with_sha224, 11, &so[7311]}, + {"sm2encrypt-with-sha256", "sm2encrypt-with-sha256", NID_sm2encrypt_with_sha256, 11, &so[7322]}, + {"sm2encrypt-with-sha384", "sm2encrypt-with-sha384", NID_sm2encrypt_with_sha384, 11, &so[7333]}, + {"sm2encrypt-with-sha512", "sm2encrypt-with-sha512", NID_sm2encrypt_with_sha512, 11, &so[7344]}, + {"sm2encrypt-with-rmd160", "sm2encrypt-with-rmd160", NID_sm2encrypt_with_rmd160, 11, &so[7355]}, + {"sm2encrypt-with-whirlpool", "sm2encrypt-with-whirlpool", NID_sm2encrypt_with_whirlpool, 11, &so[7366]}, + {"sm2encrypt-with-blake2b512", "sm2encrypt-with-blake2b512", NID_sm2encrypt_with_blake2b512, 11, &so[7377]}, + {"sm2encrypt-with-blake2s256", "sm2encrypt-with-blake2s256", NID_sm2encrypt_with_blake2s256, 11, &so[7388]}, + {"sm2encrypt-with-md5", "sm2encrypt-with-md5", NID_sm2encrypt_with_md5, 11, &so[7399]}, + {"SM3", "sm3", NID_sm3, 8, &so[7410]}, + {"HMAC-SM3", "hmac-sm3", NID_hmac_sm3, 9, &so[7418]}, + {"SMS4-ECB", "sms4-ecb", NID_sms4_ecb, 8, &so[7427]}, + {"SMS4-CBC", "sms4-cbc", NID_sms4_cbc, 8, &so[7435]}, + {"SMS4-OFB", "sms4-ofb", NID_sms4_ofb128, 8, &so[7443]}, + {"SMS4-CFB", "sms4-cfb", NID_sms4_cfb128, 8, &so[7451]}, + {"SMS4-CFB1", "sms4-cfb1", NID_sms4_cfb1, 8, &so[7459]}, + {"SMS4-CFB8", "sms4-cfb8", NID_sms4_cfb8, 8, &so[7467]}, + {"SMS4-CTR", "sms4-ctr", NID_sms4_ctr, 8, &so[7475]}, + {"SMS4-GCM", "sms4-gcm", NID_sms4_gcm, 8, &so[7483]}, + {"SMS4-CCM", "sms4-ccm", NID_sms4_ccm, 8, &so[7491]}, + {"SMS4-XTS", "sms4-xts", NID_sms4_xts, 8, &so[7499]}, + {"SMS4-WRAP", "sms4-wrap", NID_sms4_wrap, 8, &so[7507]}, + {"SMS4-WRAP-PAD", "sms4-wrap-pad", NID_sms4_wrap_pad, 8, &so[7515]}, + {"SMS4-OCB", "sms4-ocb", NID_sms4_ocb, 8, &so[7523]}, + {"SM5", "sm5", NID_sm5, 8, &so[7531]}, + {"SM6-ECB", "sm6-ecb", NID_sm6_ecb, 8, &so[7539]}, + {"SM6-CBC", "sm6-cbc", NID_sm6_cbc, 8, &so[7547]}, + {"SM6-OFB", "sm6-ofb", NID_sm6_ofb128, 8, &so[7555]}, + {"SM6-CFB", "sm6-cfb", NID_sm6_cfb128, 8, &so[7563]}, + {"id-sm9PublicKey", "id-sm9PublicKey", NID_id_sm9PublicKey, 8, &so[7571]}, + {"sm9sign", "sm9sign", NID_sm9sign, 9, &so[7579]}, + {"sm9keyagreement", "sm9keyagreement", NID_sm9keyagreement, 9, &so[7588]}, + {"sm9encrypt", "sm9encrypt", NID_sm9encrypt, 9, &so[7597]}, + {"sm9hash1", "sm9hash1", NID_sm9hash1, 9, &so[7606]}, + {"sm9kdf", "sm9kdf", NID_sm9kdf, 9, &so[7615]}, + {"id-sm9MasterSecret", "id-sm9MasterSecret", NID_id_sm9MasterSecret, 9, &so[7624]}, + {"sm9bn256v1", "sm9bn256v1", NID_sm9bn256v1, 10, &so[7633]}, + {"sm9sign-with-sm3", "sm9sign-with-sm3", NID_sm9sign_with_sm3, 10, &so[7643]}, + {"sm9sign-with-sha256", "sm9sign-with-sha256", NID_sm9sign_with_sha256, 10, &so[7653]}, + {"sm9encrypt-with-sm3-xor", "sm9encrypt-with-sm3-xor", NID_sm9encrypt_with_sm3_xor, 10, &so[7663]}, + {"sm9encrypt-with-sm3-sms4-cbc", "sm9encrypt-with-sm3-sms4-cbc", NID_sm9encrypt_with_sm3_sms4_cbc, 10, &so[7673]}, + {"sm9encrypt-with-sm3-sms4-ctr", "sm9encrypt-with-sm3-sms4-ctr", NID_sm9encrypt_with_sm3_sms4_ctr, 10, &so[7683]}, + {"sm9hash1-with-sm3", "sm9hash1-with-sm3", NID_sm9hash1_with_sm3, 10, &so[7693]}, + {"sm9hash1-with-sha256", "sm9hash1-with-sha256", NID_sm9hash1_with_sha256, 10, &so[7703]}, + {"sm9kdf-with-sm3", "sm9kdf-with-sm3", NID_sm9kdf_with_sm3, 10, &so[7713]}, + {"sm9kdf-with-sha256", "sm9kdf-with-sha256", NID_sm9kdf_with_sha256, 10, &so[7723]}, + {"ZUC", "zuc", NID_zuc, 8, &so[7733]}, + {"zuc-128eea3", "zuc-128eea3", NID_zuc_128eea3, 9, &so[7741]}, + {"zuc-128eia3", "zuc-128eia3", NID_zuc_128eia3, 9, &so[7750]}, + {"bwips", "bwips", NID_bwips, 5, &so[7759]}, + {"wapi-crypto", "wapi-crypto", NID_wapi_crypto, 6, &so[7764]}, + {"wapi-ec", "wapi-ec", NID_wapi_ec, 7, &so[7770]}, + {"wapi-ecdsa192-sha256", "wapi-ecdsa192-sha256", NID_wapi_ecdsa192_sha256, 8, &so[7777]}, + {"wapip192v1", "wapip192v1", NID_wapip192v1, 9, &so[7785]}, {"KxSM2", "kx-sm2", NID_kx_sm2}, - {"AuthSM2", "auth-sm2", NID_auth_sm2}, - {"KxSM9", "kx-sm9", NID_kx_sm9}, - {"AuthSM9", "auth-sm9", NID_auth_sm9}, {"KxSM2DHE", "kx-sm2dhe", NID_kx_sm2dhe}, {"KxSM2-PSK", "kx-sm2-psk", NID_kx_sm2_psk}, + {"KxSM9", "kx-sm9", NID_kx_sm9}, {"KxSM9DHE", "kx-sm9dhe", NID_kx_sm9dhe}, - {"zuc-128eea3", "zuc-128eea3", NID_zuc_128eea3, 9, &so[7699]}, - {"zuc-128eia3", "zuc-128eia3", NID_zuc_128eia3, 9, &so[7708]}, - {"PBE-SM3-SMS4", "pbeWithSM3AndSMS4-CBC", NID_pbe_WithSM3AndSMS4_CBC, 10, &so[7717]}, - {"bwips", "bwips", NID_bwips, 5, &so[7727]}, - {"wapi-crypto", "wapi-crypto", NID_wapi_crypto, 6, &so[7732]}, - {"wapi-ec", "wapi-ec", NID_wapi_ec, 7, &so[7738]}, - {"wapi-ecdsa192-sha256", "wapi-ecdsa192-sha256", NID_wapi_ecdsa192_sha256, 8, &so[7745]}, - {"sm9bn256v1", "sm9bn256v1", NID_sm9bn256v1, 10, &so[7753]}, - {"sm9hash1", "sm9hash1", NID_sm9hash1, 9, &so[7763]}, - {"sm9hash1-with-sm3", "sm9hash1-with-sm3", NID_sm9hash1_with_sm3, 10, &so[7772]}, - {"sm9hash1-with-sha256", "sm9hash1-with-sha256", NID_sm9hash1_with_sha256, 10, &so[7782]}, - {"sm9sign-with-sm3", "sm9sign-with-sm3", NID_sm9sign_with_sm3, 10, &so[7792]}, - {"sm9sign-with-sha256", "sm9sign-with-sha256", NID_sm9sign_with_sha256, 10, &so[7802]}, - {"sm9encrypt-with-sm3-xor", "sm9encrypt-with-sm3-xor", NID_sm9encrypt_with_sm3_xor, 10, &so[7812]}, - {"sm9encrypt-with-sm3-sms4-cbc", "sm9encrypt-with-sm3-sms4-cbc", NID_sm9encrypt_with_sm3_sms4_cbc, 10, &so[7822]}, - {"sm9encrypt-with-sm3-sms4-ctr", "sm9encrypt-with-sm3-sms4-ctr", NID_sm9encrypt_with_sm3_sms4_ctr, 10, &so[7832]}, - {"sm9kdf", "sm9kdf", NID_sm9kdf, 9, &so[7842]}, - {"sm9kdf-with-sm3", "sm9kdf-with-sm3", NID_sm9kdf_with_sm3, 10, &so[7851]}, - {"sm9kdf-with-sha256", "sm9kdf-with-sha256", NID_sm9kdf_with_sha256, 10, &so[7861]}, - { NULL, NULL, NID_undef }, - { NULL, NULL, NID_undef }, - { NULL, NULL, NID_undef }, - { NULL, NULL, NID_undef }, - { NULL, NULL, NID_undef }, - { NULL, NULL, NID_undef }, - {"cpk-map-sha1", "cpk-map-sha1", NID_cpk_map_sha1, 11, &so[7871]}, - {"cpk-map-sha256", "cpk-map-sha256", NID_cpk_map_sha256, 11, &so[7882]}, - {"cpk-map-sm3", "cpk-map-sm3", NID_cpk_map_sm3, 11, &so[7893]}, - {"cpk-map-sha384", "cpk-map-sha384", NID_cpk_map_sha384, 11, &so[7904]}, - {"cpk-map-sha512", "cpk-map-sha512", NID_cpk_map_sha512, 11, &so[7915]}, + {"AuthSM2", "auth-sm2", NID_auth_sm2}, + {"AuthSM9", "auth-sm9", NID_auth_sm9}, + {"gmssl", "GmSSL", NID_GmSSL, 8, &so[7794]}, + {"CPK", "cpk", NID_cpk, 9, &so[7802]}, + {"cpk-map", "cpk-map", NID_cpk_map, 10, &so[7811]}, + {"cpk-map-sha1", "cpk-map-sha1", NID_cpk_map_sha1, 11, &so[7821]}, + {"cpk-map-sha256", "cpk-map-sha256", NID_cpk_map_sha256, 11, &so[7832]}, + {"cpk-map-sm3", "cpk-map-sm3", NID_cpk_map_sm3, 11, &so[7843]}, + {"cpk-map-sha384", "cpk-map-sha384", NID_cpk_map_sha384, 11, &so[7854]}, + {"cpk-map-sha512", "cpk-map-sha512", NID_cpk_map_sha512, 11, &so[7865]}, + {"paillier", "paillier", NID_paillier, 9, &so[7876]}, }; -#define NUM_SN 1203 +#define NUM_SN 1199 static const unsigned int sn_objs[NUM_SN] = { 364, /* "AD_DVCS" */ 419, /* "AES-128-CBC" */ @@ -2376,8 +2358,8 @@ static const unsigned int sn_objs[NUM_SN] = { 1053, /* "AuthNULL" */ 1048, /* "AuthPSK" */ 1046, /* "AuthRSA" */ - 1187, /* "AuthSM2" */ - 1189, /* "AuthSM9" */ + 1198, /* "AuthSM2" */ + 1199, /* "AuthSM9" */ 1052, /* "AuthSRP" */ 91, /* "BF-CBC" */ 93, /* "BF-CFB" */ @@ -2422,7 +2404,7 @@ static const unsigned int sn_objs[NUM_SN] = { 111, /* "CAST5-OFB" */ 894, /* "CMAC" */ 13, /* "CN" */ - 1147, /* "CPK" */ + 1201, /* "CPK" */ 141, /* "CRLReason" */ 417, /* "CSPName" */ 1019, /* "ChaCha20" */ @@ -2459,7 +2441,7 @@ static const unsigned int sn_objs[NUM_SN] = { 855, /* "HMAC" */ 780, /* "HMAC-MD5" */ 781, /* "HMAC-SHA1" */ - 1127, /* "HMAC-SM3" */ + 1149, /* "HMAC-SM3" */ 381, /* "IANA" */ 34, /* "IDEA-CBC" */ 35, /* "IDEA-CFB" */ @@ -2467,7 +2449,7 @@ static const unsigned int sn_objs[NUM_SN] = { 46, /* "IDEA-OFB" */ 1004, /* "INN" */ 181, /* "ISO" */ - 1083, /* "ISO-CN" */ + 1105, /* "ISO-CN" */ 183, /* "ISO-US" */ 645, /* "ITU-T" */ 646, /* "JOINT-ISO-ITU-T" */ @@ -2480,11 +2462,11 @@ static const unsigned int sn_objs[NUM_SN] = { 1043, /* "KxPSK" */ 1037, /* "KxRSA" */ 1042, /* "KxRSA_PSK" */ - 1186, /* "KxSM2" */ - 1191, /* "KxSM2-PSK" */ - 1190, /* "KxSM2DHE" */ - 1188, /* "KxSM9" */ - 1192, /* "KxSM9DHE" */ + 1193, /* "KxSM2" */ + 1195, /* "KxSM2-PSK" */ + 1194, /* "KxSM2DHE" */ + 1196, /* "KxSM9" */ + 1197, /* "KxSM9DHE" */ 1044, /* "KxSRP" */ 15, /* "L" */ 856, /* "LocalKeySet" */ @@ -2519,7 +2501,7 @@ static const unsigned int sn_objs[NUM_SN] = { 68, /* "PBE-SHA1-RC2-64" */ 144, /* "PBE-SHA1-RC4-128" */ 145, /* "PBE-SHA1-RC4-40" */ - 1195, /* "PBE-SM3-SMS4" */ + 1083, /* "PBE-SM3-SMS4" */ 161, /* "PBES2" */ 69, /* "PBKDF2" */ 162, /* "PBMAC1" */ @@ -2565,51 +2547,52 @@ static const unsigned int sn_objs[NUM_SN] = { 672, /* "SHA256" */ 673, /* "SHA384" */ 674, /* "SHA512" */ - 1091, /* "SM1-CBC" */ - 1093, /* "SM1-CFB" */ - 1094, /* "SM1-CFB1" */ - 1095, /* "SM1-CFB8" */ - 1090, /* "SM1-ECB" */ - 1092, /* "SM1-OFB" */ - 1167, /* "SM2Sign-with-Blake2b512" */ - 1168, /* "SM2Sign-with-Blake2s256" */ - 1134, /* "SM2Sign-with-RMD160" */ - 1129, /* "SM2Sign-with-SHA1" */ - 1132, /* "SM2Sign-with-SHA224" */ - 1130, /* "SM2Sign-with-SHA256" */ - 1133, /* "SM2Sign-with-SHA384" */ - 1131, /* "SM2Sign-with-SHA511" */ - 1128, /* "SM2Sign-with-SM3" */ - 1166, /* "SM2Sign-with-Whirlpool" */ - 1126, /* "SM3" */ - 1115, /* "SM5" */ - 1087, /* "SM6-CBC" */ - 1089, /* "SM6-CFB" */ - 1086, /* "SM6-ECB" */ - 1088, /* "SM6-OFB" */ + 1116, /* "SM1-CBC" */ + 1118, /* "SM1-CFB" */ + 1119, /* "SM1-CFB1" */ + 1120, /* "SM1-CFB8" */ + 1115, /* "SM1-ECB" */ + 1117, /* "SM1-OFB" */ + 1133, /* "SM2Sign-with-Blake2b512" */ + 1134, /* "SM2Sign-with-Blake2s256" */ + 1131, /* "SM2Sign-with-RMD160" */ + 1126, /* "SM2Sign-with-SHA1" */ + 1129, /* "SM2Sign-with-SHA224" */ + 1127, /* "SM2Sign-with-SHA256" */ + 1130, /* "SM2Sign-with-SHA384" */ + 1128, /* "SM2Sign-with-SHA511" */ + 1125, /* "SM2Sign-with-SM3" */ + 1132, /* "SM2Sign-with-Whirlpool" */ + 1148, /* "SM3" */ + 1163, /* "SM5" */ + 1165, /* "SM6-CBC" */ + 1167, /* "SM6-CFB" */ + 1164, /* "SM6-ECB" */ + 1166, /* "SM6-OFB" */ 188, /* "SMIME" */ 167, /* "SMIME-CAPS" */ - 1103, /* "SMS4-CBC" */ - 1110, /* "SMS4-CCM" */ - 1105, /* "SMS4-CFB" */ - 1106, /* "SMS4-CFB1" */ - 1107, /* "SMS4-CFB8" */ - 1108, /* "SMS4-CTR" */ - 1102, /* "SMS4-ECB" */ - 1109, /* "SMS4-GCM" */ - 1114, /* "SMS4-OCB" */ - 1104, /* "SMS4-OFB" */ - 1112, /* "SMS4-WRAP" */ - 1113, /* "SMS4-WRAP-PAD" */ - 1111, /* "SMS4-XTS" */ + 1151, /* "SMS4-CBC" */ + 1158, /* "SMS4-CCM" */ + 1153, /* "SMS4-CFB" */ + 1154, /* "SMS4-CFB1" */ + 1155, /* "SMS4-CFB8" */ + 1156, /* "SMS4-CTR" */ + 1150, /* "SMS4-ECB" */ + 1157, /* "SMS4-GCM" */ + 1162, /* "SMS4-OCB" */ + 1152, /* "SMS4-OFB" */ + 1160, /* "SMS4-WRAP" */ + 1161, /* "SMS4-WRAP-PAD" */ + 1159, /* "SMS4-XTS" */ 100, /* "SN" */ 1006, /* "SNILS" */ - 1097, /* "SSF33-CBC" */ - 1099, /* "SSF33-CFB" */ - 1100, /* "SSF33-CFB1" */ - 1101, /* "SSF33-CFB8" */ - 1096, /* "SSF33-ECB" */ - 1098, /* "SSF33-OFB" */ + 1109, /* "SSF33-CBC" */ + 1114, /* "SSF33-CBC-MAC" */ + 1111, /* "SSF33-CFB" */ + 1112, /* "SSF33-CFB1" */ + 1113, /* "SSF33-CFB8" */ + 1108, /* "SSF33-ECB" */ + 1110, /* "SSF33-OFB" */ 16, /* "ST" */ 143, /* "SXNetID" */ 1021, /* "TLS1-PRF" */ @@ -2623,7 +2606,7 @@ static const unsigned int sn_objs[NUM_SN] = { 184, /* "X9-57" */ 185, /* "X9cm" */ 125, /* "ZLIB" */ - 1136, /* "ZUC" */ + 1185, /* "ZUC" */ 478, /* "aRecord" */ 289, /* "aaControls" */ 287, /* "ac-auditEntity" */ @@ -2645,15 +2628,14 @@ static const unsigned int sn_objs[NUM_SN] = { 370, /* "archiveCutoff" */ 484, /* "associatedDomain" */ 485, /* "associatedName" */ - 1145, /* "ate-pairing" */ 501, /* "audio" */ 177, /* "authorityInfoAccess" */ 90, /* "authorityKeyIdentifier" */ 882, /* "authorityRevocationList" */ 87, /* "basicConstraints" */ 365, /* "basicOCSPResponse" */ - 1138, /* "bb1" */ - 1137, /* "bfibe" */ + 1104, /* "bb1ibe" */ + 1103, /* "bfibe" */ 285, /* "biometricInfo" */ 921, /* "brainpoolP160r1" */ 922, /* "brainpoolP160t1" */ @@ -2671,7 +2653,7 @@ static const unsigned int sn_objs[NUM_SN] = { 934, /* "brainpoolP512t1" */ 494, /* "buildingName" */ 860, /* "businessCategory" */ - 1196, /* "bwips" */ + 1188, /* "bwips" */ 691, /* "c2onb191v4" */ 692, /* "c2onb191v5" */ 697, /* "c2onb239v4" */ @@ -2714,12 +2696,12 @@ static const unsigned int sn_objs[NUM_SN] = { 131, /* "codeSigning" */ 50, /* "contentType" */ 53, /* "countersignature" */ - 1151, /* "cpk-map" */ - 1218, /* "cpk-map-sha1" */ - 1219, /* "cpk-map-sha256" */ - 1221, /* "cpk-map-sha384" */ - 1222, /* "cpk-map-sha512" */ - 1220, /* "cpk-map-sm3" */ + 1202, /* "cpk-map" */ + 1203, /* "cpk-map-sha1" */ + 1204, /* "cpk-map-sha256" */ + 1206, /* "cpk-map-sha384" */ + 1207, /* "cpk-map-sha512" */ + 1205, /* "cpk-map-sm3" */ 153, /* "crlBag" */ 103, /* "crlDistributionPoints" */ 88, /* "crlNumber" */ @@ -2778,23 +2760,23 @@ static const unsigned int sn_objs[NUM_SN] = { 792, /* "ecdsa-with-Specified" */ 1063, /* "ecies-recommendedParameters" */ 1064, /* "ecies-specifiedParameters" */ - 1181, /* "ecies-with-x9-63-sha1-aes128-cbc-cmac" */ - 1172, /* "ecies-with-x9-63-sha1-aes128-cbc-hmac" */ - 1169, /* "ecies-with-x9-63-sha1-xor-hmac" */ - 1182, /* "ecies-with-x9-63-sha256-aes128-cbc-cmac" */ - 1173, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac" */ - 1177, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac-half" */ - 1184, /* "ecies-with-x9-63-sha256-aes128-ctr-cmac" */ - 1175, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac" */ - 1179, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac-half" */ - 1170, /* "ecies-with-x9-63-sha256-xor-hmac" */ - 1183, /* "ecies-with-x9-63-sha512-aes256-cbc-cmac" */ - 1174, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac" */ - 1178, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac-half" */ - 1185, /* "ecies-with-x9-63-sha512-aes256-ctr-cmac" */ - 1176, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac" */ - 1180, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac-half" */ - 1171, /* "ecies-with-x9-63-sha512-xor-hmac" */ + 1096, /* "ecies-with-x9-63-sha1-aes128-cbc-cmac" */ + 1087, /* "ecies-with-x9-63-sha1-aes128-cbc-hmac" */ + 1084, /* "ecies-with-x9-63-sha1-xor-hmac" */ + 1097, /* "ecies-with-x9-63-sha256-aes128-cbc-cmac" */ + 1088, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac" */ + 1092, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac-half" */ + 1099, /* "ecies-with-x9-63-sha256-aes128-ctr-cmac" */ + 1090, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac" */ + 1094, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac-half" */ + 1085, /* "ecies-with-x9-63-sha256-xor-hmac" */ + 1098, /* "ecies-with-x9-63-sha512-aes256-cbc-cmac" */ + 1089, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac" */ + 1093, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac-half" */ + 1100, /* "ecies-with-x9-63-sha512-aes256-ctr-cmac" */ + 1091, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac" */ + 1095, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac-half" */ + 1086, /* "ecies-with-x9-63-sha512-xor-hmac" */ 48, /* "emailAddress" */ 132, /* "emailProtection" */ 885, /* "enhancedSearchGuide" */ @@ -2811,7 +2793,7 @@ static const unsigned int sn_objs[NUM_SN] = { 490, /* "friendlyCountryName" */ 156, /* "friendlyName" */ 509, /* "generationQualifier" */ - 1150, /* "gmssl" */ + 1200, /* "gmssl" */ 815, /* "gost-mac" */ 976, /* "gost-mac-12" */ 811, /* "gost2001" */ @@ -2849,6 +2831,7 @@ static const unsigned int sn_objs[NUM_SN] = { 466, /* "host" */ 889, /* "houseIdentifier" */ 442, /* "iA5StringSyntax" */ + 1101, /* "ibcs1" */ 783, /* "id-DHBasedMac" */ 824, /* "id-Gost28147-89-CryptoPro-A-ParamSet" */ 825, /* "id-Gost28147-89-CryptoPro-B-ParamSet" */ @@ -3020,7 +3003,8 @@ static const unsigned int sn_objs[NUM_SN] = { 321, /* "id-regInfo-utf8Pairs" */ 973, /* "id-scrypt" */ 512, /* "id-set" */ - 1122, /* "id-sm9PublicKey" */ + 1174, /* "id-sm9MasterSecret" */ + 1168, /* "id-sm9PublicKey" */ 191, /* "id-smime-aa" */ 215, /* "id-smime-aa-contentHint" */ 218, /* "id-smime-aa-contentIdentifier" */ @@ -3183,11 +3167,11 @@ static const unsigned int sn_objs[NUM_SN] = { 77, /* "nsSslServerName" */ 681, /* "onBasis" */ 491, /* "organizationalStatus" */ - 1084, /* "oscca" */ + 1106, /* "oscca" */ 475, /* "otherMailbox" */ 876, /* "owner" */ 489, /* "pagerTelephoneNumber" */ - 1148, /* "paillier" */ + 1208, /* "paillier" */ 374, /* "path" */ 112, /* "pbeWithMD5AndCast5CBC" */ 499, /* "personalSignature" */ @@ -3244,7 +3228,6 @@ static const unsigned int sn_objs[NUM_SN] = { 435, /* "pss" */ 286, /* "qcStatements" */ 457, /* "qualityLabelledData" */ - 1146, /* "r-ate-pairing" */ 450, /* "rFC822localPart" */ 870, /* "registeredAddress" */ 400, /* "role" */ @@ -3441,39 +3424,39 @@ static const unsigned int sn_objs[NUM_SN] = { 52, /* "signingTime" */ 454, /* "simpleSecurityObject" */ 496, /* "singleLevelQuality" */ - 1085, /* "sm-scheme" */ - 1119, /* "sm2encrypt" */ - 1120, /* "sm2encrypt-recommendedParameters" */ - 1121, /* "sm2encrypt-specifiedParameters" */ - 1163, /* "sm2encrypt-with-blake2b512" */ - 1164, /* "sm2encrypt-with-blake2s256" */ - 1165, /* "sm2encrypt-with-md5" */ - 1161, /* "sm2encrypt-with-rmd160" */ - 1156, /* "sm2encrypt-with-sha1" */ - 1157, /* "sm2encrypt-with-sha224" */ - 1158, /* "sm2encrypt-with-sha256" */ - 1159, /* "sm2encrypt-with-sha384" */ - 1160, /* "sm2encrypt-with-sha512" */ - 1155, /* "sm2encrypt-with-sm3" */ - 1162, /* "sm2encrypt-with-whirlpool" */ - 1149, /* "sm2exchange" */ - 1116, /* "sm2p256v1" */ - 1117, /* "sm2sign" */ - 1200, /* "sm9bn256v1" */ - 1125, /* "sm9encrypt" */ - 1207, /* "sm9encrypt-with-sm3-sms4-cbc" */ - 1208, /* "sm9encrypt-with-sm3-sms4-ctr" */ - 1206, /* "sm9encrypt-with-sm3-xor" */ - 1201, /* "sm9hash1" */ - 1203, /* "sm9hash1-with-sha256" */ - 1202, /* "sm9hash1-with-sm3" */ - 1209, /* "sm9kdf" */ - 1211, /* "sm9kdf-with-sha256" */ - 1210, /* "sm9kdf-with-sm3" */ - 1124, /* "sm9keyagreement" */ - 1123, /* "sm9sign" */ - 1205, /* "sm9sign-with-sha256" */ - 1204, /* "sm9sign-with-sm3" */ + 1107, /* "sm-scheme" */ + 1124, /* "sm2encrypt" */ + 1135, /* "sm2encrypt-recommendedParameters" */ + 1136, /* "sm2encrypt-specifiedParameters" */ + 1145, /* "sm2encrypt-with-blake2b512" */ + 1146, /* "sm2encrypt-with-blake2s256" */ + 1147, /* "sm2encrypt-with-md5" */ + 1143, /* "sm2encrypt-with-rmd160" */ + 1138, /* "sm2encrypt-with-sha1" */ + 1139, /* "sm2encrypt-with-sha224" */ + 1140, /* "sm2encrypt-with-sha256" */ + 1141, /* "sm2encrypt-with-sha384" */ + 1142, /* "sm2encrypt-with-sha512" */ + 1137, /* "sm2encrypt-with-sm3" */ + 1144, /* "sm2encrypt-with-whirlpool" */ + 1123, /* "sm2exchange" */ + 1121, /* "sm2p256v1" */ + 1122, /* "sm2sign" */ + 1175, /* "sm9bn256v1" */ + 1171, /* "sm9encrypt" */ + 1179, /* "sm9encrypt-with-sm3-sms4-cbc" */ + 1180, /* "sm9encrypt-with-sm3-sms4-ctr" */ + 1178, /* "sm9encrypt-with-sm3-xor" */ + 1172, /* "sm9hash1" */ + 1182, /* "sm9hash1-with-sha256" */ + 1181, /* "sm9hash1-with-sm3" */ + 1173, /* "sm9kdf" */ + 1184, /* "sm9kdf-with-sha256" */ + 1183, /* "sm9kdf-with-sm3" */ + 1170, /* "sm9keyagreement" */ + 1169, /* "sm9sign" */ + 1177, /* "sm9sign-with-sha256" */ + 1176, /* "sm9sign-with-sm3" */ 387, /* "snmpv2" */ 660, /* "street" */ 85, /* "subjectAltName" */ @@ -3486,7 +3469,6 @@ static const unsigned int sn_objs[NUM_SN] = { 890, /* "supportedAlgorithms" */ 874, /* "supportedApplicationContext" */ 402, /* "targetInformation" */ - 1143, /* "tate-pairing" */ 1070, /* "tdes-cbc-in-ecies" */ 864, /* "telephoneNumber" */ 866, /* "teletexTerminalIdentifier" */ @@ -3499,10 +3481,7 @@ static const unsigned int sn_objs[NUM_SN] = { 1020, /* "tlsfeature" */ 682, /* "tpBasis" */ 375, /* "trustRoot" */ - 1139, /* "type1curve" */ - 1140, /* "type2curve" */ - 1141, /* "type3curve" */ - 1142, /* "type4curve" */ + 1102, /* "type1curve" */ 436, /* "ucl" */ 102, /* "uid" */ 888, /* "uniqueMember" */ @@ -3525,11 +3504,10 @@ static const unsigned int sn_objs[NUM_SN] = { 740, /* "wap-wsg-idm-ecid-wtls7" */ 741, /* "wap-wsg-idm-ecid-wtls8" */ 742, /* "wap-wsg-idm-ecid-wtls9" */ - 1197, /* "wapi-crypto" */ - 1198, /* "wapi-ec" */ - 1199, /* "wapi-ecdsa192-sha256" */ - 1135, /* "wapip192v1" */ - 1144, /* "weil-pairing" */ + 1189, /* "wapi-crypto" */ + 1190, /* "wapi-ec" */ + 1191, /* "wapi-ecdsa192-sha256" */ + 1192, /* "wapip192v1" */ 804, /* "whirlpool" */ 868, /* "x121Address" */ 503, /* "x500UniqueIdentifier" */ @@ -3537,11 +3515,11 @@ static const unsigned int sn_objs[NUM_SN] = { 160, /* "x509Crl" */ 1065, /* "x9-63-kdf" */ 1069, /* "xor-in-ecies" */ - 1193, /* "zuc-128eea3" */ - 1194, /* "zuc-128eia3" */ + 1186, /* "zuc-128eea3" */ + 1187, /* "zuc-128eia3" */ }; -#define NUM_LN 1203 +#define NUM_LN 1199 static const unsigned int ln_objs[NUM_LN] = { 363, /* "AD Time Stamping" */ 405, /* "ANSI X9.62" */ @@ -3594,7 +3572,7 @@ static const unsigned int ln_objs[NUM_LN] = { 808, /* "GOST R 34.11-94 with GOST R 34.10-94" */ 852, /* "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom" */ 854, /* "GOST R 3410-2001 Parameter Set Cryptocom" */ - 1150, /* "GmSSL" */ + 1200, /* "GmSSL" */ 988, /* "HMAC GOST 34.11-2012 256 bit" */ 989, /* "HMAC GOST 34.11-2012 512 bit" */ 810, /* "HMAC GOST 34.11-94" */ @@ -3607,7 +3585,7 @@ static const unsigned int ln_objs[NUM_LN] = { 294, /* "IPSec End System" */ 295, /* "IPSec Tunnel" */ 296, /* "IPSec User" */ - 1083, /* "ISO CN Member Body" */ + 1105, /* "ISO CN Member Body" */ 182, /* "ISO Member Body" */ 183, /* "ISO US Member Body" */ 667, /* "Independent" */ @@ -3770,7 +3748,6 @@ static const unsigned int ln_objs[NUM_LN] = { 376, /* "algorithm" */ 484, /* "associatedDomain" */ 485, /* "associatedName" */ - 1145, /* "ate-pairing" */ 501, /* "audio" */ 1049, /* "auth-dss" */ 1047, /* "auth-ecdsa" */ @@ -3779,16 +3756,16 @@ static const unsigned int ln_objs[NUM_LN] = { 1053, /* "auth-null" */ 1048, /* "auth-psk" */ 1046, /* "auth-rsa" */ - 1187, /* "auth-sm2" */ - 1189, /* "auth-sm9" */ + 1198, /* "auth-sm2" */ + 1199, /* "auth-sm9" */ 1052, /* "auth-srp" */ 882, /* "authorityRevocationList" */ - 1138, /* "bb1" */ + 1104, /* "bb1ibe" */ 91, /* "bf-cbc" */ 93, /* "bf-cfb" */ 92, /* "bf-ecb" */ 94, /* "bf-ofb" */ - 1137, /* "bfibe" */ + 1103, /* "bfibe" */ 1056, /* "blake2b512" */ 1057, /* "blake2s256" */ 921, /* "brainpoolP160r1" */ @@ -3807,7 +3784,7 @@ static const unsigned int ln_objs[NUM_LN] = { 934, /* "brainpoolP512t1" */ 494, /* "buildingName" */ 860, /* "businessCategory" */ - 1196, /* "bwips" */ + 1188, /* "bwips" */ 691, /* "c2onb191v4" */ 692, /* "c2onb191v5" */ 697, /* "c2onb239v4" */ @@ -3884,13 +3861,13 @@ static const unsigned int ln_objs[NUM_LN] = { 50, /* "contentType" */ 53, /* "countersignature" */ 14, /* "countryName" */ - 1147, /* "cpk" */ - 1151, /* "cpk-map" */ - 1218, /* "cpk-map-sha1" */ - 1219, /* "cpk-map-sha256" */ - 1221, /* "cpk-map-sha384" */ - 1222, /* "cpk-map-sha512" */ - 1220, /* "cpk-map-sm3" */ + 1201, /* "cpk" */ + 1202, /* "cpk-map" */ + 1203, /* "cpk-map-sha1" */ + 1204, /* "cpk-map-sha256" */ + 1206, /* "cpk-map-sha384" */ + 1207, /* "cpk-map-sha512" */ + 1205, /* "cpk-map-sm3" */ 153, /* "crlBag" */ 884, /* "crossCertificatePair" */ 806, /* "cryptocom" */ @@ -3967,23 +3944,23 @@ static const unsigned int ln_objs[NUM_LN] = { 792, /* "ecdsa-with-Specified" */ 1063, /* "ecies-recommendedParameters" */ 1064, /* "ecies-specifiedParameters" */ - 1181, /* "ecies-with-x9-63-sha1-aes128-cbc-cmac" */ - 1172, /* "ecies-with-x9-63-sha1-aes128-cbc-hmac" */ - 1169, /* "ecies-with-x9-63-sha1-xor-hmac" */ - 1182, /* "ecies-with-x9-63-sha256-aes128-cbc-cmac" */ - 1173, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac" */ - 1177, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac-half" */ - 1184, /* "ecies-with-x9-63-sha256-aes128-ctr-cmac" */ - 1175, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac" */ - 1179, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac-half" */ - 1170, /* "ecies-with-x9-63-sha256-xor-hmac" */ - 1183, /* "ecies-with-x9-63-sha512-aes256-cbc-cmac" */ - 1174, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac" */ - 1178, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac-half" */ - 1185, /* "ecies-with-x9-63-sha512-aes256-ctr-cmac" */ - 1176, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac" */ - 1180, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac-half" */ - 1171, /* "ecies-with-x9-63-sha512-xor-hmac" */ + 1096, /* "ecies-with-x9-63-sha1-aes128-cbc-cmac" */ + 1087, /* "ecies-with-x9-63-sha1-aes128-cbc-hmac" */ + 1084, /* "ecies-with-x9-63-sha1-xor-hmac" */ + 1097, /* "ecies-with-x9-63-sha256-aes128-cbc-cmac" */ + 1088, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac" */ + 1092, /* "ecies-with-x9-63-sha256-aes128-cbc-hmac-half" */ + 1099, /* "ecies-with-x9-63-sha256-aes128-ctr-cmac" */ + 1090, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac" */ + 1094, /* "ecies-with-x9-63-sha256-aes128-ctr-hmac-half" */ + 1085, /* "ecies-with-x9-63-sha256-xor-hmac" */ + 1098, /* "ecies-with-x9-63-sha512-aes256-cbc-cmac" */ + 1089, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac" */ + 1093, /* "ecies-with-x9-63-sha512-aes256-cbc-hmac-half" */ + 1100, /* "ecies-with-x9-63-sha512-aes256-ctr-cmac" */ + 1091, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac" */ + 1095, /* "ecies-with-x9-63-sha512-aes256-ctr-hmac-half" */ + 1086, /* "ecies-with-x9-63-sha512-xor-hmac" */ 48, /* "emailAddress" */ 632, /* "encrypted track 2" */ 885, /* "enhancedSearchGuide" */ @@ -4015,7 +3992,7 @@ static const unsigned int ln_objs[NUM_LN] = { 1078, /* "hmac-half-ecies" */ 780, /* "hmac-md5" */ 781, /* "hmac-sha1" */ - 1127, /* "hmac-sm3" */ + 1149, /* "hmac-sm3" */ 797, /* "hmacWithMD5" */ 163, /* "hmacWithSHA1" */ 798, /* "hmacWithSHA224" */ @@ -4028,6 +4005,7 @@ static const unsigned int ln_objs[NUM_LN] = { 889, /* "houseIdentifier" */ 442, /* "iA5StringSyntax" */ 381, /* "iana" */ + 1101, /* "ibcs1" */ 824, /* "id-Gost28147-89-CryptoPro-A-ParamSet" */ 825, /* "id-Gost28147-89-CryptoPro-B-ParamSet" */ 826, /* "id-Gost28147-89-CryptoPro-C-ParamSet" */ @@ -4175,7 +4153,8 @@ static const unsigned int ln_objs[NUM_LN] = { 322, /* "id-regInfo-certReq" */ 321, /* "id-regInfo-utf8Pairs" */ 973, /* "id-scrypt" */ - 1122, /* "id-sm9PublicKey" */ + 1174, /* "id-sm9MasterSecret" */ + 1168, /* "id-sm9PublicKey" */ 191, /* "id-smime-aa" */ 215, /* "id-smime-aa-contentHint" */ 218, /* "id-smime-aa-contentIdentifier" */ @@ -4293,11 +4272,11 @@ static const unsigned int ln_objs[NUM_LN] = { 1043, /* "kx-psk" */ 1037, /* "kx-rsa" */ 1042, /* "kx-rsa-psk" */ - 1186, /* "kx-sm2" */ - 1191, /* "kx-sm2-psk" */ - 1190, /* "kx-sm2dhe" */ - 1188, /* "kx-sm9" */ - 1192, /* "kx-sm9dhe" */ + 1193, /* "kx-sm2" */ + 1195, /* "kx-sm2-psk" */ + 1194, /* "kx-sm2dhe" */ + 1196, /* "kx-sm9" */ + 1197, /* "kx-sm9dhe" */ 1044, /* "kx-srp" */ 477, /* "lastModifiedBy" */ 476, /* "lastModifiedTime" */ @@ -4332,12 +4311,12 @@ static const unsigned int ln_objs[NUM_LN] = { 17, /* "organizationName" */ 491, /* "organizationalStatus" */ 18, /* "organizationalUnitName" */ - 1084, /* "oscca" */ + 1106, /* "oscca" */ 475, /* "otherMailbox" */ 876, /* "owner" */ 935, /* "pSpecified" */ 489, /* "pagerTelephoneNumber" */ - 1148, /* "paillier" */ + 1208, /* "paillier" */ 782, /* "password based MAC" */ 374, /* "path" */ 621, /* "payment gateway capabilities" */ @@ -4354,7 +4333,7 @@ static const unsigned int ln_objs[NUM_LN] = { 145, /* "pbeWithSHA1And40BitRC4" */ 170, /* "pbeWithSHA1AndDES-CBC" */ 68, /* "pbeWithSHA1AndRC2-CBC" */ - 1195, /* "pbeWithSM3AndSMS4-CBC" */ + 1083, /* "pbeWithSM3AndSMS4-CBC" */ 499, /* "personalSignature" */ 487, /* "personalTitle" */ 464, /* "photo" */ @@ -4400,7 +4379,6 @@ static const unsigned int ln_objs[NUM_LN] = { 435, /* "pss" */ 286, /* "qcStatements" */ 457, /* "qualityLabelledData" */ - 1146, /* "r-ate-pairing" */ 450, /* "rFC822localPart" */ 98, /* "rc2-40-cbc" */ 166, /* "rc2-64-cbc" */ @@ -4610,80 +4588,81 @@ static const unsigned int ln_objs[NUM_LN] = { 52, /* "signingTime" */ 454, /* "simpleSecurityObject" */ 496, /* "singleLevelQuality" */ - 1085, /* "sm-scheme" */ - 1091, /* "sm1-cbc" */ - 1093, /* "sm1-cfb" */ - 1094, /* "sm1-cfb1" */ - 1095, /* "sm1-cfb8" */ - 1090, /* "sm1-ecb" */ - 1092, /* "sm1-ofb" */ - 1119, /* "sm2encrypt" */ - 1120, /* "sm2encrypt-recommendedParameters" */ - 1121, /* "sm2encrypt-specifiedParameters" */ - 1163, /* "sm2encrypt-with-blake2b512" */ - 1164, /* "sm2encrypt-with-blake2s256" */ - 1165, /* "sm2encrypt-with-md5" */ - 1161, /* "sm2encrypt-with-rmd160" */ - 1156, /* "sm2encrypt-with-sha1" */ - 1157, /* "sm2encrypt-with-sha224" */ - 1158, /* "sm2encrypt-with-sha256" */ - 1159, /* "sm2encrypt-with-sha384" */ - 1160, /* "sm2encrypt-with-sha512" */ - 1155, /* "sm2encrypt-with-sm3" */ - 1162, /* "sm2encrypt-with-whirlpool" */ - 1149, /* "sm2exchange" */ - 1116, /* "sm2p256v1" */ - 1117, /* "sm2sign" */ - 1167, /* "sm2sign-with-blake2b512" */ - 1168, /* "sm2sign-with-blake2s256" */ - 1134, /* "sm2sign-with-rmd160" */ - 1129, /* "sm2sign-with-sha1" */ - 1132, /* "sm2sign-with-sha224" */ - 1130, /* "sm2sign-with-sha256" */ - 1133, /* "sm2sign-with-sha384" */ - 1131, /* "sm2sign-with-sha512" */ - 1128, /* "sm2sign-with-sm3" */ - 1166, /* "sm2sign-with-whirlpool" */ - 1126, /* "sm3" */ - 1115, /* "sm5" */ - 1087, /* "sm6-cbc" */ - 1089, /* "sm6-cfb" */ - 1086, /* "sm6-ecb" */ - 1088, /* "sm6-ofb" */ - 1200, /* "sm9bn256v1" */ - 1125, /* "sm9encrypt" */ - 1207, /* "sm9encrypt-with-sm3-sms4-cbc" */ - 1208, /* "sm9encrypt-with-sm3-sms4-ctr" */ - 1206, /* "sm9encrypt-with-sm3-xor" */ - 1201, /* "sm9hash1" */ - 1203, /* "sm9hash1-with-sha256" */ - 1202, /* "sm9hash1-with-sm3" */ - 1209, /* "sm9kdf" */ - 1211, /* "sm9kdf-with-sha256" */ - 1210, /* "sm9kdf-with-sm3" */ - 1124, /* "sm9keyagreement" */ - 1123, /* "sm9sign" */ - 1205, /* "sm9sign-with-sha256" */ - 1204, /* "sm9sign-with-sm3" */ - 1103, /* "sms4-cbc" */ - 1110, /* "sms4-ccm" */ - 1105, /* "sms4-cfb" */ - 1106, /* "sms4-cfb1" */ - 1107, /* "sms4-cfb8" */ - 1108, /* "sms4-ctr" */ - 1102, /* "sms4-ecb" */ - 1109, /* "sms4-gcm" */ - 1114, /* "sms4-ocb" */ - 1104, /* "sms4-ofb" */ - 1112, /* "sms4-wrap" */ - 1113, /* "sms4-wrap-pad" */ - 1111, /* "sms4-xts" */ - 1097, /* "ssf33-cbc" */ - 1099, /* "ssf33-cfb" */ - 1100, /* "ssf33-cfb1" */ - 1101, /* "ssf33-cfb8" */ - 1096, /* "ssf33-ecb" */ - 1098, /* "ssf33-ofb" */ + 1107, /* "sm-scheme" */ + 1116, /* "sm1-cbc" */ + 1118, /* "sm1-cfb" */ + 1119, /* "sm1-cfb1" */ + 1120, /* "sm1-cfb8" */ + 1115, /* "sm1-ecb" */ + 1117, /* "sm1-ofb" */ + 1124, /* "sm2encrypt" */ + 1135, /* "sm2encrypt-recommendedParameters" */ + 1136, /* "sm2encrypt-specifiedParameters" */ + 1145, /* "sm2encrypt-with-blake2b512" */ + 1146, /* "sm2encrypt-with-blake2s256" */ + 1147, /* "sm2encrypt-with-md5" */ + 1143, /* "sm2encrypt-with-rmd160" */ + 1138, /* "sm2encrypt-with-sha1" */ + 1139, /* "sm2encrypt-with-sha224" */ + 1140, /* "sm2encrypt-with-sha256" */ + 1141, /* "sm2encrypt-with-sha384" */ + 1142, /* "sm2encrypt-with-sha512" */ + 1137, /* "sm2encrypt-with-sm3" */ + 1144, /* "sm2encrypt-with-whirlpool" */ + 1123, /* "sm2exchange" */ + 1121, /* "sm2p256v1" */ + 1122, /* "sm2sign" */ + 1133, /* "sm2sign-with-blake2b512" */ + 1134, /* "sm2sign-with-blake2s256" */ + 1131, /* "sm2sign-with-rmd160" */ + 1126, /* "sm2sign-with-sha1" */ + 1129, /* "sm2sign-with-sha224" */ + 1127, /* "sm2sign-with-sha256" */ + 1130, /* "sm2sign-with-sha384" */ + 1128, /* "sm2sign-with-sha512" */ + 1125, /* "sm2sign-with-sm3" */ + 1132, /* "sm2sign-with-whirlpool" */ + 1148, /* "sm3" */ + 1163, /* "sm5" */ + 1165, /* "sm6-cbc" */ + 1167, /* "sm6-cfb" */ + 1164, /* "sm6-ecb" */ + 1166, /* "sm6-ofb" */ + 1175, /* "sm9bn256v1" */ + 1171, /* "sm9encrypt" */ + 1179, /* "sm9encrypt-with-sm3-sms4-cbc" */ + 1180, /* "sm9encrypt-with-sm3-sms4-ctr" */ + 1178, /* "sm9encrypt-with-sm3-xor" */ + 1172, /* "sm9hash1" */ + 1182, /* "sm9hash1-with-sha256" */ + 1181, /* "sm9hash1-with-sm3" */ + 1173, /* "sm9kdf" */ + 1184, /* "sm9kdf-with-sha256" */ + 1183, /* "sm9kdf-with-sm3" */ + 1170, /* "sm9keyagreement" */ + 1169, /* "sm9sign" */ + 1177, /* "sm9sign-with-sha256" */ + 1176, /* "sm9sign-with-sm3" */ + 1151, /* "sms4-cbc" */ + 1158, /* "sms4-ccm" */ + 1153, /* "sms4-cfb" */ + 1154, /* "sms4-cfb1" */ + 1155, /* "sms4-cfb8" */ + 1156, /* "sms4-ctr" */ + 1150, /* "sms4-ecb" */ + 1157, /* "sms4-gcm" */ + 1162, /* "sms4-ocb" */ + 1152, /* "sms4-ofb" */ + 1160, /* "sms4-wrap" */ + 1161, /* "sms4-wrap-pad" */ + 1159, /* "sms4-xts" */ + 1109, /* "ssf33-cbc" */ + 1114, /* "ssf33-cbc-mac" */ + 1111, /* "ssf33-cfb" */ + 1112, /* "ssf33-cfb1" */ + 1113, /* "ssf33-cfb8" */ + 1108, /* "ssf33-ecb" */ + 1110, /* "ssf33-ofb" */ 16, /* "stateOrProvinceName" */ 660, /* "streetAddress" */ 498, /* "subtreeMaximumQuality" */ @@ -4691,7 +4670,6 @@ static const unsigned int ln_objs[NUM_LN] = { 890, /* "supportedAlgorithms" */ 874, /* "supportedApplicationContext" */ 100, /* "surname" */ - 1143, /* "tate-pairing" */ 1070, /* "tdes-cbc-in-ecies" */ 864, /* "telephoneNumber" */ 866, /* "teletexTerminalIdentifier" */ @@ -4702,10 +4680,7 @@ static const unsigned int ln_objs[NUM_LN] = { 1067, /* "tls-kdf" */ 1021, /* "tls1-prf" */ 682, /* "tpBasis" */ - 1139, /* "type1curve" */ - 1140, /* "type2curve" */ - 1141, /* "type3curve" */ - 1142, /* "type4curve" */ + 1102, /* "type1curve" */ 436, /* "ucl" */ 0, /* "undefined" */ 102, /* "uniqueIdentifier" */ @@ -4730,11 +4705,10 @@ static const unsigned int ln_objs[NUM_LN] = { 740, /* "wap-wsg-idm-ecid-wtls7" */ 741, /* "wap-wsg-idm-ecid-wtls8" */ 742, /* "wap-wsg-idm-ecid-wtls9" */ - 1197, /* "wapi-crypto" */ - 1198, /* "wapi-ec" */ - 1199, /* "wapi-ecdsa192-sha256" */ - 1135, /* "wapip192v1" */ - 1144, /* "weil-pairing" */ + 1189, /* "wapi-crypto" */ + 1190, /* "wapi-ec" */ + 1191, /* "wapi-ecdsa192-sha256" */ + 1192, /* "wapip192v1" */ 804, /* "whirlpool" */ 868, /* "x121Address" */ 503, /* "x500UniqueIdentifier" */ @@ -4743,12 +4717,12 @@ static const unsigned int ln_objs[NUM_LN] = { 1065, /* "x9-63-kdf" */ 1069, /* "xor-in-ecies" */ 125, /* "zlib compression" */ - 1136, /* "zuc" */ - 1193, /* "zuc-128eea3" */ - 1194, /* "zuc-128eia3" */ + 1185, /* "zuc" */ + 1186, /* "zuc-128eea3" */ + 1187, /* "zuc-128eia3" */ }; -#define NUM_OBJ 1100 +#define NUM_OBJ 1096 static const unsigned int obj_objs[NUM_OBJ] = { 0, /* OBJ_undef 0 */ 181, /* OBJ_iso 1 */ @@ -4769,7 +4743,7 @@ static const unsigned int obj_objs[NUM_OBJ] = { 512, /* OBJ_id_set 2 23 42 */ 678, /* OBJ_wap 2 23 43 */ 435, /* OBJ_pss 0 9 2342 */ - 1083, /* OBJ_ISO_CN 1 2 156 */ + 1105, /* OBJ_ISO_CN 1 2 156 */ 183, /* OBJ_ISO_US 1 2 840 */ 381, /* OBJ_iana 1 3 6 1 */ 1034, /* OBJ_X25519 1 3 101 110 */ @@ -4988,8 +4962,8 @@ static const unsigned int obj_objs[NUM_OBJ] = { 637, /* OBJ_set_brand_Diners 2 23 42 8 30 */ 638, /* OBJ_set_brand_AmericanExpress 2 23 42 8 34 */ 639, /* OBJ_set_brand_JCB 2 23 42 8 35 */ - 1084, /* OBJ_oscca 1 2 156 10197 */ - 1196, /* OBJ_bwips 1 2 156 11235 */ + 1106, /* OBJ_oscca 1 2 156 10197 */ + 1188, /* OBJ_bwips 1 2 156 11235 */ 805, /* OBJ_cryptopro 1 2 643 2 2 */ 806, /* OBJ_cryptocom 1 2 643 2 9 */ 974, /* OBJ_id_tc26 1 2 643 7 1 */ @@ -5074,8 +5048,8 @@ static const unsigned int obj_objs[NUM_OBJ] = { 744, /* OBJ_wap_wsg_idm_ecid_wtls11 2 23 43 1 4 11 */ 745, /* OBJ_wap_wsg_idm_ecid_wtls12 2 23 43 1 4 12 */ 804, /* OBJ_whirlpool 1 0 10118 3 0 55 */ - 1085, /* OBJ_sm_scheme 1 2 156 10197 1 */ - 1197, /* OBJ_wapi_crypto 1 2 156 11235 1 */ + 1107, /* OBJ_sm_scheme 1 2 156 10197 1 */ + 1189, /* OBJ_wapi_crypto 1 2 156 11235 1 */ 773, /* OBJ_kisa 1 2 410 200004 */ 807, /* OBJ_id_GostR3411_94_with_GostR3410_2001 1 2 643 2 2 3 */ 808, /* OBJ_id_GostR3411_94_with_GostR3410_94 1 2 643 2 2 4 */ @@ -5098,23 +5072,23 @@ static const unsigned int obj_objs[NUM_OBJ] = { 505, /* OBJ_mime_mhs_headings 1 3 6 1 7 1 1 */ 506, /* OBJ_mime_mhs_bodies 1 3 6 1 7 1 2 */ 119, /* OBJ_ripemd160WithRSA 1 3 36 3 3 1 2 */ - 1169, /* OBJ_ecies_with_x9_63_sha1_xor_hmac 1 3 132 1 8 1 */ - 1170, /* OBJ_ecies_with_x9_63_sha256_xor_hmac 1 3 132 1 8 2 */ - 1171, /* OBJ_ecies_with_x9_63_sha512_xor_hmac 1 3 132 1 8 3 */ - 1172, /* OBJ_ecies_with_x9_63_sha1_aes128_cbc_hmac 1 3 132 1 8 4 */ - 1173, /* OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac 1 3 132 1 8 5 */ - 1174, /* OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac 1 3 132 1 8 6 */ - 1175, /* OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac 1 3 132 1 8 7 */ - 1176, /* OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac 1 3 132 1 8 8 */ - 1177, /* OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac_half 1 3 132 1 8 9 */ - 1178, /* OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac_half 1 3 132 1 8 10 */ - 1179, /* OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac_half 1 3 132 1 8 11 */ - 1180, /* OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac_half 1 3 132 1 8 12 */ - 1181, /* OBJ_ecies_with_x9_63_sha1_aes128_cbc_cmac 1 3 132 1 8 13 */ - 1182, /* OBJ_ecies_with_x9_63_sha256_aes128_cbc_cmac 1 3 132 1 8 14 */ - 1183, /* OBJ_ecies_with_x9_63_sha512_aes256_cbc_cmac 1 3 132 1 8 15 */ - 1184, /* OBJ_ecies_with_x9_63_sha256_aes128_ctr_cmac 1 3 132 1 8 16 */ - 1185, /* OBJ_ecies_with_x9_63_sha512_aes256_ctr_cmac 1 3 132 1 8 17 */ + 1084, /* OBJ_ecies_with_x9_63_sha1_xor_hmac 1 3 132 1 8 1 */ + 1085, /* OBJ_ecies_with_x9_63_sha256_xor_hmac 1 3 132 1 8 2 */ + 1086, /* OBJ_ecies_with_x9_63_sha512_xor_hmac 1 3 132 1 8 3 */ + 1087, /* OBJ_ecies_with_x9_63_sha1_aes128_cbc_hmac 1 3 132 1 8 4 */ + 1088, /* OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac 1 3 132 1 8 5 */ + 1089, /* OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac 1 3 132 1 8 6 */ + 1090, /* OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac 1 3 132 1 8 7 */ + 1091, /* OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac 1 3 132 1 8 8 */ + 1092, /* OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac_half 1 3 132 1 8 9 */ + 1093, /* OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac_half 1 3 132 1 8 10 */ + 1094, /* OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac_half 1 3 132 1 8 11 */ + 1095, /* OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac_half 1 3 132 1 8 12 */ + 1096, /* OBJ_ecies_with_x9_63_sha1_aes128_cbc_cmac 1 3 132 1 8 13 */ + 1097, /* OBJ_ecies_with_x9_63_sha256_aes128_cbc_cmac 1 3 132 1 8 14 */ + 1098, /* OBJ_ecies_with_x9_63_sha512_aes256_cbc_cmac 1 3 132 1 8 15 */ + 1099, /* OBJ_ecies_with_x9_63_sha256_aes128_ctr_cmac 1 3 132 1 8 16 */ + 1100, /* OBJ_ecies_with_x9_63_sha512_aes256_ctr_cmac 1 3 132 1 8 17 */ 937, /* OBJ_dhSinglePass_stdDH_sha224kdf_scheme 1 3 132 1 11 0 */ 938, /* OBJ_dhSinglePass_stdDH_sha256kdf_scheme 1 3 132 1 11 1 */ 939, /* OBJ_dhSinglePass_stdDH_sha384kdf_scheme 1 3 132 1 11 2 */ @@ -5142,7 +5116,7 @@ static const unsigned int obj_objs[NUM_OBJ] = { 634, /* OBJ_setAttr_TokICCsig 2 23 42 3 3 5 1 */ 635, /* OBJ_setAttr_SecDevSig 2 23 42 3 3 5 2 */ 436, /* OBJ_ucl 0 9 2342 19200300 */ - 1198, /* OBJ_wapi_ec 1 2 156 11235 1 1 */ + 1190, /* OBJ_wapi_ec 1 2 156 11235 1 1 */ 820, /* OBJ_id_Gost28147_89_None_KeyMeshing 1 2 643 2 2 14 0 */ 819, /* OBJ_id_Gost28147_89_CryptoPro_KeyMeshing 1 2 643 2 2 14 1 */ 845, /* OBJ_id_GostR3410_94_a 1 2 643 2 2 20 1 */ @@ -5237,51 +5211,52 @@ static const unsigned int obj_objs[NUM_OBJ] = { 971, /* OBJ_camellia_256_ctr 0 3 4401 5 3 1 9 49 */ 972, /* OBJ_camellia_256_cmac 0 3 4401 5 3 1 9 50 */ 437, /* OBJ_pilot 0 9 2342 19200300 100 */ - 1086, /* OBJ_sm6_ecb 1 2 156 10197 1 101 1 */ - 1087, /* OBJ_sm6_cbc 1 2 156 10197 1 101 2 */ - 1088, /* OBJ_sm6_ofb128 1 2 156 10197 1 101 3 */ - 1089, /* OBJ_sm6_cfb128 1 2 156 10197 1 101 4 */ - 1090, /* OBJ_sm1_ecb 1 2 156 10197 1 102 1 */ - 1091, /* OBJ_sm1_cbc 1 2 156 10197 1 102 2 */ - 1092, /* OBJ_sm1_ofb128 1 2 156 10197 1 102 3 */ - 1093, /* OBJ_sm1_cfb128 1 2 156 10197 1 102 4 */ - 1094, /* OBJ_sm1_cfb1 1 2 156 10197 1 102 5 */ - 1095, /* OBJ_sm1_cfb8 1 2 156 10197 1 102 6 */ - 1096, /* OBJ_ssf33_ecb 1 2 156 10197 1 103 1 */ - 1097, /* OBJ_ssf33_cbc 1 2 156 10197 1 103 2 */ - 1098, /* OBJ_ssf33_ofb128 1 2 156 10197 1 103 3 */ - 1099, /* OBJ_ssf33_cfb128 1 2 156 10197 1 103 4 */ - 1100, /* OBJ_ssf33_cfb1 1 2 156 10197 1 103 5 */ - 1101, /* OBJ_ssf33_cfb8 1 2 156 10197 1 103 6 */ - 1102, /* OBJ_sms4_ecb 1 2 156 10197 1 104 1 */ - 1103, /* OBJ_sms4_cbc 1 2 156 10197 1 104 2 */ - 1104, /* OBJ_sms4_ofb128 1 2 156 10197 1 104 3 */ - 1105, /* OBJ_sms4_cfb128 1 2 156 10197 1 104 4 */ - 1106, /* OBJ_sms4_cfb1 1 2 156 10197 1 104 5 */ - 1107, /* OBJ_sms4_cfb8 1 2 156 10197 1 104 6 */ - 1108, /* OBJ_sms4_ctr 1 2 156 10197 1 104 7 */ - 1109, /* OBJ_sms4_gcm 1 2 156 10197 1 104 8 */ - 1110, /* OBJ_sms4_ccm 1 2 156 10197 1 104 9 */ - 1111, /* OBJ_sms4_xts 1 2 156 10197 1 104 10 */ - 1112, /* OBJ_sms4_wrap 1 2 156 10197 1 104 11 */ - 1113, /* OBJ_sms4_wrap_pad 1 2 156 10197 1 104 12 */ - 1114, /* OBJ_sms4_ocb 1 2 156 10197 1 104 100 */ - 1115, /* OBJ_sm5 1 2 156 10197 1 201 */ - 1116, /* OBJ_sm2p256v1 1 2 156 10197 1 301 */ - 1122, /* OBJ_id_sm9PublicKey 1 2 156 10197 1 302 */ - 1126, /* OBJ_sm3 1 2 156 10197 1 401 */ - 1128, /* OBJ_sm2sign_with_sm3 1 2 156 10197 1 501 */ - 1129, /* OBJ_sm2sign_with_sha1 1 2 156 10197 1 502 */ - 1130, /* OBJ_sm2sign_with_sha256 1 2 156 10197 1 503 */ - 1131, /* OBJ_sm2sign_with_sha512 1 2 156 10197 1 504 */ - 1132, /* OBJ_sm2sign_with_sha224 1 2 156 10197 1 505 */ - 1133, /* OBJ_sm2sign_with_sha384 1 2 156 10197 1 506 */ - 1134, /* OBJ_sm2sign_with_rmd160 1 2 156 10197 1 507 */ - 1166, /* OBJ_sm2sign_with_whirlpool 1 2 156 10197 1 520 */ - 1167, /* OBJ_sm2sign_with_blake2b512 1 2 156 10197 1 521 */ - 1168, /* OBJ_sm2sign_with_blake2s256 1 2 156 10197 1 522 */ - 1136, /* OBJ_zuc 1 2 156 10197 1 800 */ - 1199, /* OBJ_wapi_ecdsa192_sha256 1 2 156 11235 1 1 1 */ + 1164, /* OBJ_sm6_ecb 1 2 156 10197 1 101 1 */ + 1165, /* OBJ_sm6_cbc 1 2 156 10197 1 101 2 */ + 1166, /* OBJ_sm6_ofb128 1 2 156 10197 1 101 3 */ + 1167, /* OBJ_sm6_cfb128 1 2 156 10197 1 101 4 */ + 1115, /* OBJ_sm1_ecb 1 2 156 10197 1 102 1 */ + 1116, /* OBJ_sm1_cbc 1 2 156 10197 1 102 2 */ + 1117, /* OBJ_sm1_ofb128 1 2 156 10197 1 102 3 */ + 1118, /* OBJ_sm1_cfb128 1 2 156 10197 1 102 4 */ + 1119, /* OBJ_sm1_cfb1 1 2 156 10197 1 102 5 */ + 1120, /* OBJ_sm1_cfb8 1 2 156 10197 1 102 6 */ + 1108, /* OBJ_ssf33_ecb 1 2 156 10197 1 103 1 */ + 1109, /* OBJ_ssf33_cbc 1 2 156 10197 1 103 2 */ + 1110, /* OBJ_ssf33_ofb128 1 2 156 10197 1 103 3 */ + 1111, /* OBJ_ssf33_cfb128 1 2 156 10197 1 103 4 */ + 1112, /* OBJ_ssf33_cfb1 1 2 156 10197 1 103 5 */ + 1113, /* OBJ_ssf33_cfb8 1 2 156 10197 1 103 6 */ + 1114, /* OBJ_ssf33_cbc_mac 1 2 156 10197 1 103 7 */ + 1150, /* OBJ_sms4_ecb 1 2 156 10197 1 104 1 */ + 1151, /* OBJ_sms4_cbc 1 2 156 10197 1 104 2 */ + 1152, /* OBJ_sms4_ofb128 1 2 156 10197 1 104 3 */ + 1153, /* OBJ_sms4_cfb128 1 2 156 10197 1 104 4 */ + 1154, /* OBJ_sms4_cfb1 1 2 156 10197 1 104 5 */ + 1155, /* OBJ_sms4_cfb8 1 2 156 10197 1 104 6 */ + 1156, /* OBJ_sms4_ctr 1 2 156 10197 1 104 7 */ + 1157, /* OBJ_sms4_gcm 1 2 156 10197 1 104 8 */ + 1158, /* OBJ_sms4_ccm 1 2 156 10197 1 104 9 */ + 1159, /* OBJ_sms4_xts 1 2 156 10197 1 104 10 */ + 1160, /* OBJ_sms4_wrap 1 2 156 10197 1 104 11 */ + 1161, /* OBJ_sms4_wrap_pad 1 2 156 10197 1 104 12 */ + 1162, /* OBJ_sms4_ocb 1 2 156 10197 1 104 100 */ + 1163, /* OBJ_sm5 1 2 156 10197 1 201 */ + 1121, /* OBJ_sm2p256v1 1 2 156 10197 1 301 */ + 1168, /* OBJ_id_sm9PublicKey 1 2 156 10197 1 302 */ + 1148, /* OBJ_sm3 1 2 156 10197 1 401 */ + 1125, /* OBJ_sm2sign_with_sm3 1 2 156 10197 1 501 */ + 1126, /* OBJ_sm2sign_with_sha1 1 2 156 10197 1 502 */ + 1127, /* OBJ_sm2sign_with_sha256 1 2 156 10197 1 503 */ + 1128, /* OBJ_sm2sign_with_sha512 1 2 156 10197 1 504 */ + 1129, /* OBJ_sm2sign_with_sha224 1 2 156 10197 1 505 */ + 1130, /* OBJ_sm2sign_with_sha384 1 2 156 10197 1 506 */ + 1131, /* OBJ_sm2sign_with_rmd160 1 2 156 10197 1 507 */ + 1132, /* OBJ_sm2sign_with_whirlpool 1 2 156 10197 1 520 */ + 1133, /* OBJ_sm2sign_with_blake2b512 1 2 156 10197 1 521 */ + 1134, /* OBJ_sm2sign_with_blake2s256 1 2 156 10197 1 522 */ + 1185, /* OBJ_zuc 1 2 156 10197 1 800 */ + 1191, /* OBJ_wapi_ecdsa192_sha256 1 2 156 11235 1 1 1 */ 776, /* OBJ_seed_ecb 1 2 410 200004 1 3 */ 777, /* OBJ_seed_cbc 1 2 410 200004 1 4 */ 779, /* OBJ_seed_cfb128 1 2 410 200004 1 5 */ @@ -5356,7 +5331,7 @@ static const unsigned int obj_objs[NUM_OBJ] = { 794, /* OBJ_ecdsa_with_SHA256 1 2 840 10045 4 3 2 */ 795, /* OBJ_ecdsa_with_SHA384 1 2 840 10045 4 3 3 */ 796, /* OBJ_ecdsa_with_SHA512 1 2 840 10045 4 3 4 */ - 1150, /* OBJ_GmSSL 1 3 6 1 4 1 49549 */ + 1200, /* OBJ_GmSSL 1 3 6 1 4 1 49549 */ 269, /* OBJ_id_pkix1_explicit_88 1 3 6 1 5 5 7 0 1 */ 270, /* OBJ_id_pkix1_implicit_88 1 3 6 1 5 5 7 0 2 */ 271, /* OBJ_id_pkix1_explicit_93 1 3 6 1 5 5 7 0 3 */ @@ -5483,22 +5458,24 @@ static const unsigned int obj_objs[NUM_OBJ] = { 439, /* OBJ_pilotAttributeSyntax 0 9 2342 19200300 100 3 */ 440, /* OBJ_pilotObjectClass 0 9 2342 19200300 100 4 */ 441, /* OBJ_pilotGroups 0 9 2342 19200300 100 10 */ - 1117, /* OBJ_sm2sign 1 2 156 10197 1 301 1 */ - 1149, /* OBJ_sm2exchange 1 2 156 10197 1 301 2 */ - 1119, /* OBJ_sm2encrypt 1 2 156 10197 1 301 3 */ - 1123, /* OBJ_sm9sign 1 2 156 10197 1 302 1 */ - 1124, /* OBJ_sm9keyagreement 1 2 156 10197 1 302 2 */ - 1125, /* OBJ_sm9encrypt 1 2 156 10197 1 302 3 */ - 1201, /* OBJ_sm9hash1 1 2 156 10197 1 302 4 */ - 1209, /* OBJ_sm9kdf 1 2 156 10197 1 302 5 */ - 1127, /* OBJ_hmac_sm3 1 2 156 10197 1 401 2 */ - 1193, /* OBJ_zuc_128eea3 1 2 156 10197 1 800 1 */ - 1194, /* OBJ_zuc_128eia3 1 2 156 10197 1 800 2 */ - 1135, /* OBJ_wapip192v1 1 2 156 11235 1 1 2 1 */ + 1122, /* OBJ_sm2sign 1 2 156 10197 1 301 1 */ + 1123, /* OBJ_sm2exchange 1 2 156 10197 1 301 2 */ + 1124, /* OBJ_sm2encrypt 1 2 156 10197 1 301 3 */ + 1169, /* OBJ_sm9sign 1 2 156 10197 1 302 1 */ + 1170, /* OBJ_sm9keyagreement 1 2 156 10197 1 302 2 */ + 1171, /* OBJ_sm9encrypt 1 2 156 10197 1 302 3 */ + 1172, /* OBJ_sm9hash1 1 2 156 10197 1 302 4 */ + 1173, /* OBJ_sm9kdf 1 2 156 10197 1 302 5 */ + 1174, /* OBJ_id_sm9MasterSecret 1 2 156 10197 1 302 6 */ + 1149, /* OBJ_hmac_sm3 1 2 156 10197 1 401 2 */ + 1186, /* OBJ_zuc_128eea3 1 2 156 10197 1 800 1 */ + 1187, /* OBJ_zuc_128eia3 1 2 156 10197 1 800 2 */ + 1192, /* OBJ_wapip192v1 1 2 156 11235 1 1 2 1 */ 997, /* OBJ_id_tc26_gost_3410_2012_512_paramSetTest 1 2 643 7 1 2 1 2 0 */ 998, /* OBJ_id_tc26_gost_3410_2012_512_paramSetA 1 2 643 7 1 2 1 2 1 */ 999, /* OBJ_id_tc26_gost_3410_2012_512_paramSetB 1 2 643 7 1 2 1 2 2 */ 1003, /* OBJ_id_tc26_gost_28147_param_Z 1 2 643 7 1 2 5 1 1 */ + 1101, /* OBJ_ibcs1 1 2 840 1 114334 1 1 */ 108, /* OBJ_cast5_cbc 1 2 840 113533 7 66 10 */ 112, /* OBJ_pbeWithMD5AndCast5_CBC 1 2 840 113533 7 66 12 */ 782, /* OBJ_id_PasswordBasedMAC 1 2 840 113533 7 66 13 */ @@ -5552,8 +5529,8 @@ static const unsigned int obj_objs[NUM_OBJ] = { 683, /* OBJ_X9_62_ppBasis 1 2 840 10045 1 2 3 3 */ 417, /* OBJ_ms_csp_name 1 3 6 1 4 1 311 17 1 */ 856, /* OBJ_LocalKeySet 1 3 6 1 4 1 311 17 2 */ - 1147, /* OBJ_cpk 1 3 6 1 4 1 49549 1 */ - 1148, /* OBJ_paillier 1 3 6 1 4 1 49549 21 */ + 1201, /* OBJ_cpk 1 3 6 1 4 1 49549 1 */ + 1208, /* OBJ_paillier 1 3 6 1 4 1 49549 21 */ 390, /* OBJ_dcObject 1 3 6 1 4 1 1466 344 */ 91, /* OBJ_bf_cbc 1 3 6 1 4 1 3029 1 2 */ 973, /* OBJ_id_scrypt 1 3 6 1 4 1 11591 4 11 */ @@ -5696,27 +5673,18 @@ static const unsigned int obj_objs[NUM_OBJ] = { 455, /* OBJ_pilotOrganization 0 9 2342 19200300 100 4 20 */ 456, /* OBJ_pilotDSA 0 9 2342 19200300 100 4 21 */ 457, /* OBJ_qualityLabelledData 0 9 2342 19200300 100 4 22 */ - 1120, /* OBJ_sm2encrypt_recommendedParameters 1 2 156 10197 1 301 3 1 */ - 1121, /* OBJ_sm2encrypt_specifiedParameters 1 2 156 10197 1 301 3 2 */ - 1204, /* OBJ_sm9sign_with_sm3 1 2 156 10197 1 302 1 1 */ - 1205, /* OBJ_sm9sign_with_sha256 1 2 156 10197 1 302 1 2 */ - 1206, /* OBJ_sm9encrypt_with_sm3_xor 1 2 156 10197 1 302 3 1 */ - 1207, /* OBJ_sm9encrypt_with_sm3_sms4_cbc 1 2 156 10197 1 302 3 2 */ - 1208, /* OBJ_sm9encrypt_with_sm3_sms4_ctr 1 2 156 10197 1 302 3 3 */ - 1202, /* OBJ_sm9hash1_with_sm3 1 2 156 10197 1 302 4 1 */ - 1203, /* OBJ_sm9hash1_with_sha256 1 2 156 10197 1 302 4 2 */ - 1210, /* OBJ_sm9kdf_with_sm3 1 2 156 10197 1 302 5 1 */ - 1211, /* OBJ_sm9kdf_with_sha256 1 2 156 10197 1 302 5 2 */ - 1139, /* OBJ_type1curve 1 2 840 1 114334 1 1 1 */ - 1140, /* OBJ_type2curve 1 2 840 1 114334 1 1 2 */ - 1141, /* OBJ_type3curve 1 2 840 1 114334 1 1 3 */ - 1142, /* OBJ_type4curve 1 2 840 1 114334 1 1 4 */ - 1137, /* OBJ_bfibe 1 2 840 1 114334 1 2 1 */ - 1138, /* OBJ_bb1 1 2 840 1 114334 1 2 2 */ - 1143, /* OBJ_tate_pairing 1 2 840 1 114334 1 3 1 */ - 1144, /* OBJ_weil_pairing 1 2 840 1 114334 1 3 2 */ - 1145, /* OBJ_ate_pairing 1 2 840 1 114334 1 3 3 */ - 1146, /* OBJ_r_ate_pairing 1 2 840 1 114334 1 3 4 */ + 1135, /* OBJ_sm2encrypt_recommendedParameters 1 2 156 10197 1 301 3 1 */ + 1136, /* OBJ_sm2encrypt_specifiedParameters 1 2 156 10197 1 301 3 2 */ + 1176, /* OBJ_sm9sign_with_sm3 1 2 156 10197 1 302 1 1 */ + 1177, /* OBJ_sm9sign_with_sha256 1 2 156 10197 1 302 1 2 */ + 1178, /* OBJ_sm9encrypt_with_sm3_xor 1 2 156 10197 1 302 3 1 */ + 1179, /* OBJ_sm9encrypt_with_sm3_sms4_cbc 1 2 156 10197 1 302 3 2 */ + 1180, /* OBJ_sm9encrypt_with_sm3_sms4_ctr 1 2 156 10197 1 302 3 3 */ + 1181, /* OBJ_sm9hash1_with_sm3 1 2 156 10197 1 302 4 1 */ + 1182, /* OBJ_sm9hash1_with_sha256 1 2 156 10197 1 302 4 2 */ + 1183, /* OBJ_sm9kdf_with_sm3 1 2 156 10197 1 302 5 1 */ + 1184, /* OBJ_sm9kdf_with_sha256 1 2 156 10197 1 302 5 2 */ + 1175, /* OBJ_sm9bn256v1 1 2 156 10197 1 302 6 1 */ 189, /* OBJ_id_smime_mod 1 2 840 113549 1 9 16 0 */ 190, /* OBJ_id_smime_ct 1 2 840 113549 1 9 16 1 */ 191, /* OBJ_id_smime_aa 1 2 840 113549 1 9 16 2 */ @@ -5733,7 +5701,7 @@ static const unsigned int obj_objs[NUM_OBJ] = { 147, /* OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC 1 2 840 113549 1 12 1 4 */ 148, /* OBJ_pbe_WithSHA1And128BitRC2_CBC 1 2 840 113549 1 12 1 5 */ 149, /* OBJ_pbe_WithSHA1And40BitRC2_CBC 1 2 840 113549 1 12 1 6 */ - 1195, /* OBJ_pbe_WithSM3AndSMS4_CBC 1 2 840 113549 1 12 1 100 */ + 1083, /* OBJ_pbe_WithSM3AndSMS4_CBC 1 2 840 113549 1 12 1 100 */ 171, /* OBJ_ms_ext_req 1 3 6 1 4 1 311 2 1 14 */ 134, /* OBJ_ms_code_ind 1 3 6 1 4 1 311 2 1 21 */ 135, /* OBJ_ms_code_com 1 3 6 1 4 1 311 2 1 22 */ @@ -5742,29 +5710,31 @@ static const unsigned int obj_objs[NUM_OBJ] = { 138, /* OBJ_ms_efs 1 3 6 1 4 1 311 10 3 4 */ 648, /* OBJ_ms_smartcard_login 1 3 6 1 4 1 311 20 2 2 */ 649, /* OBJ_ms_upn 1 3 6 1 4 1 311 20 2 3 */ - 1151, /* OBJ_cpk_map 1 3 6 1 4 1 49549 1 1 */ - 1200, /* OBJ_sm9bn256v1 1 3 6 1 4 1 49549 9 1 */ + 1202, /* OBJ_cpk_map 1 3 6 1 4 1 49549 1 1 */ 951, /* OBJ_ct_precert_scts 1 3 6 1 4 1 11129 2 4 2 */ 952, /* OBJ_ct_precert_poison 1 3 6 1 4 1 11129 2 4 3 */ 953, /* OBJ_ct_precert_signer 1 3 6 1 4 1 11129 2 4 4 */ 954, /* OBJ_ct_cert_scts 1 3 6 1 4 1 11129 2 4 5 */ - 1155, /* OBJ_sm2encrypt_with_sm3 1 2 156 10197 1 301 3 2 1 */ - 1156, /* OBJ_sm2encrypt_with_sha1 1 2 156 10197 1 301 3 2 2 */ - 1157, /* OBJ_sm2encrypt_with_sha224 1 2 156 10197 1 301 3 2 3 */ - 1158, /* OBJ_sm2encrypt_with_sha256 1 2 156 10197 1 301 3 2 4 */ - 1159, /* OBJ_sm2encrypt_with_sha384 1 2 156 10197 1 301 3 2 5 */ - 1160, /* OBJ_sm2encrypt_with_sha512 1 2 156 10197 1 301 3 2 6 */ - 1161, /* OBJ_sm2encrypt_with_rmd160 1 2 156 10197 1 301 3 2 7 */ - 1162, /* OBJ_sm2encrypt_with_whirlpool 1 2 156 10197 1 301 3 2 8 */ - 1163, /* OBJ_sm2encrypt_with_blake2b512 1 2 156 10197 1 301 3 2 9 */ - 1164, /* OBJ_sm2encrypt_with_blake2s256 1 2 156 10197 1 301 3 2 10 */ - 1165, /* OBJ_sm2encrypt_with_md5 1 2 156 10197 1 301 3 2 11 */ + 1137, /* OBJ_sm2encrypt_with_sm3 1 2 156 10197 1 301 3 2 1 */ + 1138, /* OBJ_sm2encrypt_with_sha1 1 2 156 10197 1 301 3 2 2 */ + 1139, /* OBJ_sm2encrypt_with_sha224 1 2 156 10197 1 301 3 2 3 */ + 1140, /* OBJ_sm2encrypt_with_sha256 1 2 156 10197 1 301 3 2 4 */ + 1141, /* OBJ_sm2encrypt_with_sha384 1 2 156 10197 1 301 3 2 5 */ + 1142, /* OBJ_sm2encrypt_with_sha512 1 2 156 10197 1 301 3 2 6 */ + 1143, /* OBJ_sm2encrypt_with_rmd160 1 2 156 10197 1 301 3 2 7 */ + 1144, /* OBJ_sm2encrypt_with_whirlpool 1 2 156 10197 1 301 3 2 8 */ + 1145, /* OBJ_sm2encrypt_with_blake2b512 1 2 156 10197 1 301 3 2 9 */ + 1146, /* OBJ_sm2encrypt_with_blake2s256 1 2 156 10197 1 301 3 2 10 */ + 1147, /* OBJ_sm2encrypt_with_md5 1 2 156 10197 1 301 3 2 11 */ 751, /* OBJ_camellia_128_cbc 1 2 392 200011 61 1 1 1 2 */ 752, /* OBJ_camellia_192_cbc 1 2 392 200011 61 1 1 1 3 */ 753, /* OBJ_camellia_256_cbc 1 2 392 200011 61 1 1 1 4 */ 907, /* OBJ_id_camellia128_wrap 1 2 392 200011 61 1 1 3 2 */ 908, /* OBJ_id_camellia192_wrap 1 2 392 200011 61 1 1 3 3 */ 909, /* OBJ_id_camellia256_wrap 1 2 392 200011 61 1 1 3 4 */ + 1102, /* OBJ_type1curve 1 2 840 1 114334 1 1 1 1 */ + 1103, /* OBJ_bfibe 1 2 840 1 114334 1 1 2 1 */ + 1104, /* OBJ_bb1ibe 1 2 840 1 114334 1 1 2 2 */ 196, /* OBJ_id_smime_mod_cms 1 2 840 113549 1 9 16 0 1 */ 197, /* OBJ_id_smime_mod_ess 1 2 840 113549 1 9 16 0 2 */ 198, /* OBJ_id_smime_mod_oid 1 2 840 113549 1 9 16 0 3 */ @@ -5843,11 +5813,11 @@ static const unsigned int obj_objs[NUM_OBJ] = { 955, /* OBJ_jurisdictionLocalityName 1 3 6 1 4 1 311 60 2 1 1 */ 956, /* OBJ_jurisdictionStateOrProvinceName 1 3 6 1 4 1 311 60 2 1 2 */ 957, /* OBJ_jurisdictionCountryName 1 3 6 1 4 1 311 60 2 1 3 */ - 1218, /* OBJ_cpk_map_sha1 1 3 6 1 4 1 49549 1 1 1 */ - 1219, /* OBJ_cpk_map_sha256 1 3 6 1 4 1 49549 1 1 2 */ - 1220, /* OBJ_cpk_map_sm3 1 3 6 1 4 1 49549 1 1 3 */ - 1221, /* OBJ_cpk_map_sha384 1 3 6 1 4 1 49549 1 1 4 */ - 1222, /* OBJ_cpk_map_sha512 1 3 6 1 4 1 49549 1 1 5 */ + 1203, /* OBJ_cpk_map_sha1 1 3 6 1 4 1 49549 1 1 1 */ + 1204, /* OBJ_cpk_map_sha256 1 3 6 1 4 1 49549 1 1 2 */ + 1205, /* OBJ_cpk_map_sm3 1 3 6 1 4 1 49549 1 1 3 */ + 1206, /* OBJ_cpk_map_sha384 1 3 6 1 4 1 49549 1 1 4 */ + 1207, /* OBJ_cpk_map_sha512 1 3 6 1 4 1 49549 1 1 5 */ 1056, /* OBJ_blake2b512 1 3 6 1 4 1 1722 12 2 1 16 */ 1057, /* OBJ_blake2s256 1 3 6 1 4 1 1722 12 2 2 8 */ }; diff --git a/crypto/objects/obj_mac.num b/crypto/objects/obj_mac.num index 36f8eb81..c4322b5e 100644 --- a/crypto/objects/obj_mac.num +++ b/crypto/objects/obj_mac.num @@ -1080,143 +1080,129 @@ cmac_aes128_ecies 1079 cmac_aes192_ecies 1080 cmac_aes256_ecies 1081 cbc_mac 1082 -ISO_CN 1083 -oscca 1084 -sm_scheme 1085 -sm6_ecb 1086 -sm6_cbc 1087 -sm6_ofb128 1088 -sm6_cfb128 1089 -sm1_ecb 1090 -sm1_cbc 1091 -sm1_ofb128 1092 -sm1_cfb128 1093 -sm1_cfb1 1094 -sm1_cfb8 1095 -ssf33_ecb 1096 -ssf33_cbc 1097 -ssf33_ofb128 1098 -ssf33_cfb128 1099 -ssf33_cfb1 1100 -ssf33_cfb8 1101 -sms4_ecb 1102 -sms4_cbc 1103 -sms4_ofb128 1104 -sms4_cfb128 1105 -sms4_cfb1 1106 -sms4_cfb8 1107 -sms4_ctr 1108 -sms4_gcm 1109 -sms4_ccm 1110 -sms4_xts 1111 -sms4_wrap 1112 -sms4_wrap_pad 1113 -sms4_ocb 1114 -sm5 1115 -sm2p256v1 1116 -sm2sign 1117 -sm2keyagreement 1118 -sm2encrypt 1119 -sm2encrypt_recommendedParameters 1120 -sm2encrypt_specifiedParameters 1121 -id_sm9PublicKey 1122 -sm9sign 1123 -sm9keyagreement 1124 -sm9encrypt 1125 -sm3 1126 -hmac_sm3 1127 -sm2sign_with_sm3 1128 -sm2sign_with_sha1 1129 -sm2sign_with_sha256 1130 -sm2sign_with_sha512 1131 -sm2sign_with_sha224 1132 -sm2sign_with_sha384 1133 -sm2sign_with_rmd160 1134 -wapip192v1 1135 -zuc 1136 -bfibe 1137 -bb1 1138 -type1curve 1139 -type2curve 1140 -type3curve 1141 -type4curve 1142 -tate_pairing 1143 -weil_pairing 1144 -ate_pairing 1145 -r_ate_pairing 1146 -cpk 1147 -paillier 1148 -sm2exchange 1149 -GmSSL 1150 -cpk_map 1151 -cpk_sha1_map 1152 -cpk_sha256_map 1153 -cpk_sm3_map 1154 -sm2encrypt_with_sm3 1155 -sm2encrypt_with_sha1 1156 -sm2encrypt_with_sha224 1157 -sm2encrypt_with_sha256 1158 -sm2encrypt_with_sha384 1159 -sm2encrypt_with_sha512 1160 -sm2encrypt_with_rmd160 1161 -sm2encrypt_with_whirlpool 1162 -sm2encrypt_with_blake2b512 1163 -sm2encrypt_with_blake2s256 1164 -sm2encrypt_with_md5 1165 -sm2sign_with_whirlpool 1166 -sm2sign_with_blake2b512 1167 -sm2sign_with_blake2s256 1168 -ecies_with_x9_63_sha1_xor_hmac 1169 -ecies_with_x9_63_sha256_xor_hmac 1170 -ecies_with_x9_63_sha512_xor_hmac 1171 -ecies_with_x9_63_sha1_aes128_cbc_hmac 1172 -ecies_with_x9_63_sha256_aes128_cbc_hmac 1173 -ecies_with_x9_63_sha512_aes256_cbc_hmac 1174 -ecies_with_x9_63_sha256_aes128_ctr_hmac 1175 -ecies_with_x9_63_sha512_aes256_ctr_hmac 1176 -ecies_with_x9_63_sha256_aes128_cbc_hmac_half 1177 -ecies_with_x9_63_sha512_aes256_cbc_hmac_half 1178 -ecies_with_x9_63_sha256_aes128_ctr_hmac_half 1179 -ecies_with_x9_63_sha512_aes256_ctr_hmac_half 1180 -ecies_with_x9_63_sha1_aes128_cbc_cmac 1181 -ecies_with_x9_63_sha256_aes128_cbc_cmac 1182 -ecies_with_x9_63_sha512_aes256_cbc_cmac 1183 -ecies_with_x9_63_sha256_aes128_ctr_cmac 1184 -ecies_with_x9_63_sha512_aes256_ctr_cmac 1185 -kx_sm2 1186 -auth_sm2 1187 -kx_sm9 1188 -auth_sm9 1189 -kx_sm2dhe 1190 -kx_sm2_psk 1191 -kx_sm9dhe 1192 -zuc_128eea3 1193 -zuc_128eia3 1194 -pbe_WithSM3AndSMS4_CBC 1195 -bwips 1196 -wapi_crypto 1197 -wapi_ec 1198 -wapi_ecdsa192_sha256 1199 -sm9bn256v1 1200 -sm9hash1 1201 -sm9hash1_with_sm3 1202 -sm9hash1_with_sha256 1203 -sm9sign_with_sm3 1204 -sm9sign_with_sha256 1205 -sm9encrypt_with_sm3_xor 1206 -sm9encrypt_with_sm3_sms4_cbc 1207 -sm9encrypt_with_sm3_sms4_ctr 1208 -sm9kdf 1209 -sm9kdf_with_sm3 1210 -sm9kdf_with_sha256 1211 -cpk_map32x32_sha1 1212 -cpk_map32x256_sha256 1213 -cpk_map32x256_sm3 1214 -cpk_map_with_sha1 1215 -cpk_map_with_sha256 1216 -cpk_map_with_sm3 1217 -cpk_map_sha1 1218 -cpk_map_sha256 1219 -cpk_map_sm3 1220 -cpk_map_sha384 1221 -cpk_map_sha512 1222 +pbe_WithSM3AndSMS4_CBC 1083 +ecies_with_x9_63_sha1_xor_hmac 1084 +ecies_with_x9_63_sha256_xor_hmac 1085 +ecies_with_x9_63_sha512_xor_hmac 1086 +ecies_with_x9_63_sha1_aes128_cbc_hmac 1087 +ecies_with_x9_63_sha256_aes128_cbc_hmac 1088 +ecies_with_x9_63_sha512_aes256_cbc_hmac 1089 +ecies_with_x9_63_sha256_aes128_ctr_hmac 1090 +ecies_with_x9_63_sha512_aes256_ctr_hmac 1091 +ecies_with_x9_63_sha256_aes128_cbc_hmac_half 1092 +ecies_with_x9_63_sha512_aes256_cbc_hmac_half 1093 +ecies_with_x9_63_sha256_aes128_ctr_hmac_half 1094 +ecies_with_x9_63_sha512_aes256_ctr_hmac_half 1095 +ecies_with_x9_63_sha1_aes128_cbc_cmac 1096 +ecies_with_x9_63_sha256_aes128_cbc_cmac 1097 +ecies_with_x9_63_sha512_aes256_cbc_cmac 1098 +ecies_with_x9_63_sha256_aes128_ctr_cmac 1099 +ecies_with_x9_63_sha512_aes256_ctr_cmac 1100 +ibcs1 1101 +type1curve 1102 +bfibe 1103 +bb1ibe 1104 +ISO_CN 1105 +oscca 1106 +sm_scheme 1107 +ssf33_ecb 1108 +ssf33_cbc 1109 +ssf33_ofb128 1110 +ssf33_cfb128 1111 +ssf33_cfb1 1112 +ssf33_cfb8 1113 +ssf33_cbc_mac 1114 +sm1_ecb 1115 +sm1_cbc 1116 +sm1_ofb128 1117 +sm1_cfb128 1118 +sm1_cfb1 1119 +sm1_cfb8 1120 +sm2p256v1 1121 +sm2sign 1122 +sm2exchange 1123 +sm2encrypt 1124 +sm2sign_with_sm3 1125 +sm2sign_with_sha1 1126 +sm2sign_with_sha256 1127 +sm2sign_with_sha512 1128 +sm2sign_with_sha224 1129 +sm2sign_with_sha384 1130 +sm2sign_with_rmd160 1131 +sm2sign_with_whirlpool 1132 +sm2sign_with_blake2b512 1133 +sm2sign_with_blake2s256 1134 +sm2encrypt_recommendedParameters 1135 +sm2encrypt_specifiedParameters 1136 +sm2encrypt_with_sm3 1137 +sm2encrypt_with_sha1 1138 +sm2encrypt_with_sha224 1139 +sm2encrypt_with_sha256 1140 +sm2encrypt_with_sha384 1141 +sm2encrypt_with_sha512 1142 +sm2encrypt_with_rmd160 1143 +sm2encrypt_with_whirlpool 1144 +sm2encrypt_with_blake2b512 1145 +sm2encrypt_with_blake2s256 1146 +sm2encrypt_with_md5 1147 +sm3 1148 +hmac_sm3 1149 +sms4_ecb 1150 +sms4_cbc 1151 +sms4_ofb128 1152 +sms4_cfb128 1153 +sms4_cfb1 1154 +sms4_cfb8 1155 +sms4_ctr 1156 +sms4_gcm 1157 +sms4_ccm 1158 +sms4_xts 1159 +sms4_wrap 1160 +sms4_wrap_pad 1161 +sms4_ocb 1162 +sm5 1163 +sm6_ecb 1164 +sm6_cbc 1165 +sm6_ofb128 1166 +sm6_cfb128 1167 +id_sm9PublicKey 1168 +sm9sign 1169 +sm9keyagreement 1170 +sm9encrypt 1171 +sm9hash1 1172 +sm9kdf 1173 +id_sm9MasterSecret 1174 +sm9bn256v1 1175 +sm9sign_with_sm3 1176 +sm9sign_with_sha256 1177 +sm9encrypt_with_sm3_xor 1178 +sm9encrypt_with_sm3_sms4_cbc 1179 +sm9encrypt_with_sm3_sms4_ctr 1180 +sm9hash1_with_sm3 1181 +sm9hash1_with_sha256 1182 +sm9kdf_with_sm3 1183 +sm9kdf_with_sha256 1184 +zuc 1185 +zuc_128eea3 1186 +zuc_128eia3 1187 +bwips 1188 +wapi_crypto 1189 +wapi_ec 1190 +wapi_ecdsa192_sha256 1191 +wapip192v1 1192 +kx_sm2 1193 +kx_sm2dhe 1194 +kx_sm2_psk 1195 +kx_sm9 1196 +kx_sm9dhe 1197 +auth_sm2 1198 +auth_sm9 1199 +GmSSL 1200 +cpk 1201 +cpk_map 1202 +cpk_map_sha1 1203 +cpk_map_sha256 1204 +cpk_map_sm3 1205 +cpk_map_sha384 1206 +cpk_map_sha512 1207 +paillier 1208 diff --git a/crypto/objects/objects.txt b/crypto/objects/objects.txt index 8ef53322..919638d6 100644 --- a/crypto/objects/objects.txt +++ b/crypto/objects/objects.txt @@ -1480,11 +1480,6 @@ id-pkinit 5 : pkInitKDC : Signing KDC Response : KxPSK : kx-psk : KxSRP : kx-srp : KxGOST : kx-gost - : KxSM2 : kx-sm2 - : KxSM2DHE : kx-sm2dhe - : KxSM2-PSK : kx-sm2-psk - : KxSM9 : kx-sm9 - : KxSM9DHE : kx-sm9dhe # NIDs for cipher authentication : AuthRSA : auth-rsa @@ -1495,10 +1490,8 @@ id-pkinit 5 : pkInitKDC : Signing KDC Response : AuthGOST12 : auth-gost12 : AuthSRP : auth-srp : AuthNULL : auth-null - : AuthSM2 : auth-sm2 - : AuthSM9 : auth-sm9 -# GmSSL SECG ECIES OID +# SECG ECIES OID secg-scheme 7 : ecies-recommendedParameters secg-scheme 8 : ecies-specifiedParameters secg-scheme 17 0 : x9-63-kdf @@ -1518,8 +1511,6 @@ secg-scheme 23 : hmac-half-ecies secg-scheme 24 0 : cmac-aes128-ecies secg-scheme 24 1 : cmac-aes192-ecies secg-scheme 24 2 : cmac-aes256-ecies - - ecies-specifiedParameters 1 : ecies-with-x9-63-sha1-xor-hmac ecies-specifiedParameters 2 : ecies-with-x9-63-sha256-xor-hmac ecies-specifiedParameters 3 : ecies-with-x9-63-sha512-xor-hmac @@ -1538,18 +1529,27 @@ ecies-specifiedParameters 15 : ecies-with-x9-63-sha512-aes256-cbc-cmac ecies-specifiedParameters 16 : ecies-with-x9-63-sha256-aes128-ctr-cmac ecies-specifiedParameters 17 : ecies-with-x9-63-sha512-aes256-ctr-cmac +# RFC 5091 IBCS #1 +!Alias ibcs ISO-US 1 114334 1 +ibcs 1 : ibcs1 +ibcs1 1 1 : type1curve +ibcs1 2 1 : bfibe +ibcs1 2 2 : bb1ibe -# GmSSL SM OID -member-body 156 : ISO-CN : ISO CN Member Body +# GM/T +member-body 156 : ISO-CN : ISO CN Member Body ISO-CN 10197 : oscca oscca 1 : sm-scheme -sm-scheme 101 1 : SM6-ECB : sm6-ecb -sm-scheme 101 2 : SM6-CBC : sm6-cbc -!Cname sm6-ofb128 -sm-scheme 101 3 : SM6-OFB : sm6-ofb -!Cname sm6-cfb128 -sm-scheme 101 4 : SM6-CFB : sm6-cfb +sm-scheme 103 1 : SSF33-ECB : ssf33-ecb +sm-scheme 103 2 : SSF33-CBC : ssf33-cbc +!Cname ssf33-ofb128 +sm-scheme 103 3 : SSF33-OFB : ssf33-ofb +!Cname ssf33-cfb128 +sm-scheme 103 4 : SSF33-CFB : ssf33-cfb +sm-scheme 103 5 : SSF33-CFB1 : ssf33-cfb1 +sm-scheme 103 6 : SSF33-CFB8 : ssf33-cfb8 +sm-scheme 103 7 : SSF33-CBC-MAC : ssf33-cbc-mac sm-scheme 102 1 : SM1-ECB : sm1-ecb sm-scheme 102 2 : SM1-CBC : sm1-cbc @@ -1560,15 +1560,43 @@ sm-scheme 102 4 : SM1-CFB : sm1-cfb sm-scheme 102 5 : SM1-CFB1 : sm1-cfb1 sm-scheme 102 6 : SM1-CFB8 : sm1-cfb8 -sm-scheme 103 1 : SSF33-ECB : ssf33-ecb -sm-scheme 103 2 : SSF33-CBC : ssf33-cbc -!Cname ssf33-ofb128 -sm-scheme 103 3 : SSF33-OFB : ssf33-ofb -!Cname ssf33-cfb128 -sm-scheme 103 4 : SSF33-CFB : ssf33-cfb -sm-scheme 103 5 : SSF33-CFB1 : ssf33-cfb1 -sm-scheme 103 6 : SSF33-CFB8 : ssf33-cfb8 +# SM2 OIDs +sm-scheme 301 : sm2p256v1 +sm-scheme 301 1 : sm2sign +sm-scheme 301 2 : sm2exchange +sm-scheme 301 3 : sm2encrypt + +sm-scheme 501 : SM2Sign-with-SM3 : sm2sign-with-sm3 +sm-scheme 502 : SM2Sign-with-SHA1 : sm2sign-with-sha1 +sm-scheme 503 : SM2Sign-with-SHA256 : sm2sign-with-sha256 +sm-scheme 504 : SM2Sign-with-SHA511 : sm2sign-with-sha512 +sm-scheme 505 : SM2Sign-with-SHA224 : sm2sign-with-sha224 +sm-scheme 506 : SM2Sign-with-SHA384 : sm2sign-with-sha384 +sm-scheme 507 : SM2Sign-with-RMD160 : sm2sign-with-rmd160 +sm-scheme 520 : SM2Sign-with-Whirlpool : sm2sign-with-whirlpool +sm-scheme 521 : SM2Sign-with-Blake2b512 : sm2sign-with-blake2b512 +sm-scheme 522 : SM2Sign-with-Blake2s256 : sm2sign-with-blake2s256 + +sm2encrypt 1 : sm2encrypt-recommendedParameters +sm2encrypt 2 : sm2encrypt-specifiedParameters +sm2encrypt 2 1 : sm2encrypt-with-sm3 +sm2encrypt 2 2 : sm2encrypt-with-sha1 +sm2encrypt 2 3 : sm2encrypt-with-sha224 +sm2encrypt 2 4 : sm2encrypt-with-sha256 +sm2encrypt 2 5 : sm2encrypt-with-sha384 +sm2encrypt 2 6 : sm2encrypt-with-sha512 +sm2encrypt 2 7 : sm2encrypt-with-rmd160 +sm2encrypt 2 8 : sm2encrypt-with-whirlpool +sm2encrypt 2 9 : sm2encrypt-with-blake2b512 +sm2encrypt 2 10 : sm2encrypt-with-blake2s256 +sm2encrypt 2 11 : sm2encrypt-with-md5 + +# SM3 +sm-scheme 401 : SM3 : sm3 +sm-scheme 401 2 : HMAC-SM3 : hmac-sm3 + +# SM4 sm-scheme 104 1 : SMS4-ECB : sms4-ecb sm-scheme 104 2 : SMS4-CBC : sms4-cbc !Cname sms4-ofb128 @@ -1585,89 +1613,65 @@ sm-scheme 104 11 : SMS4-WRAP : sms4-wrap sm-scheme 104 12 : SMS4-WRAP-PAD : sms4-wrap-pad sm-scheme 104 100 : SMS4-OCB : sms4-ocb +# SM5/6/7/8 +sm-scheme 201 : SM5 : sm5 +sm-scheme 101 1 : SM6-ECB : sm6-ecb +sm-scheme 101 2 : SM6-CBC : sm6-cbc +!Cname sm6-ofb128 +sm-scheme 101 3 : SM6-OFB : sm6-ofb +!Cname sm6-cfb128 +sm-scheme 101 4 : SM6-CFB : sm6-cfb !Alias sm7 sm-scheme 105 - !Alias sm8 sm-scheme 106 -sm-scheme 201 : SM5 : sm5 - -sm-scheme 301 : sm2p256v1 -sm-scheme 301 1 : sm2sign -sm-scheme 301 2 : sm2exchange -sm-scheme 301 3 : sm2encrypt -#sm-scheme 301 101 : wapip192v1 - -sm2encrypt 1 : sm2encrypt-recommendedParameters -sm2encrypt 2 : sm2encrypt-specifiedParameters -sm2encrypt 2 1 : sm2encrypt-with-sm3 -sm2encrypt 2 2 : sm2encrypt-with-sha1 -sm2encrypt 2 3 : sm2encrypt-with-sha224 -sm2encrypt 2 4 : sm2encrypt-with-sha256 -sm2encrypt 2 5 : sm2encrypt-with-sha384 -sm2encrypt 2 6 : sm2encrypt-with-sha512 -sm2encrypt 2 7 : sm2encrypt-with-rmd160 -sm2encrypt 2 8 : sm2encrypt-with-whirlpool -sm2encrypt 2 9 : sm2encrypt-with-blake2b512 -sm2encrypt 2 10 : sm2encrypt-with-blake2s256 -sm2encrypt 2 11 : sm2encrypt-with-md5 - +# SM9 sm-scheme 302 : id-sm9PublicKey sm-scheme 302 1 : sm9sign -sm9sign 1 : sm9sign-with-sm3 -sm9sign 2 : sm9sign-with-sha256 sm-scheme 302 2 : sm9keyagreement sm-scheme 302 3 : sm9encrypt +sm-scheme 302 4 : sm9hash1 +sm-scheme 302 5 : sm9kdf +sm-scheme 302 6 : id-sm9MasterSecret +sm-scheme 302 6 1 : sm9bn256v1 +sm9sign 1 : sm9sign-with-sm3 +sm9sign 2 : sm9sign-with-sha256 sm9encrypt 1 : sm9encrypt-with-sm3-xor sm9encrypt 2 : sm9encrypt-with-sm3-sms4-cbc sm9encrypt 3 : sm9encrypt-with-sm3-sms4-ctr -sm-scheme 302 4 : sm9hash1 -sm-scheme 302 5 : sm9kdf sm9hash1 1 : sm9hash1-with-sm3 sm9hash1 2 : sm9hash1-with-sha256 sm9kdf 1 : sm9kdf-with-sm3 sm9kdf 2 : sm9kdf-with-sha256 -sm-scheme 401 : SM3 : sm3 -sm-scheme 401 2 : HMAC-SM3 : hmac-sm3 +# ZUC +sm-scheme 800 : ZUC : zuc +zuc 1 : zuc-128eea3 +zuc 2 : zuc-128eia3 -sm-scheme 501 : SM2Sign-with-SM3 : sm2sign-with-sm3 -sm-scheme 502 : SM2Sign-with-SHA1 : sm2sign-with-sha1 -sm-scheme 503 : SM2Sign-with-SHA256 : sm2sign-with-sha256 -sm-scheme 504 : SM2Sign-with-SHA511 : sm2sign-with-sha512 -sm-scheme 505 : SM2Sign-with-SHA224 : sm2sign-with-sha224 -sm-scheme 506 : SM2Sign-with-SHA384 : sm2sign-with-sha384 -sm-scheme 507 : SM2Sign-with-RMD160 : sm2sign-with-rmd160 -sm-scheme 520 : SM2Sign-with-Whirlpool : sm2sign-with-whirlpool -sm-scheme 521 : SM2Sign-with-Blake2b512 : sm2sign-with-blake2b512 -sm-scheme 522 : SM2Sign-with-Blake2s256 : sm2sign-with-blake2s256 +# WAPI (GB 15629.11-2003-XG1-2006) +ISO-CN 11235 : bwips +bwips 1 : wapi-crypto +wapi-crypto 1 : wapi-ec +wapi-ec 1 : wapi-ecdsa192-sha256 +wapi-ec 2 1 : wapip192v1 -# GmSSL ZUC OID -sm-scheme 800 : ZUC : zuc -zuc 1 : zuc-128eea3 -zuc 2 : zuc-128eia3 +# NIDs for cipher key exchange + : KxSM2 : kx-sm2 + : KxSM2DHE : kx-sm2dhe + : KxSM2-PSK : kx-sm2-psk + : KxSM9 : kx-sm9 + : KxSM9DHE : kx-sm9dhe -# IBCS1 -!Alias ibcs1 ISO-US 1 114334 1 -ibcs1 2 1 : bfibe -ibcs1 2 2 : bb1 -# 1 tate, 2 weil, 3 ate, 4 r-ate -ibcs1 1 1 : type1curve -ibcs1 1 2 : type2curve -ibcs1 1 3 : type3curve -ibcs1 1 4 : type4curve +# NIDs for cipher authentication + : AuthSM2 : auth-sm2 + : AuthSM9 : auth-sm9 -ibcs1 3 1 : tate-pairing -ibcs1 3 2 : weil-pairing -ibcs1 3 3 : ate-pairing -ibcs1 3 4 : r-ate-pairing - -# GmSSL +# gmssl.org Enterprises 49549 : gmssl : GmSSL +# CPK GmSSL 1 : CPK : cpk - -# map algorithms cpk 1 : cpk-map cpk-map 1 : cpk-map-sha1 cpk-map 2 : cpk-map-sha256 @@ -1675,14 +1679,6 @@ cpk-map 3 : cpk-map-sm3 cpk-map 4 : cpk-map-sha384 cpk-map 5 : cpk-map-sha512 +# paillier GmSSL 21 : paillier -# WAPI (GB 15629.11-2003-XG1-2006) -ISO-CN 11235 : bwips -bwips 1 : wapi-crypto -wapi-crypto 1 : wapi-ec -wapi-ec 1 : wapi-ecdsa192-sha256 -wapi-ec 2 1 : wapip192v1 - -# SM9 curve -GmSSL 9 1 : sm9bn256v1 diff --git a/crypto/paillier/build.info b/crypto/paillier/build.info index f669f9e5..003b91dd 100644 --- a/crypto/paillier/build.info +++ b/crypto/paillier/build.info @@ -1,2 +1,2 @@ LIBS=../../libcrypto -SOURCE[../../libcrypto]=pai_lib.c pai_err.c pai_asn1.c +SOURCE[../../libcrypto]=pai_lib.c pai_err.c pai_asn1.c pai_ameth.c diff --git a/crypto/paillier/pai_ameth.c b/crypto/paillier/pai_ameth.c index 3a2d9303..824aa842 100644 --- a/crypto/paillier/pai_ameth.c +++ b/crypto/paillier/pai_ameth.c @@ -48,11 +48,16 @@ */ #include +#include +#include +#include #include +#include #include #include "internal/cryptlib.h" #include "internal/asn1_int.h" #include "internal/evp_int.h" +#include "pai_lcl.h" static int paillier_pub_encode(X509_PUBKEY *pubkey, const EVP_PKEY *pkey) @@ -60,7 +65,7 @@ static int paillier_pub_encode(X509_PUBKEY *pubkey, const EVP_PKEY *pkey) unsigned char *penc = NULL; int penclen; - if ((penclen = i2d_PAILLIER_PUBLIC_KEY(pkey->pkey.paillier, &penc)) < = 0) { + if ((penclen = i2d_PaillierPublicKey(pkey->pkey.paillier, &penc)) <= 0) { return 0; } if (X509_PUBKEY_set0_param(pubkey, OBJ_nid2obj(EVP_PKEY_PAILLIER), @@ -81,8 +86,7 @@ static int paillier_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey) if (!X509_PUBKEY_get0_param(NULL, &cp, &len, NULL, pubkey)) { return 0; } - - if (!(paillier = d2i_PAILLIER_PUBLIC_KEY(NULL, &cp, len))) { + if (!(paillier = d2i_PaillierPublicKey(NULL, &cp, len))) { PAILLIERerr(PAILLIER_F_PAILLIER_PUB_DECODE, ERR_R_PAILLIER_LIB); return 0; } @@ -93,7 +97,131 @@ static int paillier_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey) static int paillier_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) { - return -1; + if (BN_cmp(a->pkey.paillier->n, b->pkey.paillier->n) != 0) { + return 0; + } + return 1; +} + +static int do_paillier_print(BIO *bp, const PAILLIER *x, int off, int priv) +{ + char *str; + int ret = 0; + if (!BIO_indent(bp, off, 128)) + goto end; + + if (priv && x->lambda) { + if (BIO_printf(bp, "Private-Key: (%d bit)\n", x->bits) <= 0) + goto end; + str = "modulus"; + } else { + if (BIO_printf(bp, "Public-Key: (%d bit)\n", x->bits) <= 0) + goto end; + str = "Modulus"; + } + + if (!ASN1_bn_print(bp, str, x->n, NULL, off)) + goto end; + if (priv) { + if (!ASN1_bn_print(bp, "lambda:", x->lambda, NULL, off)) + goto end; + if (!ASN1_bn_print(bp, "x:", x->x, NULL, off)) + goto end; + } + ret = 1; + +end: + return ret; +} + +static int paillier_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, + ASN1_PCTX *ctx) +{ + return do_paillier_print(bp, pkey->pkey.paillier, indent, 0); +} + +static int paillier_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, + ASN1_PCTX *ctx) +{ + return do_paillier_print(bp, pkey->pkey.paillier, indent, 1); +} + +static int paillier_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8) +{ + const unsigned char *p; + int pklen; + PAILLIER *paillier; + + if (!PKCS8_pkey_get0(NULL, &p, &pklen, NULL, p8)) + return 0; + if (!(paillier = d2i_PaillierPrivateKey(NULL, &p, pklen))) { + PAILLIERerr(PAILLIER_F_PAILLIER_PRIV_DECODE, ERR_R_PAILLIER_LIB); + return 0; + } + EVP_PKEY_assign_PAILLIER(pkey, paillier); + return 1; +} + +static int paillier_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey) +{ + unsigned char *rk = NULL; + int rklen; + + if ((rklen = i2d_PaillierPrivateKey(pkey->pkey.paillier, &rk)) <= 0) { + PAILLIERerr(PAILLIER_F_PAILLIER_PRIV_ENCODE, ERR_R_MALLOC_FAILURE); + return 0; + } + + if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_paillier), 0, V_ASN1_NULL, NULL, + rk, rklen)) { + PAILLIERerr(PAILLIER_F_PAILLIER_PRIV_ENCODE, ERR_R_MALLOC_FAILURE); + return 0; + } + + return 1; +} + +static int int_paillier_size(const EVP_PKEY *pkey) +{ + return PAILLIER_size(pkey->pkey.paillier); +} + +static int paillier_bits(const EVP_PKEY *pkey) +{ + return pkey->pkey.paillier->bits; +} + +static int paillier_security_bits(const EVP_PKEY *pkey) +{ + return PAILLIER_security_bits(pkey->pkey.paillier); +} + +static void int_paillier_free(EVP_PKEY *pkey) +{ + PAILLIER_free(pkey->pkey.paillier); +} + +static int paillier_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) +{ + return -2; +} + +static int old_paillier_priv_decode(EVP_PKEY *pkey, + const unsigned char **pder, int derlen) +{ + PAILLIER *pai; + if ((pai = d2i_PaillierPrivateKey(NULL, pder, derlen)) == NULL) { + PAILLIERerr(PAILLIER_F_OLD_PAILLIER_PRIV_DECODE, + PAILLIER_R_DECODE_ERROR); + return 0; + } + EVP_PKEY_assign_PAILLIER(pkey, pai); + return 1; +} + +static int old_paillier_priv_encode(const EVP_PKEY *pkey, unsigned char **pder) +{ + return i2d_PaillierPrivateKey(pkey->pkey.paillier, pder); } const EVP_PKEY_ASN1_METHOD paillier_asn1_meth = { diff --git a/crypto/paillier/pai_err.c b/crypto/paillier/pai_err.c index 64553a32..4ab9bdd1 100644 --- a/crypto/paillier/pai_err.c +++ b/crypto/paillier/pai_err.c @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -19,6 +19,8 @@ # define ERR_REASON(reason) ERR_PACK(ERR_LIB_PAILLIER,0,reason) static ERR_STRING_DATA PAILLIER_str_functs[] = { + {ERR_FUNC(PAILLIER_F_OLD_PAILLIER_PRIV_DECODE), + "old_paillier_priv_decode"}, {ERR_FUNC(PAILLIER_F_PAILLIER_CHECK_KEY), "PAILLIER_check_key"}, {ERR_FUNC(PAILLIER_F_PAILLIER_CIPHERTEXT_ADD), "PAILLIER_ciphertext_add"}, {ERR_FUNC(PAILLIER_F_PAILLIER_CIPHERTEXT_SCALAR_MUL), @@ -27,6 +29,8 @@ static ERR_STRING_DATA PAILLIER_str_functs[] = { {ERR_FUNC(PAILLIER_F_PAILLIER_ENCRYPT), "PAILLIER_encrypt"}, {ERR_FUNC(PAILLIER_F_PAILLIER_GENERATE_KEY), "PAILLIER_generate_key"}, {ERR_FUNC(PAILLIER_F_PAILLIER_NEW), "PAILLIER_new"}, + {ERR_FUNC(PAILLIER_F_PAILLIER_PRIV_DECODE), "paillier_priv_decode"}, + {ERR_FUNC(PAILLIER_F_PAILLIER_PRIV_ENCODE), "paillier_priv_encode"}, {ERR_FUNC(PAILLIER_F_PAILLIER_PUB_DECODE), "paillier_pub_decode"}, {ERR_FUNC(PAILLIER_F_PKEY_PAILLIER_DECRYPT), "pkey_paillier_decrypt"}, {ERR_FUNC(PAILLIER_F_PKEY_PAILLIER_ENCRYPT), "pkey_paillier_encrypt"}, @@ -35,6 +39,7 @@ static ERR_STRING_DATA PAILLIER_str_functs[] = { static ERR_STRING_DATA PAILLIER_str_reasons[] = { {ERR_REASON(PAILLIER_R_BUFFER_TOO_SMALL), "buffer too small"}, + {ERR_REASON(PAILLIER_R_DECODE_ERROR), "decode error"}, {ERR_REASON(PAILLIER_R_GENERATE_PRIME_FAILED), "generate prime failed"}, {ERR_REASON(PAILLIER_R_INVALID_PLAINTEXT), "invalid plaintext"}, {ERR_REASON(PAILLIER_R_MALLOC_FAILED), "malloc failed"}, diff --git a/crypto/paillier/pai_lib.c b/crypto/paillier/pai_lib.c index df44844d..85c24972 100644 --- a/crypto/paillier/pai_lib.c +++ b/crypto/paillier/pai_lib.c @@ -45,7 +45,6 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== - * */ #include @@ -70,7 +69,6 @@ PAILLIER *PAILLIER_new(void) void PAILLIER_free(PAILLIER *key) { - if (key) { BN_free(key->n); BN_free(key->lambda); @@ -81,6 +79,16 @@ void PAILLIER_free(PAILLIER *key) OPENSSL_clear_free(key, sizeof(*key)); } +int PAILLIER_size(const PAILLIER *key) +{ + return BN_num_bits(key->n)/8; +} + +int PAILLIER_security_bits(const PAILLIER *key) +{ + return BN_security_bits(BN_num_bits(key->n)/2, -1); +} + int PAILLIER_generate_key(PAILLIER *key, int bits) { int ret = 0; diff --git a/crypto/paillier/pai_pmeth.c b/crypto/paillier/pai_pmeth.c index 7591723b..1f3a4785 100644 --- a/crypto/paillier/pai_pmeth.c +++ b/crypto/paillier/pai_pmeth.c @@ -70,9 +70,6 @@ static void pkey_paillier_cleanup(EVP_PKEY_CTX *ctx) { } -//FIXME keygen - - static int pkey_paillier_encrypt(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen) { diff --git a/crypto/pem/pem3.c b/crypto/pem/pem3.c index da649bf4..91243dad 100644 --- a/crypto/pem/pem3.c +++ b/crypto/pem/pem3.c @@ -56,16 +56,13 @@ # include #endif #include -#include #ifndef OPENSSL_NO_PAILLIER # include #endif +#ifndef OPENSSL_NO_SM9 +# include +#endif -/* -extern PAILLIER *EVP_PKEY_get1_PAILLIER(EVP_PKEY *key); -extern int i2d_PAILLIER_PUBKEY(PAILLIER *a, unsigned char **p); -extern PAILLIER *d2i_PAILLIER_PUBKEY(PAILLIER **a, const unsigned char **p, long len); -*/ #ifndef OPENSSL_NO_PAILLIER static PAILLIER *pkey_get_paillier(EVP_PKEY *key, PAILLIER **paillier) @@ -109,4 +106,87 @@ IMPLEMENT_PEM_rw_const(PaillierPublicKey, PAILLIER, PEM_STRING_PAILLIER_PUBLIC, PaillierPublicKey) IMPLEMENT_PEM_rw(PAILLIER_PUBKEY, PAILLIER, PEM_STRING_PUBLIC, PAILLIER_PUBKEY) -#endif +#endif /* OPENSSL_NO_PAILLIER */ + +#ifndef OPENSSL_NO_SM9 +static SM9_MASTER_KEY *pkey_get_sm9_master(EVP_PKEY *key, SM9_MASTER_KEY **sm9_master) +{ + SM9_MASTER_KEY *rtmp; + if (!key) + return NULL; + rtmp = EVP_PKEY_get1_SM9_MASTER(key); + EVP_PKEY_free(key); + if (!rtmp) + return NULL; + if (sm9_master) { + SM9_MASTER_KEY_free(*sm9_master); + *sm9_master = rtmp; + } + return rtmp; +} + +SM9_MASTER_KEY *PEM_read_bio_SM9MasterSecret(BIO *bp, SM9_MASTER_KEY **sm9_master, + pem_password_cb *cb, void *u) +{ + EVP_PKEY *pktmp; + pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u); + return pkey_get_sm9_master(pktmp, sm9_master); +} + +static SM9_KEY *pkey_get_sm9(EVP_PKEY *key, SM9_KEY **sm9) +{ + SM9_KEY *rtmp; + if (!key) + return NULL; + rtmp = EVP_PKEY_get1_SM9(key); + EVP_PKEY_free(key); + if (!rtmp) + return NULL; + if (sm9) { + SM9_KEY_free(*sm9); + *sm9 = rtmp; + } + return rtmp; +} + +SM9_KEY *PEM_read_bio_SM9PrivateKey(BIO *bp, SM9_KEY **sm9, + pem_password_cb *cb, void *u) +{ + EVP_PKEY *pktmp; + pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u); + return pkey_get_sm9(pktmp, sm9); +} + +# ifndef OPENSSL_NO_STDIO +SM9_MASTER_KEY *PEM_read_SM9MasterSecret(FILE *fp, SM9_MASTER_KEY **sm9_master, + pem_password_cb *cb, void *u) +{ + EVP_PKEY *pktmp; + pktmp = PEM_read_PrivateKey(fp, NULL, cb, u); + return pkey_get_sm9_master(pktmp, sm9_master); +} + +SM9_KEY *PEM_read_SM9PrivateKey(FILE *fp, SM9_KEY **sm9, + pem_password_cb *cb, void *u) +{ + EVP_PKEY *pktmp; + pktmp = PEM_read_PrivateKey(fp, NULL, cb, u); + return pkey_get_sm9(pktmp, sm9); +} +# endif + +IMPLEMENT_PEM_write_cb_const(SM9MasterSecret, SM9_MASTER_KEY, + PEM_STRING_SM9_MASTER, SM9MasterSecret) +IMPLEMENT_PEM_rw_const(SM9PublicParameters, SM9_MASTER_KEY, + PEM_STRING_SM9_MASTER_PUBLIC, SM9PublicParameters) +IMPLEMENT_PEM_rw(SM9_MASTER_PUBKEY, SM9_MASTER_KEY, + PEM_STRING_PUBLIC, SM9_MASTER_PUBKEY) + +IMPLEMENT_PEM_write_cb_const(SM9PrivateKey, SM9_KEY, + PEM_STRING_SM9, SM9PrivateKey) +IMPLEMENT_PEM_rw_const(SM9PublicKey, SM9_KEY, + PEM_STRING_SM9_PUBLIC, SM9PublicKey) +IMPLEMENT_PEM_rw(SM9_PUBKEY, SM9_KEY, + PEM_STRING_PUBLIC, SM9_PUBKEY) + +#endif /* OPENSSL_NO_SM9 */ diff --git a/crypto/sm9/build.info b/crypto/sm9/build.info index 49c6c5b5..7b6af752 100644 --- a/crypto/sm9/build.info +++ b/crypto/sm9/build.info @@ -1,3 +1,4 @@ LIBS=../../libcrypto SOURCE[../../libcrypto]=sm9_lib.c sm9_err.c sm9_asn1.c sm9_params.c \ - sm9_setup.c sm9_keygen.c sm9_sign.c sm9_enc.c sm9_exch.c sm9_rate.c + sm9_setup.c sm9_keygen.c sm9_sign.c sm9_enc.c sm9_exch.c sm9_rate.c \ + sm9_ameth.c diff --git a/crypto/sm9/sm9_ameth.c b/crypto/sm9/sm9_ameth.c new file mode 100644 index 00000000..de05f95c --- /dev/null +++ b/crypto/sm9/sm9_ameth.c @@ -0,0 +1,411 @@ +/* ==================================================================== + * Copyright (c) 2015 - 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 +#include +#include +#include +#include +#include +#include +#include "internal/cryptlib.h" +#include "internal/asn1_int.h" +#include "internal/evp_int.h" +#include "sm9_lcl.h" + + +static int sm9_params_encode(X509_PUBKEY *pubkey, const EVP_PKEY *pkey) +{ + unsigned char *penc = NULL; + int penclen; + + if ((penclen = i2d_SM9PublicParameters(pkey->pkey.sm9_master, &penc)) <= 0) { + return 0; + } + printf("penclen = %d\n", penclen); + printf("penc == NULL: %d\n", penc == NULL); + printf("%lu\n", OBJ_nid2obj(EVP_PKEY_SM9_MASTER)); + + OPENSSL_assert(pubkey); + + if (X509_PUBKEY_set0_param(pubkey, OBJ_nid2obj(EVP_PKEY_SM9_MASTER), + V_ASN1_NULL, NULL, penc, penclen)) { + return 1; + } + + OPENSSL_free(penc); + return 0; +} + +static int sm9_params_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey) +{ + const unsigned char *cp; + int len; + SM9PublicParameters *sm9_params = NULL; + + if (!X509_PUBKEY_get0_param(NULL, &cp, &len, NULL, pubkey)) { + return 0; + } + if (!(sm9_params = d2i_SM9PublicParameters(NULL, &cp, len))) { + SM9err(SM9_F_SM9_PARAMS_DECODE, ERR_R_SM9_LIB); + return 0; + } + + EVP_PKEY_assign_SM9PublicParameters(pkey, sm9_params); + return 1; +} + +static int sm9_params_cmp(const EVP_PKEY *a, const EVP_PKEY *b) +{ + /* + if (OBJ_cmp(a->pkey.sm9_master->pairing, b->pkey.sm9_master->pairing) != 0 + || OBJ_cmp(a->pkey.sm9_master->scheme, b->pkey.sm9_master->scheme) != 0 + || OBJ_cmp(a->pkey.sm9_master->hash1, b->pkey.sm9_master->hash1) != 0 + || ASN1_OCTET_STRING_cmp(a->pkey.sm9_master->pointPpub, + b->pkey.sm9_master->pointPpub) != 0) { + return 0; + } + */ + return 1; +} + +static int do_sm9_master_print(BIO *bp, const SM9MasterSecret *x, int off, int priv) +{ + return -2; +} + +static int sm9_params_print(BIO *bp, const EVP_PKEY *pkey, int indent, + ASN1_PCTX *ctx) +{ + return do_sm9_master_print(bp, pkey->pkey.sm9_master, indent, 0); +} + +static int sm9_master_print(BIO *bp, const EVP_PKEY *pkey, int indent, + ASN1_PCTX *ctx) +{ + return do_sm9_master_print(bp, pkey->pkey.sm9_master, indent, 1); +} + +static int sm9_master_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8) +{ + const unsigned char *p; + int pklen; + SM9MasterSecret *sm9_master; + + if (!PKCS8_pkey_get0(NULL, &p, &pklen, NULL, p8)) + return 0; + if (!(sm9_master = d2i_SM9MasterSecret(NULL, &p, pklen))) { + SM9err(SM9_F_SM9_MASTER_DECODE, ERR_R_SM9_LIB); + return 0; + } + EVP_PKEY_assign_SM9MasterSecret(pkey, sm9_master); + return 1; +} + +static int sm9_master_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey) +{ + unsigned char *rk = NULL; + int rklen; +fprintf(stderr, "%s %d: %s\n", __FILE__, __LINE__, __FUNCTION__); + + if ((rklen = i2d_SM9MasterSecret(pkey->pkey.sm9_master, &rk)) <= 0) { + SM9err(SM9_F_SM9_MASTER_ENCODE, ERR_R_MALLOC_FAILURE); + return 0; + } + + if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(EVP_PKEY_SM9_MASTER), 0, + V_ASN1_NULL, NULL, rk, rklen)) { + SM9err(SM9_F_SM9_MASTER_ENCODE, ERR_R_MALLOC_FAILURE); + return 0; + } + + return 1; +} + +static int int_sm9_size(const EVP_PKEY *pkey) +{ + return 32 * 12; +} + +static int sm9_bits(const EVP_PKEY *pkey) +{ + return 256 * 12; +} + +static int sm9_security_bits(const EVP_PKEY *pkey) +{ + return 256/2; +} + +static void int_sm9_master_free(EVP_PKEY *pkey) +{ + SM9MasterSecret_free(pkey->pkey.sm9_master); +} + +static int sm9_master_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) +{ + return -2; +} + +static int old_sm9_master_decode(EVP_PKEY *pkey, + const unsigned char **pder, int derlen) +{ + SM9MasterSecret *sm9_master; + if ((sm9_master = d2i_SM9MasterSecret(NULL, pder, derlen)) == NULL) { + SM9err(SM9_F_OLD_SM9_MASTER_DECODE, SM9_R_DECODE_ERROR); + return 0; + } + EVP_PKEY_assign_SM9MasterSecret(pkey, sm9_master); + return 1; +} + +static int old_sm9_master_encode(const EVP_PKEY *pkey, unsigned char **pder) +{ +fprintf(stderr, "%s %d: %s\n", __FILE__, __LINE__, __FUNCTION__); + return i2d_SM9MasterSecret(pkey->pkey.sm9_master, pder); +} + +const EVP_PKEY_ASN1_METHOD sm9_master_asn1_meth = { + EVP_PKEY_SM9_MASTER, /* pkey_id */ + EVP_PKEY_SM9_MASTER, /* pkey_base_id */ + 0, /* pkey_flags */ + "SM9 MASTER", /* pem_str */ + "GmSSL SM9 algorithm", /* info */ + sm9_params_decode, /* pub_decode */ + sm9_params_encode, /* pub_encode */ + sm9_params_cmp, /* pub_cmp */ + sm9_params_print, /* pub_print */ + sm9_master_decode, /* priv_decode */ + sm9_master_encode, /* priv_encode */ + sm9_master_print, /* priv_print */ + int_sm9_size, /* pkey_size */ + sm9_bits, /* pkey_bits */ + sm9_security_bits, /* pkey_security_bits */ + NULL, /* param_decode */ + NULL, /* param_encode */ + NULL, /* param_missing */ + NULL, /* param_copy */ + NULL, /* param_cmp */ + NULL, /* param_print */ + NULL, /* sig_print */ + int_sm9_master_free, /* pkey_free */ + sm9_master_pkey_ctrl, /* pkey_ctrl */ + old_sm9_master_decode, /* old_priv_decode */ + old_sm9_master_encode, /* old_priv_encode */ + NULL, /* item_verify */ + NULL, /* item_sign */ +}; + + +static int sm9_pub_encode(X509_PUBKEY *pubkey, const EVP_PKEY *pkey) +{ + unsigned char *penc = NULL; + int penclen; + + if ((penclen = i2d_SM9PublicKey(pkey->pkey.sm9, &penc)) <= 0) { + return 0; + } + if (X509_PUBKEY_set0_param(pubkey, OBJ_nid2obj(EVP_PKEY_SM9), + V_ASN1_NULL, NULL, penc, penclen)) { + return 1; + } + + OPENSSL_free(penc); + return 0; +} + +static int sm9_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey) +{ + const unsigned char *cp; + int len; + SM9PublicKey *sm9 = NULL; + + if (!X509_PUBKEY_get0_param(NULL, &cp, &len, NULL, pubkey)) { + return 0; + } + if (!(sm9 = d2i_SM9PublicKey(NULL, &cp, len))) { + SM9err(SM9_F_SM9_PUB_DECODE, ERR_R_SM9_LIB); + return 0; + } + + EVP_PKEY_assign_SM9PublicKey(pkey, sm9); + return 1; +} + +static int sm9_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) +{ + const SM9PublicKey *ax = a->pkey.sm9; + const SM9PublicKey *bx = b->pkey.sm9; + if (OBJ_cmp(ax->pairing, bx->pairing) + || OBJ_cmp(ax->scheme, bx->scheme) + || OBJ_cmp(ax->hash1, bx->hash1) + /* FIXME: decode point then compare to support point compression */ + || ASN1_OCTET_STRING_cmp(ax->pointPpub, bx->pointPpub) + || ASN1_OCTET_STRING_cmp(ax->identity, bx->identity) + || ASN1_OCTET_STRING_cmp(ax->publicPoint, bx->publicPoint)) { + return 0; + } + return 1; +} + +static int do_sm9_print(BIO *bp, const SM9PrivateKey *x, int off, int priv) +{ + return -2; +} + +static int sm9_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, + ASN1_PCTX *ctx) +{ + return do_sm9_print(bp, pkey->pkey.sm9, indent, 0); +} + +static int sm9_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, + ASN1_PCTX *ctx) +{ + return do_sm9_print(bp, pkey->pkey.sm9, indent, 1); +} + +static int sm9_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8) +{ + const unsigned char *p; + int pklen; + SM9PrivateKey *sm9; + + if (!PKCS8_pkey_get0(NULL, &p, &pklen, NULL, p8)) + return 0; + if (!(sm9 = d2i_SM9PrivateKey(NULL, &p, pklen))) { + SM9err(SM9_F_SM9_PRIV_DECODE, ERR_R_SM9_LIB); + return 0; + } + EVP_PKEY_assign_SM9PrivateKey(pkey, sm9); + return 1; +} + +static int sm9_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey) +{ + unsigned char *rk = NULL; + int rklen; + +/* +fprintf(stderr, "%s %d: %s\n", __FILE__, __LINE__, __FUNCTION__); +fprintf(stderr, "%s %s: %d\n", __FILE__, __LINE__, pkey->pkey.sm9->privatePoint != NULL); +*/ + + if ((rklen = i2d_SM9PrivateKey(pkey->pkey.sm9, &rk)) <= 0) { + SM9err(SM9_F_SM9_PRIV_ENCODE, ERR_R_MALLOC_FAILURE); + return 0; + } + + if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(EVP_PKEY_SM9), 0, + V_ASN1_NULL, NULL, rk, rklen)) { + SM9err(SM9_F_SM9_PRIV_ENCODE, ERR_R_MALLOC_FAILURE); + return 0; + } + + return 1; +} + +static void int_sm9_free(EVP_PKEY *pkey) +{ + SM9PrivateKey_free(pkey->pkey.sm9); +} + +static int sm9_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) +{ + return -2; +} + +static int old_sm9_priv_decode(EVP_PKEY *pkey, + const unsigned char **pder, int derlen) +{ + SM9PrivateKey *sm9; + if ((sm9 = d2i_SM9PrivateKey(NULL, pder, derlen)) == NULL) { + SM9err(SM9_F_OLD_SM9_PRIV_DECODE, SM9_R_DECODE_ERROR); + return 0; + } + EVP_PKEY_assign_SM9PrivateKey(pkey, sm9); + return 1; +} + +static int old_sm9_priv_encode(const EVP_PKEY *pkey, unsigned char **pder) +{ +fprintf(stderr, "%s %d: %s\n", __FILE__, __LINE__, __FUNCTION__); + return i2d_SM9PrivateKey(pkey->pkey.sm9, pder); +} + +const EVP_PKEY_ASN1_METHOD sm9_asn1_meth = { + EVP_PKEY_SM9, /* pkey_id */ + EVP_PKEY_SM9, /* pkey_base_id */ + 0, /* pkey_flags */ + "SM9", /* pem_str */ + "GmSSL SM9 algorithm", /* info */ + sm9_pub_decode, /* pub_decode */ + sm9_pub_encode, /* pub_encode */ + sm9_pub_cmp, /* pub_cmp */ + sm9_pub_print, /* pub_print */ + sm9_priv_decode, /* priv_decode */ + sm9_priv_encode, /* priv_encode */ + sm9_priv_print, /* priv_print */ + int_sm9_size, /* pkey_size */ + sm9_bits, /* pkey_bits */ + sm9_security_bits, /* pkey_security_bits */ + NULL, /* param_decode */ + NULL, /* param_encode */ + NULL, /* param_missing */ + NULL, /* param_copy */ + NULL, /* param_cmp */ + NULL, /* param_print */ + NULL, /* sig_print */ + int_sm9_free, /* pkey_free */ + sm9_pkey_ctrl, /* pkey_ctrl */ + old_sm9_priv_decode, /* old_priv_decode */ + old_sm9_priv_encode, /* old_priv_encode */ + NULL, /* item_verify */ + NULL, /* item_sign */ +}; diff --git a/crypto/sm9/sm9_asn1.c b/crypto/sm9/sm9_asn1.c index 93afff04..e2c7d024 100644 --- a/crypto/sm9/sm9_asn1.c +++ b/crypto/sm9/sm9_asn1.c @@ -55,47 +55,76 @@ #include #include "sm9_lcl.h" -ASN1_SEQUENCE(SM9MasterSecret) = { - ASN1_SIMPLE(SM9MasterSecret, pairing, ASN1_OBJECT), - ASN1_SIMPLE(SM9MasterSecret, scheme, ASN1_OBJECT), - ASN1_SIMPLE(SM9MasterSecret, hash1, ASN1_OBJECT), - ASN1_SIMPLE(SM9MasterSecret, pointPpub, ASN1_OCTET_STRING), - ASN1_SIMPLE(SM9MasterSecret, masterSecret, BIGNUM) -} ASN1_SEQUENCE_END(SM9MasterSecret) -IMPLEMENT_ASN1_FUNCTIONS(SM9MasterSecret) -IMPLEMENT_ASN1_DUP_FUNCTION(SM9MasterSecret) +static int sm9_master_key_cb(int operation, ASN1_VALUE **pval, + const ASN1_ITEM *it, void *exarg) +{ + if (operation == ASN1_OP_NEW_PRE) { + *pval = (ASN1_VALUE *)SM9_MASTER_KEY_new(); + if (*pval) + return 2; + return 0; + } else if (operation == ASN1_OP_FREE_PRE) { + SM9_MASTER_KEY_free((SM9_MASTER_KEY *)*pval); + *pval = NULL; + return 2; + } + return 1; +} -ASN1_SEQUENCE(SM9PublicParameters) = { - ASN1_SIMPLE(SM9PublicParameters, pairing, ASN1_OBJECT), - ASN1_SIMPLE(SM9PublicParameters, scheme, ASN1_OBJECT), - ASN1_SIMPLE(SM9PublicParameters, hash1, ASN1_OBJECT), - ASN1_SIMPLE(SM9PublicParameters, pointPpub, ASN1_OCTET_STRING) -} ASN1_SEQUENCE_END(SM9PublicParameters) -IMPLEMENT_ASN1_FUNCTIONS(SM9PublicParameters) -IMPLEMENT_ASN1_DUP_FUNCTION(SM9PublicParameters) +ASN1_SEQUENCE_cb(SM9MasterSecret, sm9_master_key_cb) = { + ASN1_SIMPLE(SM9_MASTER_KEY, pairing, ASN1_OBJECT), + ASN1_SIMPLE(SM9_MASTER_KEY, scheme, ASN1_OBJECT), + ASN1_SIMPLE(SM9_MASTER_KEY, hash1, ASN1_OBJECT), + ASN1_SIMPLE(SM9_MASTER_KEY, pointPpub, ASN1_OCTET_STRING), + ASN1_SIMPLE(SM9_MASTER_KEY, masterSecret, BIGNUM) +} ASN1_SEQUENCE_END_cb(SM9_MASTER_KEY, SM9MasterSecret) +IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(SM9_MASTER_KEY,SM9MasterSecret,SM9MasterSecret) -ASN1_SEQUENCE(SM9PrivateKey) = { - ASN1_SIMPLE(SM9PrivateKey, pairing, ASN1_OBJECT), - ASN1_SIMPLE(SM9PrivateKey, scheme, ASN1_OBJECT), - ASN1_SIMPLE(SM9PrivateKey, hash1, ASN1_OBJECT), - ASN1_SIMPLE(SM9PrivateKey, pointPpub, ASN1_OCTET_STRING), - ASN1_SIMPLE(SM9PrivateKey, identity, ASN1_OCTET_STRING), - ASN1_SIMPLE(SM9PrivateKey, publicPoint, ASN1_OCTET_STRING), - ASN1_SIMPLE(SM9PrivateKey, privatePoint, ASN1_OCTET_STRING) -} ASN1_SEQUENCE_END(SM9PrivateKey) -IMPLEMENT_ASN1_FUNCTIONS(SM9PrivateKey) -IMPLEMENT_ASN1_DUP_FUNCTION(SM9PrivateKey) +ASN1_SEQUENCE_cb(SM9PublicParameters, sm9_master_key_cb) = { + ASN1_SIMPLE(SM9_MASTER_KEY, pairing, ASN1_OBJECT), + ASN1_SIMPLE(SM9_MASTER_KEY, scheme, ASN1_OBJECT), + ASN1_SIMPLE(SM9_MASTER_KEY, hash1, ASN1_OBJECT), + ASN1_SIMPLE(SM9_MASTER_KEY, pointPpub, ASN1_OCTET_STRING) +} ASN1_SEQUENCE_END_cb(SM9_MASTER_KEY, SM9PublicParameters) +IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(SM9_MASTER_KEY,SM9PublicParameters,SM9PublicParameters) -ASN1_SEQUENCE(SM9PublicKey) = { - ASN1_SIMPLE(SM9PublicKey, pairing, ASN1_OBJECT), - ASN1_SIMPLE(SM9PublicKey, scheme, ASN1_OBJECT), - ASN1_SIMPLE(SM9PublicKey, hash1, ASN1_OBJECT), - ASN1_SIMPLE(SM9PublicKey, pointPpub, ASN1_OCTET_STRING), - ASN1_SIMPLE(SM9PublicKey, identity, ASN1_OCTET_STRING), - ASN1_SIMPLE(SM9PublicKey, publicPoint, ASN1_OCTET_STRING) -} ASN1_SEQUENCE_END(SM9PublicKey) -IMPLEMENT_ASN1_FUNCTIONS(SM9PublicKey) -IMPLEMENT_ASN1_DUP_FUNCTION(SM9PublicKey) + +static int sm9_key_cb(int operation, ASN1_VALUE **pval, + const ASN1_ITEM *it, void *exarg) +{ + if (operation == ASN1_OP_NEW_PRE) { + *pval = (ASN1_VALUE *)SM9_KEY_new(); + if (*pval) + return 2; + return 0; + } else if (operation == ASN1_OP_FREE_PRE) { + SM9_KEY_free((SM9_KEY *)*pval); + *pval = NULL; + return 2; + } + return 1; +} + +ASN1_SEQUENCE_cb(SM9PrivateKey, sm9_key_cb) = { + ASN1_SIMPLE(SM9_KEY, pairing, ASN1_OBJECT), + ASN1_SIMPLE(SM9_KEY, scheme, ASN1_OBJECT), + ASN1_SIMPLE(SM9_KEY, hash1, ASN1_OBJECT), + ASN1_SIMPLE(SM9_KEY, pointPpub, ASN1_OCTET_STRING), + ASN1_SIMPLE(SM9_KEY, identity, ASN1_OCTET_STRING), + ASN1_SIMPLE(SM9_KEY, publicPoint, ASN1_OCTET_STRING), + ASN1_SIMPLE(SM9_KEY, privatePoint, ASN1_OCTET_STRING) +} ASN1_SEQUENCE_END_cb(SM9_KEY, SM9PrivateKey) +IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(SM9_KEY,SM9PrivateKey,SM9PrivateKey) + +ASN1_SEQUENCE_cb(SM9PublicKey, sm9_key_cb) = { + ASN1_SIMPLE(SM9_KEY, pairing, ASN1_OBJECT), + ASN1_SIMPLE(SM9_KEY, scheme, ASN1_OBJECT), + ASN1_SIMPLE(SM9_KEY, hash1, ASN1_OBJECT), + ASN1_SIMPLE(SM9_KEY, pointPpub, ASN1_OCTET_STRING), + ASN1_SIMPLE(SM9_KEY, identity, ASN1_OCTET_STRING), + ASN1_SIMPLE(SM9_KEY, publicPoint, ASN1_OCTET_STRING) +} ASN1_SEQUENCE_END_cb(SM9_KEY, SM9PublicKey) +IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(SM9_KEY,SM9PublicKey,SM9PublicKey) ASN1_SEQUENCE(SM9Ciphertext) = { ASN1_SIMPLE(SM9Ciphertext, pointC1, ASN1_OCTET_STRING), diff --git a/crypto/sm9/sm9_err.c b/crypto/sm9/sm9_err.c index e1ba30e1..c2fc4f0c 100644 --- a/crypto/sm9/sm9_err.c +++ b/crypto/sm9/sm9_err.c @@ -19,6 +19,8 @@ # define ERR_REASON(reason) ERR_PACK(ERR_LIB_SM9,0,reason) static ERR_STRING_DATA SM9_str_functs[] = { + {ERR_FUNC(SM9_F_OLD_SM9_MASTER_DECODE), "old_sm9_master_decode"}, + {ERR_FUNC(SM9_F_OLD_SM9_PRIV_DECODE), "old_sm9_priv_decode"}, {ERR_FUNC(SM9_F_SM9CIPHERTEXT_CHECK), "SM9Ciphertext_check"}, {ERR_FUNC(SM9_F_SM9ENCPARAMETERS_DECRYPT), "SM9EncParameters_decrypt"}, {ERR_FUNC(SM9_F_SM9ENCPARAMETERS_ENCRYPT), "SM9EncParameters_encrypt"}, @@ -40,6 +42,16 @@ static ERR_STRING_DATA SM9_str_functs[] = { {ERR_FUNC(SM9_F_SM9_GENERATE_KEY_EXCHANGE), "SM9_generate_key_exchange"}, {ERR_FUNC(SM9_F_SM9_GENERATE_MASTER_SECRET), "SM9_generate_master_secret"}, + {ERR_FUNC(SM9_F_SM9_KEY_NEW), "SM9_KEY_new"}, + {ERR_FUNC(SM9_F_SM9_MASTER_DECODE), "sm9_master_decode"}, + {ERR_FUNC(SM9_F_SM9_MASTER_ENCODE), "sm9_master_encode"}, + {ERR_FUNC(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY), + "SM9_MASTER_KEY_extract_key"}, + {ERR_FUNC(SM9_F_SM9_MASTER_KEY_NEW), "SM9_MASTER_KEY_new"}, + {ERR_FUNC(SM9_F_SM9_PARAMS_DECODE), "sm9_params_decode"}, + {ERR_FUNC(SM9_F_SM9_PRIV_DECODE), "sm9_priv_decode"}, + {ERR_FUNC(SM9_F_SM9_PRIV_ENCODE), "sm9_priv_encode"}, + {ERR_FUNC(SM9_F_SM9_PUB_DECODE), "sm9_pub_decode"}, {ERR_FUNC(SM9_F_SM9_SIGN), "SM9_sign"}, {ERR_FUNC(SM9_F_SM9_SIGNFINAL), "SM9_SignFinal"}, {ERR_FUNC(SM9_F_SM9_SIGNINIT), "SM9_SignInit"}, @@ -53,6 +65,7 @@ static ERR_STRING_DATA SM9_str_functs[] = { static ERR_STRING_DATA SM9_str_reasons[] = { {ERR_REASON(SM9_R_BUFFER_TOO_SMALL), "buffer too small"}, + {ERR_REASON(SM9_R_DECODE_ERROR), "decode error"}, {ERR_REASON(SM9_R_DIGEST_FAILURE), "digest failure"}, {ERR_REASON(SM9_R_EC_LIB), "ec lib"}, {ERR_REASON(SM9_R_EXTENSION_FIELD_ERROR), "extension field error"}, @@ -80,6 +93,7 @@ static ERR_STRING_DATA SM9_str_reasons[] = { {ERR_REASON(SM9_R_INVALID_SIGNATURE_FORMAT), "invalid signature format"}, {ERR_REASON(SM9_R_INVALID_TYPE1CURVE), "invalid type1curve"}, {ERR_REASON(SM9_R_KDF_FAILURE), "kdf failure"}, + {ERR_REASON(SM9_R_NO_MASTER_SECRET), "no master secret"}, {ERR_REASON(SM9_R_PAIRING_ERROR), "pairing error"}, {ERR_REASON(SM9_R_RATE_PAIRING_ERROR), "rate pairing error"}, {ERR_REASON(SM9_R_TWIST_CURVE_ERROR), "twist curve error"}, diff --git a/crypto/sm9/sm9_keygen.c b/crypto/sm9/sm9_keygen.c index 7886d26f..eb385f2a 100644 --- a/crypto/sm9/sm9_keygen.c +++ b/crypto/sm9/sm9_keygen.c @@ -54,30 +54,6 @@ #include #include "sm9_lcl.h" -#if 0 -int SM9_hash1(const EVP_MD *md, BIGNUM **r, - const char *id, size_t idlen, - unsigned char hid, - const BIGNUM *range, - BN_CTX *ctx) -{ - unsigned char *buf; - - if (!(buf = OPENSSL_malloc(idlen + 1))) { - return 0; - } - memcpy(buf, id, idlen); - buf[idlen] = hid; - - if (!BN_hash_to_range(md, r, buf, idlen + 1, range, ctx)) { - OPENSSL_free(buf); - return 0; - } - - OPENSSL_free(buf); - return 1; -} -#endif int SM9_hash1(const EVP_MD *md, BIGNUM **r, const char *id, size_t idlen, unsigned char hid, const BIGNUM *n, BN_CTX *ctx) @@ -130,12 +106,12 @@ end: return ret; } - -SM9PrivateKey *SM9_extract_private_key(SM9MasterSecret *msk, - const char *id, size_t idlen) +SM9_KEY *SM9_MASTER_KEY_extract_key(SM9_MASTER_KEY *master, + const char *id, size_t idlen, int priv) { SM9PrivateKey *ret = NULL; SM9PrivateKey *sk = NULL; + EC_GROUP *group = NULL; const BIGNUM *p = SM9_get0_prime(); const BIGNUM *n = SM9_get0_order(); int scheme; @@ -148,24 +124,24 @@ SM9PrivateKey *SM9_extract_private_key(SM9MasterSecret *msk, size_t len = sizeof(buf); /* check args */ - if (!msk || !id) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, + if (!master || !id) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_PASSED_NULL_PARAMETER); return NULL; } if (strlen(id) != idlen || idlen <= 0 || idlen > SM9_MAX_ID_LENGTH) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, SM9_R_INVALID_ID); return NULL; } /* check pairing */ - if (OBJ_obj2nid(msk->pairing) != NID_sm9bn256v1) { + if (OBJ_obj2nid(master->pairing) != NID_sm9bn256v1) { return NULL; } /* check scheme */ - scheme = OBJ_obj2nid(msk->scheme); + scheme = OBJ_obj2nid(master->scheme); switch (scheme) { case NID_sm9sign: hid = SM9_HID_SIGN; @@ -180,9 +156,14 @@ SM9PrivateKey *SM9_extract_private_key(SM9MasterSecret *msk, return NULL; } + /* check if master */ + if (priv && master->masterSecret == NULL) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, SM9_R_NO_MASTER_SECRET); + return NULL; + } /* check hash1 and set hash1 md */ - switch (OBJ_obj2nid(msk->hash1)) { + switch (OBJ_obj2nid(master->hash1)) { case NID_sm9hash1_with_sm3: md = EVP_sm3(); break; @@ -190,102 +171,140 @@ SM9PrivateKey *SM9_extract_private_key(SM9MasterSecret *msk, md = EVP_sha256(); break; default: - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, SM9_R_INVALID_HASH1); + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, SM9_R_INVALID_HASH1); return NULL; } /* malloc */ if (!(sk = SM9PrivateKey_new()) + || !(group = EC_GROUP_new_by_curve_name(NID_sm9bn256v1)) || !(ctx = BN_CTX_new())) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_MALLOC_FAILURE); goto end; } BN_CTX_start(ctx); - /* t1 = H1(ID||hid) + msk (mod n) */ + if (!(sk->pairing = master->pairing) + || !(sk->scheme = master->scheme) + || !(sk->hash1 = master->hash1) + || !(sk->pointPpub = ASN1_OCTET_STRING_dup(master->pointPpub)) + || !(sk->identity = ASN1_OCTET_STRING_new()) + || !ASN1_OCTET_STRING_set(sk->identity, (unsigned char *)id, idlen) + || !(sk->publicPoint = ASN1_OCTET_STRING_new()) + || !(sk->privatePoint = ASN1_OCTET_STRING_new())) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_ASN1_LIB); + goto end; + } + + /* h1 = H1(id||HID) */ if (!SM9_hash1(md, &t, id, idlen, hid, n, ctx)) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, ERR_R_SM9_LIB); + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_SM9_LIB); goto end; } - if (!BN_mod_add(t, t, msk->masterSecret, n, ctx)) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, ERR_R_BN_LIB); - goto end; - } - - /* if t1 is zero, return failed */ - if (BN_is_zero(t)) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, SM9_R_ZERO_ID); - goto end; - } - - /* t2 = msk * t1^-1 (mod n) */ - if (!BN_mod_inverse(t, t, n, ctx)) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, ERR_R_BN_LIB); - goto end; - } - if (!BN_mod_mul(t, msk->masterSecret, t, n, ctx)) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, ERR_R_BN_LIB); - goto end; - } - - /* generate ds or de */ + /* generate (Ppubs, ds) or (Ppube, de) */ if (scheme == NID_sm9sign) { - EC_GROUP *group = NULL; - EC_POINT *ds = NULL; - - /* ds = t2 * P1 */ - if (!(group = EC_GROUP_new_by_curve_name(NID_sm9bn256v1)) - || !(ds = EC_POINT_new(group)) - || !EC_POINT_mul(group, ds, t, NULL, NULL, ctx) - || !(len = EC_POINT_point2oct(group, ds, point_form, buf, len, ctx))) { - EC_GROUP_free(group); - EC_POINT_free(ds); + /* publicPoint = h1 * P2 + Ppubs */ + point_t Ppubs; + point_t point; + if (!point_init(&point, ctx) + || !point_init(&Ppubs, ctx) + || ASN1_STRING_length(master->pointPpub) != sizeof(buf) + || !point_from_octets(&Ppubs, ASN1_STRING_get0_data(master->pointPpub), p, ctx) + || !point_mul_generator(&point, t, p, ctx) + || !point_add(&point, &point, &Ppubs, p, ctx) + || !point_to_octets(&point, buf, ctx) + || !ASN1_OCTET_STRING_set(sk->publicPoint, buf, sizeof(buf))) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_SM9_LIB); + point_cleanup(&Ppubs); + point_cleanup(&point); goto end; } - - EC_GROUP_free(group); - EC_POINT_free(ds); + point_cleanup(&Ppubs); + point_cleanup(&point); } else { - point_t de; - /* de = t2 * P2 */ - if (!point_init(&de, ctx) - || !point_mul_generator(&de, t, p, ctx) - || !point_to_octets(&de, buf, ctx)) { - point_cleanup(&de); + /* publicPoint = h1 * P1 + Ppube */ + EC_POINT *Ppube = NULL; + EC_POINT *point = NULL; + if (!(group = EC_GROUP_new_by_curve_name(NID_sm9bn256v1)) + || !(point = EC_POINT_new(group)) + || !(Ppube = EC_POINT_new(group)) + || !EC_POINT_oct2point(group, Ppube, + ASN1_STRING_get0_data(master->pointPpub), + ASN1_STRING_length(master->pointPpub), ctx) + || !EC_POINT_mul(group, point, t, NULL, NULL, ctx) + || !EC_POINT_add(group, point, point, Ppube, ctx) + || !(len = EC_POINT_point2oct(group, point, point_form, buf, len, ctx)) + || !ASN1_OCTET_STRING_set(sk->publicPoint, buf, len)) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_SM9_LIB); + EC_POINT_free(Ppube); + EC_POINT_free(point); + goto end; + } + EC_POINT_free(Ppube); + EC_POINT_free(point); + } + + if (priv) { + + /* t1 = H1(ID||hid) + master (mod n) */ + if (!BN_mod_add(t, t, master->masterSecret, n, ctx)) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_BN_LIB); goto end; } - point_cleanup(&de); + /* if t1 is zero, return failed */ + if (BN_is_zero(t)) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, SM9_R_ZERO_ID); + goto end; + } - } + /* t2 = master * t1^-1 (mod n) */ + if (!BN_mod_inverse(t, t, n, ctx)) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_BN_LIB); + goto end; + } + if (!BN_mod_mul(t, master->masterSecret, t, n, ctx)) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_BN_LIB); + goto end; + } - ASN1_OBJECT_free(sk->pairing); - ASN1_OBJECT_free(sk->scheme); - ASN1_OBJECT_free(sk->hash1); - sk->pairing = NULL; - sk->scheme = NULL; - sk->hash1 = NULL; - - if (!(sk->pairing = msk->pairing) - || !(sk->scheme = msk->scheme) - || !(sk->hash1 = msk->hash1) - || !ASN1_STRING_copy(sk->pointPpub, msk->pointPpub) - || !ASN1_STRING_set(sk->identity, id, idlen) - /* FIXME: create publicPoint */ - || !ASN1_STRING_set(sk->privatePoint, buf, len)) { - SM9err(SM9_F_SM9_EXTRACT_PRIVATE_KEY, ERR_R_ASN1_LIB); - goto end; + if (scheme == NID_sm9sign) { + /* ds = t2 * P1 */ + EC_POINT *ds = NULL; + if (!(ds = EC_POINT_new(group)) + || !EC_POINT_mul(group, ds, t, NULL, NULL, ctx) + || !(len = EC_POINT_point2oct(group, ds, point_form, buf, len, ctx)) + || !ASN1_OCTET_STRING_set(sk->privatePoint, buf, len)) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_SM9_LIB); + EC_POINT_free(ds); + goto end; + } + EC_POINT_free(ds); + } else { + /* de = t2 * P2 */ + point_t de; + if (!point_init(&de, ctx) + || !point_mul_generator(&de, t, p, ctx) + || !point_to_octets(&de, buf, ctx) + || !ASN1_OCTET_STRING_set(sk->privatePoint, buf, sizeof(buf))) { + SM9err(SM9_F_SM9_MASTER_KEY_EXTRACT_KEY, ERR_R_SM9_LIB); + point_cleanup(&de); + goto end; + } + point_cleanup(&de); + } } ret = sk; sk = NULL; - + end: + EC_GROUP_free(group); if (ctx) { BN_CTX_end(ctx); } @@ -295,133 +314,16 @@ end: return ret; } -SM9PublicKey *SM9_extract_public_key(SM9PublicParameters *mpk, +SM9PublicKey *SM9_extract_public_key(SM9PublicParameters *master, const char *id, size_t idlen) { - SM9PublicKey *ret = NULL; - SM9PublicKey *pk = NULL; - BN_CTX *ctx = NULL; - BIGNUM *h1 = NULL; - int scheme; - unsigned char hid; - const EVP_MD *md; - const BIGNUM *p = SM9_get0_prime(); - const BIGNUM *n = SM9_get0_order(); - int point_form = POINT_CONVERSION_UNCOMPRESSED; - unsigned char buf[129]; - size_t len = sizeof(buf); + return SM9_MASTER_KEY_extract_key(master, id, idlen, 0); +} - if (!(pk = SM9PublicKey_new()) - || !(ctx = BN_CTX_new())) { - goto end; - } - - /* check pairing */ - if (OBJ_obj2nid(mpk->pairing) != NID_sm9bn256v1) { - goto end; - } - - /* check scheme and set hash1 hid */ - scheme = OBJ_obj2nid(mpk->scheme); - switch (scheme) { - case NID_sm9sign: - hid = SM9_HID_SIGN; - break; - case NID_sm9encrypt: - hid = SM9_HID_ENC; - break; - case NID_sm9keyagreement: - hid = SM9_HID_EXCH; - break; - default: - goto end; - } - - /* check hash1 and set hash1 md */ - switch (OBJ_obj2nid(mpk->hash1)) { - case NID_sm9hash1_with_sm3: - md = EVP_sm3(); - break; - case NID_sm9hash1_with_sha256: - md = EVP_sha256(); - break; - default: - goto end; - } - - /* h1 = H1(ID || hid) in [1, n-1] */ - if (!SM9_hash1(md, &h1, id, idlen, hid, n, ctx)) { - goto end; - } - - if (scheme == NID_sm9sign) { - /* publicPoint = h1 * P2 + Ppubs */ - point_t point; - point_t Ppubs; - - - if (!point_init(&point, ctx) - || !point_init(&Ppubs, ctx) - || ASN1_STRING_length(mpk->pointPpub) != sizeof(buf) - || !point_from_octets(&Ppubs, ASN1_STRING_get0_data(mpk->pointPpub), p, ctx) - || !point_mul_generator(&point, h1, p, ctx) - || !point_add(&point, &point, &Ppubs, p, ctx) - || !point_to_octets(&point, buf, ctx)) { - point_cleanup(&point); - point_cleanup(&Ppubs); - goto end; - } - point_cleanup(&point); - point_cleanup(&Ppubs); - - } else if (OBJ_obj2nid(mpk->scheme) == NID_sm9encrypt) { - /* publicPoint = h1 * P1 + Ppube */ - EC_GROUP *group = NULL; - EC_POINT *point = NULL; - EC_POINT *Ppube = NULL; - - if (!(group = EC_GROUP_new_by_curve_name(NID_sm9bn256v1)) - || !(point = EC_POINT_new(group)) - || !(Ppube = EC_POINT_new(group)) - || !EC_POINT_oct2point(group, Ppube, - ASN1_STRING_get0_data(mpk->pointPpub), - ASN1_STRING_length(mpk->pointPpub), ctx) - || !EC_POINT_mul(group, point, h1, NULL, NULL, ctx) - || !EC_POINT_add(group, point, point, Ppube, ctx) - || !(len = EC_POINT_point2oct(group, point, point_form, buf, len, ctx))) { - EC_GROUP_free(group); - EC_POINT_free(point); - EC_POINT_free(Ppube); - goto end; - } - EC_GROUP_free(group); - EC_POINT_free(point); - EC_POINT_free(Ppube); - } - - /* init object */ - ASN1_OBJECT_free(pk->pairing); - ASN1_OBJECT_free(pk->scheme); - ASN1_OBJECT_free(pk->hash1); - pk->pairing = NULL; - pk->scheme = NULL; - pk->hash1 = NULL; - - if (!(pk->pairing = OBJ_dup(mpk->pairing)) - || !(pk->scheme = OBJ_dup(mpk->scheme)) - || !(pk->hash1 = OBJ_dup(mpk->hash1)) - || !ASN1_STRING_copy(pk->pointPpub, mpk->pointPpub) - || !ASN1_STRING_set(pk->publicPoint, buf, len) - || !ASN1_STRING_set(pk->identity, id, idlen)) { - goto end; - } - - ret = pk; - pk = NULL; - -end: - SM9PublicKey_free(pk); - return ret; +SM9PrivateKey *SM9_extract_private_key(SM9MasterSecret *master, + const char *id, size_t idlen) +{ + return SM9_MASTER_KEY_extract_key(master, id, idlen, 1); } SM9PublicKey *SM9PrivateKey_get_public_key(SM9PrivateKey *sk) diff --git a/crypto/sm9/sm9_lcl.h b/crypto/sm9/sm9_lcl.h index a0f4df14..f6112874 100644 --- a/crypto/sm9/sm9_lcl.h +++ b/crypto/sm9/sm9_lcl.h @@ -52,6 +52,7 @@ #include #include +#include "e_os.h" /* private key extract algorithms */ #define SM9_HID_SIGN 0x01 @@ -86,38 +87,38 @@ extern "C" { #endif -struct SM9MasterSecret_st { +struct SM9_MASTER_KEY_st { + /* public */ ASN1_OBJECT *pairing; ASN1_OBJECT *scheme; ASN1_OBJECT *hash1; ASN1_OCTET_STRING *pointPpub; + + /* private */ BIGNUM *masterSecret; + + int references; + int flags; + CRYPTO_EX_DATA ex_data; + CRYPTO_RWLOCK *lock; }; -struct SM9PublicParameters_st { - ASN1_OBJECT *pairing; - ASN1_OBJECT *scheme; - ASN1_OBJECT *hash1; - ASN1_OCTET_STRING *pointPpub; -}; - -struct SM9PrivateKey_st { +struct SM9_KEY_st { + /* public */ ASN1_OBJECT *pairing; ASN1_OBJECT *scheme; ASN1_OBJECT *hash1; ASN1_OCTET_STRING *pointPpub; ASN1_OCTET_STRING *identity; ASN1_OCTET_STRING *publicPoint; + + /* private */ ASN1_OCTET_STRING *privatePoint; -}; -struct SM9PublicKey_st { - ASN1_OBJECT *pairing; - ASN1_OBJECT *scheme; - ASN1_OBJECT *hash1; - ASN1_OCTET_STRING *pointPpub; - ASN1_OCTET_STRING *identity; - ASN1_OCTET_STRING *publicPoint; + int references; + int flags; + CRYPTO_EX_DATA ex_data; + CRYPTO_RWLOCK *lock; }; struct SM9Ciphertext_st { diff --git a/crypto/sm9/sm9_lib.c b/crypto/sm9/sm9_lib.c index c33020f5..a9562fd4 100644 --- a/crypto/sm9/sm9_lib.c +++ b/crypto/sm9/sm9_lib.c @@ -50,9 +50,60 @@ #include #include #include +#include #include #include "sm9_lcl.h" +SM9_MASTER_KEY *SM9_MASTER_KEY_new(void) +{ + SM9_MASTER_KEY *ret = NULL; + + if (!(ret = OPENSSL_zalloc(sizeof(*ret)))) { + SM9err(SM9_F_SM9_MASTER_KEY_NEW, ERR_R_MALLOC_FAILURE); + return NULL; + } + + return ret; +} + +void SM9_MASTER_KEY_free(SM9_MASTER_KEY *key) +{ + if (key) { + ASN1_OBJECT_free(key->pairing); + ASN1_OBJECT_free(key->scheme); + ASN1_OBJECT_free(key->hash1); + ASN1_OCTET_STRING_free(key->pointPpub); + BN_clear_free(key->masterSecret); + } + OPENSSL_clear_free(key, sizeof(*key)); +} + +SM9_KEY *SM9_KEY_new(void) +{ + SM9_KEY *ret = NULL; + + if (!(ret = OPENSSL_zalloc(sizeof(*ret)))) { + SM9err(SM9_F_SM9_KEY_NEW, ERR_R_MALLOC_FAILURE); + return NULL; + } + + return ret; +} + +void SM9_KEY_free(SM9_KEY *key) +{ + if (key) { + ASN1_OBJECT_free(key->pairing); + ASN1_OBJECT_free(key->scheme); + ASN1_OBJECT_free(key->hash1); + ASN1_OCTET_STRING_free(key->pointPpub); + ASN1_OCTET_STRING_free(key->identity); + ASN1_OCTET_STRING_free(key->publicPoint); + } + OPENSSL_clear_free(key, sizeof(*key)); +} + + int SM9PrivateKey_get_gmtls_public_key(SM9PublicParameters *mpk, SM9PrivateKey *sk, unsigned char pub_key[1024]) { @@ -99,32 +150,26 @@ int SM9_DigestInit(EVP_MD_CTX *ctx, unsigned char prefix, return 1; } -#if 0 -int SM9_DigestFinal(EVP_MD_CTX *ctx1, BIGNUM *h, const BIGNUM *n_1) +int SM9_MASTER_KEY_up_ref(SM9_MASTER_KEY *msk) { - int ret = 0; - EVP_MD_CTX *ctx2 = NULL; - const unsigned char ct1[4] = {0x00, 0x00, 0x00, 0x01}; - const unsigned char ct2[4] = {0x00, 0x00, 0x00, 0x02}; - unsigned char Ha[EVP_MAX_MD_SIZE * 2]; - unsigned int len = 0; + int i; - if (!(ctx2 = EVP_MD_CTX_new()) - || !EVP_MD_CTX_copy(ctx2, ctx1) - || !EVP_DigestUpdate(ctx1, ct1, sizeof(ct)) - || !EVP_DigestUpdate(ctx2, ct2, sizeof(ct2)) - || !EVP_DigestFinal_ex(ctx1, Ha, &len) - || !EVP_DigestFinal_ex(ctx2, Ha + len, &len) - || !BN_bin2bn(Ha, 40, h) - || !BN_mod(h, h, n_1, bn_ctx) - || !BN_add_word(h, 1)) { - ERR_print_errors_fp(stderr); - goto end; - } + if (CRYPTO_atomic_add(&msk->references, 1, &i, msk->lock) <= 0) + return 0; - ret = 1; -end: - EVP_MD_CTX_free(ctx2); - return ret; + REF_PRINT_COUNT("SM9_MASTER_KEY", msk); + REF_ASSERT_ISNT(i < 2); + return ((i > 1) ? 1 : 0); +} + +int SM9_KEY_up_ref(SM9_KEY *sk) +{ + int i; + + if (CRYPTO_atomic_add(&sk->references, 1, &i, sk->lock) <= 0) + return 0; + + REF_PRINT_COUNT("SM9_KEY", sk); + REF_ASSERT_ISNT(i < 2); + return ((i > 1) ? 1 : 0); } -#endif diff --git a/include/openssl/pem3.h b/crypto/sm9/sm9_prn.c similarity index 51% rename from include/openssl/pem3.h rename to crypto/sm9/sm9_prn.c index 99563a6b..d630042b 100644 --- a/include/openssl/pem3.h +++ b/crypto/sm9/sm9_prn.c @@ -1,5 +1,5 @@ /* ==================================================================== - * Copyright (c) 2015 - 2016 The GmSSL Project. All rights reserved. + * Copyright (c) 2016 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 @@ -47,59 +47,105 @@ * ==================================================================== */ -#ifndef HEADER_PEM3_H -#define HEADER_PEM3_H +#include +#include +#include +#include +#include "sm9_lcl.h" -#ifndef OPENSSL_NO_CPK -# include -#endif -#ifndef OPENSSL_NO_SM9 -# include -#endif -#ifndef OPENSSL_NO_BFIBE -# include -#endif -#ifndef OPENSSL_NO_BB1IBE -# include -#endif -#ifndef OPENSSL_NO_PAILLIER -# include -#endif +int SM9PrivateKey_get_gmtls_public_key(SM9PublicParameters *mpk, + SM9PrivateKey *sk, unsigned char pub_key[1024]) +{ + return 0; +} + +int SM9PublicKey_get_gmtls_encoded(SM9PublicParameters *mpk, + SM9PublicKey *pk, unsigned char encoded[1024]) +{ + return 0; +} -#ifdef __cplusplus -extern "C" { -#endif +int SM9_hash2(const EVP_MD *md, BIGNUM **r, + const unsigned char *data, size_t datalen, + const unsigned char *elem, size_t elemlen, + const BIGNUM *range, BN_CTX *ctx) +{ + unsigned char *buf; + if (!(buf = OPENSSL_malloc(datalen + elemlen))) { + return 0; + } + memcpy(buf, data, datalen); + memcpy(buf + datalen, elem, elemlen); -#include + if (!BN_hash_to_range(md, r, buf, datalen + elemlen, range, ctx)) { + OPENSSL_free(buf); + return 0; + } + OPENSSL_free(buf); + return 1; +} -#define PEM_STRING_PAILLIER "PAILLIER PRIVATE KEY" -#define PEM_STRING_PAILLIER_PUBLIC "PAILLIER PUBLIC KEY" -#define PEM_STRING_CPK_PARAMS "CPK PUBLIC PARAMETERS" -#define PEM_STRING_CPK_MASTER "CPK MASTER SECRET" -#define PEM_STRING_SM9_PARAMS "SM9 PUBLIC PARAMETERS" -#define PEM_STRING_SM9_MASTER "SM9 MASTER SECRET" -#define PEM_STRING_SM9_PRIVATE "SM9 PRIVATE KEY" -#define PEM_STRING_BFIBE_PARAMS "BFIBE PUBLIC PARAMETERS" -#define PEM_STRING_BFIBE_MASTER "BFIBE MASTER SECRET" -#define PEM_STRING_BFIBE_PRIVATE "BFIBE PRIVATE KEY" -#define PEM_STRING_BB1IBE_PARAMS "BB1IBE PUBLIC PARAMETERS" -#define PEM_STRING_BB1IBE_MASTER "BB1IBE MASTER SECRET" -#define PEM_STRING_BB1IBE_PRIVATE "BB1IBE PRIVATE KEY" +int SM9_DigestInit(EVP_MD_CTX *ctx, unsigned char prefix, + const EVP_MD *md, ENGINE *impl) +{ + if (!EVP_DigestInit_ex(ctx, md, impl) + || !EVP_DigestUpdate(ctx, &prefix, 1)) { + ERR_print_errors_fp(stderr); + return 0; + } + return 1; +} +//FIXME: implement this !!! +int SM9MasterSecret_up_ref(SM9MasterSecret *msk) +{ + return 1; +} -# ifndef OPENSSL_NO_PAILLIER -/* -DECLARE_PEM_rw_cb(PAILLIERPrivateKey, PAILLIER) -DECLARE_PEM_rw_const(PAILLIERPublicKey, PAILLIER) -DECLARE_PEM_rw(PAILLIER_PUBKEY, PAILLIER) -*/ -# endif +int SM9PublicParameters_up_ref(SM9PublicParameters *mpk) +{ + return 1; +} +int SM9PrivateKey_up_ref(SM9PrivateKey *sk) +{ + return 1; +} -#ifdef __cplusplus +int SM9PublicKey_up_ref(SM9PublicKey *pk) +{ + return 1; +} + +#if 0 +int SM9_DigestFinal(EVP_MD_CTX *ctx1, BIGNUM *h, const BIGNUM *n_1) +{ + int ret = 0; + EVP_MD_CTX *ctx2 = NULL; + const unsigned char ct1[4] = {0x00, 0x00, 0x00, 0x01}; + const unsigned char ct2[4] = {0x00, 0x00, 0x00, 0x02}; + unsigned char Ha[EVP_MAX_MD_SIZE * 2]; + unsigned int len = 0; + + if (!(ctx2 = EVP_MD_CTX_new()) + || !EVP_MD_CTX_copy(ctx2, ctx1) + || !EVP_DigestUpdate(ctx1, ct1, sizeof(ct)) + || !EVP_DigestUpdate(ctx2, ct2, sizeof(ct2)) + || !EVP_DigestFinal_ex(ctx1, Ha, &len) + || !EVP_DigestFinal_ex(ctx2, Ha + len, &len) + || !BN_bin2bn(Ha, 40, h) + || !BN_mod(h, h, n_1, bn_ctx) + || !BN_add_word(h, 1)) { + ERR_print_errors_fp(stderr); + goto end; + } + + ret = 1; +end: + EVP_MD_CTX_free(ctx2); + return ret; } #endif -#endif diff --git a/crypto/sm9/sm9_setup.c b/crypto/sm9/sm9_setup.c index 4f222c4c..199a4dc6 100644 --- a/crypto/sm9/sm9_setup.c +++ b/crypto/sm9/sm9_setup.c @@ -73,7 +73,6 @@ SM9MasterSecret *SM9_generate_master_secret(int pairing, int scheme, int hash1) /* set pairing type */ switch (pairing) { case NID_sm9bn256v1: - ASN1_OBJECT_free(msk->pairing); if (!(msk->pairing = OBJ_nid2obj(pairing))) { SM9err(SM9_F_SM9_GENERATE_MASTER_SECRET, ERR_R_OBJ_LIB); goto end; @@ -89,7 +88,6 @@ SM9MasterSecret *SM9_generate_master_secret(int pairing, int scheme, int hash1) case NID_sm9sign: case NID_sm9encrypt: case NID_sm9keyagreement: - ASN1_OBJECT_free(msk->scheme); if (!(msk->scheme = OBJ_nid2obj(scheme))) { SM9err(SM9_F_SM9_GENERATE_MASTER_SECRET, ERR_R_OBJ_LIB); goto end; @@ -104,7 +102,6 @@ SM9MasterSecret *SM9_generate_master_secret(int pairing, int scheme, int hash1) switch (hash1) { case NID_sm9hash1_with_sm3: case NID_sm9hash1_with_sha256: - ASN1_OBJECT_free(msk->hash1); if (!(msk->hash1 = OBJ_nid2obj(hash1))) { SM9err(SM9_F_SM9_GENERATE_MASTER_SECRET, ERR_R_OBJ_LIB); goto end; @@ -117,6 +114,11 @@ SM9MasterSecret *SM9_generate_master_secret(int pairing, int scheme, int hash1) /* generate master secret k = rand(1, n - 1) */ do { + + if (!(msk->masterSecret = BN_new())) { + SM9err(SM9_F_SM9_GENERATE_MASTER_SECRET, ERR_R_MALLOC_FAILURE); + goto end; + } if (!BN_rand_range(msk->masterSecret, n)) { SM9err(SM9_F_SM9_GENERATE_MASTER_SECRET, ERR_R_BN_LIB); goto end; @@ -165,6 +167,10 @@ SM9MasterSecret *SM9_generate_master_secret(int pairing, int scheme, int hash1) goto end; } + if (!(msk->pointPpub = ASN1_OCTET_STRING_new())) { + SM9err(SM9_F_SM9_GENERATE_MASTER_SECRET, ERR_R_MALLOC_FAILURE); + goto end; + } if (!ASN1_OCTET_STRING_set(msk->pointPpub, buf, (int)len)) { ERR_print_errors_fp(stderr); goto end; @@ -193,17 +199,10 @@ SM9PublicParameters *SM9_extract_public_parameters(SM9MasterSecret *msk) return NULL; } - ASN1_OBJECT_free(mpk->pairing); - ASN1_OBJECT_free(mpk->scheme); - ASN1_OBJECT_free(mpk->hash1); - mpk->pairing = NULL; - mpk->scheme = NULL; - mpk->hash1 = NULL; - if (!(mpk->pairing = OBJ_dup(msk->pairing)) || !(mpk->scheme = OBJ_dup(msk->scheme)) || !(mpk->hash1 = OBJ_dup(msk->hash1)) - || !ASN1_STRING_copy(mpk->pointPpub, msk->pointPpub)) { + || !(mpk->pointPpub = ASN1_OCTET_STRING_dup(msk->pointPpub))) { SM9err(SM9_F_SM9_EXTRACT_PUBLIC_PARAMETERS, ERR_R_MALLOC_FAILURE); goto end; } @@ -211,7 +210,7 @@ SM9PublicParameters *SM9_extract_public_parameters(SM9MasterSecret *msk) ret = mpk; mpk = NULL; -end: +end: SM9PublicParameters_free(mpk); return ret; } diff --git a/crypto/x509/x_pubkey.c b/crypto/x509/x_pubkey.c index c5ac54ef..75dbafb3 100644 --- a/crypto/x509/x_pubkey.c +++ b/crypto/x509/x_pubkey.c @@ -302,6 +302,84 @@ int i2d_PAILLIER_PUBKEY(PAILLIER *a, unsigned char **pp) } #endif +#ifndef OPENSSL_NO_SM9 +SM9_MASTER_KEY *d2i_SM9_MASTER_PUBKEY(SM9_MASTER_KEY **a, const unsigned char **pp, long length) +{ + EVP_PKEY *pkey; + SM9_MASTER_KEY *key; + const unsigned char *q; + q = *pp; + pkey = d2i_PUBKEY(NULL, &q, length); + if (!pkey) + return NULL; + key = EVP_PKEY_get1_SM9_MASTER(pkey); + EVP_PKEY_free(pkey); + if (!key) + return NULL; + *pp = q; + if (a) { + SM9_MASTER_KEY_free(*a); + *a = key; + } + return key; +} + +int i2d_SM9_MASTER_PUBKEY(SM9_MASTER_KEY *a, unsigned char **pp) +{ + EVP_PKEY *pktmp; + int ret; + if (!a) + return 0; + pktmp = EVP_PKEY_new(); + if (pktmp == NULL) { + ASN1err(ASN1_F_I2D_SM9_MASTER_PUBKEY, ERR_R_MALLOC_FAILURE); + return 0; + } + EVP_PKEY_set1_SM9_MASTER(pktmp, a); + ret = i2d_PUBKEY(pktmp, pp); + EVP_PKEY_free(pktmp); + return ret; +} + +SM9_KEY *d2i_SM9_PUBKEY(SM9_KEY **a, const unsigned char **pp, long length) +{ + EVP_PKEY *pkey; + SM9_KEY *key; + const unsigned char *q; + q = *pp; + pkey = d2i_PUBKEY(NULL, &q, length); + if (!pkey) + return NULL; + key = EVP_PKEY_get1_SM9(pkey); + EVP_PKEY_free(pkey); + if (!key) + return NULL; + *pp = q; + if (a) { + SM9_KEY_free(*a); + *a = key; + } + return key; +} + +int i2d_SM9_PUBKEY(SM9_KEY *a, unsigned char **pp) +{ + EVP_PKEY *pktmp; + int ret; + if (!a) + return 0; + pktmp = EVP_PKEY_new(); + if (pktmp == NULL) { + //ASN1err(ASN1_F_I2D_SM9_PUBKEY, ERR_R_MALLOC_FAILURE); + return 0; + } + EVP_PKEY_set1_SM9(pktmp, a); + ret = i2d_PUBKEY(pktmp, pp); + EVP_PKEY_free(pktmp); + return ret; +} +#endif + #ifndef OPENSSL_NO_DSA DSA *d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length) { diff --git a/include/openssl/asn1.h b/include/openssl/asn1.h index 56b11b13..cd14c9e7 100644 --- a/include/openssl/asn1.h +++ b/include/openssl/asn1.h @@ -963,6 +963,8 @@ int ERR_load_ASN1_strings(void); # define ASN1_F_I2D_PRIVATEKEY 163 # define ASN1_F_I2D_PUBLICKEY 164 # define ASN1_F_I2D_RSA_PUBKEY 165 +# define ASN1_F_I2D_SM9_MASTER_PUBKEY 105 +# define ASN1_F_I2D_SM9_PUBKEY 112 # define ASN1_F_LONG_C2I 166 # define ASN1_F_OID_MODULE_INIT 174 # define ASN1_F_PARSE_TAGGING 182 diff --git a/include/openssl/cpk.h b/include/openssl/cpk.h index ac12e499..d5eb5a6d 100755 --- a/include/openssl/cpk.h +++ b/include/openssl/cpk.h @@ -139,6 +139,7 @@ int ERR_load_CPK_strings(void); # define CPK_R_BAD_DATA 101 # define CPK_R_INVALID_ALGORITHM 106 # define CPK_R_INVALID_ARGUMENT 107 +# define CPK_R_INVALID_CURVE 108 # define CPK_R_INVALID_ID_LENGTH 102 # define CPK_R_INVALID_MAP_ALGOR 103 # define CPK_R_INVALID_PKEY_TYPE 104 diff --git a/include/openssl/evp.h b/include/openssl/evp.h index 73e75fde..4b9e42b7 100644 --- a/include/openssl/evp.h +++ b/include/openssl/evp.h @@ -98,9 +98,11 @@ # define EVP_PKEY_EC NID_X9_62_id_ecPublicKey # define EVP_PKEY_HMAC NID_hmac # define EVP_PKEY_CMAC NID_cmac -# define EVP_PKEY_TLS1_PRF NID_tls1_prf -# define EVP_PKEY_HKDF NID_hkdf -# define EVP_PKEY_PAILLIER NID_paillier +# define EVP_PKEY_TLS1_PRF NID_tls1_prf +# define EVP_PKEY_HKDF NID_hkdf +# define EVP_PKEY_PAILLIER NID_paillier +# define EVP_PKEY_SM9_MASTER NID_id_sm9MasterSecret +# define EVP_PKEY_SM9 NID_id_sm9PublicKey #ifdef __cplusplus extern "C" { @@ -454,6 +456,17 @@ typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass, (char *)(paillier)) # endif +# ifndef OPENSSL_NO_SM9 +# define EVP_PKEY_assign_SM9_MASTER(pkey,sm9) EVP_PKEY_assign((pkey),EVP_PKEY_SM9_MASTER,\ + (char *)(sm9)) +# define EVP_PKEY_assign_SM9(pkey,sm9) EVP_PKEY_assign((pkey),EVP_PKEY_SM9,\ + (char *)(sm9)) +# define EVP_PKEY_assign_SM9MasterSecret(pkey,sm9) EVP_PKEY_assign_SM9_MASTER(pkey,sm9) +# define EVP_PKEY_assign_SM9PublicParameters(pkey,sm9) EVP_PKEY_assign_SM9_MASTER(pkey,sm9) +# define EVP_PKEY_assign_SM9PrivateKey(pkey,sm9) EVP_PKEY_assign_SM9(pkey,sm9) +# define EVP_PKEY_assign_SM9PublicKey(pkey,sm9) EVP_PKEY_assign_SM9(pkey,sm9) +# endif + /* Add some extra combinations */ # define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a)) # define EVP_get_digestbyobj(a) EVP_get_digestbynid(OBJ_obj2nid(a)) @@ -1023,6 +1036,28 @@ int EVP_PKEY_set1_PAILLIER(EVP_PKEY *pkey, struct paillier_st *key); struct paillier_st *EVP_PKEY_get0_PAILLIER(EVP_PKEY *pkey); struct paillier_st *EVP_PKEY_get1_PAILLIER(EVP_PKEY *pkey); # endif +# ifndef OPENSSL_NO_SM9 +struct SM9_MASTER_KEY_st; +int EVP_PKEY_set1_SM9_MASTER(EVP_PKEY *pkey, struct SM9_MASTER_KEY_st *key); +struct SM9_MASTER_KEY_st *EVP_PKEY_get0_SM9_MASTER(EVP_PKEY *pkey); +struct SM9_MASTER_KEY_st *EVP_PKEY_get1_SM9_MASTER(EVP_PKEY *pkey); +#define EVP_PKEY_set1_SM9MasterSecret(pk,k) EVP_PKEY_set1_SM9_MASTER(pk,k) +#define EVP_PKEY_get0_SM9MasterSecret(pk) EVP_PKEY_get0_SM9_MASTER(pk) +#define EVP_PKEY_get1_SM9MasterSecret(pk) EVP_PKEY_get1_SM9_MASTER(pk) +#define EVP_PKEY_set1_SM9PublicParameters(pk,k) EVP_PKEY_set1_SM9_MASTER(pk,k) +#define EVP_PKEY_get0_SM9PublicParameters(pk) EVP_PKEY_get0_SM9_MASTER(pk) +#define EVP_PKEY_get1_SM9PublicParameters(pk) EVP_PKEY_get1_SM9_MASTER(pk) +struct SM9_KEY_st; +int EVP_PKEY_set1_SM9(EVP_PKEY *pkey, struct SM9_KEY_st *key); +struct SM9_KEY_st *EVP_PKEY_get0_SM9(EVP_PKEY *pkey); +struct SM9_KEY_st *EVP_PKEY_get1_SM9(EVP_PKEY *pkey); +#define EVP_PKEY_set1_SM9PrivateKey(pk,k) EVP_PKEY_set1_SM9(pk,k) +#define EVP_PKEY_get0_SM9PrivateKey(pk,k) EVP_PKEY_get0_SM9(pk) +#define EVP_PKEY_get1_SM9PrivateKey(pk,k) EVP_PKEY_get1_SM9(pk) +#define EVP_PKEY_set1_SM9PublicKey(pk,k) EVP_PKEY_set1_SM9(pk,k) +#define EVP_PKEY_get0_SM9PublicKey(pk,k) EVP_PKEY_get0_SM9(pk) +#define EVP_PKEY_get1_SM9PublicKey(pk,k) EVP_PKEY_get1_SM9(pk) +# endif EVP_PKEY *EVP_PKEY_new(void); int EVP_PKEY_up_ref(EVP_PKEY *pkey); @@ -1600,6 +1635,10 @@ int ERR_load_EVP_strings(void); # define EVP_F_EVP_PKEY_GET0_HMAC 183 # define EVP_F_EVP_PKEY_GET0_PAILLIER 172 # define EVP_F_EVP_PKEY_GET0_RSA 121 +# define EVP_F_EVP_PKEY_GET0_SM9 176 +# define EVP_F_EVP_PKEY_GET0_SM9MASTERSECRET 173 +# define EVP_F_EVP_PKEY_GET0_SM9PUBLICPARAMETERS 174 +# define EVP_F_EVP_PKEY_GET0_SM9_MASTER 175 # define EVP_F_EVP_PKEY_KEYGEN 146 # define EVP_F_EVP_PKEY_KEYGEN_INIT 147 # define EVP_F_EVP_PKEY_NEW 106 @@ -1644,6 +1683,9 @@ int ERR_load_EVP_strings(void); # define EVP_R_EXPECTING_A_DSA_KEY 129 # define EVP_R_EXPECTING_A_EC_KEY 142 # define EVP_R_EXPECTING_A_PAILLIER 176 +# define EVP_R_EXPECTING_A_SM9_KEY 180 +# define EVP_R_EXPECTING_A_SM9_MASTER_KEY 181 +# define EVP_R_EXPECTING_A_SM9_MASTER_SECRET 179 # define EVP_R_FIPS_MODE_NOT_SUPPORTED 167 # define EVP_R_ILLEGAL_SCRYPT_PARAMETERS 171 # define EVP_R_INITIALIZATION_ERROR 134 diff --git a/include/openssl/obj_mac.h b/include/openssl/obj_mac.h index e9ab29c5..dedfc224 100644 --- a/include/openssl/obj_mac.h +++ b/include/openssl/obj_mac.h @@ -1072,7 +1072,7 @@ #define SN_pbe_WithSM3AndSMS4_CBC "PBE-SM3-SMS4" #define LN_pbe_WithSM3AndSMS4_CBC "pbeWithSM3AndSMS4-CBC" -#define NID_pbe_WithSM3AndSMS4_CBC 1195 +#define NID_pbe_WithSM3AndSMS4_CBC 1083 #define OBJ_pbe_WithSM3AndSMS4_CBC OBJ_pkcs12_pbeids,100L #define OBJ_pkcs12_Version1 OBJ_pkcs12,10L @@ -4553,26 +4553,6 @@ #define LN_kx_gost "kx-gost" #define NID_kx_gost 1045 -#define SN_kx_sm2 "KxSM2" -#define LN_kx_sm2 "kx-sm2" -#define NID_kx_sm2 1186 - -#define SN_kx_sm2dhe "KxSM2DHE" -#define LN_kx_sm2dhe "kx-sm2dhe" -#define NID_kx_sm2dhe 1190 - -#define SN_kx_sm2_psk "KxSM2-PSK" -#define LN_kx_sm2_psk "kx-sm2-psk" -#define NID_kx_sm2_psk 1191 - -#define SN_kx_sm9 "KxSM9" -#define LN_kx_sm9 "kx-sm9" -#define NID_kx_sm9 1188 - -#define SN_kx_sm9dhe "KxSM9DHE" -#define LN_kx_sm9dhe "kx-sm9dhe" -#define NID_kx_sm9dhe 1192 - #define SN_auth_rsa "AuthRSA" #define LN_auth_rsa "auth-rsa" #define NID_auth_rsa 1046 @@ -4605,14 +4585,6 @@ #define LN_auth_null "auth-null" #define NID_auth_null 1053 -#define SN_auth_sm2 "AuthSM2" -#define LN_auth_sm2 "auth-sm2" -#define NID_auth_sm2 1187 - -#define SN_auth_sm9 "AuthSM9" -#define LN_auth_sm9 "auth-sm9" -#define NID_auth_sm9 1189 - #define SN_ecies_recommendedParameters "ecies-recommendedParameters" #define NID_ecies_recommendedParameters 1063 #define OBJ_ecies_recommendedParameters OBJ_secg_scheme,7L @@ -4690,541 +4662,554 @@ #define OBJ_cmac_aes256_ecies OBJ_secg_scheme,24L,2L #define SN_ecies_with_x9_63_sha1_xor_hmac "ecies-with-x9-63-sha1-xor-hmac" -#define NID_ecies_with_x9_63_sha1_xor_hmac 1169 +#define NID_ecies_with_x9_63_sha1_xor_hmac 1084 #define OBJ_ecies_with_x9_63_sha1_xor_hmac OBJ_ecies_specifiedParameters,1L #define SN_ecies_with_x9_63_sha256_xor_hmac "ecies-with-x9-63-sha256-xor-hmac" -#define NID_ecies_with_x9_63_sha256_xor_hmac 1170 +#define NID_ecies_with_x9_63_sha256_xor_hmac 1085 #define OBJ_ecies_with_x9_63_sha256_xor_hmac OBJ_ecies_specifiedParameters,2L #define SN_ecies_with_x9_63_sha512_xor_hmac "ecies-with-x9-63-sha512-xor-hmac" -#define NID_ecies_with_x9_63_sha512_xor_hmac 1171 +#define NID_ecies_with_x9_63_sha512_xor_hmac 1086 #define OBJ_ecies_with_x9_63_sha512_xor_hmac OBJ_ecies_specifiedParameters,3L #define SN_ecies_with_x9_63_sha1_aes128_cbc_hmac "ecies-with-x9-63-sha1-aes128-cbc-hmac" -#define NID_ecies_with_x9_63_sha1_aes128_cbc_hmac 1172 +#define NID_ecies_with_x9_63_sha1_aes128_cbc_hmac 1087 #define OBJ_ecies_with_x9_63_sha1_aes128_cbc_hmac OBJ_ecies_specifiedParameters,4L #define SN_ecies_with_x9_63_sha256_aes128_cbc_hmac "ecies-with-x9-63-sha256-aes128-cbc-hmac" -#define NID_ecies_with_x9_63_sha256_aes128_cbc_hmac 1173 +#define NID_ecies_with_x9_63_sha256_aes128_cbc_hmac 1088 #define OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac OBJ_ecies_specifiedParameters,5L #define SN_ecies_with_x9_63_sha512_aes256_cbc_hmac "ecies-with-x9-63-sha512-aes256-cbc-hmac" -#define NID_ecies_with_x9_63_sha512_aes256_cbc_hmac 1174 +#define NID_ecies_with_x9_63_sha512_aes256_cbc_hmac 1089 #define OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac OBJ_ecies_specifiedParameters,6L #define SN_ecies_with_x9_63_sha256_aes128_ctr_hmac "ecies-with-x9-63-sha256-aes128-ctr-hmac" -#define NID_ecies_with_x9_63_sha256_aes128_ctr_hmac 1175 +#define NID_ecies_with_x9_63_sha256_aes128_ctr_hmac 1090 #define OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac OBJ_ecies_specifiedParameters,7L #define SN_ecies_with_x9_63_sha512_aes256_ctr_hmac "ecies-with-x9-63-sha512-aes256-ctr-hmac" -#define NID_ecies_with_x9_63_sha512_aes256_ctr_hmac 1176 +#define NID_ecies_with_x9_63_sha512_aes256_ctr_hmac 1091 #define OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac OBJ_ecies_specifiedParameters,8L #define SN_ecies_with_x9_63_sha256_aes128_cbc_hmac_half "ecies-with-x9-63-sha256-aes128-cbc-hmac-half" -#define NID_ecies_with_x9_63_sha256_aes128_cbc_hmac_half 1177 +#define NID_ecies_with_x9_63_sha256_aes128_cbc_hmac_half 1092 #define OBJ_ecies_with_x9_63_sha256_aes128_cbc_hmac_half OBJ_ecies_specifiedParameters,9L #define SN_ecies_with_x9_63_sha512_aes256_cbc_hmac_half "ecies-with-x9-63-sha512-aes256-cbc-hmac-half" -#define NID_ecies_with_x9_63_sha512_aes256_cbc_hmac_half 1178 +#define NID_ecies_with_x9_63_sha512_aes256_cbc_hmac_half 1093 #define OBJ_ecies_with_x9_63_sha512_aes256_cbc_hmac_half OBJ_ecies_specifiedParameters,10L #define SN_ecies_with_x9_63_sha256_aes128_ctr_hmac_half "ecies-with-x9-63-sha256-aes128-ctr-hmac-half" -#define NID_ecies_with_x9_63_sha256_aes128_ctr_hmac_half 1179 +#define NID_ecies_with_x9_63_sha256_aes128_ctr_hmac_half 1094 #define OBJ_ecies_with_x9_63_sha256_aes128_ctr_hmac_half OBJ_ecies_specifiedParameters,11L #define SN_ecies_with_x9_63_sha512_aes256_ctr_hmac_half "ecies-with-x9-63-sha512-aes256-ctr-hmac-half" -#define NID_ecies_with_x9_63_sha512_aes256_ctr_hmac_half 1180 +#define NID_ecies_with_x9_63_sha512_aes256_ctr_hmac_half 1095 #define OBJ_ecies_with_x9_63_sha512_aes256_ctr_hmac_half OBJ_ecies_specifiedParameters,12L #define SN_ecies_with_x9_63_sha1_aes128_cbc_cmac "ecies-with-x9-63-sha1-aes128-cbc-cmac" -#define NID_ecies_with_x9_63_sha1_aes128_cbc_cmac 1181 +#define NID_ecies_with_x9_63_sha1_aes128_cbc_cmac 1096 #define OBJ_ecies_with_x9_63_sha1_aes128_cbc_cmac OBJ_ecies_specifiedParameters,13L #define SN_ecies_with_x9_63_sha256_aes128_cbc_cmac "ecies-with-x9-63-sha256-aes128-cbc-cmac" -#define NID_ecies_with_x9_63_sha256_aes128_cbc_cmac 1182 +#define NID_ecies_with_x9_63_sha256_aes128_cbc_cmac 1097 #define OBJ_ecies_with_x9_63_sha256_aes128_cbc_cmac OBJ_ecies_specifiedParameters,14L #define SN_ecies_with_x9_63_sha512_aes256_cbc_cmac "ecies-with-x9-63-sha512-aes256-cbc-cmac" -#define NID_ecies_with_x9_63_sha512_aes256_cbc_cmac 1183 +#define NID_ecies_with_x9_63_sha512_aes256_cbc_cmac 1098 #define OBJ_ecies_with_x9_63_sha512_aes256_cbc_cmac OBJ_ecies_specifiedParameters,15L #define SN_ecies_with_x9_63_sha256_aes128_ctr_cmac "ecies-with-x9-63-sha256-aes128-ctr-cmac" -#define NID_ecies_with_x9_63_sha256_aes128_ctr_cmac 1184 +#define NID_ecies_with_x9_63_sha256_aes128_ctr_cmac 1099 #define OBJ_ecies_with_x9_63_sha256_aes128_ctr_cmac OBJ_ecies_specifiedParameters,16L #define SN_ecies_with_x9_63_sha512_aes256_ctr_cmac "ecies-with-x9-63-sha512-aes256-ctr-cmac" -#define NID_ecies_with_x9_63_sha512_aes256_ctr_cmac 1185 +#define NID_ecies_with_x9_63_sha512_aes256_ctr_cmac 1100 #define OBJ_ecies_with_x9_63_sha512_aes256_ctr_cmac OBJ_ecies_specifiedParameters,17L +#define OBJ_ibcs OBJ_ISO_US,1L,114334L,1L + +#define SN_ibcs1 "ibcs1" +#define NID_ibcs1 1101 +#define OBJ_ibcs1 OBJ_ibcs,1L + +#define SN_type1curve "type1curve" +#define NID_type1curve 1102 +#define OBJ_type1curve OBJ_ibcs1,1L,1L + +#define SN_bfibe "bfibe" +#define NID_bfibe 1103 +#define OBJ_bfibe OBJ_ibcs1,2L,1L + +#define SN_bb1ibe "bb1ibe" +#define NID_bb1ibe 1104 +#define OBJ_bb1ibe OBJ_ibcs1,2L,2L + #define SN_ISO_CN "ISO-CN" #define LN_ISO_CN "ISO CN Member Body" -#define NID_ISO_CN 1083 +#define NID_ISO_CN 1105 #define OBJ_ISO_CN OBJ_member_body,156L #define SN_oscca "oscca" -#define NID_oscca 1084 +#define NID_oscca 1106 #define OBJ_oscca OBJ_ISO_CN,10197L #define SN_sm_scheme "sm-scheme" -#define NID_sm_scheme 1085 +#define NID_sm_scheme 1107 #define OBJ_sm_scheme OBJ_oscca,1L -#define SN_sm6_ecb "SM6-ECB" -#define LN_sm6_ecb "sm6-ecb" -#define NID_sm6_ecb 1086 -#define OBJ_sm6_ecb OBJ_sm_scheme,101L,1L - -#define SN_sm6_cbc "SM6-CBC" -#define LN_sm6_cbc "sm6-cbc" -#define NID_sm6_cbc 1087 -#define OBJ_sm6_cbc OBJ_sm_scheme,101L,2L - -#define SN_sm6_ofb128 "SM6-OFB" -#define LN_sm6_ofb128 "sm6-ofb" -#define NID_sm6_ofb128 1088 -#define OBJ_sm6_ofb128 OBJ_sm_scheme,101L,3L - -#define SN_sm6_cfb128 "SM6-CFB" -#define LN_sm6_cfb128 "sm6-cfb" -#define NID_sm6_cfb128 1089 -#define OBJ_sm6_cfb128 OBJ_sm_scheme,101L,4L - -#define SN_sm1_ecb "SM1-ECB" -#define LN_sm1_ecb "sm1-ecb" -#define NID_sm1_ecb 1090 -#define OBJ_sm1_ecb OBJ_sm_scheme,102L,1L - -#define SN_sm1_cbc "SM1-CBC" -#define LN_sm1_cbc "sm1-cbc" -#define NID_sm1_cbc 1091 -#define OBJ_sm1_cbc OBJ_sm_scheme,102L,2L - -#define SN_sm1_ofb128 "SM1-OFB" -#define LN_sm1_ofb128 "sm1-ofb" -#define NID_sm1_ofb128 1092 -#define OBJ_sm1_ofb128 OBJ_sm_scheme,102L,3L - -#define SN_sm1_cfb128 "SM1-CFB" -#define LN_sm1_cfb128 "sm1-cfb" -#define NID_sm1_cfb128 1093 -#define OBJ_sm1_cfb128 OBJ_sm_scheme,102L,4L - -#define SN_sm1_cfb1 "SM1-CFB1" -#define LN_sm1_cfb1 "sm1-cfb1" -#define NID_sm1_cfb1 1094 -#define OBJ_sm1_cfb1 OBJ_sm_scheme,102L,5L - -#define SN_sm1_cfb8 "SM1-CFB8" -#define LN_sm1_cfb8 "sm1-cfb8" -#define NID_sm1_cfb8 1095 -#define OBJ_sm1_cfb8 OBJ_sm_scheme,102L,6L - #define SN_ssf33_ecb "SSF33-ECB" #define LN_ssf33_ecb "ssf33-ecb" -#define NID_ssf33_ecb 1096 +#define NID_ssf33_ecb 1108 #define OBJ_ssf33_ecb OBJ_sm_scheme,103L,1L #define SN_ssf33_cbc "SSF33-CBC" #define LN_ssf33_cbc "ssf33-cbc" -#define NID_ssf33_cbc 1097 +#define NID_ssf33_cbc 1109 #define OBJ_ssf33_cbc OBJ_sm_scheme,103L,2L #define SN_ssf33_ofb128 "SSF33-OFB" #define LN_ssf33_ofb128 "ssf33-ofb" -#define NID_ssf33_ofb128 1098 +#define NID_ssf33_ofb128 1110 #define OBJ_ssf33_ofb128 OBJ_sm_scheme,103L,3L #define SN_ssf33_cfb128 "SSF33-CFB" #define LN_ssf33_cfb128 "ssf33-cfb" -#define NID_ssf33_cfb128 1099 +#define NID_ssf33_cfb128 1111 #define OBJ_ssf33_cfb128 OBJ_sm_scheme,103L,4L #define SN_ssf33_cfb1 "SSF33-CFB1" #define LN_ssf33_cfb1 "ssf33-cfb1" -#define NID_ssf33_cfb1 1100 +#define NID_ssf33_cfb1 1112 #define OBJ_ssf33_cfb1 OBJ_sm_scheme,103L,5L #define SN_ssf33_cfb8 "SSF33-CFB8" #define LN_ssf33_cfb8 "ssf33-cfb8" -#define NID_ssf33_cfb8 1101 +#define NID_ssf33_cfb8 1113 #define OBJ_ssf33_cfb8 OBJ_sm_scheme,103L,6L +#define SN_ssf33_cbc_mac "SSF33-CBC-MAC" +#define LN_ssf33_cbc_mac "ssf33-cbc-mac" +#define NID_ssf33_cbc_mac 1114 +#define OBJ_ssf33_cbc_mac OBJ_sm_scheme,103L,7L + +#define SN_sm1_ecb "SM1-ECB" +#define LN_sm1_ecb "sm1-ecb" +#define NID_sm1_ecb 1115 +#define OBJ_sm1_ecb OBJ_sm_scheme,102L,1L + +#define SN_sm1_cbc "SM1-CBC" +#define LN_sm1_cbc "sm1-cbc" +#define NID_sm1_cbc 1116 +#define OBJ_sm1_cbc OBJ_sm_scheme,102L,2L + +#define SN_sm1_ofb128 "SM1-OFB" +#define LN_sm1_ofb128 "sm1-ofb" +#define NID_sm1_ofb128 1117 +#define OBJ_sm1_ofb128 OBJ_sm_scheme,102L,3L + +#define SN_sm1_cfb128 "SM1-CFB" +#define LN_sm1_cfb128 "sm1-cfb" +#define NID_sm1_cfb128 1118 +#define OBJ_sm1_cfb128 OBJ_sm_scheme,102L,4L + +#define SN_sm1_cfb1 "SM1-CFB1" +#define LN_sm1_cfb1 "sm1-cfb1" +#define NID_sm1_cfb1 1119 +#define OBJ_sm1_cfb1 OBJ_sm_scheme,102L,5L + +#define SN_sm1_cfb8 "SM1-CFB8" +#define LN_sm1_cfb8 "sm1-cfb8" +#define NID_sm1_cfb8 1120 +#define OBJ_sm1_cfb8 OBJ_sm_scheme,102L,6L + +#define SN_sm2p256v1 "sm2p256v1" +#define NID_sm2p256v1 1121 +#define OBJ_sm2p256v1 OBJ_sm_scheme,301L + +#define SN_sm2sign "sm2sign" +#define NID_sm2sign 1122 +#define OBJ_sm2sign OBJ_sm_scheme,301L,1L + +#define SN_sm2exchange "sm2exchange" +#define NID_sm2exchange 1123 +#define OBJ_sm2exchange OBJ_sm_scheme,301L,2L + +#define SN_sm2encrypt "sm2encrypt" +#define NID_sm2encrypt 1124 +#define OBJ_sm2encrypt OBJ_sm_scheme,301L,3L + +#define SN_sm2sign_with_sm3 "SM2Sign-with-SM3" +#define LN_sm2sign_with_sm3 "sm2sign-with-sm3" +#define NID_sm2sign_with_sm3 1125 +#define OBJ_sm2sign_with_sm3 OBJ_sm_scheme,501L + +#define SN_sm2sign_with_sha1 "SM2Sign-with-SHA1" +#define LN_sm2sign_with_sha1 "sm2sign-with-sha1" +#define NID_sm2sign_with_sha1 1126 +#define OBJ_sm2sign_with_sha1 OBJ_sm_scheme,502L + +#define SN_sm2sign_with_sha256 "SM2Sign-with-SHA256" +#define LN_sm2sign_with_sha256 "sm2sign-with-sha256" +#define NID_sm2sign_with_sha256 1127 +#define OBJ_sm2sign_with_sha256 OBJ_sm_scheme,503L + +#define SN_sm2sign_with_sha512 "SM2Sign-with-SHA511" +#define LN_sm2sign_with_sha512 "sm2sign-with-sha512" +#define NID_sm2sign_with_sha512 1128 +#define OBJ_sm2sign_with_sha512 OBJ_sm_scheme,504L + +#define SN_sm2sign_with_sha224 "SM2Sign-with-SHA224" +#define LN_sm2sign_with_sha224 "sm2sign-with-sha224" +#define NID_sm2sign_with_sha224 1129 +#define OBJ_sm2sign_with_sha224 OBJ_sm_scheme,505L + +#define SN_sm2sign_with_sha384 "SM2Sign-with-SHA384" +#define LN_sm2sign_with_sha384 "sm2sign-with-sha384" +#define NID_sm2sign_with_sha384 1130 +#define OBJ_sm2sign_with_sha384 OBJ_sm_scheme,506L + +#define SN_sm2sign_with_rmd160 "SM2Sign-with-RMD160" +#define LN_sm2sign_with_rmd160 "sm2sign-with-rmd160" +#define NID_sm2sign_with_rmd160 1131 +#define OBJ_sm2sign_with_rmd160 OBJ_sm_scheme,507L + +#define SN_sm2sign_with_whirlpool "SM2Sign-with-Whirlpool" +#define LN_sm2sign_with_whirlpool "sm2sign-with-whirlpool" +#define NID_sm2sign_with_whirlpool 1132 +#define OBJ_sm2sign_with_whirlpool OBJ_sm_scheme,520L + +#define SN_sm2sign_with_blake2b512 "SM2Sign-with-Blake2b512" +#define LN_sm2sign_with_blake2b512 "sm2sign-with-blake2b512" +#define NID_sm2sign_with_blake2b512 1133 +#define OBJ_sm2sign_with_blake2b512 OBJ_sm_scheme,521L + +#define SN_sm2sign_with_blake2s256 "SM2Sign-with-Blake2s256" +#define LN_sm2sign_with_blake2s256 "sm2sign-with-blake2s256" +#define NID_sm2sign_with_blake2s256 1134 +#define OBJ_sm2sign_with_blake2s256 OBJ_sm_scheme,522L + +#define SN_sm2encrypt_recommendedParameters "sm2encrypt-recommendedParameters" +#define NID_sm2encrypt_recommendedParameters 1135 +#define OBJ_sm2encrypt_recommendedParameters OBJ_sm2encrypt,1L + +#define SN_sm2encrypt_specifiedParameters "sm2encrypt-specifiedParameters" +#define NID_sm2encrypt_specifiedParameters 1136 +#define OBJ_sm2encrypt_specifiedParameters OBJ_sm2encrypt,2L + +#define SN_sm2encrypt_with_sm3 "sm2encrypt-with-sm3" +#define NID_sm2encrypt_with_sm3 1137 +#define OBJ_sm2encrypt_with_sm3 OBJ_sm2encrypt,2L,1L + +#define SN_sm2encrypt_with_sha1 "sm2encrypt-with-sha1" +#define NID_sm2encrypt_with_sha1 1138 +#define OBJ_sm2encrypt_with_sha1 OBJ_sm2encrypt,2L,2L + +#define SN_sm2encrypt_with_sha224 "sm2encrypt-with-sha224" +#define NID_sm2encrypt_with_sha224 1139 +#define OBJ_sm2encrypt_with_sha224 OBJ_sm2encrypt,2L,3L + +#define SN_sm2encrypt_with_sha256 "sm2encrypt-with-sha256" +#define NID_sm2encrypt_with_sha256 1140 +#define OBJ_sm2encrypt_with_sha256 OBJ_sm2encrypt,2L,4L + +#define SN_sm2encrypt_with_sha384 "sm2encrypt-with-sha384" +#define NID_sm2encrypt_with_sha384 1141 +#define OBJ_sm2encrypt_with_sha384 OBJ_sm2encrypt,2L,5L + +#define SN_sm2encrypt_with_sha512 "sm2encrypt-with-sha512" +#define NID_sm2encrypt_with_sha512 1142 +#define OBJ_sm2encrypt_with_sha512 OBJ_sm2encrypt,2L,6L + +#define SN_sm2encrypt_with_rmd160 "sm2encrypt-with-rmd160" +#define NID_sm2encrypt_with_rmd160 1143 +#define OBJ_sm2encrypt_with_rmd160 OBJ_sm2encrypt,2L,7L + +#define SN_sm2encrypt_with_whirlpool "sm2encrypt-with-whirlpool" +#define NID_sm2encrypt_with_whirlpool 1144 +#define OBJ_sm2encrypt_with_whirlpool OBJ_sm2encrypt,2L,8L + +#define SN_sm2encrypt_with_blake2b512 "sm2encrypt-with-blake2b512" +#define NID_sm2encrypt_with_blake2b512 1145 +#define OBJ_sm2encrypt_with_blake2b512 OBJ_sm2encrypt,2L,9L + +#define SN_sm2encrypt_with_blake2s256 "sm2encrypt-with-blake2s256" +#define NID_sm2encrypt_with_blake2s256 1146 +#define OBJ_sm2encrypt_with_blake2s256 OBJ_sm2encrypt,2L,10L + +#define SN_sm2encrypt_with_md5 "sm2encrypt-with-md5" +#define NID_sm2encrypt_with_md5 1147 +#define OBJ_sm2encrypt_with_md5 OBJ_sm2encrypt,2L,11L + +#define SN_sm3 "SM3" +#define LN_sm3 "sm3" +#define NID_sm3 1148 +#define OBJ_sm3 OBJ_sm_scheme,401L + +#define SN_hmac_sm3 "HMAC-SM3" +#define LN_hmac_sm3 "hmac-sm3" +#define NID_hmac_sm3 1149 +#define OBJ_hmac_sm3 OBJ_sm_scheme,401L,2L + #define SN_sms4_ecb "SMS4-ECB" #define LN_sms4_ecb "sms4-ecb" -#define NID_sms4_ecb 1102 +#define NID_sms4_ecb 1150 #define OBJ_sms4_ecb OBJ_sm_scheme,104L,1L #define SN_sms4_cbc "SMS4-CBC" #define LN_sms4_cbc "sms4-cbc" -#define NID_sms4_cbc 1103 +#define NID_sms4_cbc 1151 #define OBJ_sms4_cbc OBJ_sm_scheme,104L,2L #define SN_sms4_ofb128 "SMS4-OFB" #define LN_sms4_ofb128 "sms4-ofb" -#define NID_sms4_ofb128 1104 +#define NID_sms4_ofb128 1152 #define OBJ_sms4_ofb128 OBJ_sm_scheme,104L,3L #define SN_sms4_cfb128 "SMS4-CFB" #define LN_sms4_cfb128 "sms4-cfb" -#define NID_sms4_cfb128 1105 +#define NID_sms4_cfb128 1153 #define OBJ_sms4_cfb128 OBJ_sm_scheme,104L,4L #define SN_sms4_cfb1 "SMS4-CFB1" #define LN_sms4_cfb1 "sms4-cfb1" -#define NID_sms4_cfb1 1106 +#define NID_sms4_cfb1 1154 #define OBJ_sms4_cfb1 OBJ_sm_scheme,104L,5L #define SN_sms4_cfb8 "SMS4-CFB8" #define LN_sms4_cfb8 "sms4-cfb8" -#define NID_sms4_cfb8 1107 +#define NID_sms4_cfb8 1155 #define OBJ_sms4_cfb8 OBJ_sm_scheme,104L,6L #define SN_sms4_ctr "SMS4-CTR" #define LN_sms4_ctr "sms4-ctr" -#define NID_sms4_ctr 1108 +#define NID_sms4_ctr 1156 #define OBJ_sms4_ctr OBJ_sm_scheme,104L,7L #define SN_sms4_gcm "SMS4-GCM" #define LN_sms4_gcm "sms4-gcm" -#define NID_sms4_gcm 1109 +#define NID_sms4_gcm 1157 #define OBJ_sms4_gcm OBJ_sm_scheme,104L,8L #define SN_sms4_ccm "SMS4-CCM" #define LN_sms4_ccm "sms4-ccm" -#define NID_sms4_ccm 1110 +#define NID_sms4_ccm 1158 #define OBJ_sms4_ccm OBJ_sm_scheme,104L,9L #define SN_sms4_xts "SMS4-XTS" #define LN_sms4_xts "sms4-xts" -#define NID_sms4_xts 1111 +#define NID_sms4_xts 1159 #define OBJ_sms4_xts OBJ_sm_scheme,104L,10L #define SN_sms4_wrap "SMS4-WRAP" #define LN_sms4_wrap "sms4-wrap" -#define NID_sms4_wrap 1112 +#define NID_sms4_wrap 1160 #define OBJ_sms4_wrap OBJ_sm_scheme,104L,11L #define SN_sms4_wrap_pad "SMS4-WRAP-PAD" #define LN_sms4_wrap_pad "sms4-wrap-pad" -#define NID_sms4_wrap_pad 1113 +#define NID_sms4_wrap_pad 1161 #define OBJ_sms4_wrap_pad OBJ_sm_scheme,104L,12L #define SN_sms4_ocb "SMS4-OCB" #define LN_sms4_ocb "sms4-ocb" -#define NID_sms4_ocb 1114 +#define NID_sms4_ocb 1162 #define OBJ_sms4_ocb OBJ_sm_scheme,104L,100L +#define SN_sm5 "SM5" +#define LN_sm5 "sm5" +#define NID_sm5 1163 +#define OBJ_sm5 OBJ_sm_scheme,201L + +#define SN_sm6_ecb "SM6-ECB" +#define LN_sm6_ecb "sm6-ecb" +#define NID_sm6_ecb 1164 +#define OBJ_sm6_ecb OBJ_sm_scheme,101L,1L + +#define SN_sm6_cbc "SM6-CBC" +#define LN_sm6_cbc "sm6-cbc" +#define NID_sm6_cbc 1165 +#define OBJ_sm6_cbc OBJ_sm_scheme,101L,2L + +#define SN_sm6_ofb128 "SM6-OFB" +#define LN_sm6_ofb128 "sm6-ofb" +#define NID_sm6_ofb128 1166 +#define OBJ_sm6_ofb128 OBJ_sm_scheme,101L,3L + +#define SN_sm6_cfb128 "SM6-CFB" +#define LN_sm6_cfb128 "sm6-cfb" +#define NID_sm6_cfb128 1167 +#define OBJ_sm6_cfb128 OBJ_sm_scheme,101L,4L + #define OBJ_sm7 OBJ_sm_scheme,105L #define OBJ_sm8 OBJ_sm_scheme,106L -#define SN_sm5 "SM5" -#define LN_sm5 "sm5" -#define NID_sm5 1115 -#define OBJ_sm5 OBJ_sm_scheme,201L - -#define SN_sm2p256v1 "sm2p256v1" -#define NID_sm2p256v1 1116 -#define OBJ_sm2p256v1 OBJ_sm_scheme,301L - -#define SN_sm2sign "sm2sign" -#define NID_sm2sign 1117 -#define OBJ_sm2sign OBJ_sm_scheme,301L,1L - -#define SN_sm2exchange "sm2exchange" -#define NID_sm2exchange 1149 -#define OBJ_sm2exchange OBJ_sm_scheme,301L,2L - -#define SN_sm2encrypt "sm2encrypt" -#define NID_sm2encrypt 1119 -#define OBJ_sm2encrypt OBJ_sm_scheme,301L,3L - -#define SN_sm2encrypt_recommendedParameters "sm2encrypt-recommendedParameters" -#define NID_sm2encrypt_recommendedParameters 1120 -#define OBJ_sm2encrypt_recommendedParameters OBJ_sm2encrypt,1L - -#define SN_sm2encrypt_specifiedParameters "sm2encrypt-specifiedParameters" -#define NID_sm2encrypt_specifiedParameters 1121 -#define OBJ_sm2encrypt_specifiedParameters OBJ_sm2encrypt,2L - -#define SN_sm2encrypt_with_sm3 "sm2encrypt-with-sm3" -#define NID_sm2encrypt_with_sm3 1155 -#define OBJ_sm2encrypt_with_sm3 OBJ_sm2encrypt,2L,1L - -#define SN_sm2encrypt_with_sha1 "sm2encrypt-with-sha1" -#define NID_sm2encrypt_with_sha1 1156 -#define OBJ_sm2encrypt_with_sha1 OBJ_sm2encrypt,2L,2L - -#define SN_sm2encrypt_with_sha224 "sm2encrypt-with-sha224" -#define NID_sm2encrypt_with_sha224 1157 -#define OBJ_sm2encrypt_with_sha224 OBJ_sm2encrypt,2L,3L - -#define SN_sm2encrypt_with_sha256 "sm2encrypt-with-sha256" -#define NID_sm2encrypt_with_sha256 1158 -#define OBJ_sm2encrypt_with_sha256 OBJ_sm2encrypt,2L,4L - -#define SN_sm2encrypt_with_sha384 "sm2encrypt-with-sha384" -#define NID_sm2encrypt_with_sha384 1159 -#define OBJ_sm2encrypt_with_sha384 OBJ_sm2encrypt,2L,5L - -#define SN_sm2encrypt_with_sha512 "sm2encrypt-with-sha512" -#define NID_sm2encrypt_with_sha512 1160 -#define OBJ_sm2encrypt_with_sha512 OBJ_sm2encrypt,2L,6L - -#define SN_sm2encrypt_with_rmd160 "sm2encrypt-with-rmd160" -#define NID_sm2encrypt_with_rmd160 1161 -#define OBJ_sm2encrypt_with_rmd160 OBJ_sm2encrypt,2L,7L - -#define SN_sm2encrypt_with_whirlpool "sm2encrypt-with-whirlpool" -#define NID_sm2encrypt_with_whirlpool 1162 -#define OBJ_sm2encrypt_with_whirlpool OBJ_sm2encrypt,2L,8L - -#define SN_sm2encrypt_with_blake2b512 "sm2encrypt-with-blake2b512" -#define NID_sm2encrypt_with_blake2b512 1163 -#define OBJ_sm2encrypt_with_blake2b512 OBJ_sm2encrypt,2L,9L - -#define SN_sm2encrypt_with_blake2s256 "sm2encrypt-with-blake2s256" -#define NID_sm2encrypt_with_blake2s256 1164 -#define OBJ_sm2encrypt_with_blake2s256 OBJ_sm2encrypt,2L,10L - -#define SN_sm2encrypt_with_md5 "sm2encrypt-with-md5" -#define NID_sm2encrypt_with_md5 1165 -#define OBJ_sm2encrypt_with_md5 OBJ_sm2encrypt,2L,11L - #define SN_id_sm9PublicKey "id-sm9PublicKey" -#define NID_id_sm9PublicKey 1122 +#define NID_id_sm9PublicKey 1168 #define OBJ_id_sm9PublicKey OBJ_sm_scheme,302L #define SN_sm9sign "sm9sign" -#define NID_sm9sign 1123 +#define NID_sm9sign 1169 #define OBJ_sm9sign OBJ_sm_scheme,302L,1L -#define SN_sm9sign_with_sm3 "sm9sign-with-sm3" -#define NID_sm9sign_with_sm3 1204 -#define OBJ_sm9sign_with_sm3 OBJ_sm9sign,1L - -#define SN_sm9sign_with_sha256 "sm9sign-with-sha256" -#define NID_sm9sign_with_sha256 1205 -#define OBJ_sm9sign_with_sha256 OBJ_sm9sign,2L - #define SN_sm9keyagreement "sm9keyagreement" -#define NID_sm9keyagreement 1124 +#define NID_sm9keyagreement 1170 #define OBJ_sm9keyagreement OBJ_sm_scheme,302L,2L #define SN_sm9encrypt "sm9encrypt" -#define NID_sm9encrypt 1125 +#define NID_sm9encrypt 1171 #define OBJ_sm9encrypt OBJ_sm_scheme,302L,3L -#define SN_sm9encrypt_with_sm3_xor "sm9encrypt-with-sm3-xor" -#define NID_sm9encrypt_with_sm3_xor 1206 -#define OBJ_sm9encrypt_with_sm3_xor OBJ_sm9encrypt,1L - -#define SN_sm9encrypt_with_sm3_sms4_cbc "sm9encrypt-with-sm3-sms4-cbc" -#define NID_sm9encrypt_with_sm3_sms4_cbc 1207 -#define OBJ_sm9encrypt_with_sm3_sms4_cbc OBJ_sm9encrypt,2L - -#define SN_sm9encrypt_with_sm3_sms4_ctr "sm9encrypt-with-sm3-sms4-ctr" -#define NID_sm9encrypt_with_sm3_sms4_ctr 1208 -#define OBJ_sm9encrypt_with_sm3_sms4_ctr OBJ_sm9encrypt,3L - #define SN_sm9hash1 "sm9hash1" -#define NID_sm9hash1 1201 +#define NID_sm9hash1 1172 #define OBJ_sm9hash1 OBJ_sm_scheme,302L,4L #define SN_sm9kdf "sm9kdf" -#define NID_sm9kdf 1209 +#define NID_sm9kdf 1173 #define OBJ_sm9kdf OBJ_sm_scheme,302L,5L +#define SN_id_sm9MasterSecret "id-sm9MasterSecret" +#define NID_id_sm9MasterSecret 1174 +#define OBJ_id_sm9MasterSecret OBJ_sm_scheme,302L,6L + +#define SN_sm9bn256v1 "sm9bn256v1" +#define NID_sm9bn256v1 1175 +#define OBJ_sm9bn256v1 OBJ_sm_scheme,302L,6L,1L + +#define SN_sm9sign_with_sm3 "sm9sign-with-sm3" +#define NID_sm9sign_with_sm3 1176 +#define OBJ_sm9sign_with_sm3 OBJ_sm9sign,1L + +#define SN_sm9sign_with_sha256 "sm9sign-with-sha256" +#define NID_sm9sign_with_sha256 1177 +#define OBJ_sm9sign_with_sha256 OBJ_sm9sign,2L + +#define SN_sm9encrypt_with_sm3_xor "sm9encrypt-with-sm3-xor" +#define NID_sm9encrypt_with_sm3_xor 1178 +#define OBJ_sm9encrypt_with_sm3_xor OBJ_sm9encrypt,1L + +#define SN_sm9encrypt_with_sm3_sms4_cbc "sm9encrypt-with-sm3-sms4-cbc" +#define NID_sm9encrypt_with_sm3_sms4_cbc 1179 +#define OBJ_sm9encrypt_with_sm3_sms4_cbc OBJ_sm9encrypt,2L + +#define SN_sm9encrypt_with_sm3_sms4_ctr "sm9encrypt-with-sm3-sms4-ctr" +#define NID_sm9encrypt_with_sm3_sms4_ctr 1180 +#define OBJ_sm9encrypt_with_sm3_sms4_ctr OBJ_sm9encrypt,3L + #define SN_sm9hash1_with_sm3 "sm9hash1-with-sm3" -#define NID_sm9hash1_with_sm3 1202 +#define NID_sm9hash1_with_sm3 1181 #define OBJ_sm9hash1_with_sm3 OBJ_sm9hash1,1L #define SN_sm9hash1_with_sha256 "sm9hash1-with-sha256" -#define NID_sm9hash1_with_sha256 1203 +#define NID_sm9hash1_with_sha256 1182 #define OBJ_sm9hash1_with_sha256 OBJ_sm9hash1,2L #define SN_sm9kdf_with_sm3 "sm9kdf-with-sm3" -#define NID_sm9kdf_with_sm3 1210 +#define NID_sm9kdf_with_sm3 1183 #define OBJ_sm9kdf_with_sm3 OBJ_sm9kdf,1L #define SN_sm9kdf_with_sha256 "sm9kdf-with-sha256" -#define NID_sm9kdf_with_sha256 1211 +#define NID_sm9kdf_with_sha256 1184 #define OBJ_sm9kdf_with_sha256 OBJ_sm9kdf,2L -#define SN_sm3 "SM3" -#define LN_sm3 "sm3" -#define NID_sm3 1126 -#define OBJ_sm3 OBJ_sm_scheme,401L - -#define SN_hmac_sm3 "HMAC-SM3" -#define LN_hmac_sm3 "hmac-sm3" -#define NID_hmac_sm3 1127 -#define OBJ_hmac_sm3 OBJ_sm_scheme,401L,2L - -#define SN_sm2sign_with_sm3 "SM2Sign-with-SM3" -#define LN_sm2sign_with_sm3 "sm2sign-with-sm3" -#define NID_sm2sign_with_sm3 1128 -#define OBJ_sm2sign_with_sm3 OBJ_sm_scheme,501L - -#define SN_sm2sign_with_sha1 "SM2Sign-with-SHA1" -#define LN_sm2sign_with_sha1 "sm2sign-with-sha1" -#define NID_sm2sign_with_sha1 1129 -#define OBJ_sm2sign_with_sha1 OBJ_sm_scheme,502L - -#define SN_sm2sign_with_sha256 "SM2Sign-with-SHA256" -#define LN_sm2sign_with_sha256 "sm2sign-with-sha256" -#define NID_sm2sign_with_sha256 1130 -#define OBJ_sm2sign_with_sha256 OBJ_sm_scheme,503L - -#define SN_sm2sign_with_sha512 "SM2Sign-with-SHA511" -#define LN_sm2sign_with_sha512 "sm2sign-with-sha512" -#define NID_sm2sign_with_sha512 1131 -#define OBJ_sm2sign_with_sha512 OBJ_sm_scheme,504L - -#define SN_sm2sign_with_sha224 "SM2Sign-with-SHA224" -#define LN_sm2sign_with_sha224 "sm2sign-with-sha224" -#define NID_sm2sign_with_sha224 1132 -#define OBJ_sm2sign_with_sha224 OBJ_sm_scheme,505L - -#define SN_sm2sign_with_sha384 "SM2Sign-with-SHA384" -#define LN_sm2sign_with_sha384 "sm2sign-with-sha384" -#define NID_sm2sign_with_sha384 1133 -#define OBJ_sm2sign_with_sha384 OBJ_sm_scheme,506L - -#define SN_sm2sign_with_rmd160 "SM2Sign-with-RMD160" -#define LN_sm2sign_with_rmd160 "sm2sign-with-rmd160" -#define NID_sm2sign_with_rmd160 1134 -#define OBJ_sm2sign_with_rmd160 OBJ_sm_scheme,507L - -#define SN_sm2sign_with_whirlpool "SM2Sign-with-Whirlpool" -#define LN_sm2sign_with_whirlpool "sm2sign-with-whirlpool" -#define NID_sm2sign_with_whirlpool 1166 -#define OBJ_sm2sign_with_whirlpool OBJ_sm_scheme,520L - -#define SN_sm2sign_with_blake2b512 "SM2Sign-with-Blake2b512" -#define LN_sm2sign_with_blake2b512 "sm2sign-with-blake2b512" -#define NID_sm2sign_with_blake2b512 1167 -#define OBJ_sm2sign_with_blake2b512 OBJ_sm_scheme,521L - -#define SN_sm2sign_with_blake2s256 "SM2Sign-with-Blake2s256" -#define LN_sm2sign_with_blake2s256 "sm2sign-with-blake2s256" -#define NID_sm2sign_with_blake2s256 1168 -#define OBJ_sm2sign_with_blake2s256 OBJ_sm_scheme,522L - #define SN_zuc "ZUC" #define LN_zuc "zuc" -#define NID_zuc 1136 +#define NID_zuc 1185 #define OBJ_zuc OBJ_sm_scheme,800L #define SN_zuc_128eea3 "zuc-128eea3" -#define NID_zuc_128eea3 1193 +#define NID_zuc_128eea3 1186 #define OBJ_zuc_128eea3 OBJ_zuc,1L #define SN_zuc_128eia3 "zuc-128eia3" -#define NID_zuc_128eia3 1194 +#define NID_zuc_128eia3 1187 #define OBJ_zuc_128eia3 OBJ_zuc,2L -#define OBJ_ibcs1 OBJ_ISO_US,1L,114334L,1L +#define SN_bwips "bwips" +#define NID_bwips 1188 +#define OBJ_bwips OBJ_ISO_CN,11235L -#define SN_bfibe "bfibe" -#define NID_bfibe 1137 -#define OBJ_bfibe OBJ_ibcs1,2L,1L +#define SN_wapi_crypto "wapi-crypto" +#define NID_wapi_crypto 1189 +#define OBJ_wapi_crypto OBJ_bwips,1L -#define SN_bb1 "bb1" -#define NID_bb1 1138 -#define OBJ_bb1 OBJ_ibcs1,2L,2L +#define SN_wapi_ec "wapi-ec" +#define NID_wapi_ec 1190 +#define OBJ_wapi_ec OBJ_wapi_crypto,1L -#define SN_type1curve "type1curve" -#define NID_type1curve 1139 -#define OBJ_type1curve OBJ_ibcs1,1L,1L +#define SN_wapi_ecdsa192_sha256 "wapi-ecdsa192-sha256" +#define NID_wapi_ecdsa192_sha256 1191 +#define OBJ_wapi_ecdsa192_sha256 OBJ_wapi_ec,1L -#define SN_type2curve "type2curve" -#define NID_type2curve 1140 -#define OBJ_type2curve OBJ_ibcs1,1L,2L +#define SN_wapip192v1 "wapip192v1" +#define NID_wapip192v1 1192 +#define OBJ_wapip192v1 OBJ_wapi_ec,2L,1L -#define SN_type3curve "type3curve" -#define NID_type3curve 1141 -#define OBJ_type3curve OBJ_ibcs1,1L,3L +#define SN_kx_sm2 "KxSM2" +#define LN_kx_sm2 "kx-sm2" +#define NID_kx_sm2 1193 -#define SN_type4curve "type4curve" -#define NID_type4curve 1142 -#define OBJ_type4curve OBJ_ibcs1,1L,4L +#define SN_kx_sm2dhe "KxSM2DHE" +#define LN_kx_sm2dhe "kx-sm2dhe" +#define NID_kx_sm2dhe 1194 -#define SN_tate_pairing "tate-pairing" -#define NID_tate_pairing 1143 -#define OBJ_tate_pairing OBJ_ibcs1,3L,1L +#define SN_kx_sm2_psk "KxSM2-PSK" +#define LN_kx_sm2_psk "kx-sm2-psk" +#define NID_kx_sm2_psk 1195 -#define SN_weil_pairing "weil-pairing" -#define NID_weil_pairing 1144 -#define OBJ_weil_pairing OBJ_ibcs1,3L,2L +#define SN_kx_sm9 "KxSM9" +#define LN_kx_sm9 "kx-sm9" +#define NID_kx_sm9 1196 -#define SN_ate_pairing "ate-pairing" -#define NID_ate_pairing 1145 -#define OBJ_ate_pairing OBJ_ibcs1,3L,3L +#define SN_kx_sm9dhe "KxSM9DHE" +#define LN_kx_sm9dhe "kx-sm9dhe" +#define NID_kx_sm9dhe 1197 -#define SN_r_ate_pairing "r-ate-pairing" -#define NID_r_ate_pairing 1146 -#define OBJ_r_ate_pairing OBJ_ibcs1,3L,4L +#define SN_auth_sm2 "AuthSM2" +#define LN_auth_sm2 "auth-sm2" +#define NID_auth_sm2 1198 + +#define SN_auth_sm9 "AuthSM9" +#define LN_auth_sm9 "auth-sm9" +#define NID_auth_sm9 1199 #define SN_GmSSL "gmssl" #define LN_GmSSL "GmSSL" -#define NID_GmSSL 1150 +#define NID_GmSSL 1200 #define OBJ_GmSSL OBJ_Enterprises,49549L #define SN_cpk "CPK" #define LN_cpk "cpk" -#define NID_cpk 1147 +#define NID_cpk 1201 #define OBJ_cpk OBJ_GmSSL,1L #define SN_cpk_map "cpk-map" -#define NID_cpk_map 1151 +#define NID_cpk_map 1202 #define OBJ_cpk_map OBJ_cpk,1L #define SN_cpk_map_sha1 "cpk-map-sha1" -#define NID_cpk_map_sha1 1218 +#define NID_cpk_map_sha1 1203 #define OBJ_cpk_map_sha1 OBJ_cpk_map,1L #define SN_cpk_map_sha256 "cpk-map-sha256" -#define NID_cpk_map_sha256 1219 +#define NID_cpk_map_sha256 1204 #define OBJ_cpk_map_sha256 OBJ_cpk_map,2L #define SN_cpk_map_sm3 "cpk-map-sm3" -#define NID_cpk_map_sm3 1220 +#define NID_cpk_map_sm3 1205 #define OBJ_cpk_map_sm3 OBJ_cpk_map,3L #define SN_cpk_map_sha384 "cpk-map-sha384" -#define NID_cpk_map_sha384 1221 +#define NID_cpk_map_sha384 1206 #define OBJ_cpk_map_sha384 OBJ_cpk_map,4L #define SN_cpk_map_sha512 "cpk-map-sha512" -#define NID_cpk_map_sha512 1222 +#define NID_cpk_map_sha512 1207 #define OBJ_cpk_map_sha512 OBJ_cpk_map,5L #define SN_paillier "paillier" -#define NID_paillier 1148 +#define NID_paillier 1208 #define OBJ_paillier OBJ_GmSSL,21L - -#define SN_bwips "bwips" -#define NID_bwips 1196 -#define OBJ_bwips OBJ_ISO_CN,11235L - -#define SN_wapi_crypto "wapi-crypto" -#define NID_wapi_crypto 1197 -#define OBJ_wapi_crypto OBJ_bwips,1L - -#define SN_wapi_ec "wapi-ec" -#define NID_wapi_ec 1198 -#define OBJ_wapi_ec OBJ_wapi_crypto,1L - -#define SN_wapi_ecdsa192_sha256 "wapi-ecdsa192-sha256" -#define NID_wapi_ecdsa192_sha256 1199 -#define OBJ_wapi_ecdsa192_sha256 OBJ_wapi_ec,1L - -#define SN_wapip192v1 "wapip192v1" -#define NID_wapip192v1 1135 -#define OBJ_wapip192v1 OBJ_wapi_ec,2L,1L - -#define SN_sm9bn256v1 "sm9bn256v1" -#define NID_sm9bn256v1 1200 -#define OBJ_sm9bn256v1 OBJ_GmSSL,9L,1L diff --git a/include/openssl/opensslv.h b/include/openssl/opensslv.h index fb621515..69f113ad 100644 --- a/include/openssl/opensslv.h +++ b/include/openssl/opensslv.h @@ -41,9 +41,9 @@ extern "C" { */ # define OPENSSL_VERSION_NUMBER 0x1010004fL # ifdef OPENSSL_FIPS -# define OPENSSL_VERSION_TEXT "GmSSL 2.4.0 - OpenSSL 1.1.0d-fips 13 Oct 2018" +# define OPENSSL_VERSION_TEXT "GmSSL 2.4.1 - OpenSSL 1.1.0d-fips 16 Nov 2018" # else -# define OPENSSL_VERSION_TEXT "GmSSL 2.4.0 - OpenSSL 1.1.0d 13 Oct 2018" +# define OPENSSL_VERSION_TEXT "GmSSL 2.4.1 - OpenSSL 1.1.0d 16 Nov 2018" # endif /*- diff --git a/include/openssl/paillier.h b/include/openssl/paillier.h index b423c43b..6c63a33f 100644 --- a/include/openssl/paillier.h +++ b/include/openssl/paillier.h @@ -69,6 +69,9 @@ typedef struct paillier_st PAILLIER; PAILLIER *PAILLIER_new(void); void PAILLIER_free(PAILLIER *key); +int PAILLIER_size(const PAILLIER *key); +int PAILLIER_security_bits(const PAILLIER *key); + int PAILLIER_generate_key(PAILLIER *key, int bits); int PAILLIER_check_key(PAILLIER *key); int PAILLIER_encrypt(BIGNUM *out, const BIGNUM *in, PAILLIER *key); @@ -92,6 +95,7 @@ int ERR_load_PAILLIER_strings(void); /* Error codes for the PAILLIER functions. */ /* Function codes. */ +# define PAILLIER_F_OLD_PAILLIER_PRIV_DECODE 110 # define PAILLIER_F_PAILLIER_CHECK_KEY 100 # define PAILLIER_F_PAILLIER_CIPHERTEXT_ADD 101 # define PAILLIER_F_PAILLIER_CIPHERTEXT_SCALAR_MUL 102 @@ -99,12 +103,15 @@ int ERR_load_PAILLIER_strings(void); # define PAILLIER_F_PAILLIER_ENCRYPT 104 # define PAILLIER_F_PAILLIER_GENERATE_KEY 105 # define PAILLIER_F_PAILLIER_NEW 106 +# define PAILLIER_F_PAILLIER_PRIV_DECODE 111 +# define PAILLIER_F_PAILLIER_PRIV_ENCODE 112 # define PAILLIER_F_PAILLIER_PUB_DECODE 107 # define PAILLIER_F_PKEY_PAILLIER_DECRYPT 108 # define PAILLIER_F_PKEY_PAILLIER_ENCRYPT 109 /* Reason codes. */ # define PAILLIER_R_BUFFER_TOO_SMALL 104 +# define PAILLIER_R_DECODE_ERROR 105 # define PAILLIER_R_GENERATE_PRIME_FAILED 100 # define PAILLIER_R_INVALID_PLAINTEXT 101 # define PAILLIER_R_MALLOC_FAILED 102 diff --git a/include/openssl/pem.h b/include/openssl/pem.h index 2375d635..c5a869df 100644 --- a/include/openssl/pem.h +++ b/include/openssl/pem.h @@ -49,6 +49,23 @@ extern "C" { # define PEM_STRING_PARAMETERS "PARAMETERS" # define PEM_STRING_CMS "CMS" +# define PEM_STRING_PAILLIER "PAILLIER PRIVATE KEY" +# define PEM_STRING_PAILLIER_PUBLIC "PAILLIER PUBLIC KEY" +# define PEM_STRING_CPK_MASTER "CPK MASTER PRIVATE KEY" +# define PEM_STRING_CPK_MASTER_PUBLIC "CPK MASTER PUBLIC KEY" +# define PEM_STRING_SM9_MASTER "SM9 MASTER PRIVATE KEY" +# define PEM_STRING_SM9_MASTER_PUBLIC "SM9 MASTER PUBLIC KEY" +# define PEM_STRING_SM9 "SM9 PRIVATE KEY" +# define PEM_STRING_SM9_PUBLIC "SM9 PUBLIC KEY" +# define PEM_STRING_BFIBE_MASTER "BFIBE MASTER PRIVATE KEY" +# define PEM_STRING_BFIBE_MASTER_PUBLIC "BFIBE MASTER PUBLIC KEY" +# define PEM_STRING_BFIBE "BFIBE PRIVATE KEY" +# define PEM_STRING_BFIBE_PUBLIC "BFIBE PUBLIC KEY" +# define PEM_STRING_BB1IBE_MASTER "BB1IBE MASTER PRIVATE KEY" +# define PEM_STRING_BB1IBE_MASTER_PUBLIC "BB1IBE MASTER PUBLIC KEY" +# define PEM_STRING_BB1IBE "BB1IBE PRIVATE KEY" +# define PEM_STRING_BB1IBE_PUBLIC "BB1IBE PUBLIC KEY" + # define PEM_TYPE_ENCRYPTED 10 # define PEM_TYPE_MIC_ONLY 20 # define PEM_TYPE_MIC_CLEAR 30 @@ -356,6 +373,25 @@ DECLARE_PEM_rw(EC_PUBKEY, EC_KEY) DECLARE_PEM_rw_const(DHparams, DH) DECLARE_PEM_write_const(DHxparams, DH) # endif +# ifndef OPENSSL_NO_PAILLIER +DECLARE_PEM_rw_cb(PaillierPrivateKey, PAILLIER) +DECLARE_PEM_rw_const(PaillierPublicKey, PAILLIER) +DECLARE_PEM_rw(PAILLIER_PUBKEY, PAILLIER) +# endif +# ifndef OPENSSL_NO_CPK +# endif +# ifndef OPENSSL_NO_SM9 +DECLARE_PEM_rw_cb(SM9MasterSecret, SM9_MASTER_KEY) +DECLARE_PEM_rw_const(SM9PublicParameters, SM9_MASTER_KEY) +DECLARE_PEM_rw(SM9_MASTER_PUBKEY, SM9_MASTER_KEY) +DECLARE_PEM_rw_cb(SM9PrivateKey, SM9_KEY) +DECLARE_PEM_rw_const(SM9PublicKey, SM9_KEY) +DECLARE_PEM_rw(SM9_PUBKEY, SM9_KEY) +# endif +# ifndef OPENSSL_NO_BFIBE +# endif +# ifndef OPENSSL_NO_BB1IBE +# endif DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY) DECLARE_PEM_rw(PUBKEY, EVP_PKEY) diff --git a/include/openssl/sm9.h b/include/openssl/sm9.h index e07fe1a8..8197803c 100644 --- a/include/openssl/sm9.h +++ b/include/openssl/sm9.h @@ -67,13 +67,20 @@ extern "C" { #endif -typedef struct SM9MasterSecret_st SM9MasterSecret; -typedef struct SM9PublicParameters_st SM9PublicParameters; -typedef struct SM9PrivateKey_st SM9PrivateKey; -typedef struct SM9PublicKey_st SM9PublicKey; +typedef struct SM9_MASTER_KEY_st SM9_MASTER_KEY; +typedef struct SM9_KEY_st SM9_KEY; typedef struct SM9Signature_st SM9Signature; typedef struct SM9Ciphertext_st SM9Ciphertext; +typedef SM9_MASTER_KEY SM9MasterSecret; +typedef SM9_MASTER_KEY SM9PublicParameters; +typedef SM9_KEY SM9PrivateKey; +typedef SM9_KEY SM9PublicKey; + +SM9_MASTER_KEY *SM9_MASTER_KEY_new(void); +void SM9_MASTER_KEY_free(SM9_MASTER_KEY *a); +SM9_KEY *SM9_KEY_new(void); +void SM9_KEY_free(SM9_KEY *a); int SM9_setup(int pairing, /* NID_sm9bn256v1 */ int scheme, /* NID_[sm9sign | sm9encrypt | sm9keyagreement] */ @@ -81,13 +88,11 @@ int SM9_setup(int pairing, /* NID_sm9bn256v1 */ SM9PublicParameters **mpk, SM9MasterSecret **msk); -SM9PrivateKey *SM9_extract_private_key(SM9MasterSecret *msk, - const char *id, size_t idlen); SM9MasterSecret *SM9_generate_master_secret(int pairing, int scheme, int hash1); - SM9PublicParameters *SM9_extract_public_parameters(SM9MasterSecret *msk); - +SM9PrivateKey *SM9_extract_private_key(SM9MasterSecret *msk, + const char *id, size_t idlen); SM9PublicKey *SM9_extract_public_key(SM9PublicParameters *mpk, const char *id, size_t idlen); @@ -169,25 +174,42 @@ int SM9_compute_share_key_B(int type, #ifndef OPENSSL_NO_STDIO -SM9MasterSecret *d2i_SM9MasterSecret_fp(FILE *fp, SM9MasterSecret **msk); -SM9PublicParameters *d2i_SM9PublicParameters_fp(FILE *fp, SM9PublicParameters **mpk); -SM9PrivateKey *d2i_SM9PrivateKey_fp(FILE *fp, SM9PrivateKey **sk); -SM9Signature *d2i_SM9Signature_fp(FILE *fp, SM9Signature **sk); -SM9Ciphertext *d2i_SM9Ciphertext_fp(FILE *fp, SM9Ciphertext **sk); -int i2d_SM9MasterSecret_fp(FILE *fp, SM9MasterSecret *msk); -int i2d_SM9PublicParameters_fp(FILE *fp, SM9PublicParameters *mpk); -int i2d_SM9PrivateKey_fp(FILE *fp, SM9PrivateKey *sk); -int i2d_SM9Signature_fp(FILE *fp, SM9Signature *sk); -int i2d_SM9Ciphertext_fp(FILE *fp, SM9Ciphertext *sk); + +SM9MasterSecret *d2i_SM9MasterSecret_fp(FILE *fp, SM9MasterSecret **pp); +SM9PublicParameters *d2i_SM9PublicParameters_fp(FILE *fp, SM9PublicParameters **pp); +SM9PrivateKey *d2i_SM9PrivateKey_fp(FILE *fp, SM9PrivateKey **pp); +SM9PublicKey *d2i_SM9PublicKey_fp(FILE *fp, SM9PublicKey **pp); +SM9Signature *d2i_SM9Signature_fp(FILE *fp, SM9Signature **pp); +SM9Ciphertext *d2i_SM9Ciphertext_fp(FILE *fp, SM9Ciphertext **pp); + +int i2d_SM9MasterSecret_fp(FILE *fp, SM9MasterSecret *a); +int i2d_PublicParameters_fp(FILE *fp, SM9PublicParameters *a); +int i2d_SM9PrivateKey_fp(FILE *fp, SM9PrivateKey *a); +int i2d_SM9PublicKey_fp(FILE *fp, SM9PublicKey *a); +int i2d_SM9Signature_fp(FILE *fp, SM9Signature *a); +int i2d_SM9Ciphertext_fp(FILE *fp, SM9Ciphertext *a); #endif -DECLARE_ASN1_FUNCTIONS(SM9MasterSecret) -DECLARE_ASN1_FUNCTIONS(SM9PublicParameters) -DECLARE_ASN1_FUNCTIONS(SM9PrivateKey) -DECLARE_ASN1_FUNCTIONS(SM9PublicKey) +int SM9_MASTER_KEY_up_ref(SM9_MASTER_KEY *msk); +int SM9_KEY_up_ref(SM9_KEY *sk); + +DECLARE_ASN1_ENCODE_FUNCTIONS_const(SM9_MASTER_KEY,SM9MasterSecret) +DECLARE_ASN1_ENCODE_FUNCTIONS_const(SM9_MASTER_KEY,SM9PublicParameters) +DECLARE_ASN1_ENCODE_FUNCTIONS_const(SM9_KEY,SM9PrivateKey) +DECLARE_ASN1_ENCODE_FUNCTIONS_const(SM9_KEY,SM9PublicKey) DECLARE_ASN1_FUNCTIONS(SM9Signature) DECLARE_ASN1_FUNCTIONS(SM9Ciphertext) +#define SM9MasterSecret_new() SM9_MASTER_KEY_new() +#define SM9MasterSecret_free(a) SM9_MASTER_KEY_free(a) +#define SM9PublicParameters_new() SM9_MASTER_KEY_new() +#define SM9PublicParameters_free(a) SM9_MASTER_KEY_free(a) +#define SM9PrivateKey_new() SM9_KEY_new() +#define SM9PrivateKey_free(a) SM9_KEY_free(a) +#define SM9PublicKey_new() SM9_KEY_new() +#define SM9PublicKey_free(a) SM9_KEY_free(a) + + /* BEGIN ERROR CODES */ /* @@ -200,6 +222,8 @@ int ERR_load_SM9_strings(void); /* Error codes for the SM9 functions. */ /* Function codes. */ +# define SM9_F_OLD_SM9_MASTER_DECODE 124 +# define SM9_F_OLD_SM9_PRIV_DECODE 125 # define SM9_F_SM9CIPHERTEXT_CHECK 100 # define SM9_F_SM9ENCPARAMETERS_DECRYPT 101 # define SM9_F_SM9ENCPARAMETERS_ENCRYPT 102 @@ -216,6 +240,15 @@ int ERR_load_SM9_strings(void); # define SM9_F_SM9_EXTRACT_PUBLIC_PARAMETERS 111 # define SM9_F_SM9_GENERATE_KEY_EXCHANGE 121 # define SM9_F_SM9_GENERATE_MASTER_SECRET 112 +# define SM9_F_SM9_KEY_NEW 132 +# define SM9_F_SM9_MASTER_DECODE 126 +# define SM9_F_SM9_MASTER_ENCODE 127 +# define SM9_F_SM9_MASTER_KEY_EXTRACT_KEY 134 +# define SM9_F_SM9_MASTER_KEY_NEW 133 +# define SM9_F_SM9_PARAMS_DECODE 128 +# define SM9_F_SM9_PRIV_DECODE 129 +# define SM9_F_SM9_PRIV_ENCODE 130 +# define SM9_F_SM9_PUB_DECODE 131 # define SM9_F_SM9_SIGN 119 # define SM9_F_SM9_SIGNFINAL 115 # define SM9_F_SM9_SIGNINIT 116 @@ -227,6 +260,7 @@ int ERR_load_SM9_strings(void); /* Reason codes. */ # define SM9_R_BUFFER_TOO_SMALL 100 +# define SM9_R_DECODE_ERROR 132 # define SM9_R_DIGEST_FAILURE 119 # define SM9_R_EC_LIB 101 # define SM9_R_EXTENSION_FIELD_ERROR 120 @@ -253,6 +287,7 @@ int ERR_load_SM9_strings(void); # define SM9_R_INVALID_SIGNATURE_FORMAT 127 # define SM9_R_INVALID_TYPE1CURVE 115 # define SM9_R_KDF_FAILURE 116 +# define SM9_R_NO_MASTER_SECRET 133 # define SM9_R_PAIRING_ERROR 124 # define SM9_R_RATE_PAIRING_ERROR 129 # define SM9_R_TWIST_CURVE_ERROR 117 diff --git a/include/openssl/x509.h b/include/openssl/x509.h index 8cea54bd..6a9a81ed 100644 --- a/include/openssl/x509.h +++ b/include/openssl/x509.h @@ -30,6 +30,9 @@ # ifndef OPENSSL_NO_PAILLIER # include # endif +# ifndef OPENSSL_NO_SM9 +# include +# endif # if OPENSSL_API_COMPAT < 0x10100000L # ifndef OPENSSL_NO_RSA @@ -549,6 +552,12 @@ EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, long length); int i2d_PAILLIER_PUBKEY(PAILLIER *a, unsigned char **pp); PAILLIER *d2i_PAILLIER_PUBKEY(PAILLIER **a, const unsigned char **pp, long length); # endif +# ifndef OPENSSL_NO_SM9 +int i2d_SM9_MASTER_PUBKEY(SM9_MASTER_KEY *a, unsigned char **pp); +SM9_MASTER_KEY *d2i_SM9_MASTER_PUBKEY(SM9_MASTER_KEY **a, const unsigned char **pp, long length); +int i2d_SM9_PUBKEY(SM9_KEY *a, unsigned char **pp); +SM9_KEY *d2i_SM9_PUBKEY(SM9_KEY **a, const unsigned char **pp, long length); +# endif DECLARE_ASN1_FUNCTIONS(X509_SIG) diff --git a/util/libcrypto.num b/util/libcrypto.num index 08c02ddd..bb667a02 100644 --- a/util/libcrypto.num +++ b/util/libcrypto.num @@ -1,4942 +1,4990 @@ -BB1PrivateKeyBlock_it 1 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1PrivateKeyBlock_it 1 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -SAF_EccVerifySignByCert 2 1_1_0d EXIST::FUNCTION: -DH_generate_key 3 1_1_0d EXIST::FUNCTION:DH -X509V3_EXT_get_nid 4 1_1_0d EXIST::FUNCTION: -d2i_AUTHORITY_KEYID 5 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_version 6 1_1_0d EXIST::FUNCTION:TS -PKCS12_SAFEBAG_it 7 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_SAFEBAG_it 7 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_OCSP_ONEREQ 8 1_1_0d EXIST::FUNCTION:OCSP -PEM_read_EC_PUBKEY 9 1_1_0d EXIST::FUNCTION:EC,STDIO -ECDSA_SIG_get_ECCSIGNATUREBLOB 10 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -OCSP_REQUEST_it 11 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_REQUEST_it 11 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -PKCS7_to_TS_TST_INFO 12 1_1_0d EXIST::FUNCTION:TS -PKCS7_set_content 13 1_1_0d EXIST::FUNCTION: -d2i_ACCESS_DESCRIPTION 14 1_1_0d EXIST::FUNCTION: -CMS_unsigned_add1_attr_by_NID 15 1_1_0d EXIST::FUNCTION:CMS -CRYPTO_THREAD_lock_new 16 1_1_0d EXIST::FUNCTION: -i2v_GENERAL_NAME 17 1_1_0d EXIST::FUNCTION: -CMS_signed_add1_attr_by_NID 18 1_1_0d EXIST::FUNCTION:CMS -PKCS7_dataInit 19 1_1_0d EXIST::FUNCTION: -DH_get_ex_data 20 1_1_0d EXIST::FUNCTION:DH -s2i_ASN1_INTEGER 21 1_1_0d EXIST::FUNCTION: -i2d_ECCSIGNATUREBLOB_bio 22 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -X509_STORE_CTX_get_explicit_policy 23 1_1_0d EXIST::FUNCTION: -X509_up_ref 24 1_1_0d EXIST::FUNCTION: -PKCS7_add_recipient_info 25 1_1_0d EXIST::FUNCTION: -EVP_PKEY_assign 26 1_1_0d EXIST::FUNCTION: -ERR_load_DH_strings 27 1_1_0d EXIST::FUNCTION:DH -BIO_nread0 28 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_dup 29 1_1_0d EXIST::FUNCTION: -DH_meth_set0_app_data 30 1_1_0d EXIST::FUNCTION:DH -ENGINE_set_default_DH 31 1_1_0d EXIST::FUNCTION:ENGINE -SKF_DigestInit 32 1_1_0d EXIST::FUNCTION:SKF -PEM_read_PUBKEY 33 1_1_0d EXIST::FUNCTION:STDIO -DH_security_bits 34 1_1_0d EXIST::FUNCTION:DH -SM9Ciphertext_it 35 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9Ciphertext_it 35 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -RSA_OAEP_PARAMS_it 36 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSA_OAEP_PARAMS_it 36 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -ASN1_STRING_TABLE_cleanup 37 1_1_0d EXIST::FUNCTION: -d2i_PKCS12_MAC_DATA 38 1_1_0d EXIST::FUNCTION: -ERR_set_mark 39 1_1_0d EXIST::FUNCTION: -X509_STORE_set_cleanup 40 1_1_0d EXIST::FUNCTION: -SKF_Encrypt 41 1_1_0d EXIST::FUNCTION:SKF -TXT_DB_read 42 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE 43 1_1_0d EXIST::FUNCTION:CT -SAF_Finalize 44 1_1_0d EXIST::FUNCTION: -X509_STORE_up_ref 45 1_1_0d EXIST::FUNCTION: -CMS_EncryptedData_decrypt 46 1_1_0d EXIST::FUNCTION:CMS -ASN1_put_object 47 1_1_0d EXIST::FUNCTION: -DSA_meth_get0_app_data 48 1_1_0d EXIST::FUNCTION:DSA -CMS_get0_content 49 1_1_0d EXIST::FUNCTION:CMS -BN_X931_generate_Xpq 50 1_1_0d EXIST::FUNCTION: -ENGINE_register_digests 51 1_1_0d EXIST::FUNCTION:ENGINE -CAST_cbc_encrypt 52 1_1_0d EXIST::FUNCTION:CAST -X509_REVOKED_add_ext 53 1_1_0d EXIST::FUNCTION: -X509_CRL_get_issuer 54 1_1_0d EXIST::FUNCTION: -BIO_s_fd 55 1_1_0d EXIST::FUNCTION: -CMAC_resume 56 1_1_0d EXIST::FUNCTION:CMAC -CRYPTO_new_ex_data 57 1_1_0d EXIST::FUNCTION: -ECPKPARAMETERS_it 58 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC -ECPKPARAMETERS_it 58 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC -SDF_ExportEncPublicKey_RSA 59 1_1_0d EXIST::FUNCTION: -IPAddressRange_new 60 1_1_0d EXIST::FUNCTION:RFC3779 -TS_TST_INFO_get_serial 61 1_1_0d EXIST::FUNCTION:TS -X509_check_trust 62 1_1_0d EXIST::FUNCTION: -CRYPTO_set_ex_data 63 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_copy_ctx 64 1_1_0d EXIST::FUNCTION:OCB -d2i_ECCSIGNATUREBLOB 65 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -CPK_MASTER_SECRET_create 66 1_1_0d EXIST::FUNCTION:CPK -RC4_set_key 67 1_1_0d EXIST::FUNCTION:RC4 -X509at_add1_attr_by_OBJ 68 1_1_0d EXIST::FUNCTION: -b2i_PublicKey 69 1_1_0d EXIST::FUNCTION:DSA -ENGINE_register_all_digests 70 1_1_0d EXIST::FUNCTION:ENGINE -sms4_set_decrypt_key 71 1_1_0d EXIST::FUNCTION:SMS4 -OCSP_response_status_str 72 1_1_0d EXIST::FUNCTION:OCSP -OCSP_REVOKEDINFO_new 73 1_1_0d EXIST::FUNCTION:OCSP -EC_GROUP_get_point_conversion_form 74 1_1_0d EXIST::FUNCTION:EC -SM2CiphertextValue_size 75 1_1_0d EXIST::FUNCTION:SM2 -EVP_PKEY_get_attr_count 76 1_1_0d EXIST::FUNCTION: -X509V3_EXT_i2d 77 1_1_0d EXIST::FUNCTION: -X509_CRL_set_default_method 78 1_1_0d EXIST::FUNCTION: -RSA_get0_factors 79 1_1_0d EXIST::FUNCTION:RSA -EVP_get_digestbysgd 80 1_1_0d EXIST::FUNCTION:GMAPI -CMS_RecipientInfo_kari_get0_orig_id 81 1_1_0d EXIST::FUNCTION:CMS -BIO_ctrl_pending 82 1_1_0d EXIST::FUNCTION: -PKCS7_add_certificate 83 1_1_0d EXIST::FUNCTION: -SXNET_get_id_asc 84 1_1_0d EXIST::FUNCTION: -SDF_GenerateAgreementDataWithECC 85 1_1_0d EXIST::FUNCTION: -X509_new 86 1_1_0d EXIST::FUNCTION: -CRYPTO_num_locks 87 1_1_0d EXIST::FUNCTION: -PKCS5_v2_scrypt_keyivgen 88 1_1_0d EXIST::FUNCTION:SCRYPT -i2o_SM2CiphertextValue 89 1_1_0d EXIST::FUNCTION:SM2 -sm3_hmac_final 90 1_1_0d EXIST::FUNCTION:SM3 -CMS_unsigned_get_attr_by_NID 91 1_1_0d EXIST::FUNCTION:CMS -i2d_ASN1_VISIBLESTRING 92 1_1_0d EXIST::FUNCTION: -RSA_check_key_ex 93 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_get0_DH 94 1_1_0d EXIST::FUNCTION:DH -DSA_get0_pqg 95 1_1_0d EXIST::FUNCTION:DSA -RSA_meth_set_keygen 96 1_1_0d EXIST::FUNCTION:RSA -X509V3_add_value 97 1_1_0d EXIST::FUNCTION: -PKCS7_RECIP_INFO_free 98 1_1_0d EXIST::FUNCTION: -SHA512_Update 99 1_1_0d EXIST:!VMSVAX:FUNCTION: -BFMasterSecret_new 100 1_1_0d EXIST::FUNCTION:BFIBE -OCSP_SERVICELOC_it 101 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_SERVICELOC_it 101 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -CRYPTO_gcm128_aad 102 1_1_0d EXIST::FUNCTION: -SKF_GenECCKeyPair 103 1_1_0d EXIST::FUNCTION:SKF -X509_OBJECT_retrieve_match 104 1_1_0d EXIST::FUNCTION: -IPAddressFamily_it 105 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressFamily_it 105 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -ZUC_generate_keyword 106 1_1_0d EXIST::FUNCTION:ZUC -EVP_cast5_cfb64 107 1_1_0d EXIST::FUNCTION:CAST -ENGINE_finish 108 1_1_0d EXIST::FUNCTION:ENGINE -X509_STORE_CTX_purpose_inherit 109 1_1_0d EXIST::FUNCTION: -SOF_GetLastError 110 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_set_by_key 111 1_1_0d EXIST::FUNCTION:OCSP -d2i_ASN1_ENUMERATED 112 1_1_0d EXIST::FUNCTION: -ASN1_GENERALIZEDTIME_it 113 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_GENERALIZEDTIME_it 113 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_set1_DSA 114 1_1_0d EXIST::FUNCTION:DSA -ENGINE_set_default_pkey_meths 115 1_1_0d EXIST::FUNCTION:ENGINE -EVP_CIPHER_meth_set_set_asn1_params 116 1_1_0d EXIST::FUNCTION: -TXT_DB_get_by_index 117 1_1_0d EXIST::FUNCTION: -SXNET_it 118 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -SXNET_it 118 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509V3_EXT_add_nconf 119 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get0_serialNumber 120 1_1_0d EXIST::FUNCTION: -i2d_X509 121 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_free 122 1_1_0d EXIST::FUNCTION: -i2d_BB1PublicParameters 123 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_DigestUpdate 124 1_1_0d EXIST::FUNCTION: -X509_free 125 1_1_0d EXIST::FUNCTION: -CERTIFICATEPOLICIES_new 126 1_1_0d EXIST::FUNCTION: +d2i_ASN1_TYPE 1 1_1_0d EXIST::FUNCTION: +i2d_BASIC_CONSTRAINTS 2 1_1_0d EXIST::FUNCTION: +PKCS7_DIGEST_free 3 1_1_0d EXIST::FUNCTION: +OBJ_NAME_get 4 1_1_0d EXIST::FUNCTION: +BN_rand_range 5 1_1_0d EXIST::FUNCTION: +X509_issuer_name_cmp 6 1_1_0d EXIST::FUNCTION: +DSO_flags 7 1_1_0d EXIST::FUNCTION: +SCT_new 8 1_1_0d EXIST::FUNCTION:CT +BN_print 9 1_1_0d EXIST::FUNCTION: +d2i_DIST_POINT_NAME 10 1_1_0d EXIST::FUNCTION: +PEM_read_ECPKParameters 11 1_1_0d EXIST::FUNCTION:EC,STDIO +EVP_sha512 12 1_1_0d EXIST:!VMSVAX:FUNCTION: +SDF_InternalSign_ECC 13 1_1_0d EXIST::FUNCTION: +PKCS7_ATTR_VERIFY_it 14 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ATTR_VERIFY_it 14 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ECDSA_do_sign_ex 15 1_1_0d EXIST::FUNCTION:EC +speck_set_encrypt_key32 16 1_1_0d EXIST::FUNCTION:SPECK +X509_CRL_it 17 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CRL_it 17 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_read_bio_RSAPublicKey 18 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_get_verify 19 1_1_0d EXIST::FUNCTION: +DSA_meth_free 20 1_1_0d EXIST::FUNCTION:DSA +CRYPTO_cfb128_8_encrypt 21 1_1_0d EXIST::FUNCTION: +SHA1 22 1_1_0d EXIST::FUNCTION: +X509_CRL_diff 23 1_1_0d EXIST::FUNCTION: +X509_set_version 24 1_1_0d EXIST::FUNCTION: +SM9_extract_public_key 25 1_1_0d EXIST::FUNCTION:SM9 +TS_CONF_load_cert 26 1_1_0d EXIST::FUNCTION:TS +BIO_accept_ex 27 1_1_0d EXIST::FUNCTION:SOCK +EC_KEY_set_ECCPRIVATEKEYBLOB 28 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +SAF_EccVerifySignByCert 29 1_1_0d EXIST::FUNCTION: +BIO_get_shutdown 30 1_1_0d EXIST::FUNCTION: +X509_REQ_get0_signature 31 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_iv_length 32 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set_type_str 33 1_1_0d EXIST::FUNCTION: +TS_ext_print_bio 34 1_1_0d EXIST::FUNCTION:TS +CMS_RecipientInfo_kari_get0_orig_id 35 1_1_0d EXIST::FUNCTION:CMS +a2i_IPADDRESS 36 1_1_0d EXIST::FUNCTION: +sms4_wrap_key 37 1_1_0d EXIST::FUNCTION:SMS4 +EC_GROUP_get_cofactor 38 1_1_0d EXIST::FUNCTION:EC +EVP_des_ede3_wrap 39 1_1_0d EXIST::FUNCTION:DES +EVP_CIPHER_meth_set_cleanup 40 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_set_app_data 41 1_1_0d EXIST::FUNCTION: +BIO_get_data 42 1_1_0d EXIST::FUNCTION: +X509_REQ_to_X509 43 1_1_0d EXIST::FUNCTION: +i2d_OCSP_RESPONSE 44 1_1_0d EXIST::FUNCTION:OCSP +RAND_egd 45 1_1_0d EXIST::FUNCTION:EGD +EVP_Digest 46 1_1_0d EXIST::FUNCTION: +SDF_ExportSignPublicKey_RSA 47 1_1_0d EXIST::FUNCTION: +TS_REQ_get_ext_by_critical 48 1_1_0d EXIST::FUNCTION:TS +X509_NAME_get_index_by_NID 49 1_1_0d EXIST::FUNCTION: +PEM_write 50 1_1_0d EXIST::FUNCTION:STDIO +X509_REVOKED_dup 51 1_1_0d EXIST::FUNCTION: +UI_get_result_minsize 52 1_1_0d EXIST::FUNCTION:UI +EC_POINT_bn2point 53 1_1_0d EXIST::FUNCTION:EC +ASN1_OCTET_STRING_set 54 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_SIGN_ENVELOPE 55 1_1_0d EXIST::FUNCTION: +SAF_Pkcs7_DecodeData 56 1_1_0d EXIST::FUNCTION: +BN_BLINDING_set_current_thread 57 1_1_0d EXIST::FUNCTION: +EVP_rc5_32_12_16_ecb 58 1_1_0d EXIST::FUNCTION:RC5 +DSA_meth_get0_app_data 59 1_1_0d EXIST::FUNCTION:DSA +OCSP_id_issuer_cmp 60 1_1_0d EXIST::FUNCTION:OCSP +BIO_method_name 61 1_1_0d EXIST::FUNCTION: +X509_ALGOR_new 62 1_1_0d EXIST::FUNCTION: +ASN1_TIME_print 63 1_1_0d EXIST::FUNCTION: +BIO_dup_chain 64 1_1_0d EXIST::FUNCTION: +PEM_write_bio_EC_PUBKEY 65 1_1_0d EXIST::FUNCTION:EC +X509_VERIFY_PARAM_set_auth_level 66 1_1_0d EXIST::FUNCTION: +BIO_new_connect 67 1_1_0d EXIST::FUNCTION:SOCK +RSA_padding_add_SSLv23 68 1_1_0d EXIST::FUNCTION:RSA +EC_GROUP_get_point_conversion_form 69 1_1_0d EXIST::FUNCTION:EC +EVP_PKEY_CTX_ctrl_str 70 1_1_0d EXIST::FUNCTION: +BN_usub 71 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_new 72 1_1_0d EXIST::FUNCTION:SM2 +PKCS12_add_friendlyname_utf8 73 1_1_0d EXIST::FUNCTION: +i2t_ASN1_OBJECT 74 1_1_0d EXIST::FUNCTION: +ENGINE_get_cmd_defns 75 1_1_0d EXIST::FUNCTION:ENGINE +BIO_meth_get_puts 76 1_1_0d EXIST::FUNCTION: +DSA_meth_set_mod_exp 77 1_1_0d EXIST::FUNCTION:DSA +SM2_sign_setup 78 1_1_0d EXIST::FUNCTION:SM2 +ASN1_item_ex_free 79 1_1_0d EXIST::FUNCTION: +X509_get_serialNumber 80 1_1_0d EXIST::FUNCTION: +BN_num_bits 81 1_1_0d EXIST::FUNCTION: +SKF_GenerateAgreementDataWithECC 82 1_1_0d EXIST::FUNCTION:SKF +BN_nist_mod_521 83 1_1_0d EXIST::FUNCTION: +SRP_Calc_u 84 1_1_0d EXIST::FUNCTION:SRP +PEM_X509_INFO_write_bio 85 1_1_0d EXIST::FUNCTION: +SM9Ciphertext_free 86 1_1_0d EXIST::FUNCTION:SM9 +SKF_NewECCCipher 87 1_1_0d EXIST::FUNCTION:SKF +ERR_load_CRYPTO_strings 88 1_1_0d EXIST:!VMS:FUNCTION: +ERR_load_CRYPTOlib_strings 88 1_1_0d EXIST:VMS:FUNCTION: +SDF_NewECCCipher 89 1_1_0d EXIST::FUNCTION:SDF +BIO_nwrite 90 1_1_0d EXIST::FUNCTION: +RC5_32_set_key 91 1_1_0d EXIST::FUNCTION:RC5 +i2d_ASN1_TIME 92 1_1_0d EXIST::FUNCTION: +AES_decrypt 93 1_1_0d EXIST::FUNCTION: +CTLOG_STORE_get0_log_by_id 94 1_1_0d EXIST::FUNCTION:CT +X509v3_get_ext_by_OBJ 95 1_1_0d EXIST::FUNCTION: +d2i_TS_STATUS_INFO 96 1_1_0d EXIST::FUNCTION:TS +X509_PUBKEY_get0_param 97 1_1_0d EXIST::FUNCTION: +X509_TRUST_get_by_id 98 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_set1_signer_cert 99 1_1_0d EXIST::FUNCTION:CMS +EVP_CIPHER_impl_ctx_size 100 1_1_0d EXIST::FUNCTION: +SAF_GenRandom 101 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_paramgen 102 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_flags 103 1_1_0d EXIST::FUNCTION: +SAF_Base64_EncodeFinal 104 1_1_0d EXIST::FUNCTION: +BIO_set_data 105 1_1_0d EXIST::FUNCTION: +ASN1_generate_nconf 106 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_get0_issuer 107 1_1_0d EXIST::FUNCTION:CT +TS_REQ_get_ext_count 108 1_1_0d EXIST::FUNCTION:TS +EVP_aes_256_wrap 109 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_add0_table 110 1_1_0d EXIST::FUNCTION: +d2i_OCSP_RESPDATA 111 1_1_0d EXIST::FUNCTION:OCSP +SAF_GenerateAgreementDataAdnKeyWithECC 112 1_1_0d EXIST::FUNCTION: +ASN1_STRING_dup 113 1_1_0d EXIST::FUNCTION: +i2d_ASN1_NULL 114 1_1_0d EXIST::FUNCTION: +d2i_X509_CRL 115 1_1_0d EXIST::FUNCTION: +UI_method_set_closer 116 1_1_0d EXIST::FUNCTION:UI +PKCS5_pbe2_set_scrypt 117 1_1_0d EXIST::FUNCTION:SCRYPT +X509V3_NAME_from_section 118 1_1_0d EXIST::FUNCTION: +PKCS7_SIGN_ENVELOPE_it 119 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_SIGN_ENVELOPE_it 119 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_get0_nist_prime_224 120 1_1_0d EXIST::FUNCTION: +TS_REQ_set_nonce 121 1_1_0d EXIST::FUNCTION:TS +SAF_GetCaCertificate 122 1_1_0d EXIST::FUNCTION: +OBJ_NAME_do_all 123 1_1_0d EXIST::FUNCTION: +ASN1_dup 124 1_1_0d EXIST::FUNCTION: +BIO_new_mem_buf 125 1_1_0d EXIST::FUNCTION: +BN_get0_nist_prime_521 126 1_1_0d EXIST::FUNCTION: DSO_ctrl 127 1_1_0d EXIST::FUNCTION: -SOF_VerifyTimeStamp 128 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_set_ECCSignature 129 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -OBJ_ln2nid 130 1_1_0d EXIST::FUNCTION: -X509_NAME_new 131 1_1_0d EXIST::FUNCTION: -X509V3_EXT_print_fp 132 1_1_0d EXIST::FUNCTION:STDIO -d2i_PBKDF2PARAM 133 1_1_0d EXIST::FUNCTION: -DH_clear_flags 134 1_1_0d EXIST::FUNCTION:DH -X509_STORE_CTX_get_verify 135 1_1_0d EXIST::FUNCTION: -EVP_rc5_32_12_16_cbc 136 1_1_0d EXIST::FUNCTION:RC5 -BN_get_rfc3526_prime_4096 137 1_1_0d EXIST::FUNCTION: -BN_is_bit_set 138 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_set_app_data 139 1_1_0d EXIST::FUNCTION: -X509_CRL_new 140 1_1_0d EXIST::FUNCTION: -OCSP_RESPDATA_it 141 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPDATA_it 141 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -EC_GROUP_get_order 142 1_1_0d EXIST::FUNCTION:EC -X509at_add1_attr_by_txt 143 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_get0_type 144 1_1_0d EXIST::FUNCTION: -BIO_asn1_get_prefix 145 1_1_0d EXIST::FUNCTION: -RSA_X931_generate_key_ex 146 1_1_0d EXIST::FUNCTION:RSA -ASN1_BMPSTRING_free 147 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_ctr 148 1_1_0d EXIST::FUNCTION:CAMELLIA -FFX_CTX_free 149 1_1_0d EXIST::FUNCTION: -RAND_seed 150 1_1_0d EXIST::FUNCTION: -X509_supported_extension 151 1_1_0d EXIST::FUNCTION: -SOF_DecryptData 152 1_1_0d EXIST::FUNCTION: -X509_set_pubkey 153 1_1_0d EXIST::FUNCTION: -ASN1_item_new 154 1_1_0d EXIST::FUNCTION: -ENGINE_ctrl_cmd_string 155 1_1_0d EXIST::FUNCTION:ENGINE -X509V3_EXT_cleanup 156 1_1_0d EXIST::FUNCTION: -RSA_get0_engine 157 1_1_0d EXIST::FUNCTION:RSA -DSA_verify 158 1_1_0d EXIST::FUNCTION:DSA -ERR_load_EC_strings 159 1_1_0d EXIST::FUNCTION:EC -i2d_DISPLAYTEXT 160 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_new 161 1_1_0d EXIST::FUNCTION: -BN_rand 162 1_1_0d EXIST::FUNCTION: -BIO_meth_set_destroy 163 1_1_0d EXIST::FUNCTION: -d2i_SM9Ciphertext 164 1_1_0d EXIST::FUNCTION:SM9 -BIO_s_file 165 1_1_0d EXIST::FUNCTION: -BN_BLINDING_set_flags 166 1_1_0d EXIST::FUNCTION: -d2i_SXNET 167 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_tag 168 1_1_0d EXIST::FUNCTION:OCB -NETSCAPE_SPKAC_new 169 1_1_0d EXIST::FUNCTION: -UI_add_user_data 170 1_1_0d EXIST::FUNCTION:UI -i2d_PKCS12_SAFEBAG 171 1_1_0d EXIST::FUNCTION: -i2d_re_X509_CRL_tbs 172 1_1_0d EXIST::FUNCTION: -SDF_InternalSign_ECC 173 1_1_0d EXIST::FUNCTION: -ERR_peek_last_error_line 174 1_1_0d EXIST::FUNCTION: -ERR_peek_last_error 175 1_1_0d EXIST::FUNCTION: -CMS_SignerInfo_get0_algs 176 1_1_0d EXIST::FUNCTION:CMS -CRYPTO_secure_allocated 177 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_setiv 178 1_1_0d EXIST::FUNCTION: -ASYNC_get_current_job 179 1_1_0d EXIST::FUNCTION: -OBJ_obj2txt 180 1_1_0d EXIST::FUNCTION: -RSA_get0_key 181 1_1_0d EXIST::FUNCTION:RSA -SKF_ECCDecrypt 182 1_1_0d EXIST::FUNCTION:SKF -ENGINE_register_all_complete 183 1_1_0d EXIST::FUNCTION:ENGINE -X509_get_X509_PUBKEY 184 1_1_0d EXIST::FUNCTION: -EC_POINT_get_Jprojective_coordinates_GFp 185 1_1_0d EXIST::FUNCTION:EC -OPENSSL_gmtime 186 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_print_bio 187 1_1_0d EXIST::FUNCTION:TS -X509_NAME_free 188 1_1_0d EXIST::FUNCTION: -SAF_HashFinal 189 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_sort 190 1_1_0d EXIST::FUNCTION: -X509_get0_pubkey 191 1_1_0d EXIST::FUNCTION: -TS_RESP_free 192 1_1_0d EXIST::FUNCTION:TS -TS_STATUS_INFO_get0_text 193 1_1_0d EXIST::FUNCTION:TS -EVP_CIPHER_CTX_set_cipher_data 194 1_1_0d EXIST::FUNCTION: -OCSP_SERVICELOC_new 195 1_1_0d EXIST::FUNCTION:OCSP -X509_REQ_INFO_new 196 1_1_0d EXIST::FUNCTION: -ECIES_do_encrypt 197 1_1_0d EXIST::FUNCTION:ECIES -POLICY_MAPPINGS_it 198 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICY_MAPPINGS_it 198 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -FpPoint_new 199 1_1_0d EXIST::FUNCTION: -d2i_X509_NAME 200 1_1_0d EXIST::FUNCTION: -BN_mod_exp 201 1_1_0d EXIST::FUNCTION: -CRYPTO_cfb128_1_encrypt 202 1_1_0d EXIST::FUNCTION: -i2d_EC_PUBKEY 203 1_1_0d EXIST::FUNCTION:EC -X509v3_addr_add_range 204 1_1_0d EXIST::FUNCTION:RFC3779 -SOF_GetCertTrustList 205 1_1_0d EXIST::FUNCTION: -RSA_padding_add_PKCS1_PSS 206 1_1_0d EXIST::FUNCTION:RSA -UI_destroy_method 207 1_1_0d EXIST::FUNCTION:UI -i2t_ASN1_OBJECT 208 1_1_0d EXIST::FUNCTION: -CMS_add1_cert 209 1_1_0d EXIST::FUNCTION:CMS -X509_CRL_print 210 1_1_0d EXIST::FUNCTION: -EVP_aes_192_wrap 211 1_1_0d EXIST::FUNCTION: -PEM_read_bio_PKCS8 212 1_1_0d EXIST::FUNCTION: -d2i_X509 213 1_1_0d EXIST::FUNCTION: -SKF_LockDev 214 1_1_0d EXIST::FUNCTION:SKF -IPAddressChoice_free 215 1_1_0d EXIST::FUNCTION:RFC3779 -ECIES_CIPHERTEXT_VALUE_get_ECCCipher 216 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF -SCT_validation_status_string 217 1_1_0d EXIST::FUNCTION:CT -EVP_PKEY_encrypt_init 218 1_1_0d EXIST::FUNCTION: -d2i_OTHERNAME 219 1_1_0d EXIST::FUNCTION: -BN_lshift 220 1_1_0d EXIST::FUNCTION: -i2d_PublicKey 221 1_1_0d EXIST::FUNCTION: -EVP_camellia_192_cfb1 222 1_1_0d EXIST::FUNCTION:CAMELLIA -DES_xcbc_encrypt 223 1_1_0d EXIST::FUNCTION:DES -SAF_GetErrorString 224 1_1_0d EXIST::FUNCTION:SAF -ASN1_STRING_print 225 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_it 226 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_NAME_ENTRY_it 226 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PEM_write_ECPrivateKey 227 1_1_0d EXIST::FUNCTION:EC,STDIO -DSA_clear_flags 228 1_1_0d EXIST::FUNCTION:DSA -TS_REQ_get_ext_d2i 229 1_1_0d EXIST::FUNCTION:TS -PEM_write_X509_CRL 230 1_1_0d EXIST::FUNCTION:STDIO -X509_STORE_CTX_get1_certs 231 1_1_0d EXIST::FUNCTION: -OPENSSL_uni2utf8 232 1_1_0d EXIST::FUNCTION: -SM2CiphertextValue_get_ECCCipher 233 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 -ASN1_ENUMERATED_set 234 1_1_0d EXIST::FUNCTION: -X509_keyid_set1 235 1_1_0d EXIST::FUNCTION: -RSA_PSS_PARAMS_it 236 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSA_PSS_PARAMS_it 236 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -BN_set_bit 237 1_1_0d EXIST::FUNCTION: -OCSP_cert_to_id 238 1_1_0d EXIST::FUNCTION:OCSP -CMAC_CTX_cleanup 239 1_1_0d EXIST::FUNCTION:CMAC -sm3 240 1_1_0d EXIST::FUNCTION:SM3 -SM9PublicKey_get_gmtls_encoded 241 1_1_0d EXIST::FUNCTION:SM9 -SM9Signature_it 242 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9Signature_it 242 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -i2d_TS_RESP 243 1_1_0d EXIST::FUNCTION:TS -SM9MasterSecret_free 244 1_1_0d EXIST::FUNCTION:SM9 -CRYPTO_ocb128_cleanup 245 1_1_0d EXIST::FUNCTION:OCB -PKCS7_SIGNER_INFO_get0_algs 246 1_1_0d EXIST::FUNCTION: -PKCS7_set0_type_other 247 1_1_0d EXIST::FUNCTION: -BN_MONT_CTX_new 248 1_1_0d EXIST::FUNCTION: -MDC2_Init 249 1_1_0d EXIST::FUNCTION:MDC2 -BN_pseudo_rand 250 1_1_0d EXIST::FUNCTION: -SAF_RsaSign 251 1_1_0d EXIST::FUNCTION: -BIO_next 252 1_1_0d EXIST::FUNCTION: -X509_SIG_new 253 1_1_0d EXIST::FUNCTION: -PKCS7_SIGN_ENVELOPE_it 254 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_SIGN_ENVELOPE_it 254 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_CipherFinal_ex 255 1_1_0d EXIST::FUNCTION: -SAF_AddCaCertificate 256 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyWithIPK_RSA 257 1_1_0d EXIST::FUNCTION: -UTF8_getc 258 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_by_alias 259 1_1_0d EXIST::FUNCTION: -ENGINE_set_id 260 1_1_0d EXIST::FUNCTION:ENGINE -PKCS7_add_signature 261 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_set_app_data 262 1_1_0d EXIST::FUNCTION: -EC_KEY_new_from_ECCrefPrivateKey 263 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -EVP_camellia_256_cfb128 264 1_1_0d EXIST::FUNCTION:CAMELLIA -X509_OBJECT_retrieve_by_subject 265 1_1_0d EXIST::FUNCTION: -PKCS12_verify_mac 266 1_1_0d EXIST::FUNCTION: -BN_CTX_new 267 1_1_0d EXIST::FUNCTION: -ASN1_str2mask 268 1_1_0d EXIST::FUNCTION: -X509_REQ_get_attr_by_OBJ 269 1_1_0d EXIST::FUNCTION: -DH_KDF_X9_42 270 1_1_0d EXIST::FUNCTION:CMS,DH -d2i_ESS_ISSUER_SERIAL 271 1_1_0d EXIST::FUNCTION:TS -DSA_get0_key 272 1_1_0d EXIST::FUNCTION:DSA -sm3_hmac_init 273 1_1_0d EXIST::FUNCTION:SM3 -DH_generate_parameters_ex 274 1_1_0d EXIST::FUNCTION:DH -BUF_MEM_grow 275 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_b64_decode 276 1_1_0d EXIST::FUNCTION: -ESS_ISSUER_SERIAL_free 277 1_1_0d EXIST::FUNCTION:TS -EC_get_builtin_curves 278 1_1_0d EXIST::FUNCTION:EC -X509_NAME_ENTRY_set_data 279 1_1_0d EXIST::FUNCTION: -HMAC_Final 280 1_1_0d EXIST::FUNCTION: -OBJ_nid2sn 281 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_app_datasize 282 1_1_0d EXIST::FUNCTION: -EVP_ENCODE_CTX_new 283 1_1_0d EXIST::FUNCTION: -MD2_Update 284 1_1_0d EXIST::FUNCTION:MD2 -X509_ATTRIBUTE_it 285 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_ATTRIBUTE_it 285 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASN1_OCTET_STRING_new 286 1_1_0d EXIST::FUNCTION: -d2i_DHxparams 287 1_1_0d EXIST::FUNCTION:DH -EVP_PKEY_verify_recover 288 1_1_0d EXIST::FUNCTION: -X509_NAME_entry_count 289 1_1_0d EXIST::FUNCTION: -i2d_PBKDF2PARAM 290 1_1_0d EXIST::FUNCTION: -i2d_PKCS8_fp 291 1_1_0d EXIST::FUNCTION:STDIO -ASN1_OCTET_STRING_cmp 292 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_get_app_data 293 1_1_0d EXIST::FUNCTION: -CAST_ofb64_encrypt 294 1_1_0d EXIST::FUNCTION:CAST -X509_NAME_ENTRY_get_object 295 1_1_0d EXIST::FUNCTION: -BN_BLINDING_unlock 296 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get0_peername 297 1_1_0d EXIST::FUNCTION: -d2i_ASN1_INTEGER 298 1_1_0d EXIST::FUNCTION: -IPAddressFamily_new 299 1_1_0d EXIST::FUNCTION:RFC3779 -BN_X931_derive_prime_ex 300 1_1_0d EXIST::FUNCTION: -SDF_ImportKeyWithKEK 301 1_1_0d EXIST::FUNCTION: -BN_MONT_CTX_set 302 1_1_0d EXIST::FUNCTION: -EVP_PKEY_new_mac_key 303 1_1_0d EXIST::FUNCTION: -d2i_BB1PublicParameters 304 1_1_0d EXIST::FUNCTION:BB1IBE -BIO_set_retry_reason 305 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_verify_recover 306 1_1_0d EXIST::FUNCTION: -ENGINE_get_RAND 307 1_1_0d EXIST::FUNCTION:ENGINE -DH_free 308 1_1_0d EXIST::FUNCTION:DH -BIO_lookup 309 1_1_0d EXIST::FUNCTION:SOCK -EC_KEY_dup 310 1_1_0d EXIST::FUNCTION:EC -OCSP_resp_get0 311 1_1_0d EXIST::FUNCTION:OCSP -TS_RESP_CTX_set_clock_precision_digits 312 1_1_0d EXIST::FUNCTION:TS -TS_RESP_verify_response 313 1_1_0d EXIST::FUNCTION:TS -BN_consttime_swap 314 1_1_0d EXIST::FUNCTION: -BUF_MEM_free 315 1_1_0d EXIST::FUNCTION: -RSA_meth_free 316 1_1_0d EXIST::FUNCTION:RSA -i2d_SXNET 317 1_1_0d EXIST::FUNCTION: -OBJ_create_objects 318 1_1_0d EXIST::FUNCTION: -ERR_load_KDF_strings 319 1_1_0d EXIST::FUNCTION: -EVP_DecryptFinal_ex 320 1_1_0d EXIST::FUNCTION: -CMS_ReceiptRequest_get0_values 321 1_1_0d EXIST::FUNCTION:CMS -DIST_POINT_NAME_it 322 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DIST_POINT_NAME_it 322 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_sendreq_bio 323 1_1_0d EXIST::FUNCTION:OCSP -DSA_meth_set1_name 324 1_1_0d EXIST::FUNCTION:DSA -X509_LOOKUP_init 325 1_1_0d EXIST::FUNCTION: -CONF_get_section 326 1_1_0d EXIST::FUNCTION: -BIO_ADDRINFO_next 327 1_1_0d EXIST::FUNCTION:SOCK -Camellia_cfb8_encrypt 328 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_CIPHER_meth_get_init 329 1_1_0d EXIST::FUNCTION: -RSA_free 330 1_1_0d EXIST::FUNCTION:RSA -SAF_SM2_EncodeEnvelopedData 331 1_1_0d EXIST::FUNCTION: -d2i_PKCS12_BAGS 332 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_set_keygen 333 1_1_0d EXIST::FUNCTION:EC -OPENSSL_sk_new_null 334 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get0_RSA 335 1_1_0d EXIST::FUNCTION:RSA -UI_add_verify_string 336 1_1_0d EXIST::FUNCTION:UI -DH_new_method 337 1_1_0d EXIST::FUNCTION:DH -CRYPTO_ctr128_encrypt 338 1_1_0d EXIST::FUNCTION: -EXTENDED_KEY_USAGE_free 339 1_1_0d EXIST::FUNCTION: -SM2_do_decrypt 340 1_1_0d EXIST::FUNCTION:SM2 -BIO_f_zlib 341 1_1_0d EXIST:ZLIB:FUNCTION:COMP -d2i_EC_PUBKEY_bio 342 1_1_0d EXIST::FUNCTION:EC -BIO_new_socket 343 1_1_0d EXIST::FUNCTION:SOCK -PKEY_USAGE_PERIOD_it 344 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKEY_USAGE_PERIOD_it 344 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PBE2PARAM_free 345 1_1_0d EXIST::FUNCTION: -OPENSSL_load_builtin_modules 346 1_1_0d EXIST::FUNCTION: -EVP_bf_cbc 347 1_1_0d EXIST::FUNCTION:BF -d2i_TS_RESP 348 1_1_0d EXIST::FUNCTION:TS -X509_POLICY_NODE_print 349 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_ofb 350 1_1_0d EXIST::FUNCTION:CAMELLIA -BIO_new_bio_pair 351 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_ctrl 352 1_1_0d EXIST::FUNCTION: -X509V3_get_value_int 353 1_1_0d EXIST::FUNCTION: -X509V3_add_value_bool 354 1_1_0d EXIST::FUNCTION: -OPENSSL_hexstr2buf 355 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_free 356 1_1_0d EXIST::FUNCTION: -DSA_set0_key 357 1_1_0d EXIST::FUNCTION:DSA -COMP_get_name 358 1_1_0d EXIST::FUNCTION:COMP -ERR_remove_state 359 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_0_0 -BN_get0_nist_prime_192 360 1_1_0d EXIST::FUNCTION: -ASN1_STRING_copy 361 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_new 362 1_1_0d EXIST::FUNCTION: -d2i_ECCCipher 363 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -PKCS5_pbkdf2_set 364 1_1_0d EXIST::FUNCTION: -SAF_SymmDecryptFinal 365 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_new 366 1_1_0d EXIST::FUNCTION:OCSP -DSA_meth_get_init 367 1_1_0d EXIST::FUNCTION:DSA -X509_STORE_unlock 368 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_asn1_meth 369 1_1_0d EXIST::FUNCTION:ENGINE -SAF_MacFinal 370 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_ENVELOPE 371 1_1_0d EXIST::FUNCTION: -OPENSSL_issetugid 372 1_1_0d EXIST::FUNCTION: -i2d_DHparams 373 1_1_0d EXIST::FUNCTION:DH -SKF_EncryptFinal 374 1_1_0d EXIST::FUNCTION:SKF -BN_BLINDING_set_current_thread 375 1_1_0d EXIST::FUNCTION: -SKF_DeleteContainer 376 1_1_0d EXIST::FUNCTION:SKF -d2i_PKCS7_SIGNED 377 1_1_0d EXIST::FUNCTION: -MDC2 378 1_1_0d EXIST::FUNCTION:MDC2 -EVP_add_cipher 379 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_asn1_meths 380 1_1_0d EXIST::FUNCTION:ENGINE -X509_get0_uids 381 1_1_0d EXIST::FUNCTION: -EVP_MD_type 382 1_1_0d EXIST::FUNCTION: -PKCS7_set_signed_attributes 383 1_1_0d EXIST::FUNCTION: -EVP_sms4_gcm 384 1_1_0d EXIST::FUNCTION:SMS4 -SAF_Base64_DecodeUpdate 385 1_1_0d EXIST::FUNCTION: -DSA_set_ex_data 386 1_1_0d EXIST::FUNCTION:DSA -PKCS7_DIGEST_new 387 1_1_0d EXIST::FUNCTION: -SM2_do_verify 388 1_1_0d EXIST::FUNCTION:SM2 -d2i_SM9PublicParameters_fp 389 1_1_0d EXIST::FUNCTION:SM9,STDIO -EVP_sms4_ctr 390 1_1_0d EXIST::FUNCTION:SMS4 -PKCS12_mac_present 391 1_1_0d EXIST::FUNCTION: -i2d_PKCS8_bio 392 1_1_0d EXIST::FUNCTION: -BN_div_word 393 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_add_ext 394 1_1_0d EXIST::FUNCTION:OCSP -X509_get_pubkey_parameters 395 1_1_0d EXIST::FUNCTION: -SKF_DevAuth 396 1_1_0d EXIST::FUNCTION:SKF -EVP_des_ede_cfb64 397 1_1_0d EXIST::FUNCTION:DES -BIO_get_host_ip 398 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -ERR_load_SM2_strings 399 1_1_0d EXIST::FUNCTION:SM2 -EC_KEY_print 400 1_1_0d EXIST::FUNCTION:EC -OTHERNAME_it 401 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -OTHERNAME_it 401 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2a_ASN1_INTEGER 402 1_1_0d EXIST::FUNCTION: -BN_nist_mod_521 403 1_1_0d EXIST::FUNCTION: -BN_RECP_CTX_new 404 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_get_sgd 405 1_1_0d EXIST::FUNCTION:GMAPI -SXNETID_it 406 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -SXNETID_it 406 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_ECCSIGNATUREBLOB 407 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -OBJ_find_sigid_by_algs 408 1_1_0d EXIST::FUNCTION: -DSA_meth_set_finish 409 1_1_0d EXIST::FUNCTION:DSA -MD2 410 1_1_0d EXIST::FUNCTION:MD2 -CMS_get1_ReceiptRequest 411 1_1_0d EXIST::FUNCTION:CMS -d2i_CPK_PUBLIC_PARAMS_bio 412 1_1_0d EXIST::FUNCTION:CPK -DES_set_odd_parity 413 1_1_0d EXIST::FUNCTION:DES -SKF_PrintECCPrivateKey 414 1_1_0d EXIST::FUNCTION:SKF -d2i_PROXY_POLICY 415 1_1_0d EXIST::FUNCTION: -i2d_X509_VAL 416 1_1_0d EXIST::FUNCTION: -CRYPTO_nistcts128_encrypt 417 1_1_0d EXIST::FUNCTION: -X509_ALGOR_get0 418 1_1_0d EXIST::FUNCTION: -X509_time_adj_ex 419 1_1_0d EXIST::FUNCTION: -RC2_encrypt 420 1_1_0d EXIST::FUNCTION:RC2 -PEM_write_ECPKParameters 421 1_1_0d EXIST::FUNCTION:EC,STDIO -d2i_SM9MasterSecret_fp 422 1_1_0d EXIST::FUNCTION:SM9,STDIO -DIRECTORYSTRING_new 423 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_get_asn1_iv 424 1_1_0d EXIST::FUNCTION: -EC_POINT_set_affine_coordinates_GFp 425 1_1_0d EXIST::FUNCTION:EC -OCSP_copy_nonce 426 1_1_0d EXIST::FUNCTION:OCSP -RSA_set_default_method 427 1_1_0d EXIST::FUNCTION:RSA -SAF_Pkcs7_DecodeSignedData 428 1_1_0d EXIST::FUNCTION: -OPENSSL_cleanse 429 1_1_0d EXIST::FUNCTION: -EVP_camellia_192_ofb 430 1_1_0d EXIST::FUNCTION:CAMELLIA -BN_mul_word 431 1_1_0d EXIST::FUNCTION: -DES_key_sched 432 1_1_0d EXIST::FUNCTION:DES -CMS_unsigned_delete_attr 433 1_1_0d EXIST::FUNCTION:CMS -PEM_write_bio_PKCS8_PRIV_KEY_INFO 434 1_1_0d EXIST::FUNCTION: -ERR_error_string 435 1_1_0d EXIST::FUNCTION: -OCSP_CRLID_free 436 1_1_0d EXIST::FUNCTION:OCSP -EVP_idea_cbc 437 1_1_0d EXIST::FUNCTION:IDEA -PEM_SignFinal 438 1_1_0d EXIST::FUNCTION: -ERR_load_SDF_strings 439 1_1_0d EXIST::FUNCTION:SDF -ASN1_UTCTIME_new 440 1_1_0d EXIST::FUNCTION: -ERR_load_ENGINE_strings 441 1_1_0d EXIST::FUNCTION:ENGINE -EVP_aes_256_cbc_hmac_sha1 442 1_1_0d EXIST::FUNCTION: -ASN1_item_i2d_fp 443 1_1_0d EXIST::FUNCTION:STDIO -X509v3_addr_validate_path 444 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_PKEY_get0_DSA 445 1_1_0d EXIST::FUNCTION:DSA -EVP_CipherFinal 446 1_1_0d EXIST::FUNCTION: -ASYNC_unblock_pause 447 1_1_0d EXIST::FUNCTION: -PEM_read_RSAPrivateKey 448 1_1_0d EXIST::FUNCTION:RSA,STDIO -d2i_PaillierPublicKey 449 1_1_0d EXIST::FUNCTION:PAILLIER -ASYNC_WAIT_CTX_get_all_fds 450 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_ex_data 451 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_encrypt 452 1_1_0d EXIST::FUNCTION:OCB -ASN1_SEQUENCE_it 453 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_SEQUENCE_it 453 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -TS_RESP_get_status_info 454 1_1_0d EXIST::FUNCTION:TS -PKCS7_set_attributes 455 1_1_0d EXIST::FUNCTION: -CMS_encrypt 456 1_1_0d EXIST::FUNCTION:CMS -DES_encrypt1 457 1_1_0d EXIST::FUNCTION:DES -TS_RESP_CTX_add_flags 458 1_1_0d EXIST::FUNCTION:TS -TS_RESP_get_token 459 1_1_0d EXIST::FUNCTION:TS -ASN1_BIT_STRING_set_bit 460 1_1_0d EXIST::FUNCTION: -BIO_get_port 461 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -OCSP_BASICRESP_add1_ext_i2d 462 1_1_0d EXIST::FUNCTION:OCSP -OCSP_CERTSTATUS_it 463 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_CERTSTATUS_it 463 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -PEM_write_DSA_PUBKEY 464 1_1_0d EXIST::FUNCTION:DSA,STDIO -d2i_PKCS7_DIGEST 465 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_num_untrusted 466 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_init 467 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_error 468 1_1_0d EXIST::FUNCTION: -i2d_OTHERNAME 469 1_1_0d EXIST::FUNCTION: -EVP_MD_get_sgd 470 1_1_0d EXIST::FUNCTION:GMAPI -CTLOG_new_from_base64 471 1_1_0d EXIST::FUNCTION:CT -EVP_EncryptUpdate 472 1_1_0d EXIST::FUNCTION: -PKCS12_get_attr 473 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -ASN1_d2i_fp 474 1_1_0d EXIST::FUNCTION:STDIO -X509_REQ_add1_attr_by_txt 475 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_it 476 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_BASICRESP_it 476 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -i2d_ASN1_BMPSTRING 477 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_error_depth 478 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_free 479 1_1_0d EXIST::FUNCTION:CPK -SM9PublicKey_it 480 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9PublicKey_it 480 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -EVP_cast5_ofb 481 1_1_0d EXIST::FUNCTION:CAST -OCSP_BASICRESP_new 482 1_1_0d EXIST::FUNCTION:OCSP -X509_NAME_it 483 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_NAME_it 483 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_SM9PrivateKey_fp 484 1_1_0d EXIST::FUNCTION:SM9,STDIO -ENGINE_ctrl_cmd 485 1_1_0d EXIST::FUNCTION:ENGINE -PKCS7_add_attribute 486 1_1_0d EXIST::FUNCTION: -i2d_OCSP_SIGNATURE 487 1_1_0d EXIST::FUNCTION:OCSP -MD5 488 1_1_0d EXIST::FUNCTION:MD5 -i2d_RSA_PUBKEY_bio 489 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_get0_EC_KEY 490 1_1_0d EXIST::FUNCTION:EC -BIO_nread 491 1_1_0d EXIST::FUNCTION: -OPENSSL_init_crypto 492 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_get_ext_by_NID 493 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_THREAD_get_current_id 494 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get1_chain 495 1_1_0d EXIST::FUNCTION: -Camellia_ofb128_encrypt 496 1_1_0d EXIST::FUNCTION:CAMELLIA -i2d_BB1PrivateKeyBlock 497 1_1_0d EXIST::FUNCTION:BB1IBE -DHparams_print_fp 498 1_1_0d EXIST::FUNCTION:DH,STDIO -EC_POINTs_mul 499 1_1_0d EXIST::FUNCTION:EC -EC_GROUP_check 500 1_1_0d EXIST::FUNCTION:EC -EVP_rc2_cbc 501 1_1_0d EXIST::FUNCTION:RC2 -ASRange_free 502 1_1_0d EXIST::FUNCTION:RFC3779 -ASN1_SCTX_get_item 503 1_1_0d EXIST::FUNCTION: -CMS_ReceiptRequest_new 504 1_1_0d EXIST::FUNCTION:CMS -UI_method_set_prompt_constructor 505 1_1_0d EXIST::FUNCTION:UI -ENGINE_register_all_RAND 506 1_1_0d EXIST::FUNCTION:ENGINE -PKCS5_PBE_keyivgen 507 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_set_cmp_func 508 1_1_0d EXIST::FUNCTION: -BIO_callback_ctrl 509 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_tsa 510 1_1_0d EXIST::FUNCTION:TS -OCSP_request_onereq_count 511 1_1_0d EXIST::FUNCTION:OCSP -EVP_CIPHER_CTX_iv 512 1_1_0d EXIST::FUNCTION: -X509at_delete_attr 513 1_1_0d EXIST::FUNCTION: -d2i_TS_RESP_fp 514 1_1_0d EXIST::FUNCTION:STDIO,TS -OTHERNAME_free 515 1_1_0d EXIST::FUNCTION: -SOF_Login 516 1_1_0d EXIST::FUNCTION: -RSA_set_RSAPUBLICKEYBLOB 517 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -EVP_CIPHER_param_to_asn1 518 1_1_0d EXIST::FUNCTION: -i2d_IPAddressFamily 519 1_1_0d EXIST::FUNCTION:RFC3779 -CPK_PUBLIC_PARAMS_get_name 520 1_1_0d EXIST::FUNCTION:CPK -DSA_meth_free 521 1_1_0d EXIST::FUNCTION:DSA -MDC2_Final 522 1_1_0d EXIST::FUNCTION:MDC2 -X509_EXTENSION_set_critical 523 1_1_0d EXIST::FUNCTION: -DIST_POINT_free 524 1_1_0d EXIST::FUNCTION: -d2i_CMS_ReceiptRequest 525 1_1_0d EXIST::FUNCTION:CMS -ASN1_parse_dump 526 1_1_0d EXIST::FUNCTION: -DES_string_to_key 527 1_1_0d EXIST::FUNCTION:DES -CMS_RecipientInfo_encrypt 528 1_1_0d EXIST::FUNCTION:CMS -ERR_load_EVP_strings 529 1_1_0d EXIST::FUNCTION: -BN_uadd 530 1_1_0d EXIST::FUNCTION: -ASN1_TIME_free 531 1_1_0d EXIST::FUNCTION: -EC_POINT_point2oct 532 1_1_0d EXIST::FUNCTION:EC -SOF_EncryptData 533 1_1_0d EXIST::FUNCTION: -OPENSSL_thread_stop 534 1_1_0d EXIST::FUNCTION: -X509_STORE_get_check_issued 535 1_1_0d EXIST::FUNCTION: -SHA256_Init 536 1_1_0d EXIST::FUNCTION: -X509_CRL_get0_signature 537 1_1_0d EXIST::FUNCTION: -ERR_load_CMS_strings 538 1_1_0d EXIST::FUNCTION:CMS -CMS_add_simple_smimecap 539 1_1_0d EXIST::FUNCTION:CMS -CRYPTO_memdup 540 1_1_0d EXIST::FUNCTION: -i2d_RSAPublicKey_fp 541 1_1_0d EXIST::FUNCTION:RSA,STDIO -EVP_PKEY_CTX_get_operation 542 1_1_0d EXIST::FUNCTION: -TS_ACCURACY_get_micros 543 1_1_0d EXIST::FUNCTION:TS -EVP_EncryptFinal_ex 544 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_get0_otherName 545 1_1_0d EXIST::FUNCTION: -d2i_BB1CiphertextBlock 546 1_1_0d EXIST::FUNCTION:BB1IBE -X509_CINF_free 547 1_1_0d EXIST::FUNCTION: -DH_meth_get_finish 548 1_1_0d EXIST::FUNCTION:DH -SKF_GetDevInfo 549 1_1_0d EXIST::FUNCTION:SKF -PKCS7_get_signer_info 550 1_1_0d EXIST::FUNCTION: -PEM_do_header 551 1_1_0d EXIST::FUNCTION: -ASN1_item_free 552 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_point_conversion_form 553 1_1_0d EXIST::FUNCTION:EC -ASYNC_block_pause 554 1_1_0d EXIST::FUNCTION: -X509v3_addr_add_prefix 555 1_1_0d EXIST::FUNCTION:RFC3779 -sms4_cbc_encrypt 556 1_1_0d EXIST::FUNCTION:SMS4 -i2d_OCSP_RESPID 557 1_1_0d EXIST::FUNCTION:OCSP -CMS_ReceiptRequest_it 558 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS -CMS_ReceiptRequest_it 558 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS -OCSP_resp_get0_signature 559 1_1_0d EXIST::FUNCTION:OCSP -X509_TRUST_get_count 560 1_1_0d EXIST::FUNCTION: -ENGINE_set_pkey_asn1_meths 561 1_1_0d EXIST::FUNCTION:ENGINE -PEM_read_bio_RSAPublicKey 562 1_1_0d EXIST::FUNCTION:RSA -ASN1_UNIVERSALSTRING_to_string 563 1_1_0d EXIST::FUNCTION: -DSO_new 564 1_1_0d EXIST::FUNCTION: -i2d_PKCS12 565 1_1_0d EXIST::FUNCTION: -TS_ACCURACY_dup 566 1_1_0d EXIST::FUNCTION:TS -ENGINE_get_cmd_defns 567 1_1_0d EXIST::FUNCTION:ENGINE -BB1PrivateKeyBlock_new 568 1_1_0d EXIST::FUNCTION:BB1IBE -X509V3_EXT_nconf_nid 569 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_ciphertext_length 570 1_1_0d EXIST::FUNCTION:ECIES -PEM_write_bio_DSA_PUBKEY 571 1_1_0d EXIST::FUNCTION:DSA -ENGINE_get_first 572 1_1_0d EXIST::FUNCTION:ENGINE -X509_CRL_INFO_new 573 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyWithEPK_ECC 574 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_result_size 575 1_1_0d EXIST::FUNCTION: -TXT_DB_free 576 1_1_0d EXIST::FUNCTION: -SDF_ExportSignPublicKey_RSA 577 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_new_id 578 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_set_compute_key 579 1_1_0d EXIST::FUNCTION:EC -OPENSSL_strlcat 580 1_1_0d EXIST::FUNCTION: -X509_alias_get0 581 1_1_0d EXIST::FUNCTION: -EC_POINT_set_compressed_coordinates_GF2m 582 1_1_0d EXIST::FUNCTION:EC,EC2M -EVP_CIPHER_CTX_set_app_data 583 1_1_0d EXIST::FUNCTION: -SHA256 584 1_1_0d EXIST::FUNCTION: -i2d_CPK_PUBLIC_PARAMS_bio 585 1_1_0d EXIST::FUNCTION:CPK -SKF_Mac 586 1_1_0d EXIST::FUNCTION:SKF -i2d_PROXY_POLICY 587 1_1_0d EXIST::FUNCTION: -EVP_DecodeInit 588 1_1_0d EXIST::FUNCTION: -X509_add1_trust_object 589 1_1_0d EXIST::FUNCTION: -PKCS12_add_localkeyid 590 1_1_0d EXIST::FUNCTION: -PKCS12_get_friendlyname 591 1_1_0d EXIST::FUNCTION: -BIO_ADDRINFO_protocol 592 1_1_0d EXIST::FUNCTION:SOCK -SAF_EccSignFile 593 1_1_0d EXIST::FUNCTION:SAF -X509_CRL_get_ext_by_critical 594 1_1_0d EXIST::FUNCTION: -PEM_proc_type 595 1_1_0d EXIST::FUNCTION: -BB1PrivateKeyBlock_free 596 1_1_0d EXIST::FUNCTION:BB1IBE -RAND_get_rand_method 597 1_1_0d EXIST::FUNCTION: -EVP_CipherInit 598 1_1_0d EXIST::FUNCTION: -ENGINE_set_destroy_function 599 1_1_0d EXIST::FUNCTION:ENGINE -EC_KEY_set_ECCrefPrivateKey 600 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -CRYPTO_ocb128_new 601 1_1_0d EXIST::FUNCTION:OCB -TS_ACCURACY_get_millis 602 1_1_0d EXIST::FUNCTION:TS -OPENSSL_sk_zero 603 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_cleanup 604 1_1_0d EXIST::FUNCTION:TS -EVP_CIPHER_meth_get_do_cipher 605 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_signctx 606 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_new 607 1_1_0d EXIST::FUNCTION: -BN_mod_mul_montgomery 608 1_1_0d EXIST::FUNCTION: -RSA_blinding_on 609 1_1_0d EXIST::FUNCTION:RSA -EVP_read_pw_string_min 610 1_1_0d EXIST::FUNCTION:UI -SDF_GenerateAgreementDataAndKeyWithECC 611 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_PAILLIER 612 1_1_0d EXIST::FUNCTION:PAILLIER -ASN1_TYPE_set_int_octetstring 613 1_1_0d EXIST::FUNCTION: -SRP_get_default_gN 614 1_1_0d EXIST::FUNCTION:SRP -EC_KEY_OpenSSL 615 1_1_0d EXIST::FUNCTION:EC -ENGINE_get_load_pubkey_function 616 1_1_0d EXIST::FUNCTION:ENGINE -EVP_seed_ofb 617 1_1_0d EXIST::FUNCTION:SEED -EVP_PKEY_meth_find 618 1_1_0d EXIST::FUNCTION: -CMS_EnvelopedData_create 619 1_1_0d EXIST::FUNCTION:CMS -X509_VERIFY_PARAM_inherit 620 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set0_param 621 1_1_0d EXIST::FUNCTION: -RSA_set0_key 622 1_1_0d EXIST::FUNCTION:RSA -DH_meth_get_bn_mod_exp 623 1_1_0d EXIST::FUNCTION:DH -i2d_PKCS12_bio 624 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_get_int64 625 1_1_0d EXIST::FUNCTION: -RSA_padding_add_X931 626 1_1_0d EXIST::FUNCTION:RSA -SOF_GetCertInfoByOid 627 1_1_0d EXIST::FUNCTION: -d2i_TS_REQ_fp 628 1_1_0d EXIST::FUNCTION:STDIO,TS -RSA_set_RSArefPublicKey 629 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -SDF_DeleteFile 630 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_param 631 1_1_0d EXIST::FUNCTION: -EVP_Cipher 632 1_1_0d EXIST::FUNCTION: -Camellia_encrypt 633 1_1_0d EXIST::FUNCTION:CAMELLIA -BN_GF2m_mod 634 1_1_0d EXIST::FUNCTION:EC2M -EVP_CIPHER_type 635 1_1_0d EXIST::FUNCTION: -BFCiphertextBlock_new 636 1_1_0d EXIST::FUNCTION:BFIBE -X509_STORE_CTX_set_default 637 1_1_0d EXIST::FUNCTION: -BIO_sock_info 638 1_1_0d EXIST::FUNCTION:SOCK -RC5_32_cfb64_encrypt 639 1_1_0d EXIST::FUNCTION:RC5 -X509_REVOKED_get0_revocationDate 640 1_1_0d EXIST::FUNCTION: -BIO_meth_new 641 1_1_0d EXIST::FUNCTION: -BIO_up_ref 642 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_set_imprint 643 1_1_0d EXIST::FUNCTION:TS -DSO_dsobyaddr 644 1_1_0d EXIST::FUNCTION: -X509_STORE_get_cert_crl 645 1_1_0d EXIST::FUNCTION: -i2d_ASN1_bio_stream 646 1_1_0d EXIST::FUNCTION: -BIO_gethostbyname 647 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -IPAddressChoice_new 648 1_1_0d EXIST::FUNCTION:RFC3779 -PKCS12_item_pack_safebag 649 1_1_0d EXIST::FUNCTION: -ERR_add_error_data 650 1_1_0d EXIST::FUNCTION: -OCSP_response_get1_basic 651 1_1_0d EXIST::FUNCTION:OCSP -X509_get_version 652 1_1_0d EXIST::FUNCTION: -X509v3_asid_canonize 653 1_1_0d EXIST::FUNCTION:RFC3779 -CT_POLICY_EVAL_CTX_free 654 1_1_0d EXIST::FUNCTION:CT -SDF_PrintRSAPublicKey 655 1_1_0d EXIST::FUNCTION:SDF -CT_POLICY_EVAL_CTX_new 656 1_1_0d EXIST::FUNCTION:CT -EC_KEY_METHOD_free 657 1_1_0d EXIST::FUNCTION:EC -X509V3_EXT_CRL_add_conf 658 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_input_blocksize 659 1_1_0d EXIST::FUNCTION: -X509V3_extensions_print 660 1_1_0d EXIST::FUNCTION: -ENGINE_set_DSA 661 1_1_0d EXIST::FUNCTION:ENGINE -RC4_options 662 1_1_0d EXIST::FUNCTION:RC4 -RSA_meth_set_flags 663 1_1_0d EXIST::FUNCTION:RSA -TS_OBJ_print_bio 664 1_1_0d EXIST::FUNCTION:TS -CPK_MASTER_SECRET_free 665 1_1_0d EXIST::FUNCTION:CPK -SAF_SM2_DecodeEnvelopedData 666 1_1_0d EXIST::FUNCTION: -OBJ_NAME_add 667 1_1_0d EXIST::FUNCTION: -EVP_PBE_CipherInit 668 1_1_0d EXIST::FUNCTION: -DSO_free 669 1_1_0d EXIST::FUNCTION: -i2d_ECIESParameters 670 1_1_0d EXIST::FUNCTION:ECIES -PEM_write_NETSCAPE_CERT_SEQUENCE 671 1_1_0d EXIST::FUNCTION:STDIO -GENERAL_SUBTREE_new 672 1_1_0d EXIST::FUNCTION: -EC_GROUP_have_precompute_mult 673 1_1_0d EXIST::FUNCTION:EC -ASN1_STRING_length_set 674 1_1_0d EXIST::FUNCTION: -ASN1_STRING_cmp 675 1_1_0d EXIST::FUNCTION: -ERR_load_BIO_strings 676 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_result_size 677 1_1_0d EXIST::FUNCTION: -X509_NAME_delete_entry 678 1_1_0d EXIST::FUNCTION: -OCSP_CRLID_new 679 1_1_0d EXIST::FUNCTION:OCSP -EVP_CIPHER_CTX_iv_noconst 680 1_1_0d EXIST::FUNCTION: -EVP_DecryptInit_ex 681 1_1_0d EXIST::FUNCTION: -PKCS7_stream 682 1_1_0d EXIST::FUNCTION: -sms4_encrypt 683 1_1_0d EXIST::FUNCTION:SMS4 -EC_type1curve_tate_ratio 684 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_check 685 1_1_0d EXIST::FUNCTION: -PEM_write_EC_PUBKEY 686 1_1_0d EXIST::FUNCTION:EC,STDIO -X509_CRL_INFO_it 687 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CRL_INFO_it 687 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASN1_PRINTABLE_type 688 1_1_0d EXIST::FUNCTION: -RSAPublicKey_it 689 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSAPublicKey_it 689 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -X509v3_addr_validate_resource_set 690 1_1_0d EXIST::FUNCTION:RFC3779 -s2i_ASN1_OCTET_STRING 691 1_1_0d EXIST::FUNCTION: -SKF_ClearSecureState 692 1_1_0d EXIST::FUNCTION:SKF -X509_STORE_CTX_set0_dane 693 1_1_0d EXIST::FUNCTION: -TS_REQ_free 694 1_1_0d EXIST::FUNCTION:TS -SM9_extract_public_key 695 1_1_0d EXIST::FUNCTION:SM9 -PBEPARAM_it 696 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PBEPARAM_it 696 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_aes_192_gcm 697 1_1_0d EXIST::FUNCTION: -DSA_meth_dup 698 1_1_0d EXIST::FUNCTION:DSA -CMS_final 699 1_1_0d EXIST::FUNCTION:CMS -PKCS7_print_ctx 700 1_1_0d EXIST::FUNCTION: -SKF_UnlockDev 701 1_1_0d EXIST::FUNCTION:SKF -serpent_decrypt 702 1_1_0d EXIST::FUNCTION:SERPENT -BIO_sock_should_retry 703 1_1_0d EXIST::FUNCTION:SOCK -BN_get_rfc3526_prime_2048 704 1_1_0d EXIST::FUNCTION: -CRYPTO_cfb128_encrypt 705 1_1_0d EXIST::FUNCTION: -SM9_signature_size 706 1_1_0d EXIST::FUNCTION:SM9 -EVP_EncodeFinal 707 1_1_0d EXIST::FUNCTION: -X509_TRUST_set_default 708 1_1_0d EXIST::FUNCTION: -SDF_ImportKeyWithISK_RSA 709 1_1_0d EXIST::FUNCTION: -PEM_read_DSA_PUBKEY 710 1_1_0d EXIST::FUNCTION:DSA,STDIO -EVP_camellia_192_cfb128 711 1_1_0d EXIST::FUNCTION:CAMELLIA -SM2CiphertextValue_get_ECCCIPHERBLOB 712 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 -BN_GFP2_is_zero 713 1_1_0d EXIST::FUNCTION: -ASYNC_init_thread 714 1_1_0d EXIST::FUNCTION: -ENGINE_get_EC 715 1_1_0d EXIST::FUNCTION:ENGINE -X509_PURPOSE_get0_sname 716 1_1_0d EXIST::FUNCTION: -BIO_debug_callback 717 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_free 718 1_1_0d EXIST::FUNCTION: -PEM_write_bio_X509_AUX 719 1_1_0d EXIST::FUNCTION: -i2d_ECCCipher_bio 720 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -sms4_ofb128_encrypt 721 1_1_0d EXIST::FUNCTION:SMS4 -d2i_RSAPublicKey_fp 722 1_1_0d EXIST::FUNCTION:RSA,STDIO -speck_set_encrypt_key16 723 1_1_0d EXIST::FUNCTION:SPECK -EC_KEY_set_ECCPUBLICKEYBLOB 724 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -CONF_imodule_get_module 725 1_1_0d EXIST::FUNCTION: -X509_STORE_set_lookup_certs 726 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_set_update_fn 727 1_1_0d EXIST::FUNCTION: -X509_CRL_set_version 728 1_1_0d EXIST::FUNCTION: -d2i_DSAPrivateKey 729 1_1_0d EXIST::FUNCTION:DSA -NAME_CONSTRAINTS_check_CN 730 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_time 731 1_1_0d EXIST::FUNCTION: -EVP_sha512 732 1_1_0d EXIST:!VMSVAX:FUNCTION: -RAND_status 733 1_1_0d EXIST::FUNCTION: -BIO_s_log 734 1_1_0d EXIST:!WIN32,!macintosh:FUNCTION: -OCSP_CERTSTATUS_new 735 1_1_0d EXIST::FUNCTION:OCSP -SKF_GenerateAgreementDataAndKeyWithECC 736 1_1_0d EXIST::FUNCTION:SKF -PKCS8_set0_pbe 737 1_1_0d EXIST::FUNCTION: -X509_STORE_set_trust 738 1_1_0d EXIST::FUNCTION: -BFIBE_do_decrypt 739 1_1_0d EXIST::FUNCTION:BFIBE -PKCS12_newpass 740 1_1_0d EXIST::FUNCTION: -speck_decrypt16 741 1_1_0d EXIST::FUNCTION:SPECK -EVP_CIPHER_block_size 742 1_1_0d EXIST::FUNCTION: -d2i_PKEY_USAGE_PERIOD 743 1_1_0d EXIST::FUNCTION: -X509_REQ_get_subject_name 744 1_1_0d EXIST::FUNCTION: -ENGINE_get_cipher_engine 745 1_1_0d EXIST::FUNCTION:ENGINE -EVP_CIPHER_meth_dup 746 1_1_0d EXIST::FUNCTION: -X509_get0_pubkey_bitstr 747 1_1_0d EXIST::FUNCTION: -EVP_aes_192_ccm 748 1_1_0d EXIST::FUNCTION: -X509_CRL_get0_by_serial 749 1_1_0d EXIST::FUNCTION: -OCSP_request_is_signed 750 1_1_0d EXIST::FUNCTION:OCSP -d2i_PKCS12_fp 751 1_1_0d EXIST::FUNCTION:STDIO -CRYPTO_mem_leaks 752 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -i2b_PVK_bio 753 1_1_0d EXIST::FUNCTION:DSA,RC4 -d2i_NETSCAPE_CERT_SEQUENCE 754 1_1_0d EXIST::FUNCTION: -sm3_hmac 755 1_1_0d EXIST::FUNCTION:SM3 -ASN1_i2d_bio 756 1_1_0d EXIST::FUNCTION: -PEM_write_bio_PKCS8 757 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_ext_by_critical 758 1_1_0d EXIST::FUNCTION:TS -ERR_load_UI_strings 759 1_1_0d EXIST::FUNCTION:UI -AES_unwrap_key 760 1_1_0d EXIST::FUNCTION: -CONF_set_nconf 761 1_1_0d EXIST::FUNCTION: -i2d_CMS_ContentInfo 762 1_1_0d EXIST::FUNCTION:CMS -i2d_ECCSignature_bio 763 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -PKCS7_add_attrib_content_type 764 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_bio 765 1_1_0d EXIST::FUNCTION: -BN_div_recp 766 1_1_0d EXIST::FUNCTION: -PKCS12_PBE_keyivgen 767 1_1_0d EXIST::FUNCTION: -TS_ext_print_bio 768 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_get_ecparameters 769 1_1_0d EXIST::FUNCTION:EC -BN_is_prime_fasttest 770 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -PEM_read_bio_RSAPrivateKey 771 1_1_0d EXIST::FUNCTION:RSA -X509V3_EXT_add_nconf_sk 772 1_1_0d EXIST::FUNCTION: -SXNETID_new 773 1_1_0d EXIST::FUNCTION: -BN_init 774 1_1_0d EXIST::FUNCTION: -BIO_ADDR_path_string 775 1_1_0d EXIST::FUNCTION:SOCK -CRYPTO_gcm128_init 776 1_1_0d EXIST::FUNCTION: -EC_GFp_nistp256_method 777 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 -EVP_PKEY_meth_get_decrypt 778 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_get_app_data 779 1_1_0d EXIST::FUNCTION: -d2i_CERTIFICATEPOLICIES 780 1_1_0d EXIST::FUNCTION: -X509_OBJECT_free 781 1_1_0d EXIST::FUNCTION: -HMAC_Update 782 1_1_0d EXIST::FUNCTION: -ECParameters_print_fp 783 1_1_0d EXIST::FUNCTION:EC,STDIO -ASN1_UNIVERSALSTRING_free 784 1_1_0d EXIST::FUNCTION: -MD5_Update 785 1_1_0d EXIST::FUNCTION:MD5 -X509_REQ_print_ex 786 1_1_0d EXIST::FUNCTION: -X509_NAME_add_entry_by_txt 787 1_1_0d EXIST::FUNCTION: -EVP_des_ofb 788 1_1_0d EXIST::FUNCTION:DES -SCT_set_log_entry_type 789 1_1_0d EXIST::FUNCTION:CT -X509_TRUST_get0_name 790 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_nonce 791 1_1_0d EXIST::FUNCTION:TS -BIO_printf 792 1_1_0d EXIST::FUNCTION: -OCSP_CERTID_dup 793 1_1_0d EXIST::FUNCTION:OCSP -DSA_meth_get_keygen 794 1_1_0d EXIST::FUNCTION:DSA -SKF_ExportPublicKey 795 1_1_0d EXIST::FUNCTION:SKF -i2d_RSAPrivateKey_bio 796 1_1_0d EXIST::FUNCTION:RSA -DHparams_print 797 1_1_0d EXIST::FUNCTION:DH -CMS_get0_type 798 1_1_0d EXIST::FUNCTION:CMS -OCSP_REQUEST_add1_ext_i2d 799 1_1_0d EXIST::FUNCTION:OCSP -SAF_EnumKeyContainerInfoFree 800 1_1_0d EXIST::FUNCTION: -o2i_SM2CiphertextValue 801 1_1_0d EXIST::FUNCTION:SM2 -EVP_PKEY_meth_set_signctx 802 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_set0 803 1_1_0d EXIST::FUNCTION:EC -OCSP_request_verify 804 1_1_0d EXIST::FUNCTION:OCSP -TS_CONF_set_serial 805 1_1_0d EXIST::FUNCTION:TS -d2i_TS_REQ_bio 806 1_1_0d EXIST::FUNCTION:TS -SDF_HashUpdate 807 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kari_get0_alg 808 1_1_0d EXIST::FUNCTION:CMS -BIO_dump_cb 809 1_1_0d EXIST::FUNCTION: -ENGINE_register_EC 810 1_1_0d EXIST::FUNCTION:ENGINE -DES_encrypt2 811 1_1_0d EXIST::FUNCTION:DES -i2d_TS_TST_INFO_fp 812 1_1_0d EXIST::FUNCTION:STDIO,TS -ECDSA_SIG_get_ECCSignature 813 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -TS_VERIFY_CTX_set_store 814 1_1_0d EXIST::FUNCTION:TS -SKF_GenerateAgreementDataWithECC 815 1_1_0d EXIST::FUNCTION:SKF -SCT_get_validation_status 816 1_1_0d EXIST::FUNCTION:CT -ENGINE_new 817 1_1_0d EXIST::FUNCTION:ENGINE -d2i_BB1PrivateKeyBlock 818 1_1_0d EXIST::FUNCTION:BB1IBE -EC_KEY_GmSSL 819 1_1_0d EXIST::FUNCTION:SM2 -X509_REQ_to_X509 820 1_1_0d EXIST::FUNCTION: -i2d_EXTENDED_KEY_USAGE 821 1_1_0d EXIST::FUNCTION: -BN_bntest_rand 822 1_1_0d EXIST::FUNCTION: -i2d_RSAPrivateKey_fp 823 1_1_0d EXIST::FUNCTION:RSA,STDIO -RSA_setup_blinding 824 1_1_0d EXIST::FUNCTION:RSA -BIO_f_reliable 825 1_1_0d EXIST::FUNCTION: -SMIME_crlf_copy 826 1_1_0d EXIST::FUNCTION: -i2d_TS_REQ_fp 827 1_1_0d EXIST::FUNCTION:STDIO,TS -CRYPTO_cts128_encrypt_block 828 1_1_0d EXIST::FUNCTION: -PEM_write_X509_REQ_NEW 829 1_1_0d EXIST::FUNCTION:STDIO -ERR_load_CPK_strings 830 1_1_0d EXIST::FUNCTION:CPK -BIO_set_init 831 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_by_fingerprint 832 1_1_0d EXIST::FUNCTION: -EVP_PKEY_add1_attr 833 1_1_0d EXIST::FUNCTION: -ASN1_add_stable_module 834 1_1_0d EXIST::FUNCTION: -ENGINE_set_load_privkey_function 835 1_1_0d EXIST::FUNCTION:ENGINE -CPK_MASTER_SECRET_get_name 836 1_1_0d EXIST::FUNCTION:CPK -UI_set_ex_data 837 1_1_0d EXIST::FUNCTION:UI -BIO_vsnprintf 838 1_1_0d EXIST::FUNCTION: -i2d_X509_CERT_AUX 839 1_1_0d EXIST::FUNCTION: -UI_method_get_prompt_constructor 840 1_1_0d EXIST::FUNCTION:UI -ERR_load_BB1IBE_strings 841 1_1_0d EXIST::FUNCTION:BB1IBE -d2i_PKCS7_SIGNER_INFO 842 1_1_0d EXIST::FUNCTION: -CMS_compress 843 1_1_0d EXIST::FUNCTION:CMS -OCSP_BASICRESP_get_ext_by_NID 844 1_1_0d EXIST::FUNCTION:OCSP -DSA_meth_get_finish 845 1_1_0d EXIST::FUNCTION:DSA -BIO_connect 846 1_1_0d EXIST::FUNCTION:SOCK -CBIGNUM_it 847 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -CBIGNUM_it 847 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_from_montgomery 848 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_is_zero 849 1_1_0d EXIST::FUNCTION:SM2 -CT_POLICY_EVAL_CTX_get0_issuer 850 1_1_0d EXIST::FUNCTION:CT -ASN1_object_size 851 1_1_0d EXIST::FUNCTION: -i2d_BFPrivateKeyBlock 852 1_1_0d EXIST::FUNCTION:BFIBE -X509_delete_ext 853 1_1_0d EXIST::FUNCTION: -EVP_PBE_get 854 1_1_0d EXIST::FUNCTION: -BN_RECP_CTX_free 855 1_1_0d EXIST::FUNCTION: -ERR_load_DSA_strings 856 1_1_0d EXIST::FUNCTION:DSA -TS_RESP_CTX_set_extension_cb 857 1_1_0d EXIST::FUNCTION:TS -EC_KEY_get_default_method 858 1_1_0d EXIST::FUNCTION:EC -d2i_X509_REVOKED 859 1_1_0d EXIST::FUNCTION: -EVP_desx_cbc 860 1_1_0d EXIST::FUNCTION:DES -SCT_set0_signature 861 1_1_0d EXIST::FUNCTION:CT -CAST_decrypt 862 1_1_0d EXIST::FUNCTION:CAST -BB1IBE_do_decrypt 863 1_1_0d EXIST::FUNCTION:BB1IBE -HMAC 864 1_1_0d EXIST::FUNCTION: -EC_GROUP_check_discriminant 865 1_1_0d EXIST::FUNCTION:EC -i2d_X509_EXTENSION 866 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_error_depth 867 1_1_0d EXIST::FUNCTION: -OPENSSL_strlcpy 868 1_1_0d EXIST::FUNCTION: -EC_POINT_set_Jprojective_coordinates_GFp 869 1_1_0d EXIST::FUNCTION:EC -ENGINE_get_table_flags 870 1_1_0d EXIST::FUNCTION:ENGINE -BN_to_ASN1_INTEGER 871 1_1_0d EXIST::FUNCTION: -CRYPTO_free_ex_data 872 1_1_0d EXIST::FUNCTION: -PEM_write_bio_DSAparams 873 1_1_0d EXIST::FUNCTION:DSA -X509_VERIFY_PARAM_get0 874 1_1_0d EXIST::FUNCTION: -OCSP_basic_add1_cert 875 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_mem_debug_pop 876 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -i2d_ASIdentifierChoice 877 1_1_0d EXIST::FUNCTION:RFC3779 -i2d_ECPrivateKey 878 1_1_0d EXIST::FUNCTION:EC -OCSP_REQUEST_print 879 1_1_0d EXIST::FUNCTION:OCSP -d2i_ASN1_TYPE 880 1_1_0d EXIST::FUNCTION: -SM2CiphertextValue_new_from_ECCCipher 881 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 -EC_KEY_priv2oct 882 1_1_0d EXIST::FUNCTION:EC -SAF_AddTrustedRootCaCertificate 883 1_1_0d EXIST::FUNCTION: -DES_set_key_checked 884 1_1_0d EXIST::FUNCTION:DES -OPENSSL_LH_node_stats_bio 885 1_1_0d EXIST::FUNCTION: -ASN1_NULL_new 886 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_cleanup_local 887 1_1_0d EXIST::FUNCTION: -NCONF_load_bio 888 1_1_0d EXIST::FUNCTION: -EVP_PKEY_print_public 889 1_1_0d EXIST::FUNCTION: -ERR_load_RAND_strings 890 1_1_0d EXIST::FUNCTION: -d2i_DSA_SIG 891 1_1_0d EXIST::FUNCTION:DSA -BN_mod_sqrt 892 1_1_0d EXIST::FUNCTION: -SRP_create_verifier_BN 893 1_1_0d EXIST::FUNCTION:SRP -OCSP_request_sign 894 1_1_0d EXIST::FUNCTION:OCSP -ENGINE_set_default_string 895 1_1_0d EXIST::FUNCTION:ENGINE -EVP_get_digestbyname 896 1_1_0d EXIST::FUNCTION: -SHA512_Final 897 1_1_0d EXIST:!VMSVAX:FUNCTION: -EVP_md4 898 1_1_0d EXIST::FUNCTION:MD4 -X509_policy_tree_free 899 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_asn1_meth_str 900 1_1_0d EXIST::FUNCTION:ENGINE -CRYPTO_THREAD_get_local 901 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_paramgen 902 1_1_0d EXIST::FUNCTION: -ZUC_128eea3_encrypt 903 1_1_0d EXIST::FUNCTION:ZUC -X509_VERIFY_PARAM_set_hostflags 904 1_1_0d EXIST::FUNCTION: -BIO_new_PKCS7 905 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_ciphers 906 1_1_0d EXIST::FUNCTION:ENGINE -RSA_public_encrypt 907 1_1_0d EXIST::FUNCTION:RSA -DH_meth_set_generate_params 908 1_1_0d EXIST::FUNCTION:DH -ASN1_UTF8STRING_it 909 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_UTF8STRING_it 909 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SKF_ExportCertificate 910 1_1_0d EXIST::FUNCTION:SKF -BN_set_params 911 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -RAND_add 912 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_RSA 913 1_1_0d EXIST::FUNCTION:RSA -ECDH_KDF_X9_62 914 1_1_0d EXIST::FUNCTION:EC -BIO_nwrite 915 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_iv_length 916 1_1_0d EXIST::FUNCTION: -TS_CONF_set_certs 917 1_1_0d EXIST::FUNCTION:TS -i2d_PKCS8_PRIV_KEY_INFO 918 1_1_0d EXIST::FUNCTION: -ERR_load_OCSP_strings 919 1_1_0d EXIST::FUNCTION:OCSP -EC_curve_nid2nist 920 1_1_0d EXIST::FUNCTION:EC -CRYPTO_secure_malloc 921 1_1_0d EXIST::FUNCTION: -ESS_SIGNING_CERT_new 922 1_1_0d EXIST::FUNCTION:TS -ASN1_STRING_get0_data 923 1_1_0d EXIST::FUNCTION: -BIO_ADDR_free 924 1_1_0d EXIST::FUNCTION:SOCK -X509_get0_signature 925 1_1_0d EXIST::FUNCTION: -OCSP_resp_get0_id 926 1_1_0d EXIST::FUNCTION:OCSP -PEM_write_bio_PKCS8PrivateKey 927 1_1_0d EXIST::FUNCTION: -d2i_RSAPublicKey 928 1_1_0d EXIST::FUNCTION:RSA -SDF_FreeECCCipher 929 1_1_0d EXIST::FUNCTION:SDF -SKF_SetSymmKey 930 1_1_0d EXIST::FUNCTION:SKF -PEM_write_bio_PKCS7 931 1_1_0d EXIST::FUNCTION: -X509_OBJECT_get_type 932 1_1_0d EXIST::FUNCTION: -MD4_Transform 933 1_1_0d EXIST::FUNCTION:MD4 -X509_VERIFY_PARAM_move_peername 934 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_cfb8 935 1_1_0d EXIST::FUNCTION:CAMELLIA -RSA_check_key 936 1_1_0d EXIST::FUNCTION:RSA -PKCS12_BAGS_it 937 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_BAGS_it 937 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ERR_print_errors_cb 938 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_set_ECCSIGNATUREBLOB 939 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -ASN1_item_pack 940 1_1_0d EXIST::FUNCTION: -TS_REQ_set_nonce 941 1_1_0d EXIST::FUNCTION:TS -BN_GFP2_sub 942 1_1_0d EXIST::FUNCTION: -OCSP_CERTID_it 943 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_CERTID_it 943 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -RSA_generate_key_ex 944 1_1_0d EXIST::FUNCTION:RSA -DH_up_ref 945 1_1_0d EXIST::FUNCTION:DH -ECPARAMETERS_free 946 1_1_0d EXIST::FUNCTION:EC -OCSP_SIGNATURE_it 947 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_SIGNATURE_it 947 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -SM2_encrypt 948 1_1_0d EXIST::FUNCTION:SM2 -CMS_RecipientInfo_kari_get0_reks 949 1_1_0d EXIST::FUNCTION:CMS -i2d_ISSUING_DIST_POINT 950 1_1_0d EXIST::FUNCTION: -SDF_ImportKeyWithISK_ECC 951 1_1_0d EXIST::FUNCTION: -SOF_GetDeviceInfo 952 1_1_0d EXIST::FUNCTION: -EVP_rc2_ecb 953 1_1_0d EXIST::FUNCTION:RC2 -SDF_GenerateKeyWithECC 954 1_1_0d EXIST::FUNCTION: -PEM_write_RSA_PUBKEY 955 1_1_0d EXIST::FUNCTION:RSA,STDIO -COMP_CTX_get_type 956 1_1_0d EXIST::FUNCTION:COMP -BIO_asn1_get_suffix 957 1_1_0d EXIST::FUNCTION: -PKCS12_add_key 958 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_get_nm_flags 959 1_1_0d EXIST::FUNCTION: -EC_KEY_generate_key 960 1_1_0d EXIST::FUNCTION:EC -DH_get_2048_224 961 1_1_0d EXIST::FUNCTION:DH -SM2CiphertextValue_set_ECCCIPHERBLOB 962 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 -OPENSSL_isservice 963 1_1_0d EXIST::FUNCTION: -SAF_ImportEncedKey 964 1_1_0d EXIST::FUNCTION: -ASN1_TIME_it 965 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_TIME_it 965 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_up_ref 966 1_1_0d EXIST::FUNCTION: -EVP_aes_128_wrap 967 1_1_0d EXIST::FUNCTION: -X509_CRL_add_ext 968 1_1_0d EXIST::FUNCTION: -i2d_OCSP_BASICRESP 969 1_1_0d EXIST::FUNCTION:OCSP -X509_sign 970 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_get_flags 971 1_1_0d EXIST::FUNCTION: -ERR_get_next_error_library 972 1_1_0d EXIST::FUNCTION: -ECPARAMETERS_new 973 1_1_0d EXIST::FUNCTION:EC -BFIBE_do_encrypt 974 1_1_0d EXIST::FUNCTION:BFIBE -BN_is_prime_fasttest_ex 975 1_1_0d EXIST::FUNCTION: -EC_POINT_invert 976 1_1_0d EXIST::FUNCTION:EC -X509_NAME_digest 977 1_1_0d EXIST::FUNCTION: -i2d_ECPrivateKey_bio 978 1_1_0d EXIST::FUNCTION:EC -CMS_SignerInfo_set1_signer_cert 979 1_1_0d EXIST::FUNCTION:CMS -X509_VERIFY_PARAM_clear_flags 980 1_1_0d EXIST::FUNCTION: -i2d_POLICYINFO 981 1_1_0d EXIST::FUNCTION: -BN_mod_sub 982 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_get_sgd 983 1_1_0d EXIST::FUNCTION:GMAPI -X509_CRL_it 984 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CRL_it 984 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PEM_read_bio 985 1_1_0d EXIST::FUNCTION: -X509_check_issued 986 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_verify_cb 987 1_1_0d EXIST::FUNCTION: -DSA_meth_set0_app_data 988 1_1_0d EXIST::FUNCTION:DSA -EVP_CIPHER_CTX_clear_flags 989 1_1_0d EXIST::FUNCTION: -ASN1_item_dup 990 1_1_0d EXIST::FUNCTION: -RSA_padding_add_none 991 1_1_0d EXIST::FUNCTION:RSA -UI_method_get_writer 992 1_1_0d EXIST::FUNCTION:UI -sm3_compress 993 1_1_0d EXIST::FUNCTION:SM3 -EVP_VerifyFinal 994 1_1_0d EXIST::FUNCTION: -BN_GFP2_zero 995 1_1_0d EXIST::FUNCTION: -RSA_meth_get_verify 996 1_1_0d EXIST::FUNCTION:RSA -PKCS12_SAFEBAG_get0_attr 997 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_sqr_arr 998 1_1_0d EXIST::FUNCTION:EC2M -ERR_reason_error_string 999 1_1_0d EXIST::FUNCTION: -SKF_CloseApplication 1000 1_1_0d EXIST::FUNCTION:SKF -X509_issuer_and_serial_hash 1001 1_1_0d EXIST::FUNCTION: -ISSUING_DIST_POINT_new 1002 1_1_0d EXIST::FUNCTION: -RSA_meth_set_verify 1003 1_1_0d EXIST::FUNCTION:RSA -BIO_set_shutdown 1004 1_1_0d EXIST::FUNCTION: -BN_nist_mod_256 1005 1_1_0d EXIST::FUNCTION: -o2i_ECPublicKey 1006 1_1_0d EXIST::FUNCTION:EC -OCSP_basic_add1_nonce 1007 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_check_suiteb 1008 1_1_0d EXIST::FUNCTION: -BIO_hex_string 1009 1_1_0d EXIST::FUNCTION: -EVP_get_cipherbysgd 1010 1_1_0d EXIST::FUNCTION:GMAPI -CMS_signed_get0_data_by_OBJ 1011 1_1_0d EXIST::FUNCTION:CMS -SXNET_add_id_asc 1012 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_it 1013 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_SINGLERESP_it 1013 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -X509_STORE_CTX_get1_issuer 1014 1_1_0d EXIST::FUNCTION: -SOF_GetTimeStampInfo 1015 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_parent_ctx 1016 1_1_0d EXIST::FUNCTION: -i2d_RSAPublicKey_bio 1017 1_1_0d EXIST::FUNCTION:RSA -SEED_decrypt 1018 1_1_0d EXIST::FUNCTION:SEED -BIO_s_accept 1019 1_1_0d EXIST::FUNCTION:SOCK -i2d_X509_AUX 1020 1_1_0d EXIST::FUNCTION: -X509V3_add_standard_extensions 1021 1_1_0d EXIST::FUNCTION: -BIO_vprintf 1022 1_1_0d EXIST::FUNCTION: -ASN1_STRING_TABLE_add 1023 1_1_0d EXIST::FUNCTION: -EVP_DigestInit 1024 1_1_0d EXIST::FUNCTION: -SRP_check_known_gN_param 1025 1_1_0d EXIST::FUNCTION:SRP -EVP_CIPHER_CTX_reset 1026 1_1_0d EXIST::FUNCTION: -RSA_padding_check_SSLv23 1027 1_1_0d EXIST::FUNCTION:RSA -d2i_ECCCipher_fp 1028 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO -ASN1_GENERALIZEDTIME_print 1029 1_1_0d EXIST::FUNCTION: -SKF_GetContainerType 1030 1_1_0d EXIST::FUNCTION:SKF -i2d_PKCS12_BAGS 1031 1_1_0d EXIST::FUNCTION: -X509_STORE_get_get_crl 1032 1_1_0d EXIST::FUNCTION: -EVP_sms4_wrap 1033 1_1_0d EXIST::FUNCTION:SMS4 -DSA_generate_key 1034 1_1_0d EXIST::FUNCTION:DSA -EC_GROUP_is_type1curve 1035 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_get_ext_by_NID 1036 1_1_0d EXIST::FUNCTION:OCSP -PKCS8_pkey_add1_attr_by_NID 1037 1_1_0d EXIST::FUNCTION: -BFMasterSecret_free 1038 1_1_0d EXIST::FUNCTION:BFIBE -COMP_get_type 1039 1_1_0d EXIST::FUNCTION:COMP -EVP_PKEY_meth_add0 1040 1_1_0d EXIST::FUNCTION: -d2i_ASN1_GENERALIZEDTIME 1041 1_1_0d EXIST::FUNCTION: -i2d_DSAparams 1042 1_1_0d EXIST::FUNCTION:DSA -EVP_CIPHER_do_all_sorted 1043 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_ktri_get0_signer_id 1044 1_1_0d EXIST::FUNCTION:CMS -d2i_X509_AUX 1045 1_1_0d EXIST::FUNCTION: -SRP_VBASE_get_by_user 1046 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SRP -d2i_TS_RESP_bio 1047 1_1_0d EXIST::FUNCTION:TS -X509at_get_attr_by_OBJ 1048 1_1_0d EXIST::FUNCTION: -Camellia_ctr128_encrypt 1049 1_1_0d EXIST::FUNCTION:CAMELLIA -BB1CiphertextBlock_it 1050 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1CiphertextBlock_it 1050 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -SAF_GetCaCertificate 1051 1_1_0d EXIST::FUNCTION: -AES_cfb8_encrypt 1052 1_1_0d EXIST::FUNCTION: -CRYPTO_clear_realloc 1053 1_1_0d EXIST::FUNCTION: -DSO_flags 1054 1_1_0d EXIST::FUNCTION: -SM2CiphertextValue_it 1055 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM2 -SM2CiphertextValue_it 1055 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM2 -EVP_PKEY_security_bits 1056 1_1_0d EXIST::FUNCTION: -CMS_add_standard_smimecap 1057 1_1_0d EXIST::FUNCTION:CMS -CRYPTO_set_mem_debug 1058 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_b64_encode 1059 1_1_0d EXIST::FUNCTION: -DSA_set_flags 1060 1_1_0d EXIST::FUNCTION:DSA -UI_dup_input_string 1061 1_1_0d EXIST::FUNCTION:UI -i2d_AUTHORITY_INFO_ACCESS 1062 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_flags 1063 1_1_0d EXIST::FUNCTION: -i2d_TS_RESP_bio 1064 1_1_0d EXIST::FUNCTION:TS -BIO_method_type 1065 1_1_0d EXIST::FUNCTION: -ASN1_TBOOLEAN_it 1066 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_TBOOLEAN_it 1066 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_EncodeUpdate 1067 1_1_0d EXIST::FUNCTION: -ERR_clear_error 1068 1_1_0d EXIST::FUNCTION: -X509_cmp 1069 1_1_0d EXIST::FUNCTION: -BIO_meth_get_puts 1070 1_1_0d EXIST::FUNCTION: -RSA_new_from_RSArefPublicKey 1071 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -EC_GROUP_free 1072 1_1_0d EXIST::FUNCTION:EC -i2d_X509_REQ_INFO 1073 1_1_0d EXIST::FUNCTION: -ECDSA_do_sign 1074 1_1_0d EXIST::FUNCTION:EC -OCSP_ONEREQ_add_ext 1075 1_1_0d EXIST::FUNCTION:OCSP -BN_BLINDING_free 1076 1_1_0d EXIST::FUNCTION: -CTLOG_STORE_load_default_file 1077 1_1_0d EXIST::FUNCTION:CT -PKCS12_unpack_p7encdata 1078 1_1_0d EXIST::FUNCTION: -BN_security_bits 1079 1_1_0d EXIST::FUNCTION: -ERR_load_X509_strings 1080 1_1_0d EXIST::FUNCTION: -OPENSSL_memcmp 1081 1_1_0d EXIST::FUNCTION: -SCT_free 1082 1_1_0d EXIST::FUNCTION:CT -ASN1_ENUMERATED_get 1083 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_setiv 1084 1_1_0d EXIST::FUNCTION:OCB -EC_GF2m_simple_method 1085 1_1_0d EXIST::FUNCTION:EC,EC2M -EVP_PKEY_meth_set_paramgen 1086 1_1_0d EXIST::FUNCTION: -TS_ASN1_INTEGER_print_bio 1087 1_1_0d EXIST::FUNCTION:TS -DH_check_pub_key 1088 1_1_0d EXIST::FUNCTION:DH -d2i_ECDSA_SIG 1089 1_1_0d EXIST::FUNCTION:EC -i2d_TS_RESP_fp 1090 1_1_0d EXIST::FUNCTION:STDIO,TS -X509_STORE_CTX_get0_policy_tree 1091 1_1_0d EXIST::FUNCTION: -ECIES_PARAMS_get_kdf 1092 1_1_0d EXIST::FUNCTION:ECIES -DSO_global_lookup 1093 1_1_0d EXIST::FUNCTION: -PEM_get_EVP_CIPHER_INFO 1094 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_dup 1095 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_set0_othername 1096 1_1_0d EXIST::FUNCTION: -UI_get0_user_data 1097 1_1_0d EXIST::FUNCTION:UI -CMS_RecipientInfo_kari_decrypt 1098 1_1_0d EXIST::FUNCTION:CMS -POLICY_MAPPING_free 1099 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_set_verify 1100 1_1_0d EXIST::FUNCTION:EC -RSA_X931_derive_ex 1101 1_1_0d EXIST::FUNCTION:RSA -TS_REQ_new 1102 1_1_0d EXIST::FUNCTION:TS -i2d_PKCS8PrivateKey_nid_bio 1103 1_1_0d EXIST::FUNCTION: -CONF_dump_fp 1104 1_1_0d EXIST::FUNCTION:STDIO -TS_STATUS_INFO_get0_failure_info 1105 1_1_0d EXIST::FUNCTION:TS -speck_set_encrypt_key32 1106 1_1_0d EXIST::FUNCTION:SPECK -X509V3_set_ctx 1107 1_1_0d EXIST::FUNCTION: -CRYPTO_realloc 1108 1_1_0d EXIST::FUNCTION: -OCSP_url_svcloc_new 1109 1_1_0d EXIST::FUNCTION:OCSP -EVP_camellia_256_cfb1 1110 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_camellia_128_cfb1 1111 1_1_0d EXIST::FUNCTION:CAMELLIA -HMAC_CTX_set_flags 1112 1_1_0d EXIST::FUNCTION: -RSA_padding_add_PKCS1_OAEP_mgf1 1113 1_1_0d EXIST::FUNCTION:RSA -d2i_DSAparams 1114 1_1_0d EXIST::FUNCTION:DSA -ASN1_tag2str 1115 1_1_0d EXIST::FUNCTION: -sms4_wrap_key 1116 1_1_0d EXIST::FUNCTION:SMS4 -MD2_options 1117 1_1_0d EXIST::FUNCTION:MD2 -RSA_bits 1118 1_1_0d EXIST::FUNCTION:RSA -X509_http_nbio 1119 1_1_0d EXIST::FUNCTION:OCSP -ASN1_item_print 1120 1_1_0d EXIST::FUNCTION: -BN_X931_generate_prime_ex 1121 1_1_0d EXIST::FUNCTION: -X509V3_add_value_uchar 1122 1_1_0d EXIST::FUNCTION: -BN_to_montgomery 1123 1_1_0d EXIST::FUNCTION: -CONF_imodule_get_name 1124 1_1_0d EXIST::FUNCTION: -SOF_ChangePassWd 1125 1_1_0d EXIST::FUNCTION: -X509_REQ_sign_ctx 1126 1_1_0d EXIST::FUNCTION: -PKCS7_sign_add_signer 1127 1_1_0d EXIST::FUNCTION: -OBJ_NAME_init 1128 1_1_0d EXIST::FUNCTION: -speck_set_encrypt_key64 1129 1_1_0d EXIST::FUNCTION:SPECK -SAF_SymmDecryptUpdate 1130 1_1_0d EXIST::FUNCTION: -EVP_ripemd160 1131 1_1_0d EXIST::FUNCTION:RMD160 -EC_GROUP_get_pentanomial_basis 1132 1_1_0d EXIST::FUNCTION:EC,EC2M -BFPrivateKeyBlock_free 1133 1_1_0d EXIST::FUNCTION:BFIBE -CMS_RecipientInfo_ktri_cert_cmp 1134 1_1_0d EXIST::FUNCTION:CMS -EC_GROUP_copy 1135 1_1_0d EXIST::FUNCTION:EC -BN_mod_mul_reciprocal 1136 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_create_by_NID 1137 1_1_0d EXIST::FUNCTION: -SAF_CreateSymmKeyObj 1138 1_1_0d EXIST::FUNCTION: -RSA_padding_add_PKCS1_type_2 1139 1_1_0d EXIST::FUNCTION:RSA -ENGINE_set_ctrl_function 1140 1_1_0d EXIST::FUNCTION:ENGINE -UI_method_set_flusher 1141 1_1_0d EXIST::FUNCTION:UI -BN_MONT_CTX_set_locked 1142 1_1_0d EXIST::FUNCTION: -i2d_ECCCIPHERBLOB_fp 1143 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO -CMS_add0_CertificateChoices 1144 1_1_0d EXIST::FUNCTION:CMS -i2d_CRL_DIST_POINTS 1145 1_1_0d EXIST::FUNCTION: -EC_KEY_new_from_ECCrefPublicKey 1146 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -RSA_meth_set0_app_data 1147 1_1_0d EXIST::FUNCTION:RSA -CMS_verify 1148 1_1_0d EXIST::FUNCTION:CMS -i2d_TS_REQ 1149 1_1_0d EXIST::FUNCTION:TS -CRYPTO_zalloc 1150 1_1_0d EXIST::FUNCTION: -SDF_LoadLibrary 1151 1_1_0d EXIST::FUNCTION:SDF -SDF_PrintECCCipher 1152 1_1_0d EXIST::FUNCTION:SDF -ZLONG_it 1153 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ZLONG_it 1153 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_ocb128_aad 1154 1_1_0d EXIST::FUNCTION:OCB -i2d_OCSP_RESPDATA 1155 1_1_0d EXIST::FUNCTION:OCSP -BN_clear_free 1156 1_1_0d EXIST::FUNCTION: -X509_CRL_get0_by_cert 1157 1_1_0d EXIST::FUNCTION: -d2i_TS_ACCURACY 1158 1_1_0d EXIST::FUNCTION:TS -X509_get_key_usage 1159 1_1_0d EXIST::FUNCTION: -BN_BLINDING_create_param 1160 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_doall_arg 1161 1_1_0d EXIST::FUNCTION: -EC_POINT_hash2point 1162 1_1_0d EXIST::FUNCTION: -SRP_Calc_server_key 1163 1_1_0d EXIST::FUNCTION:SRP -CMS_is_detached 1164 1_1_0d EXIST::FUNCTION:CMS -X509V3_EXT_print 1165 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_get_time 1166 1_1_0d EXIST::FUNCTION:CT -OCSP_sendreq_nbio 1167 1_1_0d EXIST::FUNCTION:OCSP -SDF_ReadFile 1168 1_1_0d EXIST::FUNCTION: -ENGINE_register_all_DH 1169 1_1_0d EXIST::FUNCTION:ENGINE -OCSP_RESPONSE_print 1170 1_1_0d EXIST::FUNCTION:OCSP -EVP_CIPHER_do_all 1171 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set0_crls 1172 1_1_0d EXIST::FUNCTION: -EC_GROUP_new_curve_GFp 1173 1_1_0d EXIST::FUNCTION:EC -PKCS12_MAC_DATA_free 1174 1_1_0d EXIST::FUNCTION: -EVP_aes_192_ctr 1175 1_1_0d EXIST::FUNCTION: -ASIdOrRange_it 1176 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASIdOrRange_it 1176 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -SM2CiphertextValue_set_ECCCipher 1177 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 -SKF_EncryptUpdate 1178 1_1_0d EXIST::FUNCTION:SKF -ASN1_GENERALSTRING_free 1179 1_1_0d EXIST::FUNCTION: -RC5_32_ofb64_encrypt 1180 1_1_0d EXIST::FUNCTION:RC5 -SAF_GetCrlFromLdap 1181 1_1_0d EXIST::FUNCTION: -RSA_meth_get_keygen 1182 1_1_0d EXIST::FUNCTION:RSA -OCSP_request_add1_cert 1183 1_1_0d EXIST::FUNCTION:OCSP -OCSP_resp_find 1184 1_1_0d EXIST::FUNCTION:OCSP -ASN1_item_d2i_fp 1185 1_1_0d EXIST::FUNCTION:STDIO -i2d_CMS_bio_stream 1186 1_1_0d EXIST::FUNCTION:CMS -AES_encrypt 1187 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_certs 1188 1_1_0d EXIST::FUNCTION:TS -PEM_read_bio_PUBKEY 1189 1_1_0d EXIST::FUNCTION: -BIO_free_all 1190 1_1_0d EXIST::FUNCTION: -X509_get0_extensions 1191 1_1_0d EXIST::FUNCTION: -ASN1_UNIVERSALSTRING_it 1192 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_UNIVERSALSTRING_it 1192 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_prev 1193 1_1_0d EXIST::FUNCTION:ENGINE -DSA_meth_get_bn_mod_exp 1194 1_1_0d EXIST::FUNCTION:DSA -i2d_ECPrivateKey_fp 1195 1_1_0d EXIST::FUNCTION:EC,STDIO -BN_bn2lebinpad 1196 1_1_0d EXIST::FUNCTION: -BFPublicParameters_it 1197 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFPublicParameters_it 1197 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -SAF_RsaSignFile 1198 1_1_0d EXIST::FUNCTION: -NETSCAPE_CERT_SEQUENCE_it 1199 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NETSCAPE_CERT_SEQUENCE_it 1199 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ZUC_set_key 1200 1_1_0d EXIST::FUNCTION:ZUC -d2i_EC_PUBKEY_fp 1201 1_1_0d EXIST::FUNCTION:EC,STDIO -ASN1_item_d2i_bio 1202 1_1_0d EXIST::FUNCTION: -EVP_PBE_alg_add_type 1203 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get_id 1204 1_1_0d EXIST::FUNCTION: -SDF_GetPrivateKeyAccessRight 1205 1_1_0d EXIST::FUNCTION: -ERR_set_error_data 1206 1_1_0d EXIST::FUNCTION: -SM2CiphertextValue_free 1207 1_1_0d EXIST::FUNCTION:SM2 -RAND_poll 1208 1_1_0d EXIST::FUNCTION: -DISPLAYTEXT_new 1209 1_1_0d EXIST::FUNCTION: -SM9_generate_master_secret 1210 1_1_0d EXIST::FUNCTION:SM9 -RSA_get_RSAPRIVATEKEYBLOB 1211 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -PKCS12_add_friendlyname_utf8 1212 1_1_0d EXIST::FUNCTION: -ENGINE_get_next 1213 1_1_0d EXIST::FUNCTION:ENGINE -OBJ_add_object 1214 1_1_0d EXIST::FUNCTION: -X509_NAME_get_index_by_OBJ 1215 1_1_0d EXIST::FUNCTION: -BN_bn2hex 1216 1_1_0d EXIST::FUNCTION: -i2d_EC_PUBKEY_fp 1217 1_1_0d EXIST::FUNCTION:EC,STDIO -EVP_EncryptInit 1218 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_add1_ext_i2d 1219 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_ctr128_encrypt_ctr32 1220 1_1_0d EXIST::FUNCTION: -ASN1_TIME_diff 1221 1_1_0d EXIST::FUNCTION: -PKCS7_set_digest 1222 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_original_iv 1223 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_set0_value 1224 1_1_0d EXIST::FUNCTION: -PKCS7_add0_attrib_signing_time 1225 1_1_0d EXIST::FUNCTION: -ASN1_STRING_free 1226 1_1_0d EXIST::FUNCTION: -UI_get_result_maxsize 1227 1_1_0d EXIST::FUNCTION:UI -OPENSSL_utf82uni 1228 1_1_0d EXIST::FUNCTION: -PKCS12_decrypt_skey 1229 1_1_0d EXIST::FUNCTION: -BIO_get_new_index 1230 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_iv_length 1231 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_get_ext_count 1232 1_1_0d EXIST::FUNCTION:OCSP -EVP_sms4_cfb1 1233 1_1_0d EXIST::FUNCTION:SMS4 -X509_CRL_set1_lastUpdate 1234 1_1_0d EXIST::FUNCTION: -BN_mod_exp2_mont 1235 1_1_0d EXIST::FUNCTION: -d2i_ASN1_IA5STRING 1236 1_1_0d EXIST::FUNCTION: -OBJ_bsearch_ 1237 1_1_0d EXIST::FUNCTION: -CRYPTO_nistcts128_encrypt_block 1238 1_1_0d EXIST::FUNCTION: -RAND_query_egd_bytes 1239 1_1_0d EXIST::FUNCTION:EGD -BN_GF2m_mod_sqr 1240 1_1_0d EXIST::FUNCTION:EC2M -SAF_Base64_EncodeUpdate 1241 1_1_0d EXIST::FUNCTION: -TS_CONF_load_certs 1242 1_1_0d EXIST::FUNCTION:TS -ASN1_INTEGER_set_int64 1243 1_1_0d EXIST::FUNCTION: -DES_options 1244 1_1_0d EXIST::FUNCTION:DES -X509_subject_name_cmp 1245 1_1_0d EXIST::FUNCTION: -NCONF_free_data 1246 1_1_0d EXIST::FUNCTION: -ERR_load_SM9_strings 1247 1_1_0d EXIST::FUNCTION:SM9 -TS_MSG_IMPRINT_set_msg 1248 1_1_0d EXIST::FUNCTION:TS -X509_OBJECT_new 1249 1_1_0d EXIST::FUNCTION: -ENGINE_load_ssl_client_cert 1250 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_missing_parameters 1251 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_init 1252 1_1_0d EXIST::FUNCTION:TS -X509_NAME_dup 1253 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_add1_header 1254 1_1_0d EXIST::FUNCTION:OCSP -X509_policy_tree_get0_policies 1255 1_1_0d EXIST::FUNCTION: -TS_CONF_get_tsa_section 1256 1_1_0d EXIST::FUNCTION:TS -SAF_SM2_DecodeSignedAndEnvelopedData 1257 1_1_0d EXIST::FUNCTION: -v2i_GENERAL_NAMES 1258 1_1_0d EXIST::FUNCTION: -OCSP_check_nonce 1259 1_1_0d EXIST::FUNCTION:OCSP -BN_pseudo_rand_range 1260 1_1_0d EXIST::FUNCTION: -EVP_set_pw_prompt 1261 1_1_0d EXIST::FUNCTION:UI -CRYPTO_get_ex_new_index 1262 1_1_0d EXIST::FUNCTION: -DH_set0_key 1263 1_1_0d EXIST::FUNCTION:DH -EVP_EncryptInit_ex 1264 1_1_0d EXIST::FUNCTION: -X509_STORE_set_verify_cb 1265 1_1_0d EXIST::FUNCTION: -PKCS12_get0_mac 1266 1_1_0d EXIST::FUNCTION: -OPENSSL_config 1267 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -SM2_compute_message_digest 1268 1_1_0d EXIST::FUNCTION:SM2 -EVP_aes_192_ofb 1269 1_1_0d EXIST::FUNCTION: -SHA256_Final 1270 1_1_0d EXIST::FUNCTION: -d2i_X509_REQ_INFO 1271 1_1_0d EXIST::FUNCTION: -BIO_socket 1272 1_1_0d EXIST::FUNCTION:SOCK -i2d_TS_TST_INFO 1273 1_1_0d EXIST::FUNCTION:TS -EC_KEY_set_public_key 1274 1_1_0d EXIST::FUNCTION:EC -sms4_ctr128_encrypt 1275 1_1_0d EXIST::FUNCTION:SMS4 -ERR_get_error_line_data 1276 1_1_0d EXIST::FUNCTION: -EVP_sha256 1277 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_SIGN_ENVELOPE 1278 1_1_0d EXIST::FUNCTION: -UI_method_set_closer 1279 1_1_0d EXIST::FUNCTION:UI -SKF_MacInit 1280 1_1_0d EXIST::FUNCTION:SKF -EVP_sms4_xts 1281 1_1_0d EXIST::FUNCTION:SMS4 -X509_STORE_CTX_set_cert 1282 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_set_padding 1283 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_update 1284 1_1_0d EXIST::FUNCTION: -SKF_EnumContainer 1285 1_1_0d EXIST::FUNCTION:SKF -CMS_ReceiptRequest_create0 1286 1_1_0d EXIST::FUNCTION:CMS -i2d_TS_MSG_IMPRINT 1287 1_1_0d EXIST::FUNCTION:TS -BN_to_ASN1_ENUMERATED 1288 1_1_0d EXIST::FUNCTION: -SDF_Encrypt 1289 1_1_0d EXIST::FUNCTION: -sms4_encrypt_16blocks 1290 1_1_0d EXIST::FUNCTION:SMS4 -ASN1_dup 1291 1_1_0d EXIST::FUNCTION: -EC_KEY_get_enc_flags 1292 1_1_0d EXIST::FUNCTION:EC -SOF_GetEncryptMethod 1293 1_1_0d EXIST::FUNCTION: -EVP_DecryptInit 1294 1_1_0d EXIST::FUNCTION: -CMS_add1_signer 1295 1_1_0d EXIST::FUNCTION:CMS -X509_STORE_CTX_set_time 1296 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kekri_id_cmp 1297 1_1_0d EXIST::FUNCTION:CMS -X509_sign_ctx 1298 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_delete_ptr 1299 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_get0_id 1300 1_1_0d EXIST::FUNCTION:OCSP -TS_RESP_CTX_new 1301 1_1_0d EXIST::FUNCTION:TS -RSA_print 1302 1_1_0d EXIST::FUNCTION:RSA -X509_check_purpose 1303 1_1_0d EXIST::FUNCTION: -SM2_KAP_CTX_cleanup 1304 1_1_0d EXIST::FUNCTION:SM2 -EVP_MD_meth_get_flags 1305 1_1_0d EXIST::FUNCTION: -i2d_PROXY_CERT_INFO_EXTENSION 1306 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_free 1307 1_1_0d EXIST::FUNCTION:OCSP -ASN1_STRING_set_by_NID 1308 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_create_by_OBJ 1309 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_get_data 1310 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_get_ctrl 1311 1_1_0d EXIST::FUNCTION: -PKCS12_set_mac 1312 1_1_0d EXIST::FUNCTION: -RSA_verify_ASN1_OCTET_STRING 1313 1_1_0d EXIST::FUNCTION:RSA -SM9PrivateKey_free 1314 1_1_0d EXIST::FUNCTION:SM9 -d2i_X509_VAL 1315 1_1_0d EXIST::FUNCTION: -ASN1_TIME_check 1316 1_1_0d EXIST::FUNCTION: -ERR_lib_error_string 1317 1_1_0d EXIST::FUNCTION: -SKF_NewEnvelopedKey 1318 1_1_0d EXIST::FUNCTION:SKF -ASN1_PCTX_set_str_flags 1319 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_rand_key 1320 1_1_0d EXIST::FUNCTION: -TS_REQ_get_ext 1321 1_1_0d EXIST::FUNCTION:TS -PKCS12_add_safes 1322 1_1_0d EXIST::FUNCTION: -ASN1_buf_print 1323 1_1_0d EXIST::FUNCTION: -ACCESS_DESCRIPTION_new 1324 1_1_0d EXIST::FUNCTION: -OCSP_crl_reason_str 1325 1_1_0d EXIST::FUNCTION:OCSP -d2i_OCSP_REQUEST 1326 1_1_0d EXIST::FUNCTION:OCSP -BN_sqr 1327 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_get_ext_by_OBJ 1328 1_1_0d EXIST::FUNCTION:OCSP -d2i_ASN1_T61STRING 1329 1_1_0d EXIST::FUNCTION: -ESS_ISSUER_SERIAL_new 1330 1_1_0d EXIST::FUNCTION:TS -ECDSA_SIG_free 1331 1_1_0d EXIST::FUNCTION:EC -EVP_PKEY_get_default_digest_nid 1332 1_1_0d EXIST::FUNCTION: -TS_REQ_dup 1333 1_1_0d EXIST::FUNCTION:TS -DES_fcrypt 1334 1_1_0d EXIST::FUNCTION:DES -OpenSSL_version_num 1335 1_1_0d EXIST::FUNCTION: -X509_OBJECT_get0_X509 1336 1_1_0d EXIST::FUNCTION: -X509_time_adj 1337 1_1_0d EXIST::FUNCTION: -SKF_ChangePIN 1338 1_1_0d EXIST::FUNCTION:SKF -ERR_peek_last_error_line_data 1339 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_ciphers 1340 1_1_0d EXIST::FUNCTION:ENGINE -SM9_VerifyInit 1341 1_1_0d EXIST::FUNCTION:SM9 -DSA_generate_parameters 1342 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DSA -X509_REVOKED_set_serialNumber 1343 1_1_0d EXIST::FUNCTION: -SAF_SM2_DecodeSignedData 1344 1_1_0d EXIST::FUNCTION: -RSA_padding_check_PKCS1_OAEP 1345 1_1_0d EXIST::FUNCTION:RSA -DH_get0_pqg 1346 1_1_0d EXIST::FUNCTION:DH -BIO_new_mem_buf 1347 1_1_0d EXIST::FUNCTION: -EVP_DecodeBlock 1348 1_1_0d EXIST::FUNCTION: -d2i_ECCCIPHERBLOB_bio 1349 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -PEM_write_X509_REQ 1350 1_1_0d EXIST::FUNCTION:STDIO -SAF_RsaVerifySign 1351 1_1_0d EXIST::FUNCTION: -EVP_ENCODE_CTX_num 1352 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_ext_by_NID 1353 1_1_0d EXIST::FUNCTION:TS -RSA_set_ex_data 1354 1_1_0d EXIST::FUNCTION:RSA -SKF_GenExtRSAKey 1355 1_1_0d EXIST::FUNCTION:SKF -v2i_GENERAL_NAME 1356 1_1_0d EXIST::FUNCTION: -SDF_ExternalEncrypt_ECC 1357 1_1_0d EXIST::FUNCTION: -PKCS12_new 1358 1_1_0d EXIST::FUNCTION: -X509_REQ_get_attr_by_NID 1359 1_1_0d EXIST::FUNCTION: -ASYNC_is_capable 1360 1_1_0d EXIST::FUNCTION: -ERR_load_ERR_strings 1361 1_1_0d EXIST::FUNCTION: -a2i_ASN1_ENUMERATED 1362 1_1_0d EXIST::FUNCTION: -SCT_set0_extensions 1363 1_1_0d EXIST::FUNCTION:CT -ERR_pop_to_mark 1364 1_1_0d EXIST::FUNCTION: -BN_num_bits 1365 1_1_0d EXIST::FUNCTION: -PKCS12_key_gen_uni 1366 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_delete_ext 1367 1_1_0d EXIST::FUNCTION:OCSP -PKCS12_SAFEBAG_get1_cert 1368 1_1_0d EXIST::FUNCTION: -i2d_PKCS8_PRIV_KEY_INFO_bio 1369 1_1_0d EXIST::FUNCTION: -BN_get_rfc3526_prime_8192 1370 1_1_0d EXIST::FUNCTION: -BN_get_rfc3526_prime_1536 1371 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_free 1372 1_1_0d EXIST::FUNCTION:OCSP -CMS_signed_add1_attr 1373 1_1_0d EXIST::FUNCTION:CMS -X509_VAL_free 1374 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_push 1375 1_1_0d EXIST::FUNCTION: -EVP_PKEY2PKCS8 1376 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_ext_by_OBJ 1377 1_1_0d EXIST::FUNCTION:TS -AUTHORITY_INFO_ACCESS_new 1378 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get0 1379 1_1_0d EXIST::FUNCTION: -BIO_puts 1380 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cbc 1381 1_1_0d EXIST::FUNCTION: -i2d_X509_bio 1382 1_1_0d EXIST::FUNCTION: -BN_GFP2_div 1383 1_1_0d EXIST::FUNCTION: -EC_KEY_set_ECCrefPublicKey 1384 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -PKCS12_PBE_add 1385 1_1_0d EXIST::FUNCTION: -d2i_PKCS8_fp 1386 1_1_0d EXIST::FUNCTION:STDIO -EC_POINTs_make_affine 1387 1_1_0d EXIST::FUNCTION:EC -SMIME_read_PKCS7 1388 1_1_0d EXIST::FUNCTION: -RC2_ofb64_encrypt 1389 1_1_0d EXIST::FUNCTION:RC2 -SKF_GetDevState 1390 1_1_0d EXIST::FUNCTION:SKF -PAILLIER_decrypt 1391 1_1_0d EXIST::FUNCTION:PAILLIER -OCSP_cert_status_str 1392 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_get_ext 1393 1_1_0d EXIST::FUNCTION: -i2d_PKCS8PrivateKeyInfo_fp 1394 1_1_0d EXIST::FUNCTION:STDIO -COMP_compress_block 1395 1_1_0d EXIST::FUNCTION:COMP -OCSP_ONEREQ_get1_ext_d2i 1396 1_1_0d EXIST::FUNCTION:OCSP -X509_NAME_get_index_by_NID 1397 1_1_0d EXIST::FUNCTION: -BIO_s_connect 1398 1_1_0d EXIST::FUNCTION:SOCK -i2d_PKCS12_MAC_DATA 1399 1_1_0d EXIST::FUNCTION: -BIO_write 1400 1_1_0d EXIST::FUNCTION: -PEM_write_X509_AUX 1401 1_1_0d EXIST::FUNCTION:STDIO -TS_STATUS_INFO_free 1402 1_1_0d EXIST::FUNCTION:TS -EVP_MD_meth_get_ctrl 1403 1_1_0d EXIST::FUNCTION: -UI_method_set_opener 1404 1_1_0d EXIST::FUNCTION:UI -DSA_up_ref 1405 1_1_0d EXIST::FUNCTION:DSA -ASN1_INTEGER_to_BN 1406 1_1_0d EXIST::FUNCTION: -SOF_EncryptFile 1407 1_1_0d EXIST::FUNCTION: -NCONF_get_section 1408 1_1_0d EXIST::FUNCTION: -BN_nist_mod_384 1409 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_get_ext 1410 1_1_0d EXIST::FUNCTION:OCSP -CMS_decrypt_set1_pkey 1411 1_1_0d EXIST::FUNCTION:CMS -EC_GROUP_dup 1412 1_1_0d EXIST::FUNCTION:EC -X509_NAME_ENTRY_create_by_txt 1413 1_1_0d EXIST::FUNCTION: -CERTIFICATEPOLICIES_it 1414 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -CERTIFICATEPOLICIES_it 1414 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_CIPHER_CTX_iv_length 1415 1_1_0d EXIST::FUNCTION: -X509_REQ_set_pubkey 1416 1_1_0d EXIST::FUNCTION: -CMS_EncryptedData_encrypt 1417 1_1_0d EXIST::FUNCTION:CMS -IPAddressOrRange_free 1418 1_1_0d EXIST::FUNCTION:RFC3779 -PKCS8_PRIV_KEY_INFO_free 1419 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_stats_bio 1420 1_1_0d EXIST::FUNCTION: -UI_UTIL_read_pw_string 1421 1_1_0d EXIST::FUNCTION:UI -BIO_dup_chain 1422 1_1_0d EXIST::FUNCTION: -X509_VAL_it 1423 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_VAL_it 1423 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -a2i_ASN1_STRING 1424 1_1_0d EXIST::FUNCTION: -RSA_meth_set_sign 1425 1_1_0d EXIST::FUNCTION:RSA -CRYPTO_set_mem_functions 1426 1_1_0d EXIST::FUNCTION: -X509_STORE_get_get_issuer 1427 1_1_0d EXIST::FUNCTION: -SHA1_Transform 1428 1_1_0d EXIST::FUNCTION: -MD5_Final 1429 1_1_0d EXIST::FUNCTION:MD5 -SHA224_Update 1430 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_create_pkcs8_encrypt 1431 1_1_0d EXIST::FUNCTION: -SKF_ExtECCVerify 1432 1_1_0d EXIST::FUNCTION:SKF -TS_CONF_set_default_engine 1433 1_1_0d EXIST::FUNCTION:ENGINE,TS -TS_TST_INFO_ext_free 1434 1_1_0d EXIST::FUNCTION:TS -X509_NAME_print_ex_fp 1435 1_1_0d EXIST::FUNCTION:STDIO -X509_REQ_it 1436 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_REQ_it 1436 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -d2i_SXNETID 1437 1_1_0d EXIST::FUNCTION: -NCONF_load_fp 1438 1_1_0d EXIST::FUNCTION:STDIO -BIO_dump_indent_cb 1439 1_1_0d EXIST::FUNCTION: -EVP_aes_128_xts 1440 1_1_0d EXIST::FUNCTION: -ASN1_STRING_dup 1441 1_1_0d EXIST::FUNCTION: -i2d_CPK_MASTER_SECRET 1442 1_1_0d EXIST::FUNCTION:CPK -EVP_PKEY_meth_get_copy 1443 1_1_0d EXIST::FUNCTION: -RAND_write_file 1444 1_1_0d EXIST::FUNCTION: -SAF_RsaVerifySignFile 1445 1_1_0d EXIST::FUNCTION: -EVP_rc2_cfb64 1446 1_1_0d EXIST::FUNCTION:RC2 -TS_RESP_verify_signature 1447 1_1_0d EXIST::FUNCTION:TS -BB1IBE_decrypt 1448 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_sms4_wrap_pad 1449 1_1_0d EXIST::FUNCTION:SMS4 -i2s_ASN1_OCTET_STRING 1450 1_1_0d EXIST::FUNCTION: -UTF8_putc 1451 1_1_0d EXIST::FUNCTION: -ERR_load_RSA_strings 1452 1_1_0d EXIST::FUNCTION:RSA -X509_STORE_CTX_set_verify_cb 1453 1_1_0d EXIST::FUNCTION: -i2d_DSA_PUBKEY_bio 1454 1_1_0d EXIST::FUNCTION:DSA -X509V3_EXT_REQ_add_nconf 1455 1_1_0d EXIST::FUNCTION: -X509_ALGOR_cmp 1456 1_1_0d EXIST::FUNCTION: -SKF_DecryptInit 1457 1_1_0d EXIST::FUNCTION:SKF -BB1IBE_setup 1458 1_1_0d EXIST::FUNCTION:BB1IBE -ECIES_PARAMS_init_with_type 1459 1_1_0d EXIST::FUNCTION:ECIES -OPENSSL_atexit 1460 1_1_0d EXIST::FUNCTION: -SKF_ExtECCSign 1461 1_1_0d EXIST::FUNCTION:SKF -d2i_GENERAL_NAMES 1462 1_1_0d EXIST::FUNCTION: -POLICY_CONSTRAINTS_it 1463 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICY_CONSTRAINTS_it 1463 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_CIPHER_meth_free 1464 1_1_0d EXIST::FUNCTION: -RSA_meth_get_priv_enc 1465 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_sign 1466 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_cfb8 1467 1_1_0d EXIST::FUNCTION:DES -BIO_meth_get_gets 1468 1_1_0d EXIST::FUNCTION: -EVP_aes_192_cfb1 1469 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_current_issuer 1470 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_mul 1471 1_1_0d EXIST::FUNCTION:EC2M -NCONF_load 1472 1_1_0d EXIST::FUNCTION: -CRYPTO_free_ex_index 1473 1_1_0d EXIST::FUNCTION: -SXNET_add_id_INTEGER 1474 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_cbc 1475 1_1_0d EXIST::FUNCTION:DES -EC_GROUP_get_type1curve_zeta 1476 1_1_0d EXIST::FUNCTION: -X509at_add1_attr 1477 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_reset 1478 1_1_0d EXIST::FUNCTION: -i2d_ASN1_UNIVERSALSTRING 1479 1_1_0d EXIST::FUNCTION: -PKCS7_ENVELOPE_it 1480 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ENVELOPE_it 1480 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CMS_ContentInfo_new 1481 1_1_0d EXIST::FUNCTION:CMS -EVP_aes_256_ccm 1482 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_copy 1483 1_1_0d EXIST::FUNCTION: -CMS_signed_get_attr_count 1484 1_1_0d EXIST::FUNCTION:CMS -POLICY_CONSTRAINTS_free 1485 1_1_0d EXIST::FUNCTION: -BB1IBE_encrypt 1486 1_1_0d EXIST::FUNCTION:BB1IBE -ASIdOrRange_new 1487 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_MD_CTX_free 1488 1_1_0d EXIST::FUNCTION: -SKF_SetLabel 1489 1_1_0d EXIST::FUNCTION:SKF -DSA_get0_engine 1490 1_1_0d EXIST::FUNCTION:DSA -ASN1_INTEGER_cmp 1491 1_1_0d EXIST::FUNCTION: -PKCS7_ENCRYPT_it 1492 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ENCRYPT_it 1492 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_REQ_CTX_i2d 1493 1_1_0d EXIST::FUNCTION:OCSP -X509_policy_tree_level_count 1494 1_1_0d EXIST::FUNCTION: -DSO_load 1495 1_1_0d EXIST::FUNCTION: -FFX_decrypt 1496 1_1_0d EXIST::FUNCTION: -d2i_DHparams 1497 1_1_0d EXIST::FUNCTION:DH -X509_ALGOR_set_md 1498 1_1_0d EXIST::FUNCTION: -BF_decrypt 1499 1_1_0d EXIST::FUNCTION:BF -OCSP_SERVICELOC_free 1500 1_1_0d EXIST::FUNCTION:OCSP -SCT_get_version 1501 1_1_0d EXIST::FUNCTION:CT -EC_KEY_METHOD_type 1502 1_1_0d EXIST::FUNCTION:SM2 -X509_STORE_CTX_get_check_issued 1503 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_get_ext_count 1504 1_1_0d EXIST::FUNCTION:OCSP -ENGINE_add_conf_module 1505 1_1_0d EXIST::FUNCTION:ENGINE -NCONF_dump_fp 1506 1_1_0d EXIST::FUNCTION:STDIO -PEM_write_DSAparams 1507 1_1_0d EXIST::FUNCTION:DSA,STDIO -TS_TST_INFO_get_time 1508 1_1_0d EXIST::FUNCTION:TS -EVP_CIPHER_CTX_key_length 1509 1_1_0d EXIST::FUNCTION: -ENGINE_get_digest_engine 1510 1_1_0d EXIST::FUNCTION:ENGINE -BN_get_rfc3526_prime_3072 1511 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_by_subject 1512 1_1_0d EXIST::FUNCTION: -DES_decrypt3 1513 1_1_0d EXIST::FUNCTION:DES -PKCS7_get_signed_attribute 1514 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_get_uint64 1515 1_1_0d EXIST::FUNCTION: -DES_ofb_encrypt 1516 1_1_0d EXIST::FUNCTION:DES -SDF_ExternalVerify_ECC 1517 1_1_0d EXIST::FUNCTION: -d2i_POLICYINFO 1518 1_1_0d EXIST::FUNCTION: -PEM_read_bio_DHparams 1519 1_1_0d EXIST::FUNCTION:DH -RSA_up_ref 1520 1_1_0d EXIST::FUNCTION:RSA -ENGINE_get_cipher 1521 1_1_0d EXIST::FUNCTION:ENGINE -X509_signature_print 1522 1_1_0d EXIST::FUNCTION: -CONF_dump_bio 1523 1_1_0d EXIST::FUNCTION: -X509_REQ_get0_signature 1524 1_1_0d EXIST::FUNCTION: -EC_POINT_free 1525 1_1_0d EXIST::FUNCTION:EC -CRYPTO_128_unwrap_pad 1526 1_1_0d EXIST::FUNCTION: -EVP_seed_cbc 1527 1_1_0d EXIST::FUNCTION:SEED -USERNOTICE_free 1528 1_1_0d EXIST::FUNCTION: -EVP_PBE_scrypt 1529 1_1_0d EXIST::FUNCTION:SCRYPT -X509_STORE_CTX_get_by_subject 1530 1_1_0d EXIST::FUNCTION: -X509_issuer_name_hash_old 1531 1_1_0d EXIST::FUNCTION:MD5 -X509_get_ext_by_critical 1532 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_node_stats 1533 1_1_0d EXIST::FUNCTION:STDIO -EVP_PKEY_meth_get_verify 1534 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_get1_crl 1535 1_1_0d EXIST::FUNCTION: -BIO_meth_get_callback_ctrl 1536 1_1_0d EXIST::FUNCTION: -X509_ALGORS_it 1537 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_ALGORS_it 1537 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_CIPHER_meth_set_flags 1538 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_node_usage_stats 1539 1_1_0d EXIST::FUNCTION:STDIO -RC5_32_cbc_encrypt 1540 1_1_0d EXIST::FUNCTION:RC5 -PKCS12_key_gen_utf8 1541 1_1_0d EXIST::FUNCTION: -ASYNC_WAIT_CTX_get_changed_fds 1542 1_1_0d EXIST::FUNCTION: -EVP_get_pw_prompt 1543 1_1_0d EXIST::FUNCTION:UI -i2d_NETSCAPE_SPKAC 1544 1_1_0d EXIST::FUNCTION: -X509_CRL_INFO_free 1545 1_1_0d EXIST::FUNCTION: -i2d_OCSP_RESPBYTES 1546 1_1_0d EXIST::FUNCTION:OCSP -i2d_NETSCAPE_CERT_SEQUENCE 1547 1_1_0d EXIST::FUNCTION: -CMS_add0_recipient_key 1548 1_1_0d EXIST::FUNCTION:CMS -EC_GROUP_get0_generator 1549 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_set0_verified_chain 1550 1_1_0d EXIST::FUNCTION: -OPENSSL_strnlen 1551 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_get_encrypt 1552 1_1_0d EXIST::FUNCTION:SM2 -EVP_sm3 1553 1_1_0d EXIST::FUNCTION:SM3 -EVP_EncodeInit 1554 1_1_0d EXIST::FUNCTION: -BFIBE_setup 1555 1_1_0d EXIST::FUNCTION:BFIBE -EC_POINT_make_affine 1556 1_1_0d EXIST::FUNCTION:EC -CONF_load_fp 1557 1_1_0d EXIST::FUNCTION:STDIO -EC_KEY_key2buf 1558 1_1_0d EXIST::FUNCTION:EC -X509_get0_notAfter 1559 1_1_0d EXIST::FUNCTION: -OCSP_sendreq_new 1560 1_1_0d EXIST::FUNCTION:OCSP -EVP_idea_ecb 1561 1_1_0d EXIST::FUNCTION:IDEA -ASN1_NULL_it 1562 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_NULL_it 1562 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SDF_ReleasePrivateKeyAccessRight 1563 1_1_0d EXIST::FUNCTION: -SDF_GetErrorString 1564 1_1_0d EXIST::FUNCTION:SDF -BIO_ctrl_wpending 1565 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_DH 1566 1_1_0d EXIST::FUNCTION:ENGINE -X509_TRUST_get_by_id 1567 1_1_0d EXIST::FUNCTION: -ENGINE_set_init_function 1568 1_1_0d EXIST::FUNCTION:ENGINE -CMS_set_detached 1569 1_1_0d EXIST::FUNCTION:CMS -X509v3_get_ext_count 1570 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_tls_encodedpoint 1571 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_get_template 1572 1_1_0d EXIST::FUNCTION: -EVP_DigestSignInit 1573 1_1_0d EXIST::FUNCTION: -ASN1_BMPSTRING_it 1574 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_BMPSTRING_it 1574 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -TS_CONF_set_clock_precision_digits 1575 1_1_0d EXIST::FUNCTION:TS -d2i_PKCS8PrivateKey_fp 1576 1_1_0d EXIST::FUNCTION:STDIO -TS_TST_INFO_set_serial 1577 1_1_0d EXIST::FUNCTION:TS -ERR_add_error_vdata 1578 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_print 1579 1_1_0d EXIST::FUNCTION: -d2i_NOTICEREF 1580 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_lookup_crls 1581 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_status_info 1582 1_1_0d EXIST::FUNCTION:TS -d2i_X509_CERT_AUX 1583 1_1_0d EXIST::FUNCTION: -ENGINE_get_ex_data 1584 1_1_0d EXIST::FUNCTION:ENGINE -i2d_CPK_MASTER_SECRET_bio 1585 1_1_0d EXIST::FUNCTION:CPK -EC_KEY_get0_public_key 1586 1_1_0d EXIST::FUNCTION:EC -ENGINE_get_default_DSA 1587 1_1_0d EXIST::FUNCTION:ENGINE -CONF_imodule_get_value 1588 1_1_0d EXIST::FUNCTION: -EVP_PKEY_verify 1589 1_1_0d EXIST::FUNCTION: -SAF_EccVerifySignFile 1590 1_1_0d EXIST::FUNCTION:SAF -DSA_meth_get_flags 1591 1_1_0d EXIST::FUNCTION:DSA -TS_ACCURACY_free 1592 1_1_0d EXIST::FUNCTION:TS -i2d_SM9MasterSecret 1593 1_1_0d EXIST::FUNCTION:SM9 -ENGINE_register_all_DSA 1594 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_TYPE_set 1595 1_1_0d EXIST::FUNCTION: -DH_meth_get0_name 1596 1_1_0d EXIST::FUNCTION:DH -OCSP_REQINFO_free 1597 1_1_0d EXIST::FUNCTION:OCSP -ASN1_PCTX_get_str_flags 1598 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_unlock 1599 1_1_0d EXIST::FUNCTION: -OPENSSL_init 1600 1_1_0d EXIST::FUNCTION: -ASIdentifierChoice_free 1601 1_1_0d EXIST::FUNCTION:RFC3779 -PKEY_USAGE_PERIOD_new 1602 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_do_cipher 1603 1_1_0d EXIST::FUNCTION: -RSA_security_bits 1604 1_1_0d EXIST::FUNCTION:RSA -SCT_set1_extensions 1605 1_1_0d EXIST::FUNCTION:CT -CONF_free 1606 1_1_0d EXIST::FUNCTION: -BIO_get_shutdown 1607 1_1_0d EXIST::FUNCTION: -X509V3_get_section 1608 1_1_0d EXIST::FUNCTION: -EVP_PKEY_size 1609 1_1_0d EXIST::FUNCTION: -ECDSA_verify 1610 1_1_0d EXIST::FUNCTION:EC -Camellia_ecb_encrypt 1611 1_1_0d EXIST::FUNCTION:CAMELLIA -OTP_generate 1612 1_1_0d EXIST::FUNCTION:OTP -DSA_meth_get_sign_setup 1613 1_1_0d EXIST::FUNCTION:DSA -PKCS7_RECIP_INFO_it 1614 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_RECIP_INFO_it 1614 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OBJ_get0_data 1615 1_1_0d EXIST::FUNCTION: -SKF_PrintECCPublicKey 1616 1_1_0d EXIST::FUNCTION:SKF -PEM_read_bio_PKCS7 1617 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_auth_level 1618 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_signer_cert 1619 1_1_0d EXIST::FUNCTION:TS -BN_GFP2_add 1620 1_1_0d EXIST::FUNCTION: -EVP_aes_256_ecb 1621 1_1_0d EXIST::FUNCTION: -ENGINE_set_table_flags 1622 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_asn1_add0 1623 1_1_0d EXIST::FUNCTION: -EVP_rc2_40_cbc 1624 1_1_0d EXIST::FUNCTION:RC2 -err_free_strings_int 1625 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_get_object 1626 1_1_0d EXIST::FUNCTION: -SM9_decrypt 1627 1_1_0d EXIST::FUNCTION:SM9 -X509_NAME_ENTRY_set 1628 1_1_0d EXIST::FUNCTION: -i2d_RSAPrivateKey 1629 1_1_0d EXIST::FUNCTION:RSA -X509_certificate_type 1630 1_1_0d EXIST::FUNCTION: -OBJ_obj2nid 1631 1_1_0d EXIST::FUNCTION: -CTLOG_free 1632 1_1_0d EXIST::FUNCTION:CT -RSA_sign_ASN1_OCTET_STRING 1633 1_1_0d EXIST::FUNCTION:RSA -ASN1_PCTX_set_nm_flags 1634 1_1_0d EXIST::FUNCTION: -PEM_read_bio_DSAparams 1635 1_1_0d EXIST::FUNCTION:DSA -UI_UTIL_read_pw 1636 1_1_0d EXIST::FUNCTION:UI -X509_CRL_free 1637 1_1_0d EXIST::FUNCTION: -EVP_aes_192_cbc 1638 1_1_0d EXIST::FUNCTION: -EVP_aes_128_cfb128 1639 1_1_0d EXIST::FUNCTION: -CRYPTO_128_unwrap 1640 1_1_0d EXIST::FUNCTION: -ASN1_BOOLEAN_it 1641 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_BOOLEAN_it 1641 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EC_POINT_set_compressed_coordinates_GFp 1642 1_1_0d EXIST::FUNCTION:EC -SM9_setup 1643 1_1_0d EXIST::FUNCTION:SM9 -X509_VERIFY_PARAM_set1_name 1644 1_1_0d EXIST::FUNCTION: -X509_REQ_print 1645 1_1_0d EXIST::FUNCTION: -i2d_ASN1_PRINTABLE 1646 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_ordering 1647 1_1_0d EXIST::FUNCTION:TS -PEM_read_PrivateKey 1648 1_1_0d EXIST::FUNCTION:STDIO -OCSP_RESPID_new 1649 1_1_0d EXIST::FUNCTION:OCSP -BIO_f_asn1 1650 1_1_0d EXIST::FUNCTION: -PEM_read_bio_X509_CRL 1651 1_1_0d EXIST::FUNCTION: -EVP_rc2_64_cbc 1652 1_1_0d EXIST::FUNCTION:RC2 -EC_GROUP_new_type1curve 1653 1_1_0d EXIST::FUNCTION: -BIO_set_callback_arg 1654 1_1_0d EXIST::FUNCTION: -speck_set_decrypt_key32 1655 1_1_0d EXIST::FUNCTION:SPECK -SAF_Pkcs7_EncodeSignedData 1656 1_1_0d EXIST::FUNCTION: -SRP_Verify_A_mod_N 1657 1_1_0d EXIST::FUNCTION:SRP -ZUC_128eia3_final 1658 1_1_0d EXIST::FUNCTION:ZUC -EVP_chacha20 1659 1_1_0d EXIST::FUNCTION:CHACHA -EC_KEY_set_public_key_affine_coordinates 1660 1_1_0d EXIST::FUNCTION:EC -RSA_meth_get_pub_enc 1661 1_1_0d EXIST::FUNCTION:RSA -OCSP_REQ_CTX_nbio 1662 1_1_0d EXIST::FUNCTION:OCSP -BN_lshift1 1663 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get_ext_count 1664 1_1_0d EXIST::FUNCTION: -SAF_EnumCertificatesFree 1665 1_1_0d EXIST::FUNCTION: -SRP_Calc_client_key 1666 1_1_0d EXIST::FUNCTION:SRP -ENGINE_get_name 1667 1_1_0d EXIST::FUNCTION:ENGINE -d2i_RSA_PUBKEY_fp 1668 1_1_0d EXIST::FUNCTION:RSA,STDIO -TS_RESP_create_response 1669 1_1_0d EXIST::FUNCTION:TS -PKCS7_free 1670 1_1_0d EXIST::FUNCTION: -EVP_zuc 1671 1_1_0d EXIST::FUNCTION:ZUC -PKCS5_pbe_set0_algor 1672 1_1_0d EXIST::FUNCTION: -PAILLIER_free 1673 1_1_0d EXIST::FUNCTION:PAILLIER -DSO_get_filename 1674 1_1_0d EXIST::FUNCTION: -BN_get0_nist_prime_224 1675 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_insert 1676 1_1_0d EXIST::FUNCTION: -RAND_set_rand_method 1677 1_1_0d EXIST::FUNCTION: -SRP_Verify_B_mod_N 1678 1_1_0d EXIST::FUNCTION:SRP -OCSP_BASICRESP_get1_ext_d2i 1679 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_cmp 1680 1_1_0d EXIST::FUNCTION: -X509_policy_node_get0_qualifiers 1681 1_1_0d EXIST::FUNCTION: -d2i_TS_TST_INFO_bio 1682 1_1_0d EXIST::FUNCTION:TS -EVP_CIPHER_meth_set_cleanup 1683 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get_by_sname 1684 1_1_0d EXIST::FUNCTION: -EVP_PKEY_paramgen_init 1685 1_1_0d EXIST::FUNCTION: -d2i_AUTHORITY_INFO_ACCESS 1686 1_1_0d EXIST::FUNCTION: -X509_ALGOR_dup 1687 1_1_0d EXIST::FUNCTION: -X509v3_asid_subset 1688 1_1_0d EXIST::FUNCTION:RFC3779 -BN_mod_exp_simple 1689 1_1_0d EXIST::FUNCTION: -DH_set_length 1690 1_1_0d EXIST::FUNCTION:DH -COMP_zlib 1691 1_1_0d EXIST::FUNCTION:COMP -d2i_X509_ALGORS 1692 1_1_0d EXIST::FUNCTION: -SOF_CreateTimeStampResponse 1693 1_1_0d EXIST::FUNCTION: -X509_policy_node_get0_parent 1694 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_EncodeData 1695 1_1_0d EXIST::FUNCTION: -X509_REVOKED_new 1696 1_1_0d EXIST::FUNCTION: -TS_REQ_set_msg_imprint 1697 1_1_0d EXIST::FUNCTION:TS -PEM_read_bio_X509 1698 1_1_0d EXIST::FUNCTION: -UI_ctrl 1699 1_1_0d EXIST::FUNCTION:UI -i2d_DIST_POINT 1700 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get_attr 1701 1_1_0d EXIST::FUNCTION: -RSA_set_flags 1702 1_1_0d EXIST::FUNCTION:RSA -RSA_get_RSArefPrivateKey 1703 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -SAF_SM2_EncodeSignedData 1704 1_1_0d EXIST::FUNCTION: -SAF_DestroySymmAlgoObj 1705 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_copy 1706 1_1_0d EXIST::FUNCTION: -d2i_ASRange 1707 1_1_0d EXIST::FUNCTION:RFC3779 -SAF_GenRsaKeyPair 1708 1_1_0d EXIST::FUNCTION: -OCSP_onereq_get0_id 1709 1_1_0d EXIST::FUNCTION:OCSP -EVP_aes_128_cfb8 1710 1_1_0d EXIST::FUNCTION: -PEM_read_bio_NETSCAPE_CERT_SEQUENCE 1711 1_1_0d EXIST::FUNCTION: -X509_it 1712 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_it 1712 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RSA_meth_get_finish 1713 1_1_0d EXIST::FUNCTION:RSA -BN_get0_nist_prime_256 1714 1_1_0d EXIST::FUNCTION: -ASN1_OBJECT_it 1715 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_OBJECT_it 1715 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -FFX_init 1716 1_1_0d EXIST::FUNCTION: -RC2_ecb_encrypt 1717 1_1_0d EXIST::FUNCTION:RC2 -CMS_RecipientInfo_type 1718 1_1_0d EXIST::FUNCTION:CMS -CMS_sign 1719 1_1_0d EXIST::FUNCTION:CMS -PEM_read_X509_CRL 1720 1_1_0d EXIST::FUNCTION:STDIO -TS_RESP_CTX_free 1721 1_1_0d EXIST::FUNCTION:TS -BN_mod_sqr 1722 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_new 1723 1_1_0d EXIST::FUNCTION: -SAF_Hash 1724 1_1_0d EXIST::FUNCTION: -CONF_imodule_set_usr_data 1725 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_cleanup 1726 1_1_0d EXIST::FUNCTION: -SRP_VBASE_init 1727 1_1_0d EXIST::FUNCTION:SRP -PAILLIER_generate_key 1728 1_1_0d EXIST::FUNCTION:PAILLIER -d2i_PBEPARAM 1729 1_1_0d EXIST::FUNCTION: -ECDSA_sign 1730 1_1_0d EXIST::FUNCTION:EC -TS_CONF_set_ordering 1731 1_1_0d EXIST::FUNCTION:TS -EVP_cast5_ecb 1732 1_1_0d EXIST::FUNCTION:CAST -CMS_SignerInfo_get0_md_ctx 1733 1_1_0d EXIST::FUNCTION:CMS -ENGINE_register_complete 1734 1_1_0d EXIST::FUNCTION:ENGINE -ASYNC_WAIT_CTX_set_wait_fd 1735 1_1_0d EXIST::FUNCTION: -CMS_unsigned_add1_attr_by_txt 1736 1_1_0d EXIST::FUNCTION:CMS -EVP_aes_128_ccm 1737 1_1_0d EXIST::FUNCTION: -BFPrivateKeyBlock_new 1738 1_1_0d EXIST::FUNCTION:BFIBE -TS_ACCURACY_set_millis 1739 1_1_0d EXIST::FUNCTION:TS -X509_set_serialNumber 1740 1_1_0d EXIST::FUNCTION: -PKCS5_PBKDF2_HMAC 1741 1_1_0d EXIST::FUNCTION: -EVP_aes_128_ofb 1742 1_1_0d EXIST::FUNCTION: -X509_add_ext 1743 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_match 1744 1_1_0d EXIST::FUNCTION:OCSP -EC_GROUP_set_curve_GFp 1745 1_1_0d EXIST::FUNCTION:EC -EVP_PKEY_bits 1746 1_1_0d EXIST::FUNCTION: -BN_get_rfc2409_prime_768 1747 1_1_0d EXIST::FUNCTION: -TS_RESP_set_tst_info 1748 1_1_0d EXIST::FUNCTION:TS -DES_random_key 1749 1_1_0d EXIST::FUNCTION:DES -PKCS7_SIGN_ENVELOPE_new 1750 1_1_0d EXIST::FUNCTION: -CMS_decrypt 1751 1_1_0d EXIST::FUNCTION:CMS -OCSP_REQ_CTX_set1_req 1752 1_1_0d EXIST::FUNCTION:OCSP -DH_meth_get_init 1753 1_1_0d EXIST::FUNCTION:DH -X509_ATTRIBUTE_set1_data 1754 1_1_0d EXIST::FUNCTION: -X509_NAME_get_text_by_OBJ 1755 1_1_0d EXIST::FUNCTION: -EVP_SealInit 1756 1_1_0d EXIST::FUNCTION:RSA -LONG_it 1757 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -LONG_it 1757 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASYNC_get_wait_ctx 1758 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_get0_log_store 1759 1_1_0d EXIST::FUNCTION:CT -ASN1_BIT_STRING_set_asc 1760 1_1_0d EXIST::FUNCTION: -IPAddressOrRange_new 1761 1_1_0d EXIST::FUNCTION:RFC3779 -BUF_MEM_grow_clean 1762 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_SIGNER_INFO 1763 1_1_0d EXIST::FUNCTION: -SHA384_Final 1764 1_1_0d EXIST:!VMSVAX:FUNCTION: -DSA_dup_DH 1765 1_1_0d EXIST::FUNCTION:DH,DSA -DSA_SIG_new 1766 1_1_0d EXIST::FUNCTION:DSA -PEM_SignInit 1767 1_1_0d EXIST::FUNCTION: -PEM_ASN1_read 1768 1_1_0d EXIST::FUNCTION:STDIO -EVP_des_ede3 1769 1_1_0d EXIST::FUNCTION:DES -BN_is_prime_ex 1770 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_init 1771 1_1_0d EXIST::FUNCTION:OCB -o2i_SCT_LIST 1772 1_1_0d EXIST::FUNCTION:CT -X509_PURPOSE_get0_name 1773 1_1_0d EXIST::FUNCTION: -X509_set_proxy_flag 1774 1_1_0d EXIST::FUNCTION: -speck_encrypt16 1775 1_1_0d EXIST::FUNCTION:SPECK -i2d_DSA_PUBKEY_fp 1776 1_1_0d EXIST::FUNCTION:DSA,STDIO -BN_BLINDING_convert_ex 1777 1_1_0d EXIST::FUNCTION: -d2i_BFPublicParameters 1778 1_1_0d EXIST::FUNCTION:BFIBE -d2i_OCSP_CRLID 1779 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_set_type 1780 1_1_0d EXIST::FUNCTION: -X509_CRL_get0_lastUpdate 1781 1_1_0d EXIST::FUNCTION: -EC_POINT_mul 1782 1_1_0d EXIST::FUNCTION:EC -TS_RESP_CTX_set_accuracy 1783 1_1_0d EXIST::FUNCTION:TS -SKF_ConnectDev 1784 1_1_0d EXIST::FUNCTION:SKF -EC_KEY_set_asn1_flag 1785 1_1_0d EXIST::FUNCTION:EC -PBKDF2PARAM_new 1786 1_1_0d EXIST::FUNCTION: -X509_verify_cert_error_string 1787 1_1_0d EXIST::FUNCTION: -TS_RESP_set_status_info 1788 1_1_0d EXIST::FUNCTION:TS -d2i_PKCS7_RECIP_INFO 1789 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_store 1790 1_1_0d EXIST::FUNCTION: -EVP_EncryptFinal 1791 1_1_0d EXIST::FUNCTION: -OCSP_CRLID_it 1792 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_CRLID_it 1792 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -SOF_GetUserList 1793 1_1_0d EXIST::FUNCTION: -d2i_OCSP_REQINFO 1794 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_xts128_encrypt 1795 1_1_0d EXIST::FUNCTION: -SKF_LoadLibrary 1796 1_1_0d EXIST::FUNCTION:SKF -EVP_CipherUpdate 1797 1_1_0d EXIST::FUNCTION: -BN_dec2bn 1798 1_1_0d EXIST::FUNCTION: -RSA_get_default_method 1799 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_derive_init 1800 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_free 1801 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_wrap 1802 1_1_0d EXIST::FUNCTION:DES -SKF_GetPINInfo 1803 1_1_0d EXIST::FUNCTION:SKF -X509_CRL_get_lastUpdate 1804 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -EVP_MD_CTX_md_data 1805 1_1_0d EXIST::FUNCTION: -X509_EXTENSIONS_it 1806 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_EXTENSIONS_it 1806 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -UI_set_default_method 1807 1_1_0d EXIST::FUNCTION:UI -EC_GROUP_get0_order 1808 1_1_0d EXIST::FUNCTION:EC -TS_RESP_CTX_set_signer_digest 1809 1_1_0d EXIST::FUNCTION:TS -BN_bn2dec 1810 1_1_0d EXIST::FUNCTION: -EC_KEY_get_flags 1811 1_1_0d EXIST::FUNCTION:EC -SKF_ImportSessionKey 1812 1_1_0d EXIST::FUNCTION:SKF -SRP_create_verifier 1813 1_1_0d EXIST::FUNCTION:SRP -X509_policy_check 1814 1_1_0d EXIST::FUNCTION: -OBJ_NAME_do_all_sorted 1815 1_1_0d EXIST::FUNCTION: -EVP_mdc2 1816 1_1_0d EXIST::FUNCTION:MDC2 -DES_ede3_cfb_encrypt 1817 1_1_0d EXIST::FUNCTION:DES -EVP_whirlpool 1818 1_1_0d EXIST::FUNCTION:WHIRLPOOL -X509_get_ext_by_NID 1819 1_1_0d EXIST::FUNCTION: -d2i_SM9Ciphertext_fp 1820 1_1_0d EXIST::FUNCTION:SM9,STDIO -X509_ALGOR_new 1821 1_1_0d EXIST::FUNCTION: -NCONF_get_string 1822 1_1_0d EXIST::FUNCTION: -SAF_AddCrl 1823 1_1_0d EXIST::FUNCTION: -CMS_add0_recipient_password 1824 1_1_0d EXIST::FUNCTION:CMS -NETSCAPE_SPKI_print 1825 1_1_0d EXIST::FUNCTION: -SAF_Base64_DecodeFinal 1826 1_1_0d EXIST::FUNCTION: -EC_METHOD_get_field_type 1827 1_1_0d EXIST::FUNCTION:EC -d2i_TS_STATUS_INFO 1828 1_1_0d EXIST::FUNCTION:TS -X509_STORE_CTX_get0_untrusted 1829 1_1_0d EXIST::FUNCTION: -SKF_ImportECCKeyPair 1830 1_1_0d EXIST::FUNCTION:SKF -X509_get_extended_key_usage 1831 1_1_0d EXIST::FUNCTION: -EC_GROUP_new_type1curve_ex 1832 1_1_0d EXIST::FUNCTION: -X509_NAME_hash_old 1833 1_1_0d EXIST::FUNCTION: -CMS_dataInit 1834 1_1_0d EXIST::FUNCTION:CMS -BN_print 1835 1_1_0d EXIST::FUNCTION: -AUTHORITY_KEYID_free 1836 1_1_0d EXIST::FUNCTION: -ZUC_128eia3 1837 1_1_0d EXIST::FUNCTION:ZUC -EC_POINT_new 1838 1_1_0d EXIST::FUNCTION:EC -PKCS12_key_gen_asc 1839 1_1_0d EXIST::FUNCTION: -X509_PKEY_new 1840 1_1_0d EXIST::FUNCTION: -EVP_sha384 1841 1_1_0d EXIST:!VMSVAX:FUNCTION: -SDF_InternalPrivateKeyOperation_RSA 1842 1_1_0d EXIST::FUNCTION: -X509_get_pubkey 1843 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_add0_table 1844 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_it 1845 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_ONEREQ_it 1845 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -X509_NAME_ENTRY_dup 1846 1_1_0d EXIST::FUNCTION: -ENGINE_set_ciphers 1847 1_1_0d EXIST::FUNCTION:ENGINE -BN_print_fp 1848 1_1_0d EXIST::FUNCTION:STDIO -BIO_dgram_sctp_msg_waiting 1849 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -OBJ_new_nid 1850 1_1_0d EXIST::FUNCTION: -d2i_ECCCipher_bio 1851 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -SAF_HashUpdate 1852 1_1_0d EXIST::FUNCTION: -PKCS7_dup 1853 1_1_0d EXIST::FUNCTION: -EVP_PKEY_type 1854 1_1_0d EXIST::FUNCTION: -RSAPrivateKey_dup 1855 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_asn1_set_param 1856 1_1_0d EXIST::FUNCTION: -i2d_OCSP_REQUEST 1857 1_1_0d EXIST::FUNCTION:OCSP -TS_REQ_get_policy_id 1858 1_1_0d EXIST::FUNCTION:TS -POLICY_MAPPING_new 1859 1_1_0d EXIST::FUNCTION: -X509_CRL_sign_ctx 1860 1_1_0d EXIST::FUNCTION: -EVP_chacha20_poly1305 1861 1_1_0d EXIST::FUNCTION:CHACHA,POLY1305 -EC_POINT_cmp 1862 1_1_0d EXIST::FUNCTION:EC -TS_VERIFY_CTX_set_data 1863 1_1_0d EXIST::FUNCTION:TS -ENGINE_unregister_digests 1864 1_1_0d EXIST::FUNCTION:ENGINE -BN_BLINDING_invert 1865 1_1_0d EXIST::FUNCTION: -X509_REQ_get_signature_nid 1866 1_1_0d EXIST::FUNCTION: -TXT_DB_write 1867 1_1_0d EXIST::FUNCTION: -BN_is_solinas 1868 1_1_0d EXIST::FUNCTION: -d2i_ASIdentifierChoice 1869 1_1_0d EXIST::FUNCTION:RFC3779 -ASN1_parse 1870 1_1_0d EXIST::FUNCTION: -X509v3_addr_add_inherit 1871 1_1_0d EXIST::FUNCTION:RFC3779 -speck_decrypt64 1872 1_1_0d EXIST::FUNCTION:SPECK -OCSP_check_validity 1873 1_1_0d EXIST::FUNCTION:OCSP -PKCS12_create 1874 1_1_0d EXIST::FUNCTION: -i2s_ASN1_ENUMERATED_TABLE 1875 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get_ext_by_NID 1876 1_1_0d EXIST::FUNCTION: -RSA_set_method 1877 1_1_0d EXIST::FUNCTION:RSA -EVP_sms4_ofb 1878 1_1_0d EXIST::FUNCTION:SMS4 -EC_KEY_up_ref 1879 1_1_0d EXIST::FUNCTION:EC -i2d_RSA_PUBKEY 1880 1_1_0d EXIST::FUNCTION:RSA -BIO_new_fp 1881 1_1_0d EXIST::FUNCTION:STDIO -sms4_encrypt_init 1882 1_1_0d EXIST::FUNCTION:SMS4 -SAF_GetRsaPublicKey 1883 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_chain 1884 1_1_0d EXIST::FUNCTION: -i2d_ASN1_TYPE 1885 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_solve_quad 1886 1_1_0d EXIST::FUNCTION:EC2M -X509_REQ_check_private_key 1887 1_1_0d EXIST::FUNCTION: -d2i_PBE2PARAM 1888 1_1_0d EXIST::FUNCTION: -d2i_PublicKey 1889 1_1_0d EXIST::FUNCTION: -ASN1_verify 1890 1_1_0d EXIST::FUNCTION: -SM2_do_sign 1891 1_1_0d EXIST::FUNCTION:SM2 -BN_mod_exp_recp 1892 1_1_0d EXIST::FUNCTION: -SOF_SignDataXML 1893 1_1_0d EXIST::FUNCTION: -RSA_OAEP_PARAMS_new 1894 1_1_0d EXIST::FUNCTION:RSA -SCT_LIST_print 1895 1_1_0d EXIST::FUNCTION:CT -OPENSSL_sk_pop_free 1896 1_1_0d EXIST::FUNCTION: -UI_get0_result 1897 1_1_0d EXIST::FUNCTION:UI -SEED_encrypt 1898 1_1_0d EXIST::FUNCTION:SEED -PKCS7_dataDecode 1899 1_1_0d EXIST::FUNCTION: -GENERAL_NAMES_new 1900 1_1_0d EXIST::FUNCTION: -BIO_read 1901 1_1_0d EXIST::FUNCTION: -d2i_RSAPrivateKey_fp 1902 1_1_0d EXIST::FUNCTION:RSA,STDIO -BN_GENCB_get_arg 1903 1_1_0d EXIST::FUNCTION: -i2d_X509_EXTENSIONS 1904 1_1_0d EXIST::FUNCTION: -CONF_module_set_usr_data 1905 1_1_0d EXIST::FUNCTION: -ESS_CERT_ID_dup 1906 1_1_0d EXIST::FUNCTION:TS -SOF_ValidateCert 1907 1_1_0d EXIST::FUNCTION: -SAF_ChangePin 1908 1_1_0d EXIST::FUNCTION: -PKCS12_pack_p7data 1909 1_1_0d EXIST::FUNCTION: -i2d_ECParameters 1910 1_1_0d EXIST::FUNCTION:EC -OCSP_accept_responses_new 1911 1_1_0d EXIST::FUNCTION:OCSP -X509_ATTRIBUTE_get0_type 1912 1_1_0d EXIST::FUNCTION: -X509_TRUST_set 1913 1_1_0d EXIST::FUNCTION: -DH_get0_engine 1914 1_1_0d EXIST::FUNCTION:DH -BN_GF2m_mod_inv 1915 1_1_0d EXIST::FUNCTION:EC2M -i2d_ECCSIGNATUREBLOB_fp 1916 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO -PEM_def_callback 1917 1_1_0d EXIST::FUNCTION: -ERR_load_X509V3_strings 1918 1_1_0d EXIST::FUNCTION: -CRYPTO_cfb128_8_encrypt 1919 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_set 1920 1_1_0d EXIST::FUNCTION: -PEM_write_bio_NETSCAPE_CERT_SEQUENCE 1921 1_1_0d EXIST::FUNCTION: -EC_GROUP_get0_seed 1922 1_1_0d EXIST::FUNCTION:EC -SHA1_Update 1923 1_1_0d EXIST::FUNCTION: -X509_cmp_current_time 1924 1_1_0d EXIST::FUNCTION: -i2d_SXNETID 1925 1_1_0d EXIST::FUNCTION: -i2d_PKCS8PrivateKey_bio 1926 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_curve_name 1927 1_1_0d EXIST::FUNCTION:EC -ECIES_decrypt 1928 1_1_0d EXIST::FUNCTION:ECIES -CMS_RecipientInfo_set0_pkey 1929 1_1_0d EXIST::FUNCTION:CMS -PEM_read_bio_ECPrivateKey 1930 1_1_0d EXIST::FUNCTION:EC -i2d_DIRECTORYSTRING 1931 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_ctrl 1932 1_1_0d EXIST::FUNCTION: -SM9_compute_share_key_A 1933 1_1_0d EXIST::FUNCTION:SM9 -EVP_des_ede 1934 1_1_0d EXIST::FUNCTION:DES -EVP_PKEY_new 1935 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_cfb64 1936 1_1_0d EXIST::FUNCTION:DES -X509_get1_email 1937 1_1_0d EXIST::FUNCTION: -EVP_aes_128_cbc 1938 1_1_0d EXIST::FUNCTION: -BIO_find_type 1939 1_1_0d EXIST::FUNCTION: -PEM_write_PKCS8 1940 1_1_0d EXIST::FUNCTION:STDIO -BIO_ctrl_get_read_request 1941 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_init_local 1942 1_1_0d EXIST::FUNCTION: -DSA_new 1943 1_1_0d EXIST::FUNCTION:DSA -BN_GFP2_set_bn 1944 1_1_0d EXIST::FUNCTION: -ZUC_128eea3_set_key 1945 1_1_0d EXIST::FUNCTION:ZUC -ERR_load_OTP_strings 1946 1_1_0d EXIST::FUNCTION:OTP -SM9PrivateKey_it 1947 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9PrivateKey_it 1947 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -X509_ALGOR_set0 1948 1_1_0d EXIST::FUNCTION: -EC_curve_nist2nid 1949 1_1_0d EXIST::FUNCTION:EC -ENGINE_get_pkey_meths 1950 1_1_0d EXIST::FUNCTION:ENGINE -X509_INFO_free 1951 1_1_0d EXIST::FUNCTION: -X509_REQ_get0_pubkey 1952 1_1_0d EXIST::FUNCTION: -PKCS7_sign 1953 1_1_0d EXIST::FUNCTION: -SAF_GenerateKeyWithEPK 1954 1_1_0d EXIST::FUNCTION: -BN_GFP2_mul_bn 1955 1_1_0d EXIST::FUNCTION: -sm3_init 1956 1_1_0d EXIST::FUNCTION:SM3 -DSA_meth_set_verify 1957 1_1_0d EXIST::FUNCTION:DSA -CMS_ContentInfo_print_ctx 1958 1_1_0d EXIST::FUNCTION:CMS -EVP_PKEY_asn1_get_count 1959 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_copy 1960 1_1_0d EXIST::FUNCTION: -EVP_DigestVerifyFinal 1961 1_1_0d EXIST::FUNCTION: -SKF_PrintRSAPrivateKey 1962 1_1_0d EXIST::FUNCTION:SKF -BN_is_negative 1963 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_by_issuer_serial 1964 1_1_0d EXIST::FUNCTION: -PKCS7_RECIP_INFO_set 1965 1_1_0d EXIST::FUNCTION: -SM9_SignFinal 1966 1_1_0d EXIST::FUNCTION:SM9 -ENGINE_register_all_ciphers 1967 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_set_type_str 1968 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_free 1969 1_1_0d EXIST::FUNCTION:OCSP -HMAC_CTX_get_md 1970 1_1_0d EXIST::FUNCTION: -EVP_DigestFinal 1971 1_1_0d EXIST::FUNCTION: -DES_is_weak_key 1972 1_1_0d EXIST::FUNCTION:DES -i2d_CPK_PUBLIC_PARAMS 1973 1_1_0d EXIST::FUNCTION:CPK -SDF_NewECCCipher 1974 1_1_0d EXIST::FUNCTION:SDF -SXNET_get_id_INTEGER 1975 1_1_0d EXIST::FUNCTION: -ECDH_compute_key 1976 1_1_0d EXIST::FUNCTION:EC -PKCS7_get0_signers 1977 1_1_0d EXIST::FUNCTION: -d2i_PROXY_CERT_INFO_EXTENSION 1978 1_1_0d EXIST::FUNCTION: -X509_reject_clear 1979 1_1_0d EXIST::FUNCTION: -DH_compute_key 1980 1_1_0d EXIST::FUNCTION:DH -TS_TST_INFO_set_time 1981 1_1_0d EXIST::FUNCTION:TS -PEM_read_ECPKParameters 1982 1_1_0d EXIST::FUNCTION:EC,STDIO -X509_SIG_it 1983 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_SIG_it 1983 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PEM_read_bio_PrivateKey 1984 1_1_0d EXIST::FUNCTION: -BIO_new 1985 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_error 1986 1_1_0d EXIST::FUNCTION: -EC_POINT_cmp_fppoint 1987 1_1_0d EXIST::FUNCTION: -sms4_encrypt_8blocks 1988 1_1_0d EXIST::FUNCTION:SMS4 -ASYNC_WAIT_CTX_new 1989 1_1_0d EXIST::FUNCTION: -ASN1_TIME_to_generalizedtime 1990 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_DecodeEnvelopedData 1991 1_1_0d EXIST::FUNCTION: -DSO_set_filename 1992 1_1_0d EXIST::FUNCTION: -i2d_USERNOTICE 1993 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_it 1994 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -GENERAL_NAME_it 1994 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OPENSSL_LH_get_down_load 1995 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_verify 1996 1_1_0d EXIST::FUNCTION: -BIO_f_linebuffer 1997 1_1_0d EXIST::FUNCTION: -SOF_VerifySignedFile 1998 1_1_0d EXIST::FUNCTION: -DSA_size 1999 1_1_0d EXIST::FUNCTION:DSA -CMS_ContentInfo_it 2000 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS -CMS_ContentInfo_it 2000 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS -i2d_SM9Ciphertext_fp 2001 1_1_0d EXIST::FUNCTION:SM9,STDIO -CMS_digest_verify 2002 1_1_0d EXIST::FUNCTION:CMS -SAF_Initialize 2003 1_1_0d EXIST::FUNCTION: -TS_STATUS_INFO_set_status 2004 1_1_0d EXIST::FUNCTION:TS -i2d_PKCS7_bio_stream 2005 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_cleanup 2006 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_set_object 2007 1_1_0d EXIST::FUNCTION: -ESS_SIGNING_CERT_dup 2008 1_1_0d EXIST::FUNCTION:TS -EVP_camellia_192_cbc 2009 1_1_0d EXIST::FUNCTION:CAMELLIA -i2d_PKCS12_fp 2010 1_1_0d EXIST::FUNCTION:STDIO -SOF_InitCertAppPolicy 2011 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_print 2012 1_1_0d EXIST::FUNCTION:CPK -EVP_cast5_cbc 2013 1_1_0d EXIST::FUNCTION:CAST -SM9Ciphertext_free 2014 1_1_0d EXIST::FUNCTION:SM9 -BIO_set_cipher 2015 1_1_0d EXIST::FUNCTION: -BN_CTX_get 2016 1_1_0d EXIST::FUNCTION: -SCT_get_source 2017 1_1_0d EXIST::FUNCTION:CT -UI_process 2018 1_1_0d EXIST::FUNCTION:UI -CONF_load 2019 1_1_0d EXIST::FUNCTION: -d2i_ECPrivateKey 2020 1_1_0d EXIST::FUNCTION:EC -BN_mod_sub_quick 2021 1_1_0d EXIST::FUNCTION: -BASIC_CONSTRAINTS_free 2022 1_1_0d EXIST::FUNCTION: -OBJ_NAME_remove 2023 1_1_0d EXIST::FUNCTION: -SMIME_text 2024 1_1_0d EXIST::FUNCTION: -i2d_RSA_OAEP_PARAMS 2025 1_1_0d EXIST::FUNCTION:RSA -SKF_UnblockPIN 2026 1_1_0d EXIST::FUNCTION:SKF -EDIPARTYNAME_free 2027 1_1_0d EXIST::FUNCTION: -ECIES_do_decrypt 2028 1_1_0d EXIST::FUNCTION:ECIES -i2d_BB1CiphertextBlock 2029 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_CIPHER_set_asn1_iv 2030 1_1_0d EXIST::FUNCTION: -EC_GROUP_get0_cofactor 2031 1_1_0d EXIST::FUNCTION:EC -RSA_meth_get_flags 2032 1_1_0d EXIST::FUNCTION:RSA -BN_usub 2033 1_1_0d EXIST::FUNCTION: -EC_KEY_get0_group 2034 1_1_0d EXIST::FUNCTION:EC -ASN1_PRINTABLE_it 2035 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_PRINTABLE_it 2035 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EC_KEY_set_flags 2036 1_1_0d EXIST::FUNCTION:EC -PEM_read_X509_AUX 2037 1_1_0d EXIST::FUNCTION:STDIO -ASN1_UTCTIME_free 2038 1_1_0d EXIST::FUNCTION: -X509_CRL_sign 2039 1_1_0d EXIST::FUNCTION: -DH_meth_set1_name 2040 1_1_0d EXIST::FUNCTION:DH -AUTHORITY_INFO_ACCESS_free 2041 1_1_0d EXIST::FUNCTION: -RSA_test_flags 2042 1_1_0d EXIST::FUNCTION:RSA -OPENSSL_sk_free 2043 1_1_0d EXIST::FUNCTION: -PKCS7_ENC_CONTENT_it 2044 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ENC_CONTENT_it 2044 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_128_wrap_pad 2045 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_tls_encodedpoint 2046 1_1_0d EXIST::FUNCTION: -BIO_new_NDEF 2047 1_1_0d EXIST::FUNCTION: -d2i_ASN1_UTF8STRING 2048 1_1_0d EXIST::FUNCTION: -d2i_RSA_PUBKEY 2049 1_1_0d EXIST::FUNCTION:RSA -EC_GROUP_get_curve_GF2m 2050 1_1_0d EXIST::FUNCTION:EC,EC2M -SDF_GenerateKeyWithEPK_RSA 2051 1_1_0d EXIST::FUNCTION: -CMS_SignerInfo_get0_pkey_ctx 2052 1_1_0d EXIST::FUNCTION:CMS -OpenSSL_version 2053 1_1_0d EXIST::FUNCTION: -OBJ_find_sigid_algs 2054 1_1_0d EXIST::FUNCTION: -DES_pcbc_encrypt 2055 1_1_0d EXIST::FUNCTION:DES -EVP_PKEY_paramgen 2056 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_cleanup 2057 1_1_0d EXIST::FUNCTION: -BN_clear_bit 2058 1_1_0d EXIST::FUNCTION: -PROXY_CERT_INFO_EXTENSION_new 2059 1_1_0d EXIST::FUNCTION: -RC2_decrypt 2060 1_1_0d EXIST::FUNCTION:RC2 -EVP_blake2s256 2061 1_1_0d EXIST::FUNCTION:BLAKE2 -d2i_OCSP_RESPID 2062 1_1_0d EXIST::FUNCTION:OCSP -X509_STORE_add_crl 2063 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_mont_data 2064 1_1_0d EXIST::FUNCTION:EC -SKF_CloseContainer 2065 1_1_0d EXIST::FUNCTION:SKF -DSA_set_default_method 2066 1_1_0d EXIST::FUNCTION:DSA -DH_meth_free 2067 1_1_0d EXIST::FUNCTION:DH -OPENSSL_LH_strhash 2068 1_1_0d EXIST::FUNCTION: -RSA_padding_add_SSLv23 2069 1_1_0d EXIST::FUNCTION:RSA -OPENSSL_sk_set 2070 1_1_0d EXIST::FUNCTION: -i2d_OCSP_RESPONSE 2071 1_1_0d EXIST::FUNCTION:OCSP -ASN1_add_oid_module 2072 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_get_ext_by_OBJ 2073 1_1_0d EXIST::FUNCTION:OCSP -SM9_generate_key_exchange 2074 1_1_0d EXIST::FUNCTION:SM9 -X509at_get_attr_count 2075 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_ISSUER_AND_SERIAL 2076 1_1_0d EXIST::FUNCTION: -SKF_CreateFile 2077 1_1_0d EXIST::FUNCTION:SKF -X509_REVOKED_get_ext_d2i 2078 1_1_0d EXIST::FUNCTION: -ENGINE_load_private_key 2079 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_BIT_STRING_get_bit 2080 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_get_request 2081 1_1_0d EXIST::FUNCTION:TS -DISPLAYTEXT_it 2082 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DISPLAYTEXT_it 2082 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_CTX_get0_pkey 2083 1_1_0d EXIST::FUNCTION: -i2d_X509_CRL_INFO 2084 1_1_0d EXIST::FUNCTION: -DH_get_length 2085 1_1_0d EXIST::FUNCTION:DH -SM2_KAP_prepare 2086 1_1_0d EXIST::FUNCTION:SM2 -PKCS12_SAFEBAG_get_bag_nid 2087 1_1_0d EXIST::FUNCTION: -DSA_meth_set_keygen 2088 1_1_0d EXIST::FUNCTION:DSA -CONF_parse_list 2089 1_1_0d EXIST::FUNCTION: -X509_verify_cert 2090 1_1_0d EXIST::FUNCTION: -AES_set_decrypt_key 2091 1_1_0d EXIST::FUNCTION: -X509_pubkey_digest 2092 1_1_0d EXIST::FUNCTION: -OBJ_nid2obj 2093 1_1_0d EXIST::FUNCTION: -BN_bn2binpad 2094 1_1_0d EXIST::FUNCTION: -DES_encrypt3 2095 1_1_0d EXIST::FUNCTION:DES -PEM_read_bio_CMS 2096 1_1_0d EXIST::FUNCTION:CMS -PKCS12_SAFEBAG_get0_pkcs8 2097 1_1_0d EXIST::FUNCTION: -X509v3_asid_validate_resource_set 2098 1_1_0d EXIST::FUNCTION:RFC3779 -d2i_ISSUING_DIST_POINT 2099 1_1_0d EXIST::FUNCTION: -SCT_get0_extensions 2100 1_1_0d EXIST::FUNCTION:CT -ASN1_item_i2d 2101 1_1_0d EXIST::FUNCTION: -BIO_new_dgram 2102 1_1_0d EXIST::FUNCTION:DGRAM -EC_GFp_nistp224_method 2103 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 -ERR_load_strings 2104 1_1_0d EXIST::FUNCTION: -RSA_new_from_RSAPUBLICKEYBLOB 2105 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -X509_STORE_get_lookup_certs 2106 1_1_0d EXIST::FUNCTION: -EVP_rc5_32_12_16_ofb 2107 1_1_0d EXIST::FUNCTION:RC5 -d2i_OCSP_SIGNATURE 2108 1_1_0d EXIST::FUNCTION:OCSP -X509v3_get_ext_by_OBJ 2109 1_1_0d EXIST::FUNCTION: -d2i_PKCS12 2110 1_1_0d EXIST::FUNCTION: -CONF_imodule_set_flags 2111 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_table_cleanup 2112 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_init 2113 1_1_0d EXIST::FUNCTION: -CRYPTO_mem_debug_push 2114 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -MD4_Init 2115 1_1_0d EXIST::FUNCTION:MD4 -PEM_read_bio_RSA_PUBKEY 2116 1_1_0d EXIST::FUNCTION:RSA -PAILLIER_new 2117 1_1_0d EXIST::FUNCTION:PAILLIER -sm3_hmac_update 2118 1_1_0d EXIST::FUNCTION:SM3 -DSA_SIG_set0 2119 1_1_0d EXIST::FUNCTION:DSA -EVP_MD_meth_get_app_datasize 2120 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_generator 2121 1_1_0d EXIST::FUNCTION:EC -SCT_LIST_free 2122 1_1_0d EXIST::FUNCTION:CT -CMS_decrypt_set1_password 2123 1_1_0d EXIST::FUNCTION:CMS -BIO_meth_get_write 2124 1_1_0d EXIST::FUNCTION: -EVP_PKEY_print_params 2125 1_1_0d EXIST::FUNCTION: -X509_CERT_AUX_it 2126 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CERT_AUX_it 2126 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RC4 2127 1_1_0d EXIST::FUNCTION:RC4 -ASIdOrRange_free 2128 1_1_0d EXIST::FUNCTION:RFC3779 -OCSP_REQUEST_free 2129 1_1_0d EXIST::FUNCTION:OCSP -SKF_VerifyPIN 2130 1_1_0d EXIST::FUNCTION:SKF -ERR_load_BFIBE_strings 2131 1_1_0d EXIST::FUNCTION:BFIBE -CT_POLICY_EVAL_CTX_set1_issuer 2132 1_1_0d EXIST::FUNCTION:CT -PKCS7_get_smimecap 2133 1_1_0d EXIST::FUNCTION: -OCSP_response_create 2134 1_1_0d EXIST::FUNCTION:OCSP -ASN1_GENERALIZEDTIME_adj 2135 1_1_0d EXIST::FUNCTION: -X509_issuer_name_hash 2136 1_1_0d EXIST::FUNCTION: -DSA_meth_get_mod_exp 2137 1_1_0d EXIST::FUNCTION:DSA -BIO_get_callback_arg 2138 1_1_0d EXIST::FUNCTION: -BN_gfp22bn 2139 1_1_0d EXIST::FUNCTION: -EVP_seed_ecb 2140 1_1_0d EXIST::FUNCTION:SEED -BIO_set_flags 2141 1_1_0d EXIST::FUNCTION: -CMS_unsigned_add1_attr 2142 1_1_0d EXIST::FUNCTION:CMS -SOF_SetCertTrustList 2143 1_1_0d EXIST::FUNCTION: -BN_GFP2_inv 2144 1_1_0d EXIST::FUNCTION: -CTLOG_STORE_free 2145 1_1_0d EXIST::FUNCTION:CT -IDEA_encrypt 2146 1_1_0d EXIST::FUNCTION:IDEA -ZUC_128eea3 2147 1_1_0d EXIST::FUNCTION:ZUC -SAF_Base64_DestroyBase64Obj 2148 1_1_0d EXIST::FUNCTION: -SKF_EncryptInit 2149 1_1_0d EXIST::FUNCTION:SKF -d2i_NETSCAPE_SPKI 2150 1_1_0d EXIST::FUNCTION: -PKEY_USAGE_PERIOD_free 2151 1_1_0d EXIST::FUNCTION: -BIO_fd_non_fatal_error 2152 1_1_0d EXIST::FUNCTION: -SM9Ciphertext_new 2153 1_1_0d EXIST::FUNCTION:SM9 -EVP_camellia_192_ctr 2154 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_CIPHER_CTX_set_flags 2155 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_obj_by_subject 2156 1_1_0d EXIST::FUNCTION: -i2d_CERTIFICATEPOLICIES 2157 1_1_0d EXIST::FUNCTION: -BIO_s_secmem 2158 1_1_0d EXIST::FUNCTION: -DES_quad_cksum 2159 1_1_0d EXIST::FUNCTION:DES -FFX_compute_luhn 2160 1_1_0d EXIST::FUNCTION: -ERR_load_CRYPTO_strings 2161 1_1_0d EXIST:!VMS:FUNCTION: -ERR_load_CRYPTOlib_strings 2161 1_1_0d EXIST:VMS:FUNCTION: -EC_GROUP_method_of 2162 1_1_0d EXIST::FUNCTION:EC -i2d_SM9Signature 2163 1_1_0d EXIST::FUNCTION:SM9 -X509_REVOKED_delete_ext 2164 1_1_0d EXIST::FUNCTION: -COMP_expand_block 2165 1_1_0d EXIST::FUNCTION:COMP -i2d_NOTICEREF 2166 1_1_0d EXIST::FUNCTION: -UI_method_get_closer 2167 1_1_0d EXIST::FUNCTION:UI -X509_STORE_get0_param 2168 1_1_0d EXIST::FUNCTION: -ASN1_generate_v3 2169 1_1_0d EXIST::FUNCTION: -PEM_X509_INFO_read 2170 1_1_0d EXIST::FUNCTION:STDIO -EC_GROUP_get_curve_GFp 2171 1_1_0d EXIST::FUNCTION:EC -BIO_f_md 2172 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_get_cert_flags 2173 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_it 2174 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_OCTET_STRING_it 2174 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_digest 2175 1_1_0d EXIST::FUNCTION:ENGINE -ERR_load_PAILLIER_strings 2176 1_1_0d EXIST::FUNCTION:PAILLIER -TS_CONF_set_signer_key 2177 1_1_0d EXIST::FUNCTION:TS -EVP_des_ede_cbc 2178 1_1_0d EXIST::FUNCTION:DES -ASN1_BIT_STRING_check 2179 1_1_0d EXIST::FUNCTION: -BN_free 2180 1_1_0d EXIST::FUNCTION: -EVP_aes_128_ctr 2181 1_1_0d EXIST::FUNCTION: -d2i_PKCS7 2182 1_1_0d EXIST::FUNCTION: -EC_KEY_set_enc_flags 2183 1_1_0d EXIST::FUNCTION:EC -RSA_print_fp 2184 1_1_0d EXIST::FUNCTION:RSA,STDIO -BIO_s_null 2185 1_1_0d EXIST::FUNCTION: -BIO_meth_get_create 2186 1_1_0d EXIST::FUNCTION: -d2i_ESS_CERT_ID 2187 1_1_0d EXIST::FUNCTION:TS -EVP_PKEY_CTX_ctrl 2188 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_get_crl 2189 1_1_0d EXIST::FUNCTION: -CMAC_CTX_copy 2190 1_1_0d EXIST::FUNCTION:CMAC -ASN1_OBJECT_new 2191 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_SIGN_ENVELOPE 2192 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_nid 2193 1_1_0d EXIST::FUNCTION: -d2i_DSAPublicKey 2194 1_1_0d EXIST::FUNCTION:DSA -PKCS12_gen_mac 2195 1_1_0d EXIST::FUNCTION: -PKCS7_ENCRYPT_new 2196 1_1_0d EXIST::FUNCTION: -SM2_decrypt 2197 1_1_0d EXIST::FUNCTION:SM2 -X509_STORE_set_cert_crl 2198 1_1_0d EXIST::FUNCTION: -i2d_PUBKEY_fp 2199 1_1_0d EXIST::FUNCTION:STDIO -ERR_load_FFX_strings 2200 1_1_0d EXIST::FUNCTION: -CRYPTO_cts128_encrypt 2201 1_1_0d EXIST::FUNCTION: -PKCS7_ENC_CONTENT_free 2202 1_1_0d EXIST::FUNCTION: -X509_get_ext_by_OBJ 2203 1_1_0d EXIST::FUNCTION: -PEM_write_X509 2204 1_1_0d EXIST::FUNCTION:STDIO -HMAC_Init 2205 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -X509_REQ_add1_attr_by_NID 2206 1_1_0d EXIST::FUNCTION: -i2d_PrivateKey_fp 2207 1_1_0d EXIST::FUNCTION:STDIO -ASN1_INTEGER_free 2208 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_DSA 2209 1_1_0d EXIST::FUNCTION:ENGINE -UI_add_input_string 2210 1_1_0d EXIST::FUNCTION:UI -d2i_RSA_PUBKEY_bio 2211 1_1_0d EXIST::FUNCTION:RSA -X509_STORE_CTX_set_trust 2212 1_1_0d EXIST::FUNCTION: -DSA_set0_pqg 2213 1_1_0d EXIST::FUNCTION:DSA -SKF_EnumApplication 2214 1_1_0d EXIST::FUNCTION:SKF -SDF_PrintECCPrivateKey 2215 1_1_0d EXIST::FUNCTION:SDF -NETSCAPE_SPKI_new 2216 1_1_0d EXIST::FUNCTION: -i2d_ESS_ISSUER_SERIAL 2217 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_new_curve_GF2m 2218 1_1_0d EXIST::FUNCTION:EC,EC2M -MD2_Init 2219 1_1_0d EXIST::FUNCTION:MD2 -X509_REVOKED_add1_ext_i2d 2220 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get_ext_by_critical 2221 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_new_from_ECCSignature 2222 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -SCT_set_version 2223 1_1_0d EXIST::FUNCTION:CT -BN_bn2solinas 2224 1_1_0d EXIST::FUNCTION: -X509_TRUST_get_trust 2225 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_dup 2226 1_1_0d EXIST::FUNCTION:TS -OCSP_RESPID_it 2227 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPID_it 2227 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -CMS_add1_ReceiptRequest 2228 1_1_0d EXIST::FUNCTION:CMS -d2i_EDIPARTYNAME 2229 1_1_0d EXIST::FUNCTION: -GENERAL_SUBTREE_it 2230 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -GENERAL_SUBTREE_it 2230 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_flags 2231 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_PRINTABLE_new 2232 1_1_0d EXIST::FUNCTION: -OCSP_resp_find_status 2233 1_1_0d EXIST::FUNCTION:OCSP -TS_TST_INFO_get_ordering 2234 1_1_0d EXIST::FUNCTION:TS -ECPARAMETERS_it 2235 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC -ECPARAMETERS_it 2235 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC -ASN1_BIT_STRING_num_asc 2236 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_new 2237 1_1_0d EXIST::FUNCTION: -IPAddressChoice_it 2238 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressChoice_it 2238 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -SM9_unwrap_key 2239 1_1_0d EXIST::FUNCTION:SM9 -X509v3_get_ext_by_NID 2240 1_1_0d EXIST::FUNCTION: -SMIME_write_PKCS7 2241 1_1_0d EXIST::FUNCTION: -SKF_RSAVerify 2242 1_1_0d EXIST::FUNCTION:SKF -OPENSSL_LH_delete 2243 1_1_0d EXIST::FUNCTION: -SKF_ECCSignData 2244 1_1_0d EXIST::FUNCTION:SKF -CMS_add1_recipient_cert 2245 1_1_0d EXIST::FUNCTION:CMS -ENGINE_set_name 2246 1_1_0d EXIST::FUNCTION:ENGINE -EVP_CIPHER_meth_get_get_asn1_params 2247 1_1_0d EXIST::FUNCTION: -d2i_ASN1_GENERALSTRING 2248 1_1_0d EXIST::FUNCTION: -CONF_modules_unload 2249 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_verifyctx 2250 1_1_0d EXIST::FUNCTION: -d2i_OCSP_REVOKEDINFO 2251 1_1_0d EXIST::FUNCTION:OCSP -ASN1_PRINTABLESTRING_new 2252 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_get_pubkey 2253 1_1_0d EXIST::FUNCTION: -i2d_X509_CINF 2254 1_1_0d EXIST::FUNCTION: -TS_REQ_delete_ext 2255 1_1_0d EXIST::FUNCTION:TS -CRYPTO_cts128_decrypt_block 2256 1_1_0d EXIST::FUNCTION: -SAF_VerifyCertificateByCrl 2257 1_1_0d EXIST::FUNCTION: -EC_KEY_clear_flags 2258 1_1_0d EXIST::FUNCTION:EC -X509v3_addr_get_afi 2259 1_1_0d EXIST::FUNCTION:RFC3779 -RSA_null_method 2260 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_CTX_str2ctrl 2261 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_add0_policy 2262 1_1_0d EXIST::FUNCTION: -RSA_meth_set_pub_enc 2263 1_1_0d EXIST::FUNCTION:RSA -TS_ACCURACY_new 2264 1_1_0d EXIST::FUNCTION:TS -SM9_verify 2265 1_1_0d EXIST::FUNCTION:SM9 -ASN1_UTF8STRING_new 2266 1_1_0d EXIST::FUNCTION: -DSA_meth_get0_name 2267 1_1_0d EXIST::FUNCTION:DSA -NOTICEREF_free 2268 1_1_0d EXIST::FUNCTION: -BN_GFP2_equ 2269 1_1_0d EXIST::FUNCTION: -BN_mod_add 2270 1_1_0d EXIST::FUNCTION: -OBJ_txt2nid 2271 1_1_0d EXIST::FUNCTION: -PKCS12_setup_mac 2272 1_1_0d EXIST::FUNCTION: -d2i_X509_REQ_bio 2273 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get0_extensions 2274 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_new 2275 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_set_string 2276 1_1_0d EXIST::FUNCTION: -EVP_SealFinal 2277 1_1_0d EXIST::FUNCTION:RSA -i2d_X509_SIG 2278 1_1_0d EXIST::FUNCTION: -PKCS7_add1_attrib_digest 2279 1_1_0d EXIST::FUNCTION: -HMAC_Init_ex 2280 1_1_0d EXIST::FUNCTION: -BN_mod_exp_mont_consttime 2281 1_1_0d EXIST::FUNCTION: -DSO_up_ref 2282 1_1_0d EXIST::FUNCTION: -EC_type1curve_tate 2283 1_1_0d EXIST::FUNCTION: -ASRange_new 2284 1_1_0d EXIST::FUNCTION:RFC3779 -OCSP_basic_add1_status 2285 1_1_0d EXIST::FUNCTION:OCSP -SM9PublicKey_new 2286 1_1_0d EXIST::FUNCTION:SM9 -PEM_write_CMS 2287 1_1_0d EXIST::FUNCTION:CMS,STDIO -ASN1_INTEGER_get_int64 2288 1_1_0d EXIST::FUNCTION: -X509v3_asid_add_id_or_range 2289 1_1_0d EXIST::FUNCTION:RFC3779 -d2i_RSAPublicKey_bio 2290 1_1_0d EXIST::FUNCTION:RSA -d2i_DSA_PUBKEY_fp 2291 1_1_0d EXIST::FUNCTION:DSA,STDIO -SRP_Calc_A 2292 1_1_0d EXIST::FUNCTION:SRP -SM2CiphertextValue_new_from_ECCCIPHERBLOB 2293 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 -SMIME_read_ASN1 2294 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set1_email 2295 1_1_0d EXIST::FUNCTION: -PEM_read_X509 2296 1_1_0d EXIST::FUNCTION:STDIO -BN_is_one 2297 1_1_0d EXIST::FUNCTION: -SAF_VerifyCertificate 2298 1_1_0d EXIST::FUNCTION: -a2i_IPADDRESS 2299 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_decrypt 2300 1_1_0d EXIST::FUNCTION:CMS -COMP_CTX_new 2301 1_1_0d EXIST::FUNCTION:COMP -EC_GROUP_set_asn1_flag 2302 1_1_0d EXIST::FUNCTION:EC -ASN1_PCTX_get_oid_flags 2303 1_1_0d EXIST::FUNCTION: -OBJ_cmp 2304 1_1_0d EXIST::FUNCTION: -DES_crypt 2305 1_1_0d EXIST::FUNCTION:DES -X509_STORE_CTX_set_verify 2306 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_new 2307 1_1_0d EXIST::FUNCTION:OCSP -ISSUING_DIST_POINT_it 2308 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ISSUING_DIST_POINT_it 2308 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RSA_PKCS1_OpenSSL 2309 1_1_0d EXIST::FUNCTION:RSA -EVP_PBE_alg_add 2310 1_1_0d EXIST::FUNCTION: -ERR_remove_thread_state 2311 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -i2d_TS_TST_INFO_bio 2312 1_1_0d EXIST::FUNCTION:TS -RSA_meth_get_mod_exp 2313 1_1_0d EXIST::FUNCTION:RSA -EC_GROUP_new 2314 1_1_0d EXIST::FUNCTION:EC -EC_KEY_get_method 2315 1_1_0d EXIST::FUNCTION:EC -SOF_SetEncryptMethod 2316 1_1_0d EXIST::FUNCTION: -X509_REQ_verify 2317 1_1_0d EXIST::FUNCTION: -AES_ofb128_encrypt 2318 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_clear_flags 2319 1_1_0d EXIST::FUNCTION: -v2i_ASN1_BIT_STRING 2320 1_1_0d EXIST::FUNCTION: -PEM_write_bio_CMS 2321 1_1_0d EXIST::FUNCTION:CMS -SDF_GenerateKeyWithKEK 2322 1_1_0d EXIST::FUNCTION: -SOF_VerifySignedMessageDetach 2323 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_add_md 2324 1_1_0d EXIST::FUNCTION:TS -i2d_BB1MasterSecret 2325 1_1_0d EXIST::FUNCTION:BB1IBE -d2i_RSAPrivateKey_bio 2326 1_1_0d EXIST::FUNCTION:RSA -BN_GF2m_mod_sqrt_arr 2327 1_1_0d EXIST::FUNCTION:EC2M -EVP_aes_192_cfb128 2328 1_1_0d EXIST::FUNCTION: -GENERAL_NAMES_it 2329 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -GENERAL_NAMES_it 2329 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -sms4_cfb128_encrypt 2330 1_1_0d EXIST::FUNCTION:SMS4 -EC_KEY_METHOD_set_sign 2331 1_1_0d EXIST::FUNCTION:EC -EVP_camellia_256_ecb 2332 1_1_0d EXIST::FUNCTION:CAMELLIA -CRYPTO_ccm128_tag 2333 1_1_0d EXIST::FUNCTION: -ENGINE_register_pkey_meths 2334 1_1_0d EXIST::FUNCTION:ENGINE -i2d_ASN1_ENUMERATED 2335 1_1_0d EXIST::FUNCTION: -ERR_load_SOF_strings 2336 1_1_0d EXIST::FUNCTION:SOF -MD4_Final 2337 1_1_0d EXIST::FUNCTION:MD4 -PKCS8_add_keyusage 2338 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_get_data 2339 1_1_0d EXIST::FUNCTION: -i2d_TS_REQ_bio 2340 1_1_0d EXIST::FUNCTION:TS -EC_KEY_METHOD_set_decrypt 2341 1_1_0d EXIST::FUNCTION:SM2 -d2i_ASN1_BMPSTRING 2342 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_encrypt_ctr32 2343 1_1_0d EXIST::FUNCTION: -X509_CRL_get_ext_count 2344 1_1_0d EXIST::FUNCTION: -X509_issuer_and_serial_cmp 2345 1_1_0d EXIST::FUNCTION: -v2i_GENERAL_NAME_ex 2346 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_ecb 2347 1_1_0d EXIST::FUNCTION:DES -EVP_camellia_128_cbc 2348 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_PKEY_get_attr_by_OBJ 2349 1_1_0d EXIST::FUNCTION: -AUTHORITY_INFO_ACCESS_it 2350 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -AUTHORITY_INFO_ACCESS_it 2350 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SKF_GenRandom 2351 1_1_0d EXIST::FUNCTION:SKF -X509_TRUST_cleanup 2352 1_1_0d EXIST::FUNCTION: -IPAddressFamily_free 2353 1_1_0d EXIST::FUNCTION:RFC3779 -BB1MasterSecret_new 2354 1_1_0d EXIST::FUNCTION:BB1IBE -ENGINE_load_builtin_engines 2355 1_1_0d EXIST::FUNCTION:ENGINE -DH_get_2048_256 2356 1_1_0d EXIST::FUNCTION:DH -ASN1_STRING_print_ex 2357 1_1_0d EXIST::FUNCTION: -RSA_new_from_RSArefPrivateKey 2358 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -CRYPTO_get_mem_functions 2359 1_1_0d EXIST::FUNCTION: -CMS_ContentInfo_free 2360 1_1_0d EXIST::FUNCTION:CMS -ESS_SIGNING_CERT_free 2361 1_1_0d EXIST::FUNCTION:TS -BIO_meth_free 2362 1_1_0d EXIST::FUNCTION: -WHIRLPOOL_Final 2363 1_1_0d EXIST::FUNCTION:WHIRLPOOL -OPENSSL_sk_num 2364 1_1_0d EXIST::FUNCTION: -TS_REQ_set_policy_id 2365 1_1_0d EXIST::FUNCTION:TS -SAF_GetCertFromLdap 2366 1_1_0d EXIST::FUNCTION: -X509_REQ_INFO_it 2367 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_REQ_INFO_it 2367 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -a2i_GENERAL_NAME 2368 1_1_0d EXIST::FUNCTION: -BN_hex2bn 2369 1_1_0d EXIST::FUNCTION: -X509at_get_attr_by_NID 2370 1_1_0d EXIST::FUNCTION: -i2d_PKCS8PrivateKeyInfo_bio 2371 1_1_0d EXIST::FUNCTION: -AES_cfb1_encrypt 2372 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_set0_key 2373 1_1_0d EXIST::FUNCTION:CMS -BN_GENCB_call 2374 1_1_0d EXIST::FUNCTION: -ERR_unload_strings 2375 1_1_0d EXIST::FUNCTION: -SAF_CreateHashObj 2376 1_1_0d EXIST::FUNCTION: -EC_KEY_new_by_curve_name 2377 1_1_0d EXIST::FUNCTION:EC -PEM_read_RSA_PUBKEY 2378 1_1_0d EXIST::FUNCTION:RSA,STDIO -BIO_new_dgram_sctp 2379 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -ERR_load_DSO_strings 2380 1_1_0d EXIST::FUNCTION: -SKF_RSASignData 2381 1_1_0d EXIST::FUNCTION:SKF -PKCS12_MAC_DATA_new 2382 1_1_0d EXIST::FUNCTION: -BIO_dump_indent 2383 1_1_0d EXIST::FUNCTION: -EVP_get_cipherbyname 2384 1_1_0d EXIST::FUNCTION: -SAF_GetCaCertificateCount 2385 1_1_0d EXIST::FUNCTION: -d2i_EC_PUBKEY 2386 1_1_0d EXIST::FUNCTION:EC -X509_policy_node_get0_policy 2387 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_input_blocksize 2388 1_1_0d EXIST::FUNCTION: -X509_REQ_extension_nid 2389 1_1_0d EXIST::FUNCTION: -X509_print_ex_fp 2390 1_1_0d EXIST::FUNCTION:STDIO -BN_GF2m_mod_sqrt 2391 1_1_0d EXIST::FUNCTION:EC2M -X509_VERIFY_PARAM_set1_policies 2392 1_1_0d EXIST::FUNCTION: -EVP_camellia_256_cfb8 2393 1_1_0d EXIST::FUNCTION:CAMELLIA -BIO_set_tcp_ndelay 2394 1_1_0d EXIST::FUNCTION:SOCK -OCSP_request_onereq_get0 2395 1_1_0d EXIST::FUNCTION:OCSP -ASIdentifiers_new 2396 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_write_PKCS8_PRIV_KEY_INFO 2397 1_1_0d EXIST::FUNCTION:STDIO -CMS_set1_signers_certs 2398 1_1_0d EXIST::FUNCTION:CMS -X509_SIG_free 2399 1_1_0d EXIST::FUNCTION: -IDEA_set_encrypt_key 2400 1_1_0d EXIST::FUNCTION:IDEA -EC_GFp_nistp521_method 2401 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 -OCSP_SINGLERESP_get_ext_by_critical 2402 1_1_0d EXIST::FUNCTION:OCSP -d2i_GENERAL_NAME 2403 1_1_0d EXIST::FUNCTION: -ASYNC_pause_job 2404 1_1_0d EXIST::FUNCTION: -SKF_NewECCCipher 2405 1_1_0d EXIST::FUNCTION:SKF -X509_STORE_CTX_set_ex_data 2406 1_1_0d EXIST::FUNCTION: -PROXY_POLICY_free 2407 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_asn1_to_param 2408 1_1_0d EXIST::FUNCTION: -PKCS12_MAC_DATA_it 2409 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_MAC_DATA_it 2409 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_gcm128_finish 2410 1_1_0d EXIST::FUNCTION: -X509_CRL_dup 2411 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_flags 2412 1_1_0d EXIST::FUNCTION: -PKCS7_add_crl 2413 1_1_0d EXIST::FUNCTION: -SHA256_Transform 2414 1_1_0d EXIST::FUNCTION: -BIO_f_nbio_test 2415 1_1_0d EXIST::FUNCTION: -BN_num_bits_word 2416 1_1_0d EXIST::FUNCTION: -PEM_write_PKCS8PrivateKey_nid 2417 1_1_0d EXIST::FUNCTION:STDIO -X509_LOOKUP_ctrl 2418 1_1_0d EXIST::FUNCTION: -ASN1_get_object 2419 1_1_0d EXIST::FUNCTION: -X509_OBJECT_get0_X509_CRL 2420 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_cert 2421 1_1_0d EXIST::FUNCTION: -RSA_meth_get_pub_dec 2422 1_1_0d EXIST::FUNCTION:RSA -ASN1_SCTX_new 2423 1_1_0d EXIST::FUNCTION: -ASYNC_WAIT_CTX_clear_fd 2424 1_1_0d EXIST::FUNCTION: -SOF_SignMessageDetach 2425 1_1_0d EXIST::FUNCTION: -X509_CRL_print_fp 2426 1_1_0d EXIST::FUNCTION:STDIO -i2d_RSA_PSS_PARAMS 2427 1_1_0d EXIST::FUNCTION:RSA -DES_string_to_2keys 2428 1_1_0d EXIST::FUNCTION:DES -i2s_ASN1_INTEGER 2429 1_1_0d EXIST::FUNCTION: -PROXY_POLICY_new 2430 1_1_0d EXIST::FUNCTION: -DSA_set_method 2431 1_1_0d EXIST::FUNCTION:DSA -SHA512_Transform 2432 1_1_0d EXIST:!VMSVAX:FUNCTION: -i2d_BFMasterSecret 2433 1_1_0d EXIST::FUNCTION:BFIBE -EVP_aes_256_ctr 2434 1_1_0d EXIST::FUNCTION: -EC_GROUP_order_bits 2435 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_set_depth 2436 1_1_0d EXIST::FUNCTION: -ASN1_item_d2i 2437 1_1_0d EXIST::FUNCTION: -SOF_GetInfoFromSignedMessage 2438 1_1_0d EXIST::FUNCTION: -PKCS5_pbe2_set_iv 2439 1_1_0d EXIST::FUNCTION: -OCSP_RESPDATA_new 2440 1_1_0d EXIST::FUNCTION:OCSP -SCT_get_signature_nid 2441 1_1_0d EXIST::FUNCTION:CT -X509_STORE_set_flags 2442 1_1_0d EXIST::FUNCTION: -d2i_OCSP_CERTSTATUS 2443 1_1_0d EXIST::FUNCTION:OCSP -BIO_ADDR_rawmake 2444 1_1_0d EXIST::FUNCTION:SOCK -i2d_ASN1_NULL 2445 1_1_0d EXIST::FUNCTION: -PKCS7_final 2446 1_1_0d EXIST::FUNCTION: -BN_set_negative 2447 1_1_0d EXIST::FUNCTION: -CRL_DIST_POINTS_new 2448 1_1_0d EXIST::FUNCTION: -UI_create_method 2449 1_1_0d EXIST::FUNCTION:UI -AES_set_encrypt_key 2450 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_get 2451 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_init 2452 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_shift 2453 1_1_0d EXIST::FUNCTION: -d2i_CRL_DIST_POINTS 2454 1_1_0d EXIST::FUNCTION: -ENGINE_add 2455 1_1_0d EXIST::FUNCTION:ENGINE -EC_KEY_METHOD_get_init 2456 1_1_0d EXIST::FUNCTION:EC -EVP_aes_192_wrap_pad 2457 1_1_0d EXIST::FUNCTION: -SKF_PrintECCSignature 2458 1_1_0d EXIST::FUNCTION:SKF -OCSP_ONEREQ_get_ext_count 2459 1_1_0d EXIST::FUNCTION:OCSP -CONF_imodule_get_flags 2460 1_1_0d EXIST::FUNCTION: -BFIBE_encrypt 2461 1_1_0d EXIST::FUNCTION:BFIBE -EVP_DigestInit_ex 2462 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get0_hmac 2463 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_check_revocation 2464 1_1_0d EXIST::FUNCTION: -PEM_write_bio_RSAPublicKey 2465 1_1_0d EXIST::FUNCTION:RSA -CRYPTO_ocb128_decrypt 2466 1_1_0d EXIST::FUNCTION:OCB -OPENSSL_sk_value 2467 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_EC_KEY 2468 1_1_0d EXIST::FUNCTION:EC -BN_dup 2469 1_1_0d EXIST::FUNCTION: -ENGINE_get_finish_function 2470 1_1_0d EXIST::FUNCTION:ENGINE -CMS_decrypt_set1_key 2471 1_1_0d EXIST::FUNCTION:CMS -BN_ucmp 2472 1_1_0d EXIST::FUNCTION: -RSA_meth_set_pub_dec 2473 1_1_0d EXIST::FUNCTION:RSA -AES_decrypt 2474 1_1_0d EXIST::FUNCTION: -BIO_new_CMS 2475 1_1_0d EXIST::FUNCTION:CMS -EVP_PKEY_asn1_new 2476 1_1_0d EXIST::FUNCTION: -SDF_CloseSession 2477 1_1_0d EXIST::FUNCTION: -SM9_encrypt 2478 1_1_0d EXIST::FUNCTION:SM9 -RSA_flags 2479 1_1_0d EXIST::FUNCTION:RSA -d2i_ASN1_OCTET_STRING 2480 1_1_0d EXIST::FUNCTION: -BIO_dump_fp 2481 1_1_0d EXIST::FUNCTION:STDIO -ASN1_item_ex_new 2482 1_1_0d EXIST::FUNCTION: -NAME_CONSTRAINTS_it 2483 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NAME_CONSTRAINTS_it 2483 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BIO_sock_non_fatal_error 2484 1_1_0d EXIST::FUNCTION:SOCK -BIO_fd_should_retry 2485 1_1_0d EXIST::FUNCTION: -POLICY_MAPPING_it 2486 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICY_MAPPING_it 2486 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -speck_decrypt32 2487 1_1_0d EXIST::FUNCTION:SPECK -RSA_meth_dup 2488 1_1_0d EXIST::FUNCTION:RSA -SHA256_Update 2489 1_1_0d EXIST::FUNCTION: -PEM_read_ECPrivateKey 2490 1_1_0d EXIST::FUNCTION:EC,STDIO -i2d_OCSP_CERTSTATUS 2491 1_1_0d EXIST::FUNCTION:OCSP -SM9Signature_new 2492 1_1_0d EXIST::FUNCTION:SM9 -TS_TST_INFO_get_exts 2493 1_1_0d EXIST::FUNCTION:TS -EVP_PKEY_decrypt 2494 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_meth 2495 1_1_0d EXIST::FUNCTION:ENGINE -i2d_ASN1_SET_ANY 2496 1_1_0d EXIST::FUNCTION: -BN_sub_word 2497 1_1_0d EXIST::FUNCTION: -SAF_EccSign 2498 1_1_0d EXIST::FUNCTION: -PEM_read_RSAPublicKey 2499 1_1_0d EXIST::FUNCTION:RSA,STDIO -CRYPTO_mem_leaks_fp 2500 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG,STDIO -OBJ_dup 2501 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_free 2502 1_1_0d EXIST::FUNCTION: -PEM_write_RSAPublicKey 2503 1_1_0d EXIST::FUNCTION:RSA,STDIO -X509_get_subject_name 2504 1_1_0d EXIST::FUNCTION: -DSO_merge 2505 1_1_0d EXIST::FUNCTION: -FpPoint_it 2506 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -FpPoint_it 2506 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASN1_STRING_type_new 2507 1_1_0d EXIST::FUNCTION: -NOTICEREF_new 2508 1_1_0d EXIST::FUNCTION: -PKCS12_pbe_crypt 2509 1_1_0d EXIST::FUNCTION: -ASN1_digest 2510 1_1_0d EXIST::FUNCTION: -BN_get_word 2511 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_RSA 2512 1_1_0d EXIST::FUNCTION:RSA -CMS_signed_get_attr 2513 1_1_0d EXIST::FUNCTION:CMS -BN_lebin2bn 2514 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_finish 2515 1_1_0d EXIST::FUNCTION:OCB -ECPKParameters_print_fp 2516 1_1_0d EXIST::FUNCTION:EC,STDIO -OBJ_NAME_do_all 2517 1_1_0d EXIST::FUNCTION: -OCSP_CERTSTATUS_free 2518 1_1_0d EXIST::FUNCTION:OCSP -i2d_PaillierPrivateKey 2519 1_1_0d EXIST::FUNCTION:PAILLIER -PEM_X509_INFO_write_bio 2520 1_1_0d EXIST::FUNCTION: -i2d_BASIC_CONSTRAINTS 2521 1_1_0d EXIST::FUNCTION: -i2d_DSAPrivateKey 2522 1_1_0d EXIST::FUNCTION:DSA -TS_TST_INFO_get_ext_count 2523 1_1_0d EXIST::FUNCTION:TS -b2i_PrivateKey 2524 1_1_0d EXIST::FUNCTION:DSA -ASN1_item_ex_i2d 2525 1_1_0d EXIST::FUNCTION: -X509_trusted 2526 1_1_0d EXIST::FUNCTION: -SCT_get0_signature 2527 1_1_0d EXIST::FUNCTION:CT -DSA_meth_set_mod_exp 2528 1_1_0d EXIST::FUNCTION:DSA -d2i_DIST_POINT 2529 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_dup 2530 1_1_0d EXIST::FUNCTION: -i2d_PKCS7 2531 1_1_0d EXIST::FUNCTION: -OBJ_create 2532 1_1_0d EXIST::FUNCTION: -SDF_PrintECCSignature 2533 1_1_0d EXIST::FUNCTION:SDF -OPENSSL_die 2534 1_1_0d EXIST::FUNCTION: -MDC2_Update 2535 1_1_0d EXIST::FUNCTION:MDC2 -RSA_X931_hash_id 2536 1_1_0d EXIST::FUNCTION:RSA -DSA_print 2537 1_1_0d EXIST::FUNCTION:DSA -EVP_bf_ecb 2538 1_1_0d EXIST::FUNCTION:BF -ASN1_TYPE_set_octetstring 2539 1_1_0d EXIST::FUNCTION: -BIO_s_datagram_sctp 2540 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -d2i_ASN1_TIME 2541 1_1_0d EXIST::FUNCTION: -RIPEMD160_Update 2542 1_1_0d EXIST::FUNCTION:RMD160 -PaillierPrivateKey_it 2543 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER -PaillierPrivateKey_it 2543 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER -d2i_SM9Signature_fp 2544 1_1_0d EXIST::FUNCTION:SM9,STDIO -SDF_DestroyKey 2545 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_init 2546 1_1_0d EXIST::FUNCTION: -X509v3_asid_inherits 2547 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_read_NETSCAPE_CERT_SEQUENCE 2548 1_1_0d EXIST::FUNCTION:STDIO -GENERAL_NAME_cmp 2549 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_cmp_time_t 2550 1_1_0d EXIST::FUNCTION: -i2d_TS_ACCURACY 2551 1_1_0d EXIST::FUNCTION:TS -X509_CRL_get0_extensions 2552 1_1_0d EXIST::FUNCTION: -CMAC_Init 2553 1_1_0d EXIST::FUNCTION:CMAC -ERR_load_OBJ_strings 2554 1_1_0d EXIST::FUNCTION: -i2o_SCT 2555 1_1_0d EXIST::FUNCTION:CT -OPENSSL_uni2asc 2556 1_1_0d EXIST::FUNCTION: -d2i_DSA_PUBKEY_bio 2557 1_1_0d EXIST::FUNCTION:DSA -s2i_ASN1_IA5STRING 2558 1_1_0d EXIST::FUNCTION: -BN_GFP2_canonical 2559 1_1_0d EXIST::FUNCTION: -BIO_test_flags 2560 1_1_0d EXIST::FUNCTION: -ASN1_IA5STRING_new 2561 1_1_0d EXIST::FUNCTION: -TXT_DB_insert 2562 1_1_0d EXIST::FUNCTION: -d2i_OCSP_BASICRESP 2563 1_1_0d EXIST::FUNCTION:OCSP -EC_KEY_get_ex_data 2564 1_1_0d EXIST::FUNCTION:EC -i2s_ASN1_ENUMERATED 2565 1_1_0d EXIST::FUNCTION: -X509_REVOKED_it 2566 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_REVOKED_it 2566 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_policy_level_get0_node 2567 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_add_ext 2568 1_1_0d EXIST::FUNCTION:TS -SKF_ExtRSAPriKeyOperation 2569 1_1_0d EXIST::FUNCTION:SKF -X509_VERIFY_PARAM_lookup 2570 1_1_0d EXIST::FUNCTION: -PBEPARAM_free 2571 1_1_0d EXIST::FUNCTION: -SM9_extract_private_key 2572 1_1_0d EXIST::FUNCTION:SM9 -EVP_idea_cfb64 2573 1_1_0d EXIST::FUNCTION:IDEA -EVP_CIPHER_CTX_new 2574 1_1_0d EXIST::FUNCTION: -X509_load_cert_crl_file 2575 1_1_0d EXIST::FUNCTION: -SCT_set_timestamp 2576 1_1_0d EXIST::FUNCTION:CT -ECDSA_SIG_get0 2577 1_1_0d EXIST::FUNCTION:EC -RC5_32_set_key 2578 1_1_0d EXIST::FUNCTION:RC5 -EVP_CIPHER_CTX_num 2579 1_1_0d EXIST::FUNCTION: -d2i_TS_TST_INFO_fp 2580 1_1_0d EXIST::FUNCTION:STDIO,TS -CMS_RecipientInfo_ktri_get0_algs 2581 1_1_0d EXIST::FUNCTION:CMS -DES_cfb_encrypt 2582 1_1_0d EXIST::FUNCTION:DES -SAF_GenerateAgreementDataAdnKeyWithECC 2583 1_1_0d EXIST::FUNCTION: -ASN1_check_infinite_end 2584 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_new 2585 1_1_0d EXIST::FUNCTION: -a2i_ASN1_INTEGER 2586 1_1_0d EXIST::FUNCTION: -OTHERNAME_new 2587 1_1_0d EXIST::FUNCTION: -TS_REQ_get_nonce 2588 1_1_0d EXIST::FUNCTION:TS -PKCS7_ISSUER_AND_SERIAL_free 2589 1_1_0d EXIST::FUNCTION: -RSA_set0_crt_params 2590 1_1_0d EXIST::FUNCTION:RSA -SCT_set1_log_id 2591 1_1_0d EXIST::FUNCTION:CT -BN_is_word 2592 1_1_0d EXIST::FUNCTION: -X509_REQ_add_extensions 2593 1_1_0d EXIST::FUNCTION: -CONF_modules_load 2594 1_1_0d EXIST::FUNCTION: -PKCS5_PBKDF2_HMAC_SHA1 2595 1_1_0d EXIST::FUNCTION:SHA -ASN1_d2i_bio 2596 1_1_0d EXIST::FUNCTION: -EC_GFp_mont_method 2597 1_1_0d EXIST::FUNCTION:EC -SKF_ExtRSAPubKeyOperation 2598 1_1_0d EXIST::FUNCTION:SKF -X509_ATTRIBUTE_free 2599 1_1_0d EXIST::FUNCTION: -SKF_EnumDev 2600 1_1_0d EXIST::FUNCTION:SKF -CMS_signed_get_attr_by_NID 2601 1_1_0d EXIST::FUNCTION:CMS -ECIES_CIPHERTEXT_VALUE_set_ECCCIPHERBLOB 2602 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF -DSA_sign_setup 2603 1_1_0d EXIST::FUNCTION:DSA -TS_RESP_new 2604 1_1_0d EXIST::FUNCTION:TS -TS_MSG_IMPRINT_get_msg 2605 1_1_0d EXIST::FUNCTION:TS -BN_get_rfc3526_prime_6144 2606 1_1_0d EXIST::FUNCTION: -CRYPTO_ofb128_encrypt 2607 1_1_0d EXIST::FUNCTION: -OPENSSL_hexchar2int 2608 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_new 2609 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_asn1_add_alias 2610 1_1_0d EXIST::FUNCTION: -BN_bin2bn 2611 1_1_0d EXIST::FUNCTION: -DH_meth_set_bn_mod_exp 2612 1_1_0d EXIST::FUNCTION:DH -i2d_ASN1_T61STRING 2613 1_1_0d EXIST::FUNCTION: -i2d_re_X509_REQ_tbs 2614 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_set_by_name 2615 1_1_0d EXIST::FUNCTION:OCSP -PKCS12_unpack_p7data 2616 1_1_0d EXIST::FUNCTION: -RSA_verify_PKCS1_PSS_mgf1 2617 1_1_0d EXIST::FUNCTION:RSA -BASIC_CONSTRAINTS_new 2618 1_1_0d EXIST::FUNCTION: -X509_load_crl_file 2619 1_1_0d EXIST::FUNCTION: -ASN1_OBJECT_free 2620 1_1_0d EXIST::FUNCTION: -RSA_verify 2621 1_1_0d EXIST::FUNCTION:RSA -sms4_unwrap_key 2622 1_1_0d EXIST::FUNCTION:SMS4 -SM2_compute_share_key 2623 1_1_0d EXIST::FUNCTION:SM2 -TS_X509_ALGOR_print_bio 2624 1_1_0d EXIST::FUNCTION:TS -CRYPTO_secure_free 2625 1_1_0d EXIST::FUNCTION: -OCSP_RESPBYTES_it 2626 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPBYTES_it 2626 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -PEM_write_bio_PKCS8PrivateKey_nid 2627 1_1_0d EXIST::FUNCTION: -DH_get0_key 2628 1_1_0d EXIST::FUNCTION:DH -EVP_ENCODE_CTX_free 2629 1_1_0d EXIST::FUNCTION: -RSA_meth_set_priv_dec 2630 1_1_0d EXIST::FUNCTION:RSA -EC_KEY_set_default_sm_method 2631 1_1_0d EXIST::FUNCTION:SM2 -EVP_aes_256_wrap_pad 2632 1_1_0d EXIST::FUNCTION: -i2d_ASN1_BIT_STRING 2633 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_exp 2634 1_1_0d EXIST::FUNCTION:EC2M -DES_ncbc_encrypt 2635 1_1_0d EXIST::FUNCTION:DES -SDF_HashFinal 2636 1_1_0d EXIST::FUNCTION: -X509_get_serialNumber 2637 1_1_0d EXIST::FUNCTION: -BN_abs_is_word 2638 1_1_0d EXIST::FUNCTION: -SM9PublicParameters_it 2639 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9PublicParameters_it 2639 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -EVP_rc5_32_12_16_cfb64 2640 1_1_0d EXIST::FUNCTION:RC5 -ENGINE_unregister_pkey_asn1_meths 2641 1_1_0d EXIST::FUNCTION:ENGINE -SM9_VerifyFinal 2642 1_1_0d EXIST::FUNCTION:SM9 -PEM_write_bio_RSA_PUBKEY 2643 1_1_0d EXIST::FUNCTION:RSA -TS_TST_INFO_get_ext_d2i 2644 1_1_0d EXIST::FUNCTION:TS -EVP_OpenInit 2645 1_1_0d EXIST::FUNCTION:RSA -BIO_s_socket 2646 1_1_0d EXIST::FUNCTION:SOCK -DSO_pathbyaddr 2647 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyPair_RSA 2648 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_get_octetstring 2649 1_1_0d EXIST::FUNCTION: -DSA_meth_set_sign 2650 1_1_0d EXIST::FUNCTION:DSA -d2i_CMS_bio 2651 1_1_0d EXIST::FUNCTION:CMS -NAME_CONSTRAINTS_free 2652 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_compare_id 2653 1_1_0d EXIST::FUNCTION: -DIRECTORYSTRING_free 2654 1_1_0d EXIST::FUNCTION: -PEM_write_bio_EC_PUBKEY 2655 1_1_0d EXIST::FUNCTION:EC -d2i_X509_CRL_fp 2656 1_1_0d EXIST::FUNCTION:STDIO -X509_getm_notBefore 2657 1_1_0d EXIST::FUNCTION: -ENGINE_set_default 2658 1_1_0d EXIST::FUNCTION:ENGINE -BIO_f_buffer 2659 1_1_0d EXIST::FUNCTION: -TS_REQ_print_bio 2660 1_1_0d EXIST::FUNCTION:TS -X509_CRL_get_meth_data 2661 1_1_0d EXIST::FUNCTION: -EVP_Digest 2662 1_1_0d EXIST::FUNCTION: -ENGINE_get_default_EC 2663 1_1_0d EXIST::FUNCTION:ENGINE -d2i_ASIdentifiers 2664 1_1_0d EXIST::FUNCTION:RFC3779 -X509_REQ_get_pubkey 2665 1_1_0d EXIST::FUNCTION: -X509v3_asid_is_canonical 2666 1_1_0d EXIST::FUNCTION:RFC3779 -DSA_meth_new 2667 1_1_0d EXIST::FUNCTION:DSA -BF_options 2668 1_1_0d EXIST::FUNCTION:BF -ENGINE_get_static_state 2669 1_1_0d EXIST::FUNCTION:ENGINE -i2d_X509_NAME_ENTRY 2670 1_1_0d EXIST::FUNCTION: -PKCS7_add_attrib_smimecap 2671 1_1_0d EXIST::FUNCTION: -X509_CRL_add0_revoked 2672 1_1_0d EXIST::FUNCTION: -PKCS8_get_attr 2673 1_1_0d EXIST::FUNCTION: -BN_generate_dsa_nonce 2674 1_1_0d EXIST::FUNCTION: -PEM_write_bio 2675 1_1_0d EXIST::FUNCTION: -MD5_Init 2676 1_1_0d EXIST::FUNCTION:MD5 -EC_KEY_METHOD_get_keygen 2677 1_1_0d EXIST::FUNCTION:EC -SKF_Transmit 2678 1_1_0d EXIST::FUNCTION:SKF -EC_KEY_get_ECCrefPublicKey 2679 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -X509V3_EXT_add_alias 2680 1_1_0d EXIST::FUNCTION: -BF_ecb_encrypt 2681 1_1_0d EXIST::FUNCTION:BF -SRP_user_pwd_free 2682 1_1_0d EXIST::FUNCTION:SRP -EC_KEY_METHOD_set_init 2683 1_1_0d EXIST::FUNCTION:EC -d2i_ESS_SIGNING_CERT 2684 1_1_0d EXIST::FUNCTION:TS -X509_EXTENSION_create_by_NID 2685 1_1_0d EXIST::FUNCTION: -OCSP_request_set1_name 2686 1_1_0d EXIST::FUNCTION:OCSP -EVP_MD_CTX_pkey_ctx 2687 1_1_0d EXIST::FUNCTION: -d2i_ASN1_NULL 2688 1_1_0d EXIST::FUNCTION: -HMAC_size 2689 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_check_policy 2690 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_run_once 2691 1_1_0d EXIST::FUNCTION: -EC_POINT_method_of 2692 1_1_0d EXIST::FUNCTION:EC -X509v3_delete_ext 2693 1_1_0d EXIST::FUNCTION: -IPAddressOrRange_it 2694 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressOrRange_it 2694 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -PAILLIER_check_key 2695 1_1_0d EXIST::FUNCTION:PAILLIER -RSA_meth_set_init 2696 1_1_0d EXIST::FUNCTION:RSA -CRYPTO_gcm128_decrypt_ctr32 2697 1_1_0d EXIST::FUNCTION: -ASIdentifiers_it 2698 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASIdentifiers_it 2698 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -d2i_ECCSignature 2699 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -ENGINE_set_RAND 2700 1_1_0d EXIST::FUNCTION:ENGINE -SKF_ExtECCDecrypt 2701 1_1_0d EXIST::FUNCTION:SKF -X509_REQ_get_X509_PUBKEY 2702 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_set_flags 2703 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_fp 2704 1_1_0d EXIST::FUNCTION:STDIO -ENGINE_unregister_DSA 2705 1_1_0d EXIST::FUNCTION:ENGINE -PBKDF2PARAM_free 2706 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_accuracy 2707 1_1_0d EXIST::FUNCTION:TS -PKCS8_pkey_set0 2708 1_1_0d EXIST::FUNCTION: -X509_REQ_get_extensions 2709 1_1_0d EXIST::FUNCTION: -ERR_load_GMAPI_strings 2710 1_1_0d EXIST::FUNCTION:GMAPI -OCSP_parse_url 2711 1_1_0d EXIST::FUNCTION:OCSP -d2i_TS_TST_INFO 2712 1_1_0d EXIST::FUNCTION:TS -SKF_EnumFiles 2713 1_1_0d EXIST::FUNCTION:SKF -SOF_ExportUserCert 2714 1_1_0d EXIST::FUNCTION: -ERR_peek_error_line_data 2715 1_1_0d EXIST::FUNCTION: -CTLOG_get0_public_key 2716 1_1_0d EXIST::FUNCTION:CT -OBJ_nid2ln 2717 1_1_0d EXIST::FUNCTION: -RSA_new_from_RSAPRIVATEKEYBLOB 2718 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -BIO_ADDR_rawaddress 2719 1_1_0d EXIST::FUNCTION:SOCK -i2d_X509_REQ 2720 1_1_0d EXIST::FUNCTION: -SXNET_add_id_ulong 2721 1_1_0d EXIST::FUNCTION: -PEM_write_PKCS7 2722 1_1_0d EXIST::FUNCTION:STDIO -SOF_GetServerCertificate 2723 1_1_0d EXIST::FUNCTION: -BB1CiphertextBlock_free 2724 1_1_0d EXIST::FUNCTION:BB1IBE -CONF_module_get_usr_data 2725 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_print 2726 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_EncodeDigestedData 2727 1_1_0d EXIST::FUNCTION: -ENGINE_register_RAND 2728 1_1_0d EXIST::FUNCTION:ENGINE -d2i_ASN1_PRINTABLESTRING 2729 1_1_0d EXIST::FUNCTION: -PKCS12_add_safe 2730 1_1_0d EXIST::FUNCTION: -IDEA_ofb64_encrypt 2731 1_1_0d EXIST::FUNCTION:IDEA -X509v3_addr_inherits 2732 1_1_0d EXIST::FUNCTION:RFC3779 -RSA_get_RSArefPublicKey 2733 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -BIO_ptr_ctrl 2734 1_1_0d EXIST::FUNCTION: -i2d_EC_PUBKEY_bio 2735 1_1_0d EXIST::FUNCTION:EC -X509_find_by_issuer_and_serial 2736 1_1_0d EXIST::FUNCTION: -X509_STORE_get_check_crl 2737 1_1_0d EXIST::FUNCTION: -i2d_BFPublicParameters 2738 1_1_0d EXIST::FUNCTION:BFIBE -ASN1_IA5STRING_free 2739 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_auth_level 2740 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_get_sgd 2741 1_1_0d EXIST::FUNCTION:GMAPI -OPENSSL_LH_set_down_load 2742 1_1_0d EXIST::FUNCTION: -ZUC_generate_keystream 2743 1_1_0d EXIST::FUNCTION:ZUC -EC_GROUP_set_curve_GF2m 2744 1_1_0d EXIST::FUNCTION:EC,EC2M -SKF_ECCVerify 2745 1_1_0d EXIST::FUNCTION:SKF -d2i_AutoPrivateKey 2746 1_1_0d EXIST::FUNCTION: -i2d_OCSP_CERTID 2747 1_1_0d EXIST::FUNCTION:OCSP -RC2_cfb64_encrypt 2748 1_1_0d EXIST::FUNCTION:RC2 -DSA_meth_set_init 2749 1_1_0d EXIST::FUNCTION:DSA -BIO_nwrite0 2750 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_inv_arr 2751 1_1_0d EXIST::FUNCTION:EC2M -ASN1_STRING_set_default_mask 2752 1_1_0d EXIST::FUNCTION: -BN_nist_mod_192 2753 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_get_flags 2754 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_delete_ext 2755 1_1_0d EXIST::FUNCTION:OCSP -X509_PUBKEY_it 2756 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_PUBKEY_it 2756 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_THREAD_read_lock 2757 1_1_0d EXIST::FUNCTION: -OBJ_length 2758 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get_attr_by_NID 2759 1_1_0d EXIST::FUNCTION: -UI_get0_action_string 2760 1_1_0d EXIST::FUNCTION:UI -BN_GFP2_exp 2761 1_1_0d EXIST::FUNCTION: -i2d_OCSP_REQINFO 2762 1_1_0d EXIST::FUNCTION:OCSP -EVP_get_ciphernames 2763 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_dup 2764 1_1_0d EXIST::FUNCTION:TS -d2i_ASN1_UINTEGER 2765 1_1_0d EXIST::FUNCTION: -PEM_ASN1_write 2766 1_1_0d EXIST::FUNCTION:STDIO -SKF_GenerateKeyWithECC 2767 1_1_0d EXIST::FUNCTION:SKF -EVP_PKEY_verify_init 2768 1_1_0d EXIST::FUNCTION: -BIO_closesocket 2769 1_1_0d EXIST::FUNCTION:SOCK -i2s_ASN1_IA5STRING 2770 1_1_0d EXIST::FUNCTION: -UI_get_method 2771 1_1_0d EXIST::FUNCTION:UI -PEM_write_bio_DSAPrivateKey 2772 1_1_0d EXIST::FUNCTION:DSA -PEM_write_PKCS8PrivateKey 2773 1_1_0d EXIST::FUNCTION:STDIO -X509_get_extension_flags 2774 1_1_0d EXIST::FUNCTION: -ECIES_PARAMS_get_mac 2775 1_1_0d EXIST::FUNCTION:ECIES -SAF_GetRootCaCertificate 2776 1_1_0d EXIST::FUNCTION: -PKCS8_PRIV_KEY_INFO_new 2777 1_1_0d EXIST::FUNCTION: -TLS_FEATURE_free 2778 1_1_0d EXIST::FUNCTION: -PKCS12_it 2779 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_it 2779 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ECDSA_sign_ex 2780 1_1_0d EXIST::FUNCTION:EC -SOF_DelCertTrustList 2781 1_1_0d EXIST::FUNCTION: -i2d_OCSP_SINGLERESP 2782 1_1_0d EXIST::FUNCTION:OCSP -ASN1_TYPE_unpack_sequence 2783 1_1_0d EXIST::FUNCTION: -RSA_meth_get_init 2784 1_1_0d EXIST::FUNCTION:RSA -BN_GF2m_add 2785 1_1_0d EXIST::FUNCTION:EC2M -EVP_DigestVerifyInit 2786 1_1_0d EXIST::FUNCTION: -X509V3_EXT_d2i 2787 1_1_0d EXIST::FUNCTION: -ENGINE_remove 2788 1_1_0d EXIST::FUNCTION:ENGINE -X509_STORE_get_verify 2789 1_1_0d EXIST::FUNCTION: -EVP_sms4_cfb128 2790 1_1_0d EXIST::FUNCTION:SMS4 -X509_STORE_set_depth 2791 1_1_0d EXIST::FUNCTION: -ASN1_TIME_set 2792 1_1_0d EXIST::FUNCTION: -X509_CRL_digest 2793 1_1_0d EXIST::FUNCTION: -DH_check 2794 1_1_0d EXIST::FUNCTION:DH -X509_VERIFY_PARAM_new 2795 1_1_0d EXIST::FUNCTION: -X509_policy_tree_get0_user_policies 2796 1_1_0d EXIST::FUNCTION: -EC_GFp_sm2p256_method 2797 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128,SM2 -ZUC_128eia3_set_key 2798 1_1_0d EXIST::FUNCTION:ZUC -X509_LOOKUP_shutdown 2799 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_ENCRYPT 2800 1_1_0d EXIST::FUNCTION: -EVP_camellia_256_cbc 2801 1_1_0d EXIST::FUNCTION:CAMELLIA -ASN1_bn_print 2802 1_1_0d EXIST::FUNCTION: -RSA_padding_check_X931 2803 1_1_0d EXIST::FUNCTION:RSA -EC_KEY_check_key 2804 1_1_0d EXIST::FUNCTION:EC -RSA_meth_set_mod_exp 2805 1_1_0d EXIST::FUNCTION:RSA -CMS_set1_eContentType 2806 1_1_0d EXIST::FUNCTION:CMS -X509_SIG_get0 2807 1_1_0d EXIST::FUNCTION: -X509_set1_notBefore 2808 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_by_NID 2809 1_1_0d EXIST::FUNCTION:OCSP -EC_POINT_point2buf 2810 1_1_0d EXIST::FUNCTION:EC -i2d_PKCS8PrivateKey_nid_fp 2811 1_1_0d EXIST::FUNCTION:STDIO -ENGINE_set_RSA 2812 1_1_0d EXIST::FUNCTION:ENGINE -ENGINE_get_pkey_asn1_meth_engine 2813 1_1_0d EXIST::FUNCTION:ENGINE -X509_STORE_CTX_get0_current_crl 2814 1_1_0d EXIST::FUNCTION: -POLICYQUALINFO_new 2815 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_current_cert 2816 1_1_0d EXIST::FUNCTION: -EVP_PKCS82PKEY 2817 1_1_0d EXIST::FUNCTION: -d2i_ECCSignature_fp 2818 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO -BN_CTX_end 2819 1_1_0d EXIST::FUNCTION: -EVP_PKEY_keygen 2820 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_get_issuer 2821 1_1_0d EXIST::FUNCTION: -EVP_aes_192_ecb 2822 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_check_crl 2823 1_1_0d EXIST::FUNCTION: -DH_meth_set_flags 2824 1_1_0d EXIST::FUNCTION:DH -CMAC_CTX_free 2825 1_1_0d EXIST::FUNCTION:CMAC -MD2_Final 2826 1_1_0d EXIST::FUNCTION:MD2 -BIO_new_fd 2827 1_1_0d EXIST::FUNCTION: -PKCS7_dataVerify 2828 1_1_0d EXIST::FUNCTION: -ENGINE_setup_bsd_cryptodev 2829 1_1_0d EXIST:__FreeBSD__:FUNCTION:DEPRECATEDIN_1_1_0,ENGINE -ASN1_TYPE_get_int_octetstring 2830 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_new 2831 1_1_0d EXIST::FUNCTION: -ASN1_TIME_print 2832 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyWithIPK_ECC 2833 1_1_0d EXIST::FUNCTION: -ENGINE_load_public_key 2834 1_1_0d EXIST::FUNCTION:ENGINE -RAND_file_name 2835 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_signer_key 2836 1_1_0d EXIST::FUNCTION:TS -CMS_RecipientInfo_kekri_get0_id 2837 1_1_0d EXIST::FUNCTION:CMS -X509_ATTRIBUTE_new 2838 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_new 2839 1_1_0d EXIST::FUNCTION: -SHA1_Init 2840 1_1_0d EXIST::FUNCTION: -X509_get_signature_type 2841 1_1_0d EXIST::FUNCTION: -CMS_digest_create 2842 1_1_0d EXIST::FUNCTION:CMS -BIO_snprintf 2843 1_1_0d EXIST::FUNCTION: -ENGINE_get_default_DH 2844 1_1_0d EXIST::FUNCTION:ENGINE -SRP_VBASE_new 2845 1_1_0d EXIST::FUNCTION:SRP -DSAparams_print 2846 1_1_0d EXIST::FUNCTION:DSA -BN_GF2m_mod_solve_quad_arr 2847 1_1_0d EXIST::FUNCTION:EC2M -SHA224_Init 2848 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_add1_host 2849 1_1_0d EXIST::FUNCTION: -X509_TRUST_get0 2850 1_1_0d EXIST::FUNCTION: -BN_mod_word 2851 1_1_0d EXIST::FUNCTION: -BIO_dgram_sctp_wait_for_dry 2852 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -PKCS7_ISSUER_AND_SERIAL_digest 2853 1_1_0d EXIST::FUNCTION: -RC5_32_decrypt 2854 1_1_0d EXIST::FUNCTION:RC5 -BN_GFP2_new 2855 1_1_0d EXIST::FUNCTION: -X509_STORE_load_locations 2856 1_1_0d EXIST::FUNCTION: -SOF_GetXMLSignatureInfo 2857 1_1_0d EXIST::FUNCTION: -EVP_sms4_ccm 2858 1_1_0d EXIST::FUNCTION:SMS4 -ENGINE_free 2859 1_1_0d EXIST::FUNCTION:ENGINE -i2d_PKEY_USAGE_PERIOD 2860 1_1_0d EXIST::FUNCTION: -ERR_load_PKCS12_strings 2861 1_1_0d EXIST::FUNCTION: -BIO_get_ex_data 2862 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_it 2863 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_UTCTIME_it 2863 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BIO_get_retry_reason 2864 1_1_0d EXIST::FUNCTION: -BN_cmp 2865 1_1_0d EXIST::FUNCTION: -EC_POINT_clear_free 2866 1_1_0d EXIST::FUNCTION:EC -EVP_MD_meth_set_ctrl 2867 1_1_0d EXIST::FUNCTION: -speck_encrypt64 2868 1_1_0d EXIST::FUNCTION:SPECK -ERR_load_SAF_strings 2869 1_1_0d EXIST::FUNCTION:SAF -i2d_CMS_ReceiptRequest 2870 1_1_0d EXIST::FUNCTION:CMS -X509at_get0_data_by_OBJ 2871 1_1_0d EXIST::FUNCTION: -i2d_X509_CRL_bio 2872 1_1_0d EXIST::FUNCTION: -SKF_GenRSAKeyPair 2873 1_1_0d EXIST::FUNCTION:SKF -EVP_MD_pkey_type 2874 1_1_0d EXIST::FUNCTION: -PBE2PARAM_new 2875 1_1_0d EXIST::FUNCTION: -BIO_meth_set_read 2876 1_1_0d EXIST::FUNCTION: -d2i_POLICYQUALINFO 2877 1_1_0d EXIST::FUNCTION: -d2i_IPAddressFamily 2878 1_1_0d EXIST::FUNCTION:RFC3779 -SDF_PrintECCPublicKey 2879 1_1_0d EXIST::FUNCTION:SDF -X509_PUBKEY_get0_param 2880 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_version 2881 1_1_0d EXIST::FUNCTION:TS -i2d_X509_ALGORS 2882 1_1_0d EXIST::FUNCTION: -PKCS12_AUTHSAFES_it 2883 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_AUTHSAFES_it 2883 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_ssl_client_cert_function 2884 1_1_0d EXIST::FUNCTION:ENGINE -SAF_Logout 2885 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_new_from_ECCCIPHERBLOB 2886 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF -ASN1_item_i2d_bio 2887 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_new 2888 1_1_0d EXIST::FUNCTION: -X509_OBJECT_up_ref_count 2889 1_1_0d EXIST::FUNCTION: -SDF_OpenSession 2890 1_1_0d EXIST::FUNCTION: -BN_options 2891 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_key_length 2892 1_1_0d EXIST::FUNCTION: -SM9PrivateKey_new 2893 1_1_0d EXIST::FUNCTION:SM9 -EVP_MD_do_all 2894 1_1_0d EXIST::FUNCTION: -i2d_ASIdOrRange 2895 1_1_0d EXIST::FUNCTION:RFC3779 -d2i_ASIdOrRange 2896 1_1_0d EXIST::FUNCTION:RFC3779 -TS_REQ_get_version 2897 1_1_0d EXIST::FUNCTION:TS -SDF_GetDeviceInfo 2898 1_1_0d EXIST::FUNCTION: -SM9MasterSecret_it 2899 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9MasterSecret_it 2899 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -CONF_get1_default_config_file 2900 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_serial_cb 2901 1_1_0d EXIST::FUNCTION:TS -UI_dup_error_string 2902 1_1_0d EXIST::FUNCTION:UI -PKCS7_get_issuer_and_serial 2903 1_1_0d EXIST::FUNCTION: -EVP_MD_do_all_sorted 2904 1_1_0d EXIST::FUNCTION: -BIO_set_next 2905 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_count 2906 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNED_new 2907 1_1_0d EXIST::FUNCTION: -EC_KEY_set_group 2908 1_1_0d EXIST::FUNCTION:EC -BN_kronecker 2909 1_1_0d EXIST::FUNCTION: -RSA_set_RSAPRIVATEKEYBLOB 2910 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -EVP_camellia_192_cfb8 2911 1_1_0d EXIST::FUNCTION:CAMELLIA -EC_KEY_get_ECCrefPrivateKey 2912 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -i2b_PublicKey_bio 2913 1_1_0d EXIST::FUNCTION:DSA -CRYPTO_ccm128_setiv 2914 1_1_0d EXIST::FUNCTION: -EVP_rc2_ofb 2915 1_1_0d EXIST::FUNCTION:RC2 -SKF_PrintRSAPublicKey 2916 1_1_0d EXIST::FUNCTION:SKF -SDF_ExchangeDigitEnvelopeBaseOnECC 2917 1_1_0d EXIST::FUNCTION: -UI_set_method 2918 1_1_0d EXIST::FUNCTION:UI -X509_PUBKEY_set 2919 1_1_0d EXIST::FUNCTION: -Camellia_cfb128_encrypt 2920 1_1_0d EXIST::FUNCTION:CAMELLIA -TS_STATUS_INFO_get0_status 2921 1_1_0d EXIST::FUNCTION:TS -PKCS12_SAFEBAG_create_crl 2922 1_1_0d EXIST::FUNCTION: -CMS_sign_receipt 2923 1_1_0d EXIST::FUNCTION:CMS -d2i_ASN1_PRINTABLE 2924 1_1_0d EXIST::FUNCTION: -i2d_ASN1_TIME 2925 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_impl_ctx_size 2926 1_1_0d EXIST::FUNCTION: -PKCS7_RECIP_INFO_get0_alg 2927 1_1_0d EXIST::FUNCTION: -X509_STORE_set_get_issuer 2928 1_1_0d EXIST::FUNCTION: -CMS_signed_add1_attr_by_txt 2929 1_1_0d EXIST::FUNCTION:CMS -X509_CRL_http_nbio 2930 1_1_0d EXIST::FUNCTION:OCSP -ASN1_put_eoc 2931 1_1_0d EXIST::FUNCTION: -EVP_PKEY_save_parameters 2932 1_1_0d EXIST::FUNCTION: -TS_RESP_dup 2933 1_1_0d EXIST::FUNCTION:TS -ECIES_PARAMS_get_enc 2934 1_1_0d EXIST::FUNCTION:ECIES -ASN1_generate_nconf 2935 1_1_0d EXIST::FUNCTION: -TS_REQ_set_cert_req 2936 1_1_0d EXIST::FUNCTION:TS -EC_KEY_set_ECCPRIVATEKEYBLOB 2937 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -SAF_SymmEncrypt 2938 1_1_0d EXIST::FUNCTION: -EVP_aes_256_ocb 2939 1_1_0d EXIST::FUNCTION:OCB -SAF_GetCertificateStateByOCSP 2940 1_1_0d EXIST::FUNCTION: -EC_GFp_nist_method 2941 1_1_0d EXIST::FUNCTION:EC -TS_REQ_get_ext_by_OBJ 2942 1_1_0d EXIST::FUNCTION:TS -DH_meth_dup 2943 1_1_0d EXIST::FUNCTION:DH -i2d_ASRange 2944 1_1_0d EXIST::FUNCTION:RFC3779 -OPENSSL_sk_deep_copy 2945 1_1_0d EXIST::FUNCTION: -SAF_SymmEncryptFinal 2946 1_1_0d EXIST::FUNCTION: -BFIBE_decrypt 2947 1_1_0d EXIST::FUNCTION:BFIBE -EVP_MD_meth_dup 2948 1_1_0d EXIST::FUNCTION: -X509_REQ_get_extension_nids 2949 1_1_0d EXIST::FUNCTION: -SKF_MacUpdate 2950 1_1_0d EXIST::FUNCTION:SKF -X509_STORE_lock 2951 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_to_BN 2952 1_1_0d EXIST::FUNCTION: -SMIME_read_CMS 2953 1_1_0d EXIST::FUNCTION:CMS -BN_GFP2_one 2954 1_1_0d EXIST::FUNCTION: -RSA_padding_check_PKCS1_type_2 2955 1_1_0d EXIST::FUNCTION:RSA -SDF_InternalDecrypt_ECC 2956 1_1_0d EXIST::FUNCTION: -ASN1_VISIBLESTRING_new 2957 1_1_0d EXIST::FUNCTION: -SKF_ExtECCEncrypt 2958 1_1_0d EXIST::FUNCTION:SKF -DSA_SIG_get0 2959 1_1_0d EXIST::FUNCTION:DSA -BN_mod_add_quick 2960 1_1_0d EXIST::FUNCTION: -SXNETID_free 2961 1_1_0d EXIST::FUNCTION: -ERR_load_SKF_strings 2962 1_1_0d EXIST::FUNCTION:SKF -ASN1_STRING_TABLE_get 2963 1_1_0d EXIST::FUNCTION: -X509_get_ext_d2i 2964 1_1_0d EXIST::FUNCTION: -CRYPTO_nistcts128_decrypt_block 2965 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_delete_ext 2966 1_1_0d EXIST::FUNCTION:TS -CTLOG_STORE_new 2967 1_1_0d EXIST::FUNCTION:CT -i2d_PKCS8PrivateKey_fp 2968 1_1_0d EXIST::FUNCTION:STDIO -X509_CINF_new 2969 1_1_0d EXIST::FUNCTION: -_shadow_DES_check_key 2970 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DES -_shadow_DES_check_key 2970 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DES -EVP_MD_size 2971 1_1_0d EXIST::FUNCTION: -BIO_parse_hostserv 2972 1_1_0d EXIST::FUNCTION:SOCK -EVP_BytesToKey 2973 1_1_0d EXIST::FUNCTION: -BUF_MEM_new 2974 1_1_0d EXIST::FUNCTION: -EVP_bf_cfb64 2975 1_1_0d EXIST::FUNCTION:BF -SOF_CreateTimeStampRequest 2976 1_1_0d EXIST::FUNCTION: -RAND_set_rand_engine 2977 1_1_0d EXIST::FUNCTION:ENGINE -EC_GROUP_get_degree 2978 1_1_0d EXIST::FUNCTION:EC -ZUC_128eia3_update 2979 1_1_0d EXIST::FUNCTION:ZUC -NETSCAPE_SPKAC_it 2980 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NETSCAPE_SPKAC_it 2980 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_print 2981 1_1_0d EXIST::FUNCTION: -BN_CTX_free 2982 1_1_0d EXIST::FUNCTION: -DSA_SIG_free 2983 1_1_0d EXIST::FUNCTION:DSA -X509_STORE_CTX_get_lookup_certs 2984 1_1_0d EXIST::FUNCTION: -IDEA_ecb_encrypt 2985 1_1_0d EXIST::FUNCTION:IDEA -DSA_get_method 2986 1_1_0d EXIST::FUNCTION:DSA -TS_ACCURACY_get_seconds 2987 1_1_0d EXIST::FUNCTION:TS -ASN1_OCTET_STRING_dup 2988 1_1_0d EXIST::FUNCTION: -ASN1_STRING_print_ex_fp 2989 1_1_0d EXIST::FUNCTION:STDIO -BFCiphertextBlock_it 2990 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFCiphertextBlock_it 2990 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -Camellia_cbc_encrypt 2991 1_1_0d EXIST::FUNCTION:CAMELLIA -PEM_bytes_read_bio 2992 1_1_0d EXIST::FUNCTION: -BN_div 2993 1_1_0d EXIST::FUNCTION: -OBJ_bsearch_ex_ 2994 1_1_0d EXIST::FUNCTION: -ASN1_TIME_new 2995 1_1_0d EXIST::FUNCTION: -X509_NAME_add_entry 2996 1_1_0d EXIST::FUNCTION: -CMS_signed_get_attr_by_OBJ 2997 1_1_0d EXIST::FUNCTION:CMS -CMS_SignerInfo_cert_cmp 2998 1_1_0d EXIST::FUNCTION:CMS -PKCS5_pbe2_set_scrypt 2999 1_1_0d EXIST::FUNCTION:SCRYPT -BFMasterSecret_it 3000 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFMasterSecret_it 3000 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -ERR_get_error_line 3001 1_1_0d EXIST::FUNCTION: -ERR_load_ASYNC_strings 3002 1_1_0d EXIST::FUNCTION: -X509V3_get_value_bool 3003 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_create0_pkcs8 3004 1_1_0d EXIST::FUNCTION: -d2i_PrivateKey_bio 3005 1_1_0d EXIST::FUNCTION: -X509_REQ_add1_attr_by_OBJ 3006 1_1_0d EXIST::FUNCTION: -PKCS8_decrypt 3007 1_1_0d EXIST::FUNCTION: -PKCS7_ENCRYPT_free 3008 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_purpose 3009 1_1_0d EXIST::FUNCTION: -EVP_des_cfb64 3010 1_1_0d EXIST::FUNCTION:DES -OCSP_SINGLERESP_free 3011 1_1_0d EXIST::FUNCTION:OCSP -ASN1_tag2bit 3012 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_free 3013 1_1_0d EXIST::FUNCTION: -ASRange_it 3014 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASRange_it 3014 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -X509_REQ_dup 3015 1_1_0d EXIST::FUNCTION: -X509_STORE_get_cleanup 3016 1_1_0d EXIST::FUNCTION: -X509_STORE_free 3017 1_1_0d EXIST::FUNCTION: -i2d_AUTHORITY_KEYID 3018 1_1_0d EXIST::FUNCTION: -d2i_USERNOTICE 3019 1_1_0d EXIST::FUNCTION: -Camellia_set_key 3020 1_1_0d EXIST::FUNCTION:CAMELLIA -CRYPTO_nistcts128_decrypt 3021 1_1_0d EXIST::FUNCTION: -DSA_generate_parameters_ex 3022 1_1_0d EXIST::FUNCTION:DSA -ASN1_T61STRING_it 3023 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_T61STRING_it 3023 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -TS_CONF_set_policies 3024 1_1_0d EXIST::FUNCTION:TS -EVP_DecodeUpdate 3025 1_1_0d EXIST::FUNCTION: -EVP_md_null 3026 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_ofb 3027 1_1_0d EXIST::FUNCTION:DES -PKCS12_SAFEBAG_create_cert 3028 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_encrypt_ccm64 3029 1_1_0d EXIST::FUNCTION: -DH_compute_key_padded 3030 1_1_0d EXIST::FUNCTION:DH -OPENSSL_DIR_end 3031 1_1_0d EXIST::FUNCTION: -X509_ALGOR_it 3032 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_ALGOR_it 3032 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509V3_EXT_conf_nid 3033 1_1_0d EXIST::FUNCTION: -SAF_SymmDecrypt 3034 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNER_INFO_sign 3035 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get0_name 3036 1_1_0d EXIST::FUNCTION: -d2i_SM9PrivateKey_fp 3037 1_1_0d EXIST::FUNCTION:SM9,STDIO -OPENSSL_cleanup 3038 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get0_info 3039 1_1_0d EXIST::FUNCTION: -EVP_camellia_256_ofb 3040 1_1_0d EXIST::FUNCTION:CAMELLIA -X509_keyid_get0 3041 1_1_0d EXIST::FUNCTION: -X509v3_addr_canonize 3042 1_1_0d EXIST::FUNCTION:RFC3779 -X509_PKEY_free 3043 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_get_ext_by_OBJ 3044 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_asn1_free 3045 1_1_0d EXIST::FUNCTION: -EVP_DigestFinal_ex 3046 1_1_0d EXIST::FUNCTION: -IDEA_set_decrypt_key 3047 1_1_0d EXIST::FUNCTION:IDEA -DH_get_default_method 3048 1_1_0d EXIST::FUNCTION:DH -ENGINE_get_ciphers 3049 1_1_0d EXIST::FUNCTION:ENGINE -SM9PrivateKey_get_public_key 3050 1_1_0d EXIST::FUNCTION:SM9 -EC_KEY_oct2key 3051 1_1_0d EXIST::FUNCTION:EC -SCT_set_source 3052 1_1_0d EXIST::FUNCTION:CT -UI_dup_info_string 3053 1_1_0d EXIST::FUNCTION:UI -CMS_unsigned_get_attr_by_OBJ 3054 1_1_0d EXIST::FUNCTION:CMS -X509_CRL_set_meth_data 3055 1_1_0d EXIST::FUNCTION: -CMS_get1_certs 3056 1_1_0d EXIST::FUNCTION:CMS -EVP_PKEY_get1_DH 3057 1_1_0d EXIST::FUNCTION:DH -X509_CRL_METHOD_free 3058 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_new 3059 1_1_0d EXIST::FUNCTION: -ENGINE_register_all_pkey_asn1_meths 3060 1_1_0d EXIST::FUNCTION:ENGINE -OBJ_add_sigid 3061 1_1_0d EXIST::FUNCTION: -BN_mod_lshift_quick 3062 1_1_0d EXIST::FUNCTION: -X509_check_akid 3063 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_cfb1 3064 1_1_0d EXIST::FUNCTION:DES -d2i_X509_fp 3065 1_1_0d EXIST::FUNCTION:STDIO -ASN1_SCTX_free 3066 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_aad 3067 1_1_0d EXIST::FUNCTION: -OCSP_id_cmp 3068 1_1_0d EXIST::FUNCTION:OCSP -ASN1_VISIBLESTRING_free 3069 1_1_0d EXIST::FUNCTION: -CAST_set_key 3070 1_1_0d EXIST::FUNCTION:CAST -ENGINE_set_digests 3071 1_1_0d EXIST::FUNCTION:ENGINE -X509_STORE_set_check_policy 3072 1_1_0d EXIST::FUNCTION: -BIO_f_null 3073 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_keygen 3074 1_1_0d EXIST::FUNCTION: -i2d_SM2CiphertextValue 3075 1_1_0d EXIST::FUNCTION:SM2 -RSA_get_RSAPUBLICKEYBLOB 3076 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -OPENSSL_sk_delete 3077 1_1_0d EXIST::FUNCTION: -ENGINE_set_cmd_defns 3078 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_set1_EC_KEY 3079 1_1_0d EXIST::FUNCTION:EC -X509at_add1_attr_by_NID 3080 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_msg_imprint 3081 1_1_0d EXIST::FUNCTION:TS -DISPLAYTEXT_free 3082 1_1_0d EXIST::FUNCTION: -X509_get_ex_data 3083 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cfb1 3084 1_1_0d EXIST::FUNCTION: -CMAC_Update 3085 1_1_0d EXIST::FUNCTION:CMAC -i2d_PKCS7_ENCRYPT 3086 1_1_0d EXIST::FUNCTION: -PKCS7_simple_smimecap 3087 1_1_0d EXIST::FUNCTION: -ECDSA_size 3088 1_1_0d EXIST::FUNCTION:EC -EVP_PKEY_meth_set_verify 3089 1_1_0d EXIST::FUNCTION: -PKCS7_set_type 3090 1_1_0d EXIST::FUNCTION: -PKCS7_content_new 3091 1_1_0d EXIST::FUNCTION: -ERR_load_PEM_strings 3092 1_1_0d EXIST::FUNCTION: -X509_REQ_delete_attr 3093 1_1_0d EXIST::FUNCTION: -PAILLIER_encrypt 3094 1_1_0d EXIST::FUNCTION:PAILLIER -ASN1_TYPE_pack_sequence 3095 1_1_0d EXIST::FUNCTION: -ASIdentifierChoice_it 3096 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASIdentifierChoice_it 3096 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -EVP_des_cbc 3097 1_1_0d EXIST::FUNCTION:DES -CRYPTO_ccm128_decrypt_ccm64 3098 1_1_0d EXIST::FUNCTION: -CMS_get0_RecipientInfos 3099 1_1_0d EXIST::FUNCTION:CMS -SM2_verify 3100 1_1_0d EXIST::FUNCTION:SM2 -BIO_ADDR_new 3101 1_1_0d EXIST::FUNCTION:SOCK -ENGINE_set_ex_data 3102 1_1_0d EXIST::FUNCTION:ENGINE -Camellia_cfb1_encrypt 3103 1_1_0d EXIST::FUNCTION:CAMELLIA -X509_get_default_cert_area 3104 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_get_nid 3105 1_1_0d EXIST::FUNCTION: -i2d_ECCCIPHERBLOB_bio 3106 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -EC_POINT_get_affine_coordinates_GFp 3107 1_1_0d EXIST::FUNCTION:EC -PEM_read_bio_X509_AUX 3108 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_hex2ctrl 3109 1_1_0d EXIST::FUNCTION: -EVP_SignFinal 3110 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_flags 3111 1_1_0d EXIST::FUNCTION: -BN_sub 3112 1_1_0d EXIST::FUNCTION: -i2d_ECCSignature_fp 3113 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO -X509_set_version 3114 1_1_0d EXIST::FUNCTION: -DH_size 3115 1_1_0d EXIST::FUNCTION:DH -TS_REQ_get_ext_by_NID 3116 1_1_0d EXIST::FUNCTION:TS -d2i_X509_bio 3117 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_nonce 3118 1_1_0d EXIST::FUNCTION:TS -X509_NAME_set 3119 1_1_0d EXIST::FUNCTION: -UI_add_info_string 3120 1_1_0d EXIST::FUNCTION:UI -X509_CERT_AUX_new 3121 1_1_0d EXIST::FUNCTION: -EDIPARTYNAME_it 3122 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -EDIPARTYNAME_it 3122 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CMS_RecipientInfo_kari_orig_id_cmp 3123 1_1_0d EXIST::FUNCTION:CMS -PROXY_CERT_INFO_EXTENSION_free 3124 1_1_0d EXIST::FUNCTION: -EVP_aes_256_ofb 3125 1_1_0d EXIST::FUNCTION: -EVP_aes_192_cfb8 3126 1_1_0d EXIST::FUNCTION: -BIO_get_callback 3127 1_1_0d EXIST::FUNCTION: -OCSP_id_issuer_cmp 3128 1_1_0d EXIST::FUNCTION:OCSP -OCSP_basic_sign 3129 1_1_0d EXIST::FUNCTION:OCSP -UI_add_error_string 3130 1_1_0d EXIST::FUNCTION:UI -EVP_PKEY_CTX_free 3131 1_1_0d EXIST::FUNCTION: -PEM_read_CMS 3132 1_1_0d EXIST::FUNCTION:CMS,STDIO -EVP_PKEY_print_private 3133 1_1_0d EXIST::FUNCTION: -X509_CRL_get_ext_by_NID 3134 1_1_0d EXIST::FUNCTION: -PEM_write_bio_DHxparams 3135 1_1_0d EXIST::FUNCTION:DH -OCSP_single_get0_status 3136 1_1_0d EXIST::FUNCTION:OCSP -SAF_DestroyHashObj 3137 1_1_0d EXIST::FUNCTION: -X509_REQ_set_extension_nids 3138 1_1_0d EXIST::FUNCTION: -EC_POINT_dbl 3139 1_1_0d EXIST::FUNCTION:EC -BIO_meth_get_ctrl 3140 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_ISSUER_AND_SERIAL 3141 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_cipher 3142 1_1_0d EXIST::FUNCTION: -BIO_int_ctrl 3143 1_1_0d EXIST::FUNCTION: -d2i_X509_EXTENSION 3144 1_1_0d EXIST::FUNCTION: -i2d_ECCCIPHERBLOB 3145 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -RSA_sign 3146 1_1_0d EXIST::FUNCTION:RSA -TS_VERIFY_CTX_set_flags 3147 1_1_0d EXIST::FUNCTION:TS -TS_RESP_CTX_get_tst_info 3148 1_1_0d EXIST::FUNCTION:TS -PKCS7_ENVELOPE_free 3149 1_1_0d EXIST::FUNCTION: -speck_encrypt32 3150 1_1_0d EXIST::FUNCTION:SPECK -CMS_SignerInfo_verify_content 3151 1_1_0d EXIST::FUNCTION:CMS -FIPS_mode 3152 1_1_0d EXIST::FUNCTION: -TS_REQ_get_ext_count 3153 1_1_0d EXIST::FUNCTION:TS -X509_check_host 3154 1_1_0d EXIST::FUNCTION: -SM9PublicKey_free 3155 1_1_0d EXIST::FUNCTION:SM9 -RAND_OpenSSL 3156 1_1_0d EXIST::FUNCTION: -sm3_update 3157 1_1_0d EXIST::FUNCTION:SM3 -X509_CRL_get_REVOKED 3158 1_1_0d EXIST::FUNCTION: -SKF_Digest 3159 1_1_0d EXIST::FUNCTION:SKF -ENGINE_set_DH 3160 1_1_0d EXIST::FUNCTION:ENGINE -OCSP_set_max_response_length 3161 1_1_0d EXIST::FUNCTION:OCSP -EVP_CIPHER_CTX_get_sgd 3162 1_1_0d EXIST::FUNCTION:GMAPI -i2d_X509_fp 3163 1_1_0d EXIST::FUNCTION:STDIO -BN_RECP_CTX_set 3164 1_1_0d EXIST::FUNCTION: -BN_set_word 3165 1_1_0d EXIST::FUNCTION: -SDF_ExportSignPublicKey_ECC 3166 1_1_0d EXIST::FUNCTION: -ERR_peek_error 3167 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_it 3168 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_ENUMERATED_it 3168 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_asn1_set_public 3169 1_1_0d EXIST::FUNCTION: -SCT_get_log_entry_type 3170 1_1_0d EXIST::FUNCTION:CT -PKCS12_SAFEBAG_get0_p8inf 3171 1_1_0d EXIST::FUNCTION: -i2d_ESS_CERT_ID 3172 1_1_0d EXIST::FUNCTION:TS -i2d_OCSP_SERVICELOC 3173 1_1_0d EXIST::FUNCTION:OCSP -CMS_data 3174 1_1_0d EXIST::FUNCTION:CMS -CTLOG_new 3175 1_1_0d EXIST::FUNCTION:CT -d2i_ASN1_SEQUENCE_ANY 3176 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_flags 3177 1_1_0d EXIST::FUNCTION: -DH_meth_new 3178 1_1_0d EXIST::FUNCTION:DH -RSA_set0_factors 3179 1_1_0d EXIST::FUNCTION:RSA -d2i_X509_REQ_fp 3180 1_1_0d EXIST::FUNCTION:STDIO -EC_KEY_print_fp 3181 1_1_0d EXIST::FUNCTION:EC,STDIO -CMS_SignerInfo_verify 3182 1_1_0d EXIST::FUNCTION:CMS -d2i_SM9Signature 3183 1_1_0d EXIST::FUNCTION:SM9 -X509_add1_ext_i2d 3184 1_1_0d EXIST::FUNCTION: -ECPKParameters_print 3185 1_1_0d EXIST::FUNCTION:EC -X509_get1_ocsp 3186 1_1_0d EXIST::FUNCTION: -DSA_meth_set_paramgen 3187 1_1_0d EXIST::FUNCTION:DSA -ASN1_INTEGER_set_uint64 3188 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_set_private 3189 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_cmp 3190 1_1_0d EXIST::FUNCTION: -OCSP_id_get0_info 3191 1_1_0d EXIST::FUNCTION:OCSP -ASN1_BMPSTRING_new 3192 1_1_0d EXIST::FUNCTION: -SDF_OpenDevice 3193 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_ctrl 3194 1_1_0d EXIST::FUNCTION: -BN_mod_exp_mont_word 3195 1_1_0d EXIST::FUNCTION: -X509_STORE_add_cert 3196 1_1_0d EXIST::FUNCTION: -BIO_set_data 3197 1_1_0d EXIST::FUNCTION: -ENGINE_get_digests 3198 1_1_0d EXIST::FUNCTION:ENGINE -BIO_meth_set_gets 3199 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_basis_type 3200 1_1_0d EXIST::FUNCTION:EC -BIO_get_data 3201 1_1_0d EXIST::FUNCTION: -DH_meth_set_generate_key 3202 1_1_0d EXIST::FUNCTION:DH -ENGINE_get_DH 3203 1_1_0d EXIST::FUNCTION:ENGINE -X509_REVOKED_get_ext 3204 1_1_0d EXIST::FUNCTION: -SKF_DigestFinal 3205 1_1_0d EXIST::FUNCTION:SKF -EVP_PKEY_decrypt_old 3206 1_1_0d EXIST::FUNCTION: -EVP_PKEY_cmp 3207 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_decrypt 3208 1_1_0d EXIST::FUNCTION: -DES_ecb3_encrypt 3209 1_1_0d EXIST::FUNCTION:DES -OCSP_SINGLERESP_delete_ext 3210 1_1_0d EXIST::FUNCTION:OCSP -X509_cmp_time 3211 1_1_0d EXIST::FUNCTION: -PEM_write_bio_ASN1_stream 3212 1_1_0d EXIST::FUNCTION: -i2d_IPAddressOrRange 3213 1_1_0d EXIST::FUNCTION:RFC3779 -NCONF_free 3214 1_1_0d EXIST::FUNCTION: -TS_RESP_print_bio 3215 1_1_0d EXIST::FUNCTION:TS -UI_method_set_writer 3216 1_1_0d EXIST::FUNCTION:UI -RSAPrivateKey_it 3217 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSAPrivateKey_it 3217 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -EVP_aes_128_cbc_hmac_sha1 3218 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_type1curve_eta 3219 1_1_0d EXIST::FUNCTION: -BN_generate_prime_ex 3220 1_1_0d EXIST::FUNCTION: -X509_REQ_set_subject_name 3221 1_1_0d EXIST::FUNCTION: -BIO_new_accept 3222 1_1_0d EXIST::FUNCTION:SOCK -SOF_GetPinRetryCount 3223 1_1_0d EXIST::FUNCTION: -RSA_padding_check_PKCS1_OAEP_mgf1 3224 1_1_0d EXIST::FUNCTION:RSA -SEED_cbc_encrypt 3225 1_1_0d EXIST::FUNCTION:SEED -PKCS7_ISSUER_AND_SERIAL_it 3226 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ISSUER_AND_SERIAL_it 3226 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_rshift 3227 1_1_0d EXIST::FUNCTION: -ERR_load_KDF2_strings 3228 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_DH 3229 1_1_0d EXIST::FUNCTION:DH -PAILLIER_up_ref 3230 1_1_0d EXIST::FUNCTION:PAILLIER -PKCS7_signatureVerify 3231 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_set 3232 1_1_0d EXIST::FUNCTION: -SOF_GetErrorString 3233 1_1_0d EXIST::FUNCTION:SOF -i2d_NETSCAPE_SPKI 3234 1_1_0d EXIST::FUNCTION: -d2i_ECCCIPHERBLOB 3235 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -EVP_PKEY_asn1_set_security_bits 3236 1_1_0d EXIST::FUNCTION: -X509_getm_notAfter 3237 1_1_0d EXIST::FUNCTION: -EC_POINT_set_to_infinity 3238 1_1_0d EXIST::FUNCTION:EC -OBJ_NAME_get 3239 1_1_0d EXIST::FUNCTION: -DH_meth_get0_app_data 3240 1_1_0d EXIST::FUNCTION:DH -EVP_PKEY_meth_get_verifyctx 3241 1_1_0d EXIST::FUNCTION: -d2i_ECParameters 3242 1_1_0d EXIST::FUNCTION:EC -EC_POINT_add 3243 1_1_0d EXIST::FUNCTION:EC -DSO_convert_filename 3244 1_1_0d EXIST::FUNCTION: -SHA384_Update 3245 1_1_0d EXIST:!VMSVAX:FUNCTION: -SAF_Base64_Encode 3246 1_1_0d EXIST::FUNCTION: -CMS_get0_eContentType 3247 1_1_0d EXIST::FUNCTION:CMS -RAND_screen 3248 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 -OCSP_SINGLERESP_new 3249 1_1_0d EXIST::FUNCTION:OCSP -CMS_SignerInfo_sign 3250 1_1_0d EXIST::FUNCTION:CMS -X509_PURPOSE_get_by_id 3251 1_1_0d EXIST::FUNCTION: -SAF_EccPublicKeyEncByCert 3252 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_get_cipher_data 3253 1_1_0d EXIST::FUNCTION: -X509_set1_notAfter 3254 1_1_0d EXIST::FUNCTION: -BN_BLINDING_lock 3255 1_1_0d EXIST::FUNCTION: -X509_subject_name_hash_old 3256 1_1_0d EXIST::FUNCTION:MD5 -EVP_PKEY_copy_parameters 3257 1_1_0d EXIST::FUNCTION: -SCT_new_from_base64 3258 1_1_0d EXIST::FUNCTION:CT -BN_reciprocal 3259 1_1_0d EXIST::FUNCTION: -USERNOTICE_it 3260 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -USERNOTICE_it 3260 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_PAILLIER_PUBKEY 3261 1_1_0d EXIST::FUNCTION:PAILLIER -OCSP_CERTID_free 3262 1_1_0d EXIST::FUNCTION:OCSP -X509_print_ex 3263 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get_count 3264 1_1_0d EXIST::FUNCTION: -RSA_padding_check_none 3265 1_1_0d EXIST::FUNCTION:RSA -d2i_ECIES_CIPHERTEXT_VALUE 3266 1_1_0d EXIST::FUNCTION:ECIES -EVP_des_cfb8 3267 1_1_0d EXIST::FUNCTION:DES -PEM_write_bio_X509_CRL 3268 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_set_cert_flags 3269 1_1_0d EXIST::FUNCTION: -SRP_Calc_x 3270 1_1_0d EXIST::FUNCTION:SRP -SM9_SignInit 3271 1_1_0d EXIST::FUNCTION:SM9 -PKCS7_add_signer 3272 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_lock_free 3273 1_1_0d EXIST::FUNCTION: -i2d_FpPoint 3274 1_1_0d EXIST::FUNCTION: -i2o_SCT_LIST 3275 1_1_0d EXIST::FUNCTION:CT -CMAC_CTX_get0_cipher_ctx 3276 1_1_0d EXIST::FUNCTION:CMAC -EVP_PKEY_asn1_set_item 3277 1_1_0d EXIST::FUNCTION: -SKF_UnloadLibrary 3278 1_1_0d EXIST::FUNCTION:SKF -CMS_unsigned_get_attr_count 3279 1_1_0d EXIST::FUNCTION:CMS -ENGINE_register_all_pkey_meths 3280 1_1_0d EXIST::FUNCTION:ENGINE -X509_REQ_sign 3281 1_1_0d EXIST::FUNCTION: -d2i_FpPoint 3282 1_1_0d EXIST::FUNCTION: -TS_CONF_set_digests 3283 1_1_0d EXIST::FUNCTION:TS -CRYPTO_clear_free 3284 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_stats 3285 1_1_0d EXIST::FUNCTION:STDIO -X509_PURPOSE_cleanup 3286 1_1_0d EXIST::FUNCTION: -WHIRLPOOL 3287 1_1_0d EXIST::FUNCTION:WHIRLPOOL -SCT_validate 3288 1_1_0d EXIST::FUNCTION:CT -NETSCAPE_CERT_SEQUENCE_free 3289 1_1_0d EXIST::FUNCTION: -FpPoint_free 3290 1_1_0d EXIST::FUNCTION: -SDF_CloseDevice 3291 1_1_0d EXIST::FUNCTION: -NETSCAPE_CERT_SEQUENCE_new 3292 1_1_0d EXIST::FUNCTION: -ASN1_TIME_adj 3293 1_1_0d EXIST::FUNCTION: -UI_method_get_reader 3294 1_1_0d EXIST::FUNCTION:UI -RAND_egd_bytes 3295 1_1_0d EXIST::FUNCTION:EGD -SDF_GenerateKeyPair_ECC 3296 1_1_0d EXIST::FUNCTION: -PEM_write_bio_CMS_stream 3297 1_1_0d EXIST::FUNCTION:CMS -CMS_stream 3298 1_1_0d EXIST::FUNCTION:CMS -SKF_ECCExportSessionKey 3299 1_1_0d EXIST::FUNCTION:SKF -d2i_DIRECTORYSTRING 3300 1_1_0d EXIST::FUNCTION: -SKF_GetErrorString 3301 1_1_0d EXIST::FUNCTION:SKF -PKCS12_add_friendlyname_uni 3302 1_1_0d EXIST::FUNCTION: -CMS_add0_cert 3303 1_1_0d EXIST::FUNCTION:CMS -d2i_PKCS7_ENVELOPE 3304 1_1_0d EXIST::FUNCTION: -i2d_X509_ATTRIBUTE 3305 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_set_md_data 3306 1_1_0d EXIST::FUNCTION: -X509_chain_check_suiteb 3307 1_1_0d EXIST::FUNCTION: -PEM_ASN1_read_bio 3308 1_1_0d EXIST::FUNCTION: -i2d_OCSP_REVOKEDINFO 3309 1_1_0d EXIST::FUNCTION:OCSP -PEM_read_X509_REQ 3310 1_1_0d EXIST::FUNCTION:STDIO -UI_dup_verify_string 3311 1_1_0d EXIST::FUNCTION:UI -PEM_write_bio_Parameters 3312 1_1_0d EXIST::FUNCTION: -TS_STATUS_INFO_dup 3313 1_1_0d EXIST::FUNCTION:TS -SDF_CreateFile 3314 1_1_0d EXIST::FUNCTION: -UI_new 3315 1_1_0d EXIST::FUNCTION:UI -ASN1_PCTX_new 3316 1_1_0d EXIST::FUNCTION: -DHparams_it 3317 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DH -DHparams_it 3317 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DH -CRYPTO_ccm128_decrypt 3318 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_it 3319 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK -CPK_PUBLIC_PARAMS_it 3319 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK -X509_CERT_AUX_free 3320 1_1_0d EXIST::FUNCTION: -EVP_sms4_ocb 3321 1_1_0d EXIST::FUNCTION:SMS4 -X509v3_add_ext 3322 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_final 3323 1_1_0d EXIST::FUNCTION: -d2i_OCSP_ONEREQ 3324 1_1_0d EXIST::FUNCTION:OCSP -BB1PublicParameters_new 3325 1_1_0d EXIST::FUNCTION:BB1IBE -X509_NAME_add_entry_by_NID 3326 1_1_0d EXIST::FUNCTION: -d2i_SM2CiphertextValue 3327 1_1_0d EXIST::FUNCTION:SM2 -X509_set_ex_data 3328 1_1_0d EXIST::FUNCTION: -EVP_EncodeBlock 3329 1_1_0d EXIST::FUNCTION: -BIO_ctrl_get_write_guarantee 3330 1_1_0d EXIST::FUNCTION: -OPENSSL_INIT_set_config_appname 3331 1_1_0d EXIST::FUNCTION:STDIO -CONF_imodule_get_usr_data 3332 1_1_0d EXIST::FUNCTION: -ASN1_item_verify 3333 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_PAILLIER 3334 1_1_0d EXIST::FUNCTION:PAILLIER -ECIES_encrypt 3335 1_1_0d EXIST::FUNCTION:ECIES -SXNET_free 3336 1_1_0d EXIST::FUNCTION: -CRYPTO_dup_ex_data 3337 1_1_0d EXIST::FUNCTION: -BN_GF2m_arr2poly 3338 1_1_0d EXIST::FUNCTION:EC2M -DIST_POINT_NAME_new 3339 1_1_0d EXIST::FUNCTION: -EVP_des_ecb 3340 1_1_0d EXIST::FUNCTION:DES -SAF_GenEccKeyPair 3341 1_1_0d EXIST::FUNCTION: -X509_alias_set1 3342 1_1_0d EXIST::FUNCTION: -TS_STATUS_INFO_print_bio 3343 1_1_0d EXIST::FUNCTION:TS -NETSCAPE_SPKI_free 3344 1_1_0d EXIST::FUNCTION: -CMS_unsigned_add1_attr_by_OBJ 3345 1_1_0d EXIST::FUNCTION:CMS -BIO_gets 3346 1_1_0d EXIST::FUNCTION: -PBEPARAM_new 3347 1_1_0d EXIST::FUNCTION: -ENGINE_set_EC 3348 1_1_0d EXIST::FUNCTION:ENGINE -RSA_get_method 3349 1_1_0d EXIST::FUNCTION:RSA -PKCS12_BAGS_free 3350 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_div_arr 3351 1_1_0d EXIST::FUNCTION:EC2M -BN_BLINDING_update 3352 1_1_0d EXIST::FUNCTION: -TS_REQ_get_ext_by_critical 3353 1_1_0d EXIST::FUNCTION:TS -POLICYQUALINFO_free 3354 1_1_0d EXIST::FUNCTION: -EVP_get_default_digest 3355 1_1_0d EXIST::FUNCTION: -BIO_get_accept_socket 3356 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -SKF_CloseHandle 3357 1_1_0d EXIST::FUNCTION:SKF -BN_rshift1 3358 1_1_0d EXIST::FUNCTION: -PKCS7_new 3359 1_1_0d EXIST::FUNCTION: -BN_mod_lshift1 3360 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_ecb 3361 1_1_0d EXIST::FUNCTION:CAMELLIA -ENGINE_register_pkey_asn1_meths 3362 1_1_0d EXIST::FUNCTION:ENGINE -CT_POLICY_EVAL_CTX_set_time 3363 1_1_0d EXIST::FUNCTION:CT -BFPublicParameters_new 3364 1_1_0d EXIST::FUNCTION:BFIBE -X509_dup 3365 1_1_0d EXIST::FUNCTION: -BN_copy 3366 1_1_0d EXIST::FUNCTION: -i2d_GENERAL_NAME 3367 1_1_0d EXIST::FUNCTION: -BIO_indent 3368 1_1_0d EXIST::FUNCTION: -BB1MasterSecret_it 3369 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1MasterSecret_it 3369 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -UI_dup_input_boolean 3370 1_1_0d EXIST::FUNCTION:UI -BIO_s_datagram 3371 1_1_0d EXIST::FUNCTION:DGRAM -SKF_ImportRSAKeyPair 3372 1_1_0d EXIST::FUNCTION:SKF -X509V3_EXT_REQ_add_conf 3373 1_1_0d EXIST::FUNCTION: -i2d_DSAPublicKey 3374 1_1_0d EXIST::FUNCTION:DSA -X509_VERIFY_PARAM_get_depth 3375 1_1_0d EXIST::FUNCTION: -SAF_GenerateAgreementDataWithECC 3376 1_1_0d EXIST::FUNCTION: -CPK_MASTER_SECRET_it 3377 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK -CPK_MASTER_SECRET_it 3377 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK -DH_meth_get_generate_params 3378 1_1_0d EXIST::FUNCTION:DH -i2d_ASN1_INTEGER 3379 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_set_data 3380 1_1_0d EXIST::FUNCTION: -X509V3_EXT_nconf 3381 1_1_0d EXIST::FUNCTION: -ASN1_item_ndef_i2d 3382 1_1_0d EXIST::FUNCTION: -BIO_meth_set_write 3383 1_1_0d EXIST::FUNCTION: -OCSP_REQINFO_it 3384 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_REQINFO_it 3384 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -OCSP_ONEREQ_get_ext 3385 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_mem_debug_malloc 3386 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -RSA_meth_get0_name 3387 1_1_0d EXIST::FUNCTION:RSA -OCSP_REQINFO_new 3388 1_1_0d EXIST::FUNCTION:OCSP -USERNOTICE_new 3389 1_1_0d EXIST::FUNCTION: -EC_KEY_set_private_key 3390 1_1_0d EXIST::FUNCTION:EC -PKCS7_ENC_CONTENT_new 3391 1_1_0d EXIST::FUNCTION: -BN_GF2m_poly2arr 3392 1_1_0d EXIST::FUNCTION:EC2M -X509_CRL_get_ext_d2i 3393 1_1_0d EXIST::FUNCTION: -PKCS7_ISSUER_AND_SERIAL_new 3394 1_1_0d EXIST::FUNCTION: -SDF_CalculateMAC 3395 1_1_0d EXIST::FUNCTION: -X509_CRL_diff 3396 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_count 3397 1_1_0d EXIST::FUNCTION: -i2d_TS_STATUS_INFO 3398 1_1_0d EXIST::FUNCTION:TS -i2v_GENERAL_NAMES 3399 1_1_0d EXIST::FUNCTION: -X509_CRL_get_nextUpdate 3400 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -EVP_PKEY_sign_init 3401 1_1_0d EXIST::FUNCTION: -d2i_PrivateKey_fp 3402 1_1_0d EXIST::FUNCTION:STDIO -BIO_accept_ex 3403 1_1_0d EXIST::FUNCTION:SOCK -EVP_CIPHER_meth_set_get_asn1_params 3404 1_1_0d EXIST::FUNCTION: -UI_OpenSSL 3405 1_1_0d EXIST::FUNCTION:UI -X509_STORE_get0_objects 3406 1_1_0d EXIST::FUNCTION: -d2i_PaillierPrivateKey 3407 1_1_0d EXIST::FUNCTION:PAILLIER -DES_ofb64_encrypt 3408 1_1_0d EXIST::FUNCTION:DES -OCSP_RESPBYTES_free 3409 1_1_0d EXIST::FUNCTION:OCSP -BIO_accept 3410 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -DSA_test_flags 3411 1_1_0d EXIST::FUNCTION:DSA -EVP_aes_128_wrap_pad 3412 1_1_0d EXIST::FUNCTION: -X509V3_parse_list 3413 1_1_0d EXIST::FUNCTION: -SRP_VBASE_free 3414 1_1_0d EXIST::FUNCTION:SRP -COMP_CTX_free 3415 1_1_0d EXIST::FUNCTION:COMP -MD5_Transform 3416 1_1_0d EXIST::FUNCTION:MD5 -EVP_read_pw_string 3417 1_1_0d EXIST::FUNCTION:UI -EC_GROUP_get_ecpkparameters 3418 1_1_0d EXIST::FUNCTION:EC -WHIRLPOOL_Init 3419 1_1_0d EXIST::FUNCTION:WHIRLPOOL -PEM_write_bio_DHparams 3420 1_1_0d EXIST::FUNCTION:DH -DSA_meth_get_verify 3421 1_1_0d EXIST::FUNCTION:DSA -EVP_rc4_hmac_md5 3422 1_1_0d EXIST::FUNCTION:MD5,RC4 -X509v3_addr_is_canonical 3423 1_1_0d EXIST::FUNCTION:RFC3779 -ASN1_BIT_STRING_free 3424 1_1_0d EXIST::FUNCTION: -X509_REQ_get_attr_count 3425 1_1_0d EXIST::FUNCTION: -BIO_f_cipher 3426 1_1_0d EXIST::FUNCTION: -DES_set_key 3427 1_1_0d EXIST::FUNCTION:DES -ENGINE_register_ciphers 3428 1_1_0d EXIST::FUNCTION:ENGINE -PEM_write_bio_PrivateKey 3429 1_1_0d EXIST::FUNCTION: -ASN1_T61STRING_new 3430 1_1_0d EXIST::FUNCTION: -PKCS5_v2_PBE_keyivgen 3431 1_1_0d EXIST::FUNCTION: -EVP_PKEY_decrypt_init 3432 1_1_0d EXIST::FUNCTION: -CONF_module_add 3433 1_1_0d EXIST::FUNCTION: -DSA_sign 3434 1_1_0d EXIST::FUNCTION:DSA -SKF_GetFileInfo 3435 1_1_0d EXIST::FUNCTION:SKF -i2d_CMS_bio 3436 1_1_0d EXIST::FUNCTION:CMS -i2d_X509_REVOKED 3437 1_1_0d EXIST::FUNCTION: -EC_POINT_hex2point 3438 1_1_0d EXIST::FUNCTION:EC -SKF_OpenApplication 3439 1_1_0d EXIST::FUNCTION:SKF -NCONF_get_number_e 3440 1_1_0d EXIST::FUNCTION: -SKF_ImportCertificate 3441 1_1_0d EXIST::FUNCTION:SKF -EVP_bf_ofb 3442 1_1_0d EXIST::FUNCTION:BF -d2i_PKCS8_PRIV_KEY_INFO_fp 3443 1_1_0d EXIST::FUNCTION:STDIO -X509V3_get_d2i 3444 1_1_0d EXIST::FUNCTION: -BN_get_flags 3445 1_1_0d EXIST::FUNCTION: -POLICYINFO_free 3446 1_1_0d EXIST::FUNCTION: -X509_get_issuer_name 3447 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_ctrl 3448 1_1_0d EXIST::FUNCTION: -BN_bn2bin 3449 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_set_object 3450 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_create 3451 1_1_0d EXIST::FUNCTION: -ISSUING_DIST_POINT_free 3452 1_1_0d EXIST::FUNCTION: -CRYPTO_mem_debug_realloc 3453 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -EVP_DecryptFinal 3454 1_1_0d EXIST::FUNCTION: -EVP_PKEY_free 3455 1_1_0d EXIST::FUNCTION: -X509_get0_tbs_sigalg 3456 1_1_0d EXIST::FUNCTION: -X509V3_section_free 3457 1_1_0d EXIST::FUNCTION: -PKCS7_ENVELOPE_new 3458 1_1_0d EXIST::FUNCTION: -SM9_extract_public_parameters 3459 1_1_0d EXIST::FUNCTION:SM9 -CONF_get_string 3460 1_1_0d EXIST::FUNCTION: -SHA224 3461 1_1_0d EXIST::FUNCTION: -i2d_X509_CRL_fp 3462 1_1_0d EXIST::FUNCTION:STDIO -EC_POINT_is_at_infinity 3463 1_1_0d EXIST::FUNCTION:EC -DSA_new_method 3464 1_1_0d EXIST::FUNCTION:DSA -PKCS12_SAFEBAG_free 3465 1_1_0d EXIST::FUNCTION: -BN_mul 3466 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNED_free 3467 1_1_0d EXIST::FUNCTION: -BN_GENCB_set_old 3468 1_1_0d EXIST::FUNCTION: -a2d_ASN1_OBJECT 3469 1_1_0d EXIST::FUNCTION: -SAF_GenerateKeyWithECC 3470 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_get_compute_key 3471 1_1_0d EXIST::FUNCTION:EC -SDF_ImportKey 3472 1_1_0d EXIST::FUNCTION:SDF -EC_GFp_simple_method 3473 1_1_0d EXIST::FUNCTION:EC -OCSP_BASICRESP_add_ext 3474 1_1_0d EXIST::FUNCTION:OCSP -X509_NAME_get_entry 3475 1_1_0d EXIST::FUNCTION: -X509V3_get_string 3476 1_1_0d EXIST::FUNCTION: -PEM_write_bio_X509_REQ_NEW 3477 1_1_0d EXIST::FUNCTION: -SAF_Base64_CreateBase64Obj 3478 1_1_0d EXIST::FUNCTION: -BIO_ctrl_reset_read_request 3479 1_1_0d EXIST::FUNCTION: -X509_print_fp 3480 1_1_0d EXIST::FUNCTION:STDIO -TS_TST_INFO_free 3481 1_1_0d EXIST::FUNCTION:TS -BIO_ADDRINFO_free 3482 1_1_0d EXIST::FUNCTION:SOCK -PEM_read_bio_EC_PUBKEY 3483 1_1_0d EXIST::FUNCTION:EC -ECCPRIVATEKEYBLOB_set_private_key 3484 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -X509V3_EXT_val_prn 3485 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_sign 3486 1_1_0d EXIST::FUNCTION: -BUF_reverse 3487 1_1_0d EXIST::FUNCTION: -EVP_aes_256_wrap 3488 1_1_0d EXIST::FUNCTION: -EVP_rc4_40 3489 1_1_0d EXIST::FUNCTION:RC4 -CERTIFICATEPOLICIES_free 3490 1_1_0d EXIST::FUNCTION: -DH_set_ex_data 3491 1_1_0d EXIST::FUNCTION:DH -EVP_aes_256_gcm 3492 1_1_0d EXIST::FUNCTION: -SKF_WriteFile 3493 1_1_0d EXIST::FUNCTION:SKF -EDIPARTYNAME_new 3494 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNED_it 3495 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_SIGNED_it 3495 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_cts128_decrypt 3496 1_1_0d EXIST::FUNCTION: -ASIdentifiers_free 3497 1_1_0d EXIST::FUNCTION:RFC3779 -EC_KEY_get0_private_key 3498 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_get1_crls 3499 1_1_0d EXIST::FUNCTION: -BIO_socket_ioctl 3500 1_1_0d EXIST::FUNCTION:SOCK -d2i_PKCS12_SAFEBAG 3501 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_time 3502 1_1_0d EXIST::FUNCTION: -i2d_BFCiphertextBlock 3503 1_1_0d EXIST::FUNCTION:BFIBE -SCT_set_signature_nid 3504 1_1_0d EXIST::FUNCTION:CT -PEM_write_bio_X509_REQ 3505 1_1_0d EXIST::FUNCTION: -d2i_ASN1_UNIVERSALSTRING 3506 1_1_0d EXIST::FUNCTION: -PKCS7_DIGEST_it 3507 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_DIGEST_it 3507 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DH_meth_get_compute_key 3508 1_1_0d EXIST::FUNCTION:DH -RC2_cbc_encrypt 3509 1_1_0d EXIST::FUNCTION:RC2 -X509_REQ_print_fp 3510 1_1_0d EXIST::FUNCTION:STDIO -i2d_ESS_SIGNING_CERT 3511 1_1_0d EXIST::FUNCTION:TS -SM9_compute_share_key_B 3512 1_1_0d EXIST::FUNCTION:SM9 -X509_get_default_cert_dir_env 3513 1_1_0d EXIST::FUNCTION: -RSA_get_ex_data 3514 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_add1_attr_by_NID 3515 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_new 3516 1_1_0d EXIST::FUNCTION:EC -BIGNUM_it 3517 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -BIGNUM_it 3517 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -TS_TST_INFO_get_policy_id 3518 1_1_0d EXIST::FUNCTION:TS -EC_KEY_METHOD_get_verify 3519 1_1_0d EXIST::FUNCTION:EC -ASN1_TYPE_get 3520 1_1_0d EXIST::FUNCTION: -DSA_security_bits 3521 1_1_0d EXIST::FUNCTION:DSA -EVP_PKEY_get0_PAILLIER 3522 1_1_0d EXIST::FUNCTION:PAILLIER -i2d_ECPKParameters 3523 1_1_0d EXIST::FUNCTION:EC -X509_REQ_get_attr 3524 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_pkey_meths 3525 1_1_0d EXIST::FUNCTION:ENGINE -d2i_ECCCIPHERBLOB_fp 3526 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO -ASN1_VISIBLESTRING_it 3527 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_VISIBLESTRING_it 3527 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_meth_set_keygen 3528 1_1_0d EXIST::FUNCTION: -X509_CRL_delete_ext 3529 1_1_0d EXIST::FUNCTION: -TS_CONF_set_accuracy 3530 1_1_0d EXIST::FUNCTION:TS -d2i_NETSCAPE_SPKAC 3531 1_1_0d EXIST::FUNCTION: -DIST_POINT_it 3532 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DIST_POINT_it 3532 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DHparams_dup 3533 1_1_0d EXIST::FUNCTION:DH -BN_GFP2_mul 3534 1_1_0d EXIST::FUNCTION: -OBJ_sn2nid 3535 1_1_0d EXIST::FUNCTION: -SKF_ReadFile 3536 1_1_0d EXIST::FUNCTION:SKF -speck_set_decrypt_key16 3537 1_1_0d EXIST::FUNCTION:SPECK -i2d_ASN1_GENERALIZEDTIME 3538 1_1_0d EXIST::FUNCTION: -UI_get_input_flags 3539 1_1_0d EXIST::FUNCTION:UI -i2d_DSAPrivateKey_bio 3540 1_1_0d EXIST::FUNCTION:DSA -ASN1_STRING_data 3541 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -i2d_DSAPrivateKey_fp 3542 1_1_0d EXIST::FUNCTION:DSA,STDIO -PKCS12_pack_authsafes 3543 1_1_0d EXIST::FUNCTION: -SMIME_write_ASN1 3544 1_1_0d EXIST::FUNCTION: -BIO_asn1_set_suffix 3545 1_1_0d EXIST::FUNCTION: -X509_STORE_get_check_policy 3546 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_new 3547 1_1_0d EXIST::FUNCTION: -d2i_ECPrivateKey_bio 3548 1_1_0d EXIST::FUNCTION:EC -SM2_compute_id_digest 3549 1_1_0d EXIST::FUNCTION:SM2 -CRYPTO_secure_malloc_done 3550 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_asn1_flag 3551 1_1_0d EXIST::FUNCTION:EC -COMP_CTX_get_method 3552 1_1_0d EXIST::FUNCTION:COMP -X509v3_asid_validate_path 3553 1_1_0d EXIST::FUNCTION:RFC3779 -PAILLIER_ciphertext_add 3554 1_1_0d EXIST::FUNCTION:PAILLIER -BN_mpi2bn 3555 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_DecodeDigestedData 3556 1_1_0d EXIST::FUNCTION: -CTLOG_get0_name 3557 1_1_0d EXIST::FUNCTION:CT -X509_to_X509_REQ 3558 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_copy 3559 1_1_0d EXIST::FUNCTION: -RSA_clear_flags 3560 1_1_0d EXIST::FUNCTION:RSA -X509_REQ_get_version 3561 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_time_cb 3562 1_1_0d EXIST::FUNCTION:TS -X509V3_EXT_conf 3563 1_1_0d EXIST::FUNCTION: -X509_NAME_print 3564 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_release 3565 1_1_0d EXIST::FUNCTION: -SAF_Login 3566 1_1_0d EXIST::FUNCTION: -EVP_aes_256_xts 3567 1_1_0d EXIST::FUNCTION: -BIO_sock_init 3568 1_1_0d EXIST::FUNCTION:SOCK -EVP_PKEY_asn1_get0 3569 1_1_0d EXIST::FUNCTION: -ERR_load_ASN1_strings 3570 1_1_0d EXIST::FUNCTION: -EVP_add_alg_module 3571 1_1_0d EXIST::FUNCTION: -EC_KEY_set_conv_form 3572 1_1_0d EXIST::FUNCTION:EC -i2d_SM9PublicParameters 3573 1_1_0d EXIST::FUNCTION:SM9 -i2d_PaillierPublicKey 3574 1_1_0d EXIST::FUNCTION:PAILLIER -X509_check_email 3575 1_1_0d EXIST::FUNCTION: -BN_GENCB_free 3576 1_1_0d EXIST::FUNCTION: -PKCS7_digest_from_attributes 3577 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_init 3578 1_1_0d EXIST::FUNCTION: -Camellia_decrypt 3579 1_1_0d EXIST::FUNCTION:CAMELLIA -d2i_BB1MasterSecret 3580 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_CIPHER_nid 3581 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_retrieve 3582 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_cleanup 3583 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get_ext_by_OBJ 3584 1_1_0d EXIST::FUNCTION: -d2i_PrivateKey 3585 1_1_0d EXIST::FUNCTION: -RSAPublicKey_dup 3586 1_1_0d EXIST::FUNCTION:RSA -HMAC_CTX_copy 3587 1_1_0d EXIST::FUNCTION: -GENERAL_NAMES_free 3588 1_1_0d EXIST::FUNCTION: -BIO_meth_set_callback_ctrl 3589 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_validate_private_key 3590 1_1_0d EXIST::FUNCTION:CPK -d2i_SM9PublicKey 3591 1_1_0d EXIST::FUNCTION:SM9 -OCSP_REQ_CTX_get0_mem_bio 3592 1_1_0d EXIST::FUNCTION:OCSP -X509_ATTRIBUTE_get0_object 3593 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_http 3594 1_1_0d EXIST::FUNCTION:OCSP -SAF_Pkcs7_DecodeData 3595 1_1_0d EXIST::FUNCTION: -DH_bits 3596 1_1_0d EXIST::FUNCTION:DH -CONF_get_number 3597 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_init 3598 1_1_0d EXIST::FUNCTION: -DSA_meth_set_sign_setup 3599 1_1_0d EXIST::FUNCTION:DSA -EVP_CIPHER_meth_new 3600 1_1_0d EXIST::FUNCTION: -PEM_write_DHparams 3601 1_1_0d EXIST::FUNCTION:DH,STDIO -EVP_PKEY_delete_attr 3602 1_1_0d EXIST::FUNCTION: -PBKDF2PARAM_it 3603 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PBKDF2PARAM_it 3603 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -IDEA_options 3604 1_1_0d EXIST::FUNCTION:IDEA -EVP_PKEY_encrypt 3605 1_1_0d EXIST::FUNCTION: -BB1PublicParameters_it 3606 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1PublicParameters_it 3606 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -OPENSSL_LH_node_usage_stats_bio 3607 1_1_0d EXIST::FUNCTION: -BN_BLINDING_is_current_thread 3608 1_1_0d EXIST::FUNCTION: -BN_is_odd 3609 1_1_0d EXIST::FUNCTION: -X509_ALGOR_free 3610 1_1_0d EXIST::FUNCTION: -X509_get0_subject_key_id 3611 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_cleanup 3612 1_1_0d EXIST::FUNCTION: -BIO_clear_flags 3613 1_1_0d EXIST::FUNCTION: -X509_NAME_get0_der 3614 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_RSA 3615 1_1_0d EXIST::FUNCTION:ENGINE -PROXY_CERT_INFO_EXTENSION_it 3616 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PROXY_CERT_INFO_EXTENSION_it 3616 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_asn1_set_ctrl 3617 1_1_0d EXIST::FUNCTION: -X509v3_addr_subset 3618 1_1_0d EXIST::FUNCTION:RFC3779 -TS_CONF_load_cert 3619 1_1_0d EXIST::FUNCTION:TS -SDF_PrintDeviceInfo 3620 1_1_0d EXIST::FUNCTION:SDF -EVP_PKEY_meth_get_verify_recover 3621 1_1_0d EXIST::FUNCTION: -RSA_generate_key 3622 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,RSA -GENERAL_NAME_dup 3623 1_1_0d EXIST::FUNCTION: -RSA_private_decrypt 3624 1_1_0d EXIST::FUNCTION:RSA -BN_set_flags 3625 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_find 3626 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_free 3627 1_1_0d EXIST::FUNCTION: -X509_VAL_new 3628 1_1_0d EXIST::FUNCTION: -X509V3_EXT_get 3629 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_count 3630 1_1_0d EXIST::FUNCTION:OCSP -BIO_dump_indent_fp 3631 1_1_0d EXIST::FUNCTION:STDIO -X509_CRL_get0_nextUpdate 3632 1_1_0d EXIST::FUNCTION: -SAF_DestroyKeyHandle 3633 1_1_0d EXIST::FUNCTION: -BN_GFP2_add_bn 3634 1_1_0d EXIST::FUNCTION: -X509v3_get_ext 3635 1_1_0d EXIST::FUNCTION: -EC_GROUP_new_from_ecpkparameters 3636 1_1_0d EXIST::FUNCTION:EC -SDF_UnloadLibrary 3637 1_1_0d EXIST::FUNCTION:SDF -EC_KEY_METHOD_set_encrypt 3638 1_1_0d EXIST::FUNCTION:SM2 -OCSP_REVOKEDINFO_it 3639 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_REVOKEDINFO_it 3639 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -X509_VERIFY_PARAM_set_inh_flags 3640 1_1_0d EXIST::FUNCTION: -BB1CiphertextBlock_new 3641 1_1_0d EXIST::FUNCTION:BB1IBE -SAF_GetExtTypeInfo 3642 1_1_0d EXIST::FUNCTION: -X509_check_ip 3643 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_cert_crl 3644 1_1_0d EXIST::FUNCTION: -CMS_signed_delete_attr 3645 1_1_0d EXIST::FUNCTION:CMS -X509_VERIFY_PARAM_free 3646 1_1_0d EXIST::FUNCTION: -DES_check_key_parity 3647 1_1_0d EXIST::FUNCTION:DES -BN_asc2bn 3648 1_1_0d EXIST::FUNCTION: -X509_STORE_get_lookup_crls 3649 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_write_lock 3650 1_1_0d EXIST::FUNCTION: -ERR_peek_error_line 3651 1_1_0d EXIST::FUNCTION: -ASN1_STRING_get_default_mask 3652 1_1_0d EXIST::FUNCTION: -PEM_write_PUBKEY 3653 1_1_0d EXIST::FUNCTION:STDIO -PKCS7_SIGNER_INFO_it 3654 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_SIGNER_INFO_it 3654 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_REQUEST_get1_ext_d2i 3655 1_1_0d EXIST::FUNCTION:OCSP -o2i_SCT 3656 1_1_0d EXIST::FUNCTION:CT -d2i_PUBKEY_bio 3657 1_1_0d EXIST::FUNCTION: -SCT_new 3658 1_1_0d EXIST::FUNCTION:CT -ECIES_CIPHERTEXT_VALUE_set_ECCCipher 3659 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF -X509V3_EXT_CRL_add_nconf 3660 1_1_0d EXIST::FUNCTION: -RSA_meth_set_finish 3661 1_1_0d EXIST::FUNCTION:RSA -X509_PURPOSE_set 3662 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_get0_value 3663 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_new 3664 1_1_0d EXIST::FUNCTION:CPK -PKCS7_verify 3665 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_by_OBJ 3666 1_1_0d EXIST::FUNCTION:OCSP -ASN1_SET_ANY_it 3667 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_SET_ANY_it 3667 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_REQ_get1_email 3668 1_1_0d EXIST::FUNCTION: -BIO_meth_set_ctrl 3669 1_1_0d EXIST::FUNCTION: -BF_encrypt 3670 1_1_0d EXIST::FUNCTION:BF -CMS_dataFinal 3671 1_1_0d EXIST::FUNCTION:CMS -SM2_KAP_final_check 3672 1_1_0d EXIST::FUNCTION:SM2 -BIO_ADDR_family 3673 1_1_0d EXIST::FUNCTION:SOCK -X509_STORE_set_get_crl 3674 1_1_0d EXIST::FUNCTION: -SEED_ecb_encrypt 3675 1_1_0d EXIST::FUNCTION:SEED -EVP_idea_ofb 3676 1_1_0d EXIST::FUNCTION:IDEA -d2i_OCSP_SINGLERESP 3677 1_1_0d EXIST::FUNCTION:OCSP -SCT_LIST_validate 3678 1_1_0d EXIST::FUNCTION:CT -AUTHORITY_KEYID_new 3679 1_1_0d EXIST::FUNCTION: -OCSP_CERTID_new 3680 1_1_0d EXIST::FUNCTION:OCSP -ASN1_GENERALSTRING_new 3681 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_set 3682 1_1_0d EXIST::FUNCTION: -CMS_uncompress 3683 1_1_0d EXIST::FUNCTION:CMS -DH_meth_set_init 3684 1_1_0d EXIST::FUNCTION:DH -EVP_PKEY_derive_set_peer 3685 1_1_0d EXIST::FUNCTION: -EVP_camellia_192_ecb 3686 1_1_0d EXIST::FUNCTION:CAMELLIA -i2d_PKCS7_NDEF 3687 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_set_oid_flags 3688 1_1_0d EXIST::FUNCTION: -BIO_get_init 3689 1_1_0d EXIST::FUNCTION: -EVP_DecryptUpdate 3690 1_1_0d EXIST::FUNCTION: -SM2_do_sign_ex 3691 1_1_0d EXIST::FUNCTION:SM2 -EVP_md5_sha1 3692 1_1_0d EXIST::FUNCTION:MD5 -X509_CRL_up_ref 3693 1_1_0d EXIST::FUNCTION: -i2d_X509_REQ_bio 3694 1_1_0d EXIST::FUNCTION: -UI_add_input_boolean 3695 1_1_0d EXIST::FUNCTION:UI -BN_mask_bits 3696 1_1_0d EXIST::FUNCTION: -i2d_EDIPARTYNAME 3697 1_1_0d EXIST::FUNCTION: -d2i_PAILLIER_PUBKEY 3698 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_MD_meth_set_copy 3699 1_1_0d EXIST::FUNCTION: -i2d_ECCCipher 3700 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -X509_issuer_name_cmp 3701 1_1_0d EXIST::FUNCTION: -OPENSSL_buf2hexstr 3702 1_1_0d EXIST::FUNCTION: -ERR_load_BUF_strings 3703 1_1_0d EXIST::FUNCTION: -BB1PublicParameters_free 3704 1_1_0d EXIST::FUNCTION:BB1IBE -i2d_ACCESS_DESCRIPTION 3705 1_1_0d EXIST::FUNCTION: -SKF_CreateContainer 3706 1_1_0d EXIST::FUNCTION:SKF -X509_VERIFY_PARAM_set1_host 3707 1_1_0d EXIST::FUNCTION: -X509_STORE_set_check_crl 3708 1_1_0d EXIST::FUNCTION: -EVP_sms4_cbc 3709 1_1_0d EXIST::FUNCTION:SMS4 -DES_ede3_ofb64_encrypt 3710 1_1_0d EXIST::FUNCTION:DES -d2i_PKCS8_bio 3711 1_1_0d EXIST::FUNCTION: -X509_CRL_add1_ext_i2d 3712 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_find_str 3713 1_1_0d EXIST::FUNCTION: -DH_generate_parameters 3714 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DH -SKF_GetAlgorName 3715 1_1_0d EXIST::FUNCTION:SKF -ASN1_GENERALIZEDTIME_check 3716 1_1_0d EXIST::FUNCTION: -ASN1_STRING_set 3717 1_1_0d EXIST::FUNCTION: -EVP_PKEY_encrypt_old 3718 1_1_0d EXIST::FUNCTION: -TS_RESP_verify_token 3719 1_1_0d EXIST::FUNCTION:TS -X509_REQ_INFO_free 3720 1_1_0d EXIST::FUNCTION: -PKCS12_add_friendlyname_asc 3721 1_1_0d EXIST::FUNCTION: -CRYPTO_mem_ctrl 3722 1_1_0d EXIST::FUNCTION: -OCSP_REVOKEDINFO_free 3723 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_CTX_set0_keygen_info 3724 1_1_0d EXIST::FUNCTION: -X509_load_cert_file 3725 1_1_0d EXIST::FUNCTION: -POLICYINFO_new 3726 1_1_0d EXIST::FUNCTION: -PAILLIER_ciphertext_scalar_mul 3727 1_1_0d EXIST::FUNCTION:PAILLIER -BF_cfb64_encrypt 3728 1_1_0d EXIST::FUNCTION:BF -BN_MONT_CTX_copy 3729 1_1_0d EXIST::FUNCTION: -SKF_GetDevStateName 3730 1_1_0d EXIST::FUNCTION:SKF -i2d_OCSP_CRLID 3731 1_1_0d EXIST::FUNCTION:OCSP -sm3_final 3732 1_1_0d EXIST::FUNCTION:SM3 -UI_get_string_type 3733 1_1_0d EXIST::FUNCTION:UI -DSA_meth_set_flags 3734 1_1_0d EXIST::FUNCTION:DSA -X509_REVOKED_dup 3735 1_1_0d EXIST::FUNCTION: -BIO_dump 3736 1_1_0d EXIST::FUNCTION: -PEM_read_DSAPrivateKey 3737 1_1_0d EXIST::FUNCTION:DSA,STDIO -EVP_MD_meth_set_flags 3738 1_1_0d EXIST::FUNCTION: -PEM_read_bio_PKCS8_PRIV_KEY_INFO 3739 1_1_0d EXIST::FUNCTION: -EVP_CipherInit_ex 3740 1_1_0d EXIST::FUNCTION: -d2i_ASN1_SET_ANY 3741 1_1_0d EXIST::FUNCTION: -PKCS12_get_attr_gen 3742 1_1_0d EXIST::FUNCTION: -ECPKPARAMETERS_new 3743 1_1_0d EXIST::FUNCTION:EC -PKCS12_parse 3744 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_new 3745 1_1_0d EXIST::FUNCTION: -d2i_SM9PrivateKey 3746 1_1_0d EXIST::FUNCTION:SM9 -ASN1_PRINTABLESTRING_free 3747 1_1_0d EXIST::FUNCTION: -SKF_DisConnectDev 3748 1_1_0d EXIST::FUNCTION:SKF -SHA384_Init 3749 1_1_0d EXIST:!VMSVAX:FUNCTION: -ACCESS_DESCRIPTION_it 3750 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ACCESS_DESCRIPTION_it 3750 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_SM9PublicParameters_fp 3751 1_1_0d EXIST::FUNCTION:SM9,STDIO -CAST_cfb64_encrypt 3752 1_1_0d EXIST::FUNCTION:CAST -X509_policy_tree_get0_level 3753 1_1_0d EXIST::FUNCTION: -i2d_PKCS8_PRIV_KEY_INFO_fp 3754 1_1_0d EXIST::FUNCTION:STDIO -i2d_ECIES_CIPHERTEXT_VALUE 3755 1_1_0d EXIST::FUNCTION:ECIES -X509_STORE_add_lookup 3756 1_1_0d EXIST::FUNCTION: -SAF_EnumCertificates 3757 1_1_0d EXIST::FUNCTION: -d2i_X509_NAME_ENTRY 3758 1_1_0d EXIST::FUNCTION: -RIPEMD160_Final 3759 1_1_0d EXIST::FUNCTION:RMD160 -DH_OpenSSL 3760 1_1_0d EXIST::FUNCTION:DH -PKCS5_pbe2_set 3761 1_1_0d EXIST::FUNCTION: -X509_REQ_set_version 3762 1_1_0d EXIST::FUNCTION: -d2i_TS_MSG_IMPRINT_fp 3763 1_1_0d EXIST::FUNCTION:STDIO,TS -i2d_SM9MasterSecret_fp 3764 1_1_0d EXIST::FUNCTION:SM9,STDIO -ASN1_item_unpack 3765 1_1_0d EXIST::FUNCTION: -X509_get0_serialNumber 3766 1_1_0d EXIST::FUNCTION: -CPK_MASTER_SECRET_extract_private_key 3767 1_1_0d EXIST::FUNCTION:CPK -EVP_CIPHER_CTX_test_flags 3768 1_1_0d EXIST::FUNCTION: -PKCS12_add_cert 3769 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get0 3770 1_1_0d EXIST::FUNCTION: -BB1MasterSecret_free 3771 1_1_0d EXIST::FUNCTION:BB1IBE -TS_VERIFY_CTX_new 3772 1_1_0d EXIST::FUNCTION:TS -BIO_set_ex_data 3773 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_get0 3774 1_1_0d EXIST::FUNCTION: -CRYPTO_strndup 3775 1_1_0d EXIST::FUNCTION: -UI_get0_output_string 3776 1_1_0d EXIST::FUNCTION:UI -UI_get_default_method 3777 1_1_0d EXIST::FUNCTION:UI -SDF_ExchangeDigitEnvelopeBaseOnRSA 3778 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_get_sign 3779 1_1_0d EXIST::FUNCTION:EC -ESS_CERT_ID_new 3780 1_1_0d EXIST::FUNCTION:TS -CPK_MASTER_SECRET_validate_public_params 3781 1_1_0d EXIST::FUNCTION:CPK -SAF_GetVersion 3782 1_1_0d EXIST::FUNCTION: -serpent_set_decrypt_key 3783 1_1_0d EXIST::FUNCTION:SERPENT -TS_VERIFY_CTS_set_certs 3784 1_1_0d EXIST::FUNCTION:TS -i2d_ASN1_PRINTABLESTRING 3785 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_encrypt 3786 1_1_0d EXIST::FUNCTION: -i2d_ASN1_UTCTIME 3787 1_1_0d EXIST::FUNCTION: -ASN1_STRING_clear_free 3788 1_1_0d EXIST::FUNCTION: -BN_nnmod 3789 1_1_0d EXIST::FUNCTION: -ENGINE_set_pkey_meths 3790 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_GENERALIZEDTIME_new 3791 1_1_0d EXIST::FUNCTION: -X509at_get_attr 3792 1_1_0d EXIST::FUNCTION: -EVP_PKEY_verify_recover_init 3793 1_1_0d EXIST::FUNCTION: -RSA_public_decrypt 3794 1_1_0d EXIST::FUNCTION:RSA -BN_GENCB_set 3795 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_msg_imprint 3796 1_1_0d EXIST::FUNCTION:TS -SHA384 3797 1_1_0d EXIST:!VMSVAX:FUNCTION: -CMS_RecipientEncryptedKey_cert_cmp 3798 1_1_0d EXIST::FUNCTION:CMS -EVP_aes_128_ocb 3799 1_1_0d EXIST::FUNCTION:OCB -i2d_PKCS7_bio 3800 1_1_0d EXIST::FUNCTION: -SEED_set_key 3801 1_1_0d EXIST::FUNCTION:SEED -X509_STORE_set_verify 3802 1_1_0d EXIST::FUNCTION: -ESS_CERT_ID_free 3803 1_1_0d EXIST::FUNCTION:TS -EC_KEY_can_sign 3804 1_1_0d EXIST::FUNCTION:EC -BFPrivateKeyBlock_it 3805 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFPrivateKeyBlock_it 3805 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -NETSCAPE_SPKI_sign 3806 1_1_0d EXIST::FUNCTION: -PEM_write_DSAPrivateKey 3807 1_1_0d EXIST::FUNCTION:DSA,STDIO -PEM_dek_info 3808 1_1_0d EXIST::FUNCTION: -i2d_X509_ALGOR 3809 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_get_ext_by_critical 3810 1_1_0d EXIST::FUNCTION:OCSP -BIO_s_mem 3811 1_1_0d EXIST::FUNCTION: -DES_cfb64_encrypt 3812 1_1_0d EXIST::FUNCTION:DES -i2d_DIST_POINT_NAME 3813 1_1_0d EXIST::FUNCTION: -SDF_GenerateRandom 3814 1_1_0d EXIST::FUNCTION: -d2i_SM9MasterSecret 3815 1_1_0d EXIST::FUNCTION:SM9 -d2i_TS_REQ 3816 1_1_0d EXIST::FUNCTION:TS -NETSCAPE_SPKI_it 3817 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NETSCAPE_SPKI_it 3817 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CPK_MASTER_SECRET_extract_public_params 3818 1_1_0d EXIST::FUNCTION:CPK -OPENSSL_sk_find_ex 3819 1_1_0d EXIST::FUNCTION: -i2d_ECCCipher_fp 3820 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO -OTHERNAME_cmp 3821 1_1_0d EXIST::FUNCTION: -SKF_ChangeDevAuthKey 3822 1_1_0d EXIST::FUNCTION:SKF -i2d_POLICYQUALINFO 3823 1_1_0d EXIST::FUNCTION: -EC_KEY_oct2priv 3824 1_1_0d EXIST::FUNCTION:EC -PKCS1_MGF1 3825 1_1_0d EXIST::FUNCTION:RSA -SAF_EccVerifySign 3826 1_1_0d EXIST::FUNCTION: -ENGINE_get_load_privkey_function 3827 1_1_0d EXIST::FUNCTION:ENGINE -DIRECTORYSTRING_it 3828 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DIRECTORYSTRING_it 3828 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_CIPHER_meth_get_cleanup 3829 1_1_0d EXIST::FUNCTION: -SM2_KAP_compute_key 3830 1_1_0d EXIST::FUNCTION:SM2 -EC_KEY_new 3831 1_1_0d EXIST::FUNCTION:EC -PKCS7_ATTR_VERIFY_it 3832 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ATTR_VERIFY_it 3832 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_GFP2_free 3833 1_1_0d EXIST::FUNCTION: -SKF_DecryptFinal 3834 1_1_0d EXIST::FUNCTION:SKF -i2d_DSA_SIG 3835 1_1_0d EXIST::FUNCTION:DSA -CMS_get0_SignerInfos 3836 1_1_0d EXIST::FUNCTION:CMS -X509_REQ_add_extensions_nid 3837 1_1_0d EXIST::FUNCTION: -ASN1_mbstring_ncopy 3838 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_md 3839 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAGS_it 3840 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_SAFEBAGS_it 3840 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PEM_write_bio_X509 3841 1_1_0d EXIST::FUNCTION: -X509_CRL_set_issuer_name 3842 1_1_0d EXIST::FUNCTION: -TS_CONF_set_def_policy 3843 1_1_0d EXIST::FUNCTION:TS -OCSP_SINGLERESP_add_ext 3844 1_1_0d EXIST::FUNCTION:OCSP -i2d_ASN1_OBJECT 3845 1_1_0d EXIST::FUNCTION: -ASN1_item_ex_free 3846 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_DIGEST 3847 1_1_0d EXIST::FUNCTION: -BN_mod_exp_mont 3848 1_1_0d EXIST::FUNCTION: -NCONF_new 3849 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_encrypt 3850 1_1_0d EXIST::FUNCTION: -serpent_encrypt 3851 1_1_0d EXIST::FUNCTION:SERPENT -EC_KEY_METHOD_get_decrypt 3852 1_1_0d EXIST::FUNCTION:SM2 -PKCS7_DIGEST_free 3853 1_1_0d EXIST::FUNCTION: -SDF_InternalEncrypt_ECC 3854 1_1_0d EXIST::FUNCTION: -BIO_ADDR_hostname_string 3855 1_1_0d EXIST::FUNCTION:SOCK -BIO_dgram_is_sctp 3856 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -EVP_aes_256_cfb8 3857 1_1_0d EXIST::FUNCTION: -OCSP_resp_get0_certs 3858 1_1_0d EXIST::FUNCTION:OCSP -IDEA_cfb64_encrypt 3859 1_1_0d EXIST::FUNCTION:IDEA -d2i_ASN1_VISIBLESTRING 3860 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_encrypting 3861 1_1_0d EXIST::FUNCTION: -EVP_enc_null 3862 1_1_0d EXIST::FUNCTION: -SRP_VBASE_get1_by_user 3863 1_1_0d EXIST::FUNCTION:SRP -UI_method_set_reader 3864 1_1_0d EXIST::FUNCTION:UI -SOF_GetSignMethod 3865 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_find 3866 1_1_0d EXIST::FUNCTION: -HMAC_CTX_new 3867 1_1_0d EXIST::FUNCTION: -X509_get_default_cert_dir 3868 1_1_0d EXIST::FUNCTION: -PEM_read_DSAparams 3869 1_1_0d EXIST::FUNCTION:DSA,STDIO -BIO_ADDR_rawport 3870 1_1_0d EXIST::FUNCTION:SOCK -EC_KEY_set_default_secg_method 3871 1_1_0d EXIST::FUNCTION:SM2 -X509_TRUST_get_flags 3872 1_1_0d EXIST::FUNCTION: -ENGINE_up_ref 3873 1_1_0d EXIST::FUNCTION:ENGINE -X509_REVOKED_free 3874 1_1_0d EXIST::FUNCTION: -BF_cbc_encrypt 3875 1_1_0d EXIST::FUNCTION:BF -PEM_read_bio_ECPKParameters 3876 1_1_0d EXIST::FUNCTION:EC -i2d_ASN1_SEQUENCE_ANY 3877 1_1_0d EXIST::FUNCTION: -i2d_PBEPARAM 3878 1_1_0d EXIST::FUNCTION: -CRYPTO_free 3879 1_1_0d EXIST::FUNCTION: -X509_STORE_set_check_issued 3880 1_1_0d EXIST::FUNCTION: -d2i_OCSP_RESPBYTES 3881 1_1_0d EXIST::FUNCTION:OCSP -ECIES_CIPHERTEXT_VALUE_new_from_ECCCipher 3882 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF -X509_LOOKUP_new 3883 1_1_0d EXIST::FUNCTION: -X509_NAME_hash 3884 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_set_data 3885 1_1_0d EXIST::FUNCTION: -BIO_push 3886 1_1_0d EXIST::FUNCTION: -SDF_ExternalPublicKeyOperation_RSA 3887 1_1_0d EXIST::FUNCTION: -AES_cfb128_encrypt 3888 1_1_0d EXIST::FUNCTION: -BFPublicParameters_free 3889 1_1_0d EXIST::FUNCTION:BFIBE -CRYPTO_malloc 3890 1_1_0d EXIST::FUNCTION: -X509_signature_dump 3891 1_1_0d EXIST::FUNCTION: -X509V3_NAME_from_section 3892 1_1_0d EXIST::FUNCTION: -BIO_dgram_sctp_notification_cb 3893 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -d2i_RSA_PSS_PARAMS 3894 1_1_0d EXIST::FUNCTION:RSA -CMS_RecipientInfo_get0_pkey_ctx 3895 1_1_0d EXIST::FUNCTION:CMS -DH_set_default_method 3896 1_1_0d EXIST::FUNCTION:DH -d2i_PUBKEY 3897 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_EC 3898 1_1_0d EXIST::FUNCTION:ENGINE -CMS_EncryptedData_set1_key 3899 1_1_0d EXIST::FUNCTION:CMS -X509_set_proxy_pathlen 3900 1_1_0d EXIST::FUNCTION: -d2i_CPK_MASTER_SECRET_bio 3901 1_1_0d EXIST::FUNCTION:CPK -EVP_PKEY_keygen_init 3902 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_impl_ctx_size 3903 1_1_0d EXIST::FUNCTION: -SEED_cfb128_encrypt 3904 1_1_0d EXIST::FUNCTION:SEED -OCSP_RESPBYTES_new 3905 1_1_0d EXIST::FUNCTION:OCSP -X509_STORE_set_lookup_crls 3906 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_new_from_ECCSIGNATUREBLOB 3907 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -X509_check_ip_asc 3908 1_1_0d EXIST::FUNCTION: -CMS_ReceiptRequest_free 3909 1_1_0d EXIST::FUNCTION:CMS -NETSCAPE_SPKI_set_pubkey 3910 1_1_0d EXIST::FUNCTION: -X509_CRL_get_version 3911 1_1_0d EXIST::FUNCTION: -BF_ofb64_encrypt 3912 1_1_0d EXIST::FUNCTION:BF -X509_ATTRIBUTE_create_by_OBJ 3913 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_set_key_length 3914 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_def_policy 3915 1_1_0d EXIST::FUNCTION:TS -CONF_modules_finish 3916 1_1_0d EXIST::FUNCTION: -PKCS7_cert_from_signer_info 3917 1_1_0d EXIST::FUNCTION: -CAST_encrypt 3918 1_1_0d EXIST::FUNCTION:CAST -X509V3_add_value_bool_nf 3919 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_get0_safes 3920 1_1_0d EXIST::FUNCTION: -TLS_FEATURE_new 3921 1_1_0d EXIST::FUNCTION: -RAND_bytes 3922 1_1_0d EXIST::FUNCTION: -d2i_PUBKEY_fp 3923 1_1_0d EXIST::FUNCTION:STDIO -PKCS12_free 3924 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_get_set_asn1_params 3925 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set0_untrusted 3926 1_1_0d EXIST::FUNCTION: -RSA_PSS_PARAMS_free 3927 1_1_0d EXIST::FUNCTION:RSA -SM2_KAP_CTX_init 3928 1_1_0d EXIST::FUNCTION:SM2 -d2i_TS_MSG_IMPRINT 3929 1_1_0d EXIST::FUNCTION:TS -ECDSA_sign_setup 3930 1_1_0d EXIST::FUNCTION:EC -CRYPTO_cbc128_encrypt 3931 1_1_0d EXIST::FUNCTION: -OBJ_NAME_cleanup 3932 1_1_0d EXIST::FUNCTION: -CRYPTO_secure_malloc_initialized 3933 1_1_0d EXIST::FUNCTION: -SKF_PrintECCCipher 3934 1_1_0d EXIST::FUNCTION:SKF -d2i_X509_ALGOR 3935 1_1_0d EXIST::FUNCTION: -SAF_SymmEncryptUpdate 3936 1_1_0d EXIST::FUNCTION: -RSA_meth_new 3937 1_1_0d EXIST::FUNCTION:RSA -ENGINE_register_DSA 3938 1_1_0d EXIST::FUNCTION:ENGINE -PEM_read_DHparams 3939 1_1_0d EXIST::FUNCTION:DH,STDIO -TS_ACCURACY_set_micros 3940 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_clear_free 3941 1_1_0d EXIST::FUNCTION:EC -OBJ_txt2obj 3942 1_1_0d EXIST::FUNCTION: -TS_CONF_set_signer_cert 3943 1_1_0d EXIST::FUNCTION:TS -X509V3_EXT_add_list 3944 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_ctrl 3945 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_add1_ext_i2d 3946 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_gcm128_encrypt 3947 1_1_0d EXIST::FUNCTION: -BN_GFP2_sqr 3948 1_1_0d EXIST::FUNCTION: -SKF_CreateApplication 3949 1_1_0d EXIST::FUNCTION:SKF -EVP_aes_128_cfb1 3950 1_1_0d EXIST::FUNCTION: -i2d_PrivateKey 3951 1_1_0d EXIST::FUNCTION: -PEM_write_RSAPrivateKey 3952 1_1_0d EXIST::FUNCTION:RSA,STDIO -BN_swap 3953 1_1_0d EXIST::FUNCTION: -X509_get_ext_count 3954 1_1_0d EXIST::FUNCTION: -X509_STORE_set_check_revocation 3955 1_1_0d EXIST::FUNCTION: -PBE2PARAM_it 3956 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PBE2PARAM_it 3956 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OPENSSL_gmtime_adj 3957 1_1_0d EXIST::FUNCTION: -X509_CRL_verify 3958 1_1_0d EXIST::FUNCTION: -ASN1_UNIVERSALSTRING_new 3959 1_1_0d EXIST::FUNCTION: -POLICYINFO_it 3960 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICYINFO_it 3960 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_CINF_it 3961 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CINF_it 3961 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SHA1_Final 3962 1_1_0d EXIST::FUNCTION: -OCSP_response_status 3963 1_1_0d EXIST::FUNCTION:OCSP -DH_check_params 3964 1_1_0d EXIST::FUNCTION:DH -OBJ_NAME_new_index 3965 1_1_0d EXIST::FUNCTION: -X509_REQ_new 3966 1_1_0d EXIST::FUNCTION: -PEM_X509_INFO_read_bio 3967 1_1_0d EXIST::FUNCTION: -DH_test_flags 3968 1_1_0d EXIST::FUNCTION:DH -EVP_camellia_128_cfb128 3969 1_1_0d EXIST::FUNCTION:CAMELLIA -X509_STORE_CTX_set0_trusted_stack 3970 1_1_0d EXIST::FUNCTION: -RSA_meth_set1_name 3971 1_1_0d EXIST::FUNCTION:RSA -i2d_RSAPublicKey 3972 1_1_0d EXIST::FUNCTION:RSA -SM2_sign_ex 3973 1_1_0d EXIST::FUNCTION:SM2 -ASN1_BIT_STRING_name_print 3974 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_create_by_OBJ 3975 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_EncodeEnvelopedData 3976 1_1_0d EXIST::FUNCTION: -ENGINE_set_load_pubkey_function 3977 1_1_0d EXIST::FUNCTION:ENGINE -TS_REQ_ext_free 3978 1_1_0d EXIST::FUNCTION:TS -SKF_PrintDevInfo 3979 1_1_0d EXIST::FUNCTION:SKF -BFIBE_extract_private_key 3980 1_1_0d EXIST::FUNCTION:BFIBE -ERR_load_TS_strings 3981 1_1_0d EXIST::FUNCTION:TS -CRYPTO_memcmp 3982 1_1_0d EXIST::FUNCTION: -PKCS7_add_recipient 3983 1_1_0d EXIST::FUNCTION: -X509_email_free 3984 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_copy_ex 3985 1_1_0d EXIST::FUNCTION: -EVP_PBE_find 3986 1_1_0d EXIST::FUNCTION: -BN_new 3987 1_1_0d EXIST::FUNCTION: -PKCS7_ATTR_SIGN_it 3988 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ATTR_SIGN_it 3988 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DSAparams_print_fp 3989 1_1_0d EXIST::FUNCTION:DSA,STDIO -ACCESS_DESCRIPTION_free 3990 1_1_0d EXIST::FUNCTION: -EC_GROUP_precompute_mult 3991 1_1_0d EXIST::FUNCTION:EC -ECParameters_print 3992 1_1_0d EXIST::FUNCTION:EC -EVP_MD_CTX_update_fn 3993 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_get_critical 3994 1_1_0d EXIST::FUNCTION: -FFX_encrypt 3995 1_1_0d EXIST::FUNCTION: -MD4 3996 1_1_0d EXIST::FUNCTION:MD4 -ENGINE_register_all_EC 3997 1_1_0d EXIST::FUNCTION:ENGINE -ERR_print_errors_fp 3998 1_1_0d EXIST::FUNCTION:STDIO -ENGINE_set_default_pkey_asn1_meths 3999 1_1_0d EXIST::FUNCTION:ENGINE -CONF_load_bio 4000 1_1_0d EXIST::FUNCTION: -d2i_PKCS8_PRIV_KEY_INFO 4001 1_1_0d EXIST::FUNCTION: -X509V3_EXT_add_conf 4002 1_1_0d EXIST::FUNCTION: -SKF_RSAExportSessionKey 4003 1_1_0d EXIST::FUNCTION:SKF -ASN1_TYPE_new 4004 1_1_0d EXIST::FUNCTION: -DH_get_1024_160 4005 1_1_0d EXIST::FUNCTION:DH -PKCS7_it 4006 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_it 4006 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SOF_GetCertInfo 4007 1_1_0d EXIST::FUNCTION: -SDF_Decrypt 4008 1_1_0d EXIST::FUNCTION: -EVP_PKEY_add1_attr_by_OBJ 4009 1_1_0d EXIST::FUNCTION: -EC_KEY_precompute_mult 4010 1_1_0d EXIST::FUNCTION:EC -PKCS12_item_decrypt_d2i 4011 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_dup 4012 1_1_0d EXIST::FUNCTION: -RSA_padding_add_PKCS1_PSS_mgf1 4013 1_1_0d EXIST::FUNCTION:RSA -ASN1_i2d_fp 4014 1_1_0d EXIST::FUNCTION:STDIO -OCSP_resp_get0_produced_at 4015 1_1_0d EXIST::FUNCTION:OCSP -EC_KEY_METHOD_new 4016 1_1_0d EXIST::FUNCTION:EC -EVP_sms4_ecb 4017 1_1_0d EXIST::FUNCTION:SMS4 -DES_ede3_cfb64_encrypt 4018 1_1_0d EXIST::FUNCTION:DES -d2i_X509_CRL 4019 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_RAND 4020 1_1_0d EXIST::FUNCTION:ENGINE -SM9MasterSecret_new 4021 1_1_0d EXIST::FUNCTION:SM9 -DES_ecb_encrypt 4022 1_1_0d EXIST::FUNCTION:DES -RSA_set_RSArefPrivateKey 4023 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -TS_REQ_get_exts 4024 1_1_0d EXIST::FUNCTION:TS -i2d_re_X509_tbs 4025 1_1_0d EXIST::FUNCTION: -ASN1_PRINTABLESTRING_it 4026 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_PRINTABLESTRING_it 4026 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_STORE_CTX_set_current_cert 4027 1_1_0d EXIST::FUNCTION: -BIO_set_callback 4028 1_1_0d EXIST::FUNCTION: -RSA_meth_set_priv_enc 4029 1_1_0d EXIST::FUNCTION:RSA -ENGINE_get_id 4030 1_1_0d EXIST::FUNCTION:ENGINE -ENGINE_ctrl 4031 1_1_0d EXIST::FUNCTION:ENGINE -CMS_SignerInfo_get0_signature 4032 1_1_0d EXIST::FUNCTION:CMS -ENGINE_register_all_RSA 4033 1_1_0d EXIST::FUNCTION:ENGINE -CRYPTO_secure_zalloc 4034 1_1_0d EXIST::FUNCTION: -X509_STORE_get_check_revocation 4035 1_1_0d EXIST::FUNCTION: -NCONF_dump_bio 4036 1_1_0d EXIST::FUNCTION: -SDF_InternalPublicKeyOperation_RSA 4037 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_buf_noconst 4038 1_1_0d EXIST::FUNCTION: -EC_KEY_set_ex_data 4039 1_1_0d EXIST::FUNCTION:EC -EVP_camellia_256_ctr 4040 1_1_0d EXIST::FUNCTION:CAMELLIA -PEM_write_bio_PKCS7_stream 4041 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cbc_hmac_sha256 4042 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_get1_ext_d2i 4043 1_1_0d EXIST::FUNCTION:OCSP -PKCS12_item_i2d_encrypt 4044 1_1_0d EXIST::FUNCTION: -BIO_new_file 4045 1_1_0d EXIST::FUNCTION: -ASN1_FBOOLEAN_it 4046 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_FBOOLEAN_it 4046 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_add 4047 1_1_0d EXIST::FUNCTION: -BN_bn2mpi 4048 1_1_0d EXIST::FUNCTION: -BIO_number_read 4049 1_1_0d EXIST::FUNCTION: -EVP_PKEY_add1_attr_by_txt 4050 1_1_0d EXIST::FUNCTION: -TS_REQ_get_msg_imprint 4051 1_1_0d EXIST::FUNCTION:TS -BIO_sock_error 4052 1_1_0d EXIST::FUNCTION:SOCK -BIO_listen 4053 1_1_0d EXIST::FUNCTION:SOCK -EC_POINT_set_affine_coordinates_GF2m 4054 1_1_0d EXIST::FUNCTION:EC,EC2M -X509_ATTRIBUTE_set1_object 4055 1_1_0d EXIST::FUNCTION: -RC2_set_key 4056 1_1_0d EXIST::FUNCTION:RC2 -DH_meth_set_compute_key 4057 1_1_0d EXIST::FUNCTION:DH -RC5_32_ecb_encrypt 4058 1_1_0d EXIST::FUNCTION:RC5 -d2i_DIST_POINT_NAME 4059 1_1_0d EXIST::FUNCTION: -ASN1_ANY_it 4060 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_ANY_it 4060 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_SM9PublicKey 4061 1_1_0d EXIST::FUNCTION:SM9 -DH_meth_get_generate_key 4062 1_1_0d EXIST::FUNCTION:DH -SHA512 4063 1_1_0d EXIST:!VMSVAX:FUNCTION: -d2i_BFPrivateKeyBlock 4064 1_1_0d EXIST::FUNCTION:BFIBE -X509_ATTRIBUTE_get0_data 4065 1_1_0d EXIST::FUNCTION: -BF_set_key 4066 1_1_0d EXIST::FUNCTION:BF -TS_RESP_CTX_set_status_info_cond 4067 1_1_0d EXIST::FUNCTION:TS -SOF_VerifySignedData 4068 1_1_0d EXIST::FUNCTION: -CMS_unsigned_get0_data_by_OBJ 4069 1_1_0d EXIST::FUNCTION:CMS -SKF_DeleteFile 4070 1_1_0d EXIST::FUNCTION:SKF -SKF_MacFinal 4071 1_1_0d EXIST::FUNCTION:SKF -DES_ede3_cbc_encrypt 4072 1_1_0d EXIST::FUNCTION:DES -RSA_get0_crt_params 4073 1_1_0d EXIST::FUNCTION:RSA -BN_value_one 4074 1_1_0d EXIST::FUNCTION: -d2i_DSAPrivateKey_bio 4075 1_1_0d EXIST::FUNCTION:DSA -X509_get_ext 4076 1_1_0d EXIST::FUNCTION: -d2i_X509_SIG 4077 1_1_0d EXIST::FUNCTION: -X509_STORE_set1_param 4078 1_1_0d EXIST::FUNCTION: -BIO_meth_get_read 4079 1_1_0d EXIST::FUNCTION: -EC_POINT_get_affine_coordinates_GF2m 4080 1_1_0d EXIST::FUNCTION:EC,EC2M -PKCS7_SIGNER_INFO_set 4081 1_1_0d EXIST::FUNCTION: -SAF_EnumKeyContainerInfo 4082 1_1_0d EXIST::FUNCTION: -AUTHORITY_KEYID_it 4083 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -AUTHORITY_KEYID_it 4083 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_CTX_start 4084 1_1_0d EXIST::FUNCTION: -d2i_OCSP_RESPDATA 4085 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_get_signature_nid 4086 1_1_0d EXIST::FUNCTION: -CRYPTO_mem_debug_free 4087 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -IPAddressRange_free 4088 1_1_0d EXIST::FUNCTION:RFC3779 -OCSP_REQ_CTX_nbio_d2i 4089 1_1_0d EXIST::FUNCTION:OCSP -UI_free 4090 1_1_0d EXIST::FUNCTION:UI -TS_TST_INFO_get_ext 4091 1_1_0d EXIST::FUNCTION:TS -X509_REQ_add1_attr 4092 1_1_0d EXIST::FUNCTION: -ASN1_SEQUENCE_ANY_it 4093 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_SEQUENCE_ANY_it 4093 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_RESPONSE_it 4094 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPONSE_it 4094 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -SAF_Mac 4095 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_trust 4096 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_inh_flags 4097 1_1_0d EXIST::FUNCTION: -EXTENDED_KEY_USAGE_new 4098 1_1_0d EXIST::FUNCTION: -i2d_ASN1_OCTET_STRING 4099 1_1_0d EXIST::FUNCTION: -ENGINE_set_finish_function 4100 1_1_0d EXIST::FUNCTION:ENGINE -WHIRLPOOL_Update 4101 1_1_0d EXIST::FUNCTION:WHIRLPOOL -BIO_s_bio 4102 1_1_0d EXIST::FUNCTION: -X509v3_get_ext_by_critical 4103 1_1_0d EXIST::FUNCTION: -X509_CRL_match 4104 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_exp_arr 4105 1_1_0d EXIST::FUNCTION:EC2M -CRYPTO_secure_used 4106 1_1_0d EXIST::FUNCTION: -ASN1_item_ex_d2i 4107 1_1_0d EXIST::FUNCTION: -X509_get_default_cert_file_env 4108 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_create_by_NID 4109 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_by_critical 4110 1_1_0d EXIST::FUNCTION:OCSP -TS_TST_INFO_new 4111 1_1_0d EXIST::FUNCTION:TS -BIO_copy_next_retry 4112 1_1_0d EXIST::FUNCTION: -i2d_X509_NAME 4113 1_1_0d EXIST::FUNCTION: -ENGINE_get_ctrl_function 4114 1_1_0d EXIST::FUNCTION:ENGINE -i2d_PKCS7_SIGNED 4115 1_1_0d EXIST::FUNCTION: -ENGINE_get_default_RAND 4116 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_STRING_type 4117 1_1_0d EXIST::FUNCTION: -PEM_read_bio_DSA_PUBKEY 4118 1_1_0d EXIST::FUNCTION:DSA -EVP_ENCODE_CTX_copy 4119 1_1_0d EXIST::FUNCTION: -SM9PublicParameters_new 4120 1_1_0d EXIST::FUNCTION:SM9 -i2d_ASN1_UTF8STRING 4121 1_1_0d EXIST::FUNCTION: -ASN1_GENERALIZEDTIME_set_string 4122 1_1_0d EXIST::FUNCTION: -X509_STORE_get_ex_data 4123 1_1_0d EXIST::FUNCTION: -RAND_load_file 4124 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_new 4125 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_purpose 4126 1_1_0d EXIST::FUNCTION: -TS_CONF_set_tsa_name 4127 1_1_0d EXIST::FUNCTION:TS -SAF_EccPublicKeyEnc 4128 1_1_0d EXIST::FUNCTION: -X509_OBJECT_idx_by_subject 4129 1_1_0d EXIST::FUNCTION: -DES_cbc_encrypt 4130 1_1_0d EXIST::FUNCTION:DES -d2i_TS_MSG_IMPRINT_bio 4131 1_1_0d EXIST::FUNCTION:TS -SKF_CancelWaitForDevEvent 4132 1_1_0d EXIST::FUNCTION:SKF -ERR_load_CT_strings 4133 1_1_0d EXIST::FUNCTION:CT -AES_bi_ige_encrypt 4134 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_get0_cert 4135 1_1_0d EXIST::FUNCTION:CT -FFX_CTX_new 4136 1_1_0d EXIST::FUNCTION: -i2d_TS_MSG_IMPRINT_bio 4137 1_1_0d EXIST::FUNCTION:TS -ECDSA_do_verify 4138 1_1_0d EXIST::FUNCTION:EC -BN_exp 4139 1_1_0d EXIST::FUNCTION: -UI_set_result 4140 1_1_0d EXIST::FUNCTION:UI -X509_EXTENSION_free 4141 1_1_0d EXIST::FUNCTION: -EVP_aes_192_ocb 4142 1_1_0d EXIST::FUNCTION:OCB -PEM_write_bio_PrivateKey_traditional 4143 1_1_0d EXIST::FUNCTION: -GENERAL_SUBTREE_free 4144 1_1_0d EXIST::FUNCTION: -SOF_VerifySignedMessage 4145 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_print_bio 4146 1_1_0d EXIST::FUNCTION:TS -BN_mod_inverse 4147 1_1_0d EXIST::FUNCTION: -X509v3_addr_get_range 4148 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_OpenFinal 4149 1_1_0d EXIST::FUNCTION:RSA -BB1IBE_extract_private_key 4150 1_1_0d EXIST::FUNCTION:BB1IBE -SKF_Decrypt 4151 1_1_0d EXIST::FUNCTION:SKF -OCSP_basic_verify 4152 1_1_0d EXIST::FUNCTION:OCSP -X509V3_set_nconf 4153 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_add_policy 4154 1_1_0d EXIST::FUNCTION:TS -POLICYQUALINFO_it 4155 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICYQUALINFO_it 4155 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RSA_size 4156 1_1_0d EXIST::FUNCTION:RSA -EC_KEY_free 4157 1_1_0d EXIST::FUNCTION:EC -ENGINE_unregister_RAND 4158 1_1_0d EXIST::FUNCTION:ENGINE -TS_REQ_get_cert_req 4159 1_1_0d EXIST::FUNCTION:TS -BN_GENCB_new 4160 1_1_0d EXIST::FUNCTION: -EC_KEY_new_method 4161 1_1_0d EXIST::FUNCTION:EC -ENGINE_register_RSA 4162 1_1_0d EXIST::FUNCTION:ENGINE -d2i_PKCS12_bio 4163 1_1_0d EXIST::FUNCTION: -EC_POINT_oct2point 4164 1_1_0d EXIST::FUNCTION:EC -PKCS5_pbe_set 4165 1_1_0d EXIST::FUNCTION: -CRYPTO_atomic_add 4166 1_1_0d EXIST::FUNCTION: -d2i_OCSP_CERTID 4167 1_1_0d EXIST::FUNCTION:OCSP -i2d_GENERAL_NAMES 4168 1_1_0d EXIST::FUNCTION: -RIPEMD160 4169 1_1_0d EXIST::FUNCTION:RMD160 -d2i_X509_ATTRIBUTE 4170 1_1_0d EXIST::FUNCTION: -X509_NAME_add_entry_by_OBJ 4171 1_1_0d EXIST::FUNCTION: -CTLOG_STORE_load_file 4172 1_1_0d EXIST::FUNCTION:CT -CTLOG_STORE_get0_log_by_id 4173 1_1_0d EXIST::FUNCTION:CT -CMS_unsigned_get_attr 4174 1_1_0d EXIST::FUNCTION:CMS -ASN1_BIT_STRING_new 4175 1_1_0d EXIST::FUNCTION: -BIO_socket_nbio 4176 1_1_0d EXIST::FUNCTION:SOCK -a2i_IPADDRESS_NC 4177 1_1_0d EXIST::FUNCTION: -i2d_ECCSignature 4178 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -SOF_SignFile 4179 1_1_0d EXIST::FUNCTION: -BUF_MEM_new_ex 4180 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_depth 4181 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kari_get0_ctx 4182 1_1_0d EXIST::FUNCTION:CMS -X509_CRL_set1_nextUpdate 4183 1_1_0d EXIST::FUNCTION: -PKCS7_add_signed_attribute 4184 1_1_0d EXIST::FUNCTION: -ERR_load_BN_strings 4185 1_1_0d EXIST::FUNCTION: -ASN1_item_sign 4186 1_1_0d EXIST::FUNCTION: -EVP_md2 4187 1_1_0d EXIST::FUNCTION:MD2 -SAF_MacUpdate 4188 1_1_0d EXIST::FUNCTION: -DSA_get_ex_data 4189 1_1_0d EXIST::FUNCTION:DSA -OCSP_crlID_new 4190 1_1_0d EXIST:!VMS:FUNCTION:OCSP -OCSP_crlID2_new 4190 1_1_0d EXIST:VMS:FUNCTION:OCSP -ASYNC_WAIT_CTX_get_fd 4191 1_1_0d EXIST::FUNCTION: -X509_add1_reject_object 4192 1_1_0d EXIST::FUNCTION: -ERR_get_error 4193 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_mul_arr 4194 1_1_0d EXIST::FUNCTION:EC2M -EVP_PKEY_asn1_get0_info 4195 1_1_0d EXIST::FUNCTION: -BN_MONT_CTX_free 4196 1_1_0d EXIST::FUNCTION: -SAF_Base64_EncodeFinal 4197 1_1_0d EXIST::FUNCTION: -ENGINE_get_DSA 4198 1_1_0d EXIST::FUNCTION:ENGINE -NCONF_default 4199 1_1_0d EXIST::FUNCTION: -PEM_write_bio_RSAPrivateKey 4200 1_1_0d EXIST::FUNCTION:RSA -ASN1_OBJECT_create 4201 1_1_0d EXIST::FUNCTION: -i2a_ASN1_STRING 4202 1_1_0d EXIST::FUNCTION: -SOF_GetVersion 4203 1_1_0d EXIST::FUNCTION: -ASN1_item_digest 4204 1_1_0d EXIST::FUNCTION: -EC_KEY_get_ECCPUBLICKEYBLOB 4205 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -OPENSSL_INIT_free 4206 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_DSA 4207 1_1_0d EXIST::FUNCTION:DSA -EVP_aes_128_gcm 4208 1_1_0d EXIST::FUNCTION: -ENGINE_get_init_function 4209 1_1_0d EXIST::FUNCTION:ENGINE -PKCS8_encrypt 4210 1_1_0d EXIST::FUNCTION: -SKF_OpenContainer 4211 1_1_0d EXIST::FUNCTION:SKF -BN_get_rfc2409_prime_1024 4212 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_get 4213 1_1_0d EXIST::FUNCTION: -BN_GFP2_sub_bn 4214 1_1_0d EXIST::FUNCTION: -RSA_meth_set_bn_mod_exp 4215 1_1_0d EXIST::FUNCTION:RSA -d2i_ASN1_OBJECT 4216 1_1_0d EXIST::FUNCTION: -ASN1_T61STRING_free 4217 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_set_local 4218 1_1_0d EXIST::FUNCTION: -X509_STORE_set_purpose 4219 1_1_0d EXIST::FUNCTION: -PEM_read_PKCS7 4220 1_1_0d EXIST::FUNCTION:STDIO -BIO_pop 4221 1_1_0d EXIST::FUNCTION: -SMIME_write_CMS 4222 1_1_0d EXIST::FUNCTION:CMS -BN_bn2gfp2 4223 1_1_0d EXIST::FUNCTION: -RSA_verify_PKCS1_PSS 4224 1_1_0d EXIST::FUNCTION:RSA -DSA_OpenSSL 4225 1_1_0d EXIST::FUNCTION:DSA -ESS_ISSUER_SERIAL_dup 4226 1_1_0d EXIST::FUNCTION:TS -SCT_get_timestamp 4227 1_1_0d EXIST::FUNCTION:CT -RAND_pseudo_bytes 4228 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -EVP_PKEY_meth_get_sign 4229 1_1_0d EXIST::FUNCTION: -ERR_print_errors 4230 1_1_0d EXIST::FUNCTION: -i2d_X509_REQ_fp 4231 1_1_0d EXIST::FUNCTION:STDIO -SAF_SM2_EncodeSignedAndEnvelopedData 4232 1_1_0d EXIST::FUNCTION: -EC_POINT_bn2point 4233 1_1_0d EXIST::FUNCTION:EC -EVP_rc4 4234 1_1_0d EXIST::FUNCTION:RC4 -d2i_X509_REQ 4235 1_1_0d EXIST::FUNCTION: -PEM_write_bio_ECPKParameters 4236 1_1_0d EXIST::FUNCTION:EC -OCSP_RESPDATA_free 4237 1_1_0d EXIST::FUNCTION:OCSP -X509_get0_reject_objects 4238 1_1_0d EXIST::FUNCTION: -BN_is_prime 4239 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -NCONF_WIN32 4240 1_1_0d EXIST::FUNCTION: -BN_GFP2_div_bn 4241 1_1_0d EXIST::FUNCTION: -i2a_ASN1_OBJECT 4242 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_get_ECCCIPHERBLOB 4243 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF -NOTICEREF_it 4244 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NOTICEREF_it 4244 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SM9PublicParameters_free 4245 1_1_0d EXIST::FUNCTION:SM9 -X509_LOOKUP_hash_dir 4246 1_1_0d EXIST::FUNCTION: -X509_TRUST_add 4247 1_1_0d EXIST::FUNCTION: -d2i_EXTENDED_KEY_USAGE 4248 1_1_0d EXIST::FUNCTION: -i2d_RSA_PUBKEY_fp 4249 1_1_0d EXIST::FUNCTION:RSA,STDIO -BASIC_CONSTRAINTS_it 4250 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -BASIC_CONSTRAINTS_it 4250 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_resp_count 4251 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_cbc128_decrypt 4252 1_1_0d EXIST::FUNCTION: -ASN1_BIT_STRING_it 4253 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_BIT_STRING_it 4253 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_CTX_get_app_data 4254 1_1_0d EXIST::FUNCTION: -ASN1_IA5STRING_it 4255 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_IA5STRING_it 4255 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_VERIFY_PARAM_set1_ip_asc 4256 1_1_0d EXIST::FUNCTION: -EVP_get_digestnames 4257 1_1_0d EXIST::FUNCTION: -SHA224_Final 4258 1_1_0d EXIST::FUNCTION: -SDF_WriteFile 4259 1_1_0d EXIST::FUNCTION: -CMS_get1_crls 4260 1_1_0d EXIST::FUNCTION:CMS -BN_rand_range 4261 1_1_0d EXIST::FUNCTION: -NAME_CONSTRAINTS_check 4262 1_1_0d EXIST::FUNCTION: -EVP_PKEY_cmp_parameters 4263 1_1_0d EXIST::FUNCTION: -i2d_IPAddressChoice 4264 1_1_0d EXIST::FUNCTION:RFC3779 -ASN1_STRING_to_UTF8 4265 1_1_0d EXIST::FUNCTION: -TS_REQ_set_version 4266 1_1_0d EXIST::FUNCTION:TS -GENERAL_NAME_free 4267 1_1_0d EXIST::FUNCTION: -ASN1_UTF8STRING_free 4268 1_1_0d EXIST::FUNCTION: -DES_cbc_cksum 4269 1_1_0d EXIST::FUNCTION:DES -X509V3_EXT_add 4270 1_1_0d EXIST::FUNCTION: -X509_gmtime_adj 4271 1_1_0d EXIST::FUNCTION: -UI_get_result_minsize 4272 1_1_0d EXIST::FUNCTION:UI -X509_subject_name_hash 4273 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNER_INFO_free 4274 1_1_0d EXIST::FUNCTION: -d2i_ECPrivateKey_fp 4275 1_1_0d EXIST::FUNCTION:EC,STDIO -BN_BLINDING_get_flags 4276 1_1_0d EXIST::FUNCTION: -SCT_set1_signature 4277 1_1_0d EXIST::FUNCTION:CT -DSAparams_dup 4278 1_1_0d EXIST::FUNCTION:DSA -SM2_do_encrypt 4279 1_1_0d EXIST::FUNCTION:SM2 -BIO_ADDRINFO_socktype 4280 1_1_0d EXIST::FUNCTION:SOCK -PROXY_POLICY_it 4281 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PROXY_POLICY_it 4281 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SM9_sign 4282 1_1_0d EXIST::FUNCTION:SM9 -X509_STORE_CTX_free 4283 1_1_0d EXIST::FUNCTION: -ASYNC_cleanup_thread 4284 1_1_0d EXIST::FUNCTION: -BN_mod_mul 4285 1_1_0d EXIST::FUNCTION: -d2i_X509_PUBKEY 4286 1_1_0d EXIST::FUNCTION: -b2i_PrivateKey_bio 4287 1_1_0d EXIST::FUNCTION:DSA -EC_KEY_set_default_method 4288 1_1_0d EXIST::FUNCTION:EC -SEED_ofb128_encrypt 4289 1_1_0d EXIST::FUNCTION:SEED -TS_TST_INFO_set_policy_id 4290 1_1_0d EXIST::FUNCTION:TS -PEM_SignUpdate 4291 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_init 4292 1_1_0d EXIST::FUNCTION: -DSA_free 4293 1_1_0d EXIST::FUNCTION:DSA -OPENSSL_sk_unshift 4294 1_1_0d EXIST::FUNCTION: -CRYPTO_get_ex_data 4295 1_1_0d EXIST::FUNCTION: -ASYNC_start_job 4296 1_1_0d EXIST::FUNCTION: -BN_secure_new 4297 1_1_0d EXIST::FUNCTION: -EC_KEY_new_from_ECCPUBLICKEYBLOB 4298 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -OCSP_BASICRESP_get_ext 4299 1_1_0d EXIST::FUNCTION:OCSP -d2i_ECCSIGNATUREBLOB_fp 4300 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO -PKCS7_get_attribute 4301 1_1_0d EXIST::FUNCTION: -BIO_meth_set_create 4302 1_1_0d EXIST::FUNCTION: -BB1IBE_do_encrypt 4303 1_1_0d EXIST::FUNCTION:BB1IBE -SCT_print 4304 1_1_0d EXIST::FUNCTION:CT -TS_CONF_load_key 4305 1_1_0d EXIST::FUNCTION:TS -i2a_ACCESS_DESCRIPTION 4306 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_set_cb 4307 1_1_0d EXIST::FUNCTION: -EVP_des_ede_ecb 4308 1_1_0d EXIST::FUNCTION:DES -d2i_DSA_PUBKEY 4309 1_1_0d EXIST::FUNCTION:DSA -PaillierPublicKey_it 4310 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER -PaillierPublicKey_it 4310 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER -SOF_GenRandom 4311 1_1_0d EXIST::FUNCTION: -OCSP_request_add1_nonce 4312 1_1_0d EXIST::FUNCTION:OCSP -BN_nist_mod_func 4313 1_1_0d EXIST::FUNCTION: -X509_NAME_get_text_by_NID 4314 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get0_asn1 4315 1_1_0d EXIST::FUNCTION: -d2i_ASN1_UTCTIME 4316 1_1_0d EXIST::FUNCTION: -SM9Signature_free 4317 1_1_0d EXIST::FUNCTION:SM9 -AES_options 4318 1_1_0d EXIST::FUNCTION: -ASN1_TIME_set_string 4319 1_1_0d EXIST::FUNCTION: -OBJ_sigid_free 4320 1_1_0d EXIST::FUNCTION: -X509_get_default_cert_file 4321 1_1_0d EXIST::FUNCTION: -ENGINE_by_id 4322 1_1_0d EXIST::FUNCTION:ENGINE -BIO_ADDR_service_string 4323 1_1_0d EXIST::FUNCTION:SOCK -BN_CTX_secure_new 4324 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_new 4325 1_1_0d EXIST::FUNCTION:TS -EC_KEY_copy 4326 1_1_0d EXIST::FUNCTION:EC -ERR_error_string_n 4327 1_1_0d EXIST::FUNCTION: -d2i_BFMasterSecret 4328 1_1_0d EXIST::FUNCTION:BFIBE -d2i_BFCiphertextBlock 4329 1_1_0d EXIST::FUNCTION:BFIBE -CMS_RecipientInfo_set0_password 4330 1_1_0d EXIST::FUNCTION:CMS -ASN1_STRING_set0 4331 1_1_0d EXIST::FUNCTION: -CMS_get0_signers 4332 1_1_0d EXIST::FUNCTION:CMS -X509_PUBKEY_set0_param 4333 1_1_0d EXIST::FUNCTION: -PKCS7_set_cipher 4334 1_1_0d EXIST::FUNCTION: -BN_get0_nist_prime_384 4335 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_encrypt 4336 1_1_0d EXIST::FUNCTION: -OPENSSL_gmtime_diff 4337 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_meth_engine 4338 1_1_0d EXIST::FUNCTION:ENGINE -d2i_X509_CRL_INFO 4339 1_1_0d EXIST::FUNCTION: -X509_STORE_set_default_paths 4340 1_1_0d EXIST::FUNCTION: -PKCS12_init 4341 1_1_0d EXIST::FUNCTION: -DH_set_method 4342 1_1_0d EXIST::FUNCTION:DH -BIO_number_written 4343 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_num_items 4344 1_1_0d EXIST::FUNCTION: -SDF_ExportEncPublicKey_ECC 4345 1_1_0d EXIST::FUNCTION: -BN_generate_prime 4346 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -X509_CRL_sort 4347 1_1_0d EXIST::FUNCTION: -PKCS8_pkey_get0_attrs 4348 1_1_0d EXIST::FUNCTION: -BIO_dgram_non_fatal_error 4349 1_1_0d EXIST::FUNCTION:DGRAM -RIPEMD160_Init 4350 1_1_0d EXIST::FUNCTION:RMD160 -i2d_PKCS7_RECIP_INFO 4351 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get_sgd 4352 1_1_0d EXIST::FUNCTION:GMAPI -BIO_vfree 4353 1_1_0d EXIST::FUNCTION: -CAST_ecb_encrypt 4354 1_1_0d EXIST::FUNCTION:CAST -RSA_new_method 4355 1_1_0d EXIST::FUNCTION:RSA -X509_EXTENSION_it 4356 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_EXTENSION_it 4356 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_ONEREQ_get_ext_by_critical 4357 1_1_0d EXIST::FUNCTION:OCSP -ECIES_CIPHERTEXT_VALUE_free 4358 1_1_0d EXIST::FUNCTION:ECIES -OCSP_BASICRESP_free 4359 1_1_0d EXIST::FUNCTION:OCSP -DIST_POINT_new 4360 1_1_0d EXIST::FUNCTION: -DIST_POINT_NAME_free 4361 1_1_0d EXIST::FUNCTION: -PKCS7_SIGN_ENVELOPE_free 4362 1_1_0d EXIST::FUNCTION: -ASN1_GENERALIZEDTIME_set 4363 1_1_0d EXIST::FUNCTION: -OCSP_RESPONSE_free 4364 1_1_0d EXIST::FUNCTION:OCSP -EVP_get_default_cipher 4365 1_1_0d EXIST::FUNCTION: -SHA512_Init 4366 1_1_0d EXIST:!VMSVAX:FUNCTION: -EC_POINT_point2hex 4367 1_1_0d EXIST::FUNCTION:EC -i2d_SM9Ciphertext 4368 1_1_0d EXIST::FUNCTION:SM9 -CMAC_CTX_new 4369 1_1_0d EXIST::FUNCTION:CMAC -SAF_GetEccPublicKey 4370 1_1_0d EXIST::FUNCTION: -CRYPTO_secure_actual_size 4371 1_1_0d EXIST::FUNCTION: -CRL_DIST_POINTS_it 4372 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -CRL_DIST_POINTS_it 4372 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_SIGNATURE_new 4373 1_1_0d EXIST::FUNCTION:OCSP -X509_check_private_key 4374 1_1_0d EXIST::FUNCTION: -d2i_OCSP_SERVICELOC 4375 1_1_0d EXIST::FUNCTION:OCSP -X509_get_default_private_dir 4376 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_adj 4377 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_trinomial_basis 4378 1_1_0d EXIST::FUNCTION:EC,EC2M -EVP_sha1 4379 1_1_0d EXIST::FUNCTION: -SOF_DecryptFile 4380 1_1_0d EXIST::FUNCTION: -d2i_CPK_PUBLIC_PARAMS 4381 1_1_0d EXIST::FUNCTION:CPK -RSA_private_encrypt 4382 1_1_0d EXIST::FUNCTION:RSA -BN_with_flags 4383 1_1_0d EXIST::FUNCTION: -d2i_PKCS8PrivateKey_bio 4384 1_1_0d EXIST::FUNCTION: -d2i_RSAPrivateKey 4385 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_CTX_get0_peerkey 4386 1_1_0d EXIST::FUNCTION: -BIO_new_connect 4387 1_1_0d EXIST::FUNCTION:SOCK -i2d_DHxparams 4388 1_1_0d EXIST::FUNCTION:DH -BIO_free 4389 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_free 4390 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_decrypt 4391 1_1_0d EXIST::FUNCTION: -X509_trust_clear 4392 1_1_0d EXIST::FUNCTION: -DH_meth_get_flags 4393 1_1_0d EXIST::FUNCTION:DH -RAND_egd 4394 1_1_0d EXIST::FUNCTION:EGD -CPK_MASTER_SECRET_print 4395 1_1_0d EXIST::FUNCTION:CPK -ENGINE_get_destroy_function 4396 1_1_0d EXIST::FUNCTION:ENGINE -OPENSSL_LH_free 4397 1_1_0d EXIST::FUNCTION: -EVP_seed_cfb128 4398 1_1_0d EXIST::FUNCTION:SEED -CRL_DIST_POINTS_free 4399 1_1_0d EXIST::FUNCTION: -X509_STORE_set_ex_data 4400 1_1_0d EXIST::FUNCTION: -SAF_Base64_Decode 4401 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_free 4402 1_1_0d EXIST::FUNCTION:TS -ENGINE_pkey_asn1_find_str 4403 1_1_0d EXIST::FUNCTION:ENGINE -ECPKPARAMETERS_free 4404 1_1_0d EXIST::FUNCTION:EC -CPK_MASTER_SECRET_new 4405 1_1_0d EXIST::FUNCTION:CPK -ASN1_sign 4406 1_1_0d EXIST::FUNCTION: -PKCS7_ctrl 4407 1_1_0d EXIST::FUNCTION: -CMS_add_smimecap 4408 1_1_0d EXIST::FUNCTION:CMS -DH_set0_pqg 4409 1_1_0d EXIST::FUNCTION:DH -BIO_ctrl 4410 1_1_0d EXIST::FUNCTION: -EVP_des_cfb1 4411 1_1_0d EXIST::FUNCTION:DES -UI_method_get_flusher 4412 1_1_0d EXIST::FUNCTION:UI -SDF_PrintRSAPrivateKey 4413 1_1_0d EXIST::FUNCTION:SDF -EC_GROUP_cmp 4414 1_1_0d EXIST::FUNCTION:EC -CTLOG_get0_log_id 4415 1_1_0d EXIST::FUNCTION:CT -RSA_padding_add_PKCS1_type_1 4416 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_CTX_get_keygen_info 4417 1_1_0d EXIST::FUNCTION: -SM2_sign_setup 4418 1_1_0d EXIST::FUNCTION:SM2 -X509_PURPOSE_get_trust 4419 1_1_0d EXIST::FUNCTION: -PKCS8_pkey_get0 4420 1_1_0d EXIST::FUNCTION: -X509_policy_level_node_count 4421 1_1_0d EXIST::FUNCTION: -d2i_X509_EXTENSIONS 4422 1_1_0d EXIST::FUNCTION: -TS_REQ_to_TS_VERIFY_CTX 4423 1_1_0d EXIST::FUNCTION:TS -ERR_load_CONF_strings 4424 1_1_0d EXIST::FUNCTION: -DH_new 4425 1_1_0d EXIST::FUNCTION:DH -SAF_GetRootCaCertificateCount 4426 1_1_0d EXIST::FUNCTION: -OCSP_archive_cutoff_new 4427 1_1_0d EXIST::FUNCTION:OCSP -X509v3_asid_add_inherit 4428 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_des_ede_ofb 4429 1_1_0d EXIST::FUNCTION:DES -EVP_MD_flags 4430 1_1_0d EXIST::FUNCTION: -EC_POINT_dup 4431 1_1_0d EXIST::FUNCTION:EC -SRP_Calc_B 4432 1_1_0d EXIST::FUNCTION:SRP -b2i_PublicKey_bio 4433 1_1_0d EXIST::FUNCTION:DSA -i2d_IPAddressRange 4434 1_1_0d EXIST::FUNCTION:RFC3779 -AES_wrap_key 4435 1_1_0d EXIST::FUNCTION: -PEM_write_bio_ECPrivateKey 4436 1_1_0d EXIST::FUNCTION:EC -CT_POLICY_EVAL_CTX_set1_cert 4437 1_1_0d EXIST::FUNCTION:CT -CMS_RecipientEncryptedKey_get0_id 4438 1_1_0d EXIST::FUNCTION:CMS -ASN1_GENERALIZEDTIME_free 4439 1_1_0d EXIST::FUNCTION: -BN_BLINDING_invert_ex 4440 1_1_0d EXIST::FUNCTION: -UI_get0_result_string 4441 1_1_0d EXIST::FUNCTION:UI -CRYPTO_128_wrap 4442 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_doall 4443 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_is_sorted 4444 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_cofactor 4445 1_1_0d EXIST::FUNCTION:EC -BN_clear 4446 1_1_0d EXIST::FUNCTION: -BN_hash_to_range 4447 1_1_0d EXIST::FUNCTION: -UI_construct_prompt 4448 1_1_0d EXIST::FUNCTION:UI -OCSP_REQUEST_get_ext 4449 1_1_0d EXIST::FUNCTION:OCSP -SM2_sign 4450 1_1_0d EXIST::FUNCTION:SM2 -CRYPTO_strdup 4451 1_1_0d EXIST::FUNCTION: -DH_set_flags 4452 1_1_0d EXIST::FUNCTION:DH -ECDSA_do_sign_ex 4453 1_1_0d EXIST::FUNCTION:EC -sms4_set_encrypt_key 4454 1_1_0d EXIST::FUNCTION:SMS4 -PKCS7_encrypt 4455 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNER_INFO_new 4456 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set1_ip 4457 1_1_0d EXIST::FUNCTION: -CMS_signed_add1_attr_by_OBJ 4458 1_1_0d EXIST::FUNCTION:CMS -DH_meth_set_finish 4459 1_1_0d EXIST::FUNCTION:DH -X509_get_signature_nid 4460 1_1_0d EXIST::FUNCTION: -ENGINE_set_flags 4461 1_1_0d EXIST::FUNCTION:ENGINE -i2d_ASN1_IA5STRING 4462 1_1_0d EXIST::FUNCTION: -RSA_blinding_off 4463 1_1_0d EXIST::FUNCTION:RSA -ECIES_PARAMS_init_with_recommended 4464 1_1_0d EXIST::FUNCTION:ECIES -SM9PrivateKey_get_gmtls_public_key 4465 1_1_0d EXIST::FUNCTION:SM9 -OPENSSL_DIR_read 4466 1_1_0d EXIST::FUNCTION: -i2d_PrivateKey_bio 4467 1_1_0d EXIST::FUNCTION: -PKCS7_decrypt 4468 1_1_0d EXIST::FUNCTION: -OPENSSL_INIT_new 4469 1_1_0d EXIST::FUNCTION: -d2i_PKCS8_PRIV_KEY_INFO_bio 4470 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_accuracy 4471 1_1_0d EXIST::FUNCTION:TS -ENGINE_set_load_ssl_client_cert_function 4472 1_1_0d EXIST::FUNCTION:ENGINE -EC_GROUP_new_from_ecparameters 4473 1_1_0d EXIST::FUNCTION:EC -TS_MSG_IMPRINT_get_algo 4474 1_1_0d EXIST::FUNCTION:TS -OCSP_request_add0_id 4475 1_1_0d EXIST::FUNCTION:OCSP -d2i_ECCSIGNATUREBLOB_bio 4476 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -SRP_Calc_u 4477 1_1_0d EXIST::FUNCTION:SRP -i2d_DSA_PUBKEY 4478 1_1_0d EXIST::FUNCTION:DSA -ECIES_CIPHERTEXT_VALUE_it 4479 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:ECIES -ECIES_CIPHERTEXT_VALUE_it 4479 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:ECIES -ASN1_const_check_infinite_end 4480 1_1_0d EXIST::FUNCTION: -TS_CONF_set_signer_digest 4481 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_new_by_curve_name 4482 1_1_0d EXIST::FUNCTION:EC -TXT_DB_create_index 4483 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_copy 4484 1_1_0d EXIST::FUNCTION: -d2i_CMS_ContentInfo 4485 1_1_0d EXIST::FUNCTION:CMS -SXNET_new 4486 1_1_0d EXIST::FUNCTION: -OPENSSL_asc2uni 4487 1_1_0d EXIST::FUNCTION: -DSA_do_sign 4488 1_1_0d EXIST::FUNCTION:DSA -OCSP_REQUEST_delete_ext 4489 1_1_0d EXIST::FUNCTION:OCSP -RSA_new 4490 1_1_0d EXIST::FUNCTION:RSA -SAF_VerifySignByCert 4491 1_1_0d EXIST::FUNCTION: -i2d_ASIdentifiers 4492 1_1_0d EXIST::FUNCTION:RFC3779 -X509_get_proxy_pathlen 4493 1_1_0d EXIST::FUNCTION: -WHIRLPOOL_BitUpdate 4494 1_1_0d EXIST::FUNCTION:WHIRLPOOL -i2a_ASN1_ENUMERATED 4495 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_tsa 4496 1_1_0d EXIST::FUNCTION:TS -AES_cbc_encrypt 4497 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_new 4498 1_1_0d EXIST::FUNCTION:ECIES -X509_verify 4499 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_seed_len 4500 1_1_0d EXIST::FUNCTION:EC -OCSP_RESPONSE_new 4501 1_1_0d EXIST::FUNCTION:OCSP -X509_ocspid_print 4502 1_1_0d EXIST::FUNCTION: -RIPEMD160_Transform 4503 1_1_0d EXIST::FUNCTION:RMD160 -X509_STORE_get_verify_cb 4504 1_1_0d EXIST::FUNCTION: -SDF_HashInit 4505 1_1_0d EXIST::FUNCTION: -EVP_add_digest 4506 1_1_0d EXIST::FUNCTION: -i2d_SM9Signature_fp 4507 1_1_0d EXIST::FUNCTION:SM9,STDIO -RSA_meth_get_sign 4508 1_1_0d EXIST::FUNCTION:RSA -NAME_CONSTRAINTS_new 4509 1_1_0d EXIST::FUNCTION: -BIO_ADDR_clear 4510 1_1_0d EXIST::FUNCTION:SOCK -KDF_get_ibcs 4511 1_1_0d EXIST::FUNCTION: -X509_chain_up_ref 4512 1_1_0d EXIST::FUNCTION: -SKF_GetContainerTypeName 4513 1_1_0d EXIST::FUNCTION:SKF -X509_PURPOSE_add 4514 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_it 4515 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_INTEGER_it 4515 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_REQ_digest 4516 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_free 4517 1_1_0d EXIST::FUNCTION: -UI_method_get_opener 4518 1_1_0d EXIST::FUNCTION:UI -BN_BLINDING_new 4519 1_1_0d EXIST::FUNCTION: -RSA_padding_check_PKCS1_type_1 4520 1_1_0d EXIST::FUNCTION:RSA -EC_GROUP_get_curve_name 4521 1_1_0d EXIST::FUNCTION:EC -i2d_PKCS7_ENC_CONTENT 4522 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_fp 4523 1_1_0d EXIST::FUNCTION:STDIO -EC_POINT_copy 4524 1_1_0d EXIST::FUNCTION:EC -BN_mod_lshift1_quick 4525 1_1_0d EXIST::FUNCTION: -OCSP_cert_id_new 4526 1_1_0d EXIST::FUNCTION:OCSP -X509_LOOKUP_file 4527 1_1_0d EXIST::FUNCTION: -X509_CRL_METHOD_new 4528 1_1_0d EXIST::FUNCTION: -CONF_modules_load_file 4529 1_1_0d EXIST::FUNCTION: -SKF_DigestUpdate 4530 1_1_0d EXIST::FUNCTION:SKF -BN_zero_ex 4531 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_copy 4532 1_1_0d EXIST::FUNCTION: -PKCS5_PBE_add 4533 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_set_free 4534 1_1_0d EXIST::FUNCTION: -MD4_Update 4535 1_1_0d EXIST::FUNCTION:MD4 -BN_is_zero 4536 1_1_0d EXIST::FUNCTION: -SAF_GenRandom 4537 1_1_0d EXIST::FUNCTION: -X509_check_ca 4538 1_1_0d EXIST::FUNCTION: -SKF_WaitForDevEvent 4539 1_1_0d EXIST::FUNCTION:SKF -BN_GFP2_copy 4540 1_1_0d EXIST::FUNCTION: -ASN1_STRING_set_default_mask_asc 4541 1_1_0d EXIST::FUNCTION: -DSA_bits 4542 1_1_0d EXIST::FUNCTION:DSA -X509_VERIFY_PARAM_set1 4543 1_1_0d EXIST::FUNCTION: -X509_aux_print 4544 1_1_0d EXIST::FUNCTION: -X509_NAME_print_ex 4545 1_1_0d EXIST::FUNCTION: -d2i_DISPLAYTEXT 4546 1_1_0d EXIST::FUNCTION: -BIO_method_name 4547 1_1_0d EXIST::FUNCTION: -DSA_meth_get_paramgen 4548 1_1_0d EXIST::FUNCTION:DSA -X509_NAME_oneline 4549 1_1_0d EXIST::FUNCTION: -EC_POINT_point2bn 4550 1_1_0d EXIST::FUNCTION:EC -sms4_ecb_encrypt 4551 1_1_0d EXIST::FUNCTION:SMS4 -X509_get_pathlen 4552 1_1_0d EXIST::FUNCTION: -speck_set_decrypt_key64 4553 1_1_0d EXIST::FUNCTION:SPECK -d2i_X509_CINF 4554 1_1_0d EXIST::FUNCTION: -i2d_X509_CRL 4555 1_1_0d EXIST::FUNCTION: -EVP_sha224 4556 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_set_int64 4557 1_1_0d EXIST::FUNCTION: -SAF_RemoveRootCaCertificate 4558 1_1_0d EXIST::FUNCTION: -i2d_PUBKEY_bio 4559 1_1_0d EXIST::FUNCTION: -SAF_RemoveCaCertificate 4560 1_1_0d EXIST::FUNCTION: -i2d_PUBKEY 4561 1_1_0d EXIST::FUNCTION: -TS_STATUS_INFO_new 4562 1_1_0d EXIST::FUNCTION:TS -RSA_meth_get_priv_dec 4563 1_1_0d EXIST::FUNCTION:RSA -RSA_padding_add_PKCS1_OAEP 4564 1_1_0d EXIST::FUNCTION:RSA -X509_digest 4565 1_1_0d EXIST::FUNCTION: -EC_KEY_get_conv_form 4566 1_1_0d EXIST::FUNCTION:EC -UI_get_ex_data 4567 1_1_0d EXIST::FUNCTION:UI -ENGINE_cmd_is_executable 4568 1_1_0d EXIST::FUNCTION:ENGINE -i2d_TS_MSG_IMPRINT_fp 4569 1_1_0d EXIST::FUNCTION:STDIO,TS -BN_BLINDING_convert 4570 1_1_0d EXIST::FUNCTION: -ENGINE_get_default_RSA 4571 1_1_0d EXIST::FUNCTION:ENGINE -ENGINE_register_DH 4572 1_1_0d EXIST::FUNCTION:ENGINE -EVP_MD_meth_get_update 4573 1_1_0d EXIST::FUNCTION: -EVP_DecodeFinal 4574 1_1_0d EXIST::FUNCTION: -DSA_meth_set_bn_mod_exp 4575 1_1_0d EXIST::FUNCTION:DSA -TS_CONF_set_ess_cert_id_chain 4576 1_1_0d EXIST::FUNCTION:TS -X509_find_by_subject 4577 1_1_0d EXIST::FUNCTION: -RSA_OAEP_PARAMS_free 4578 1_1_0d EXIST::FUNCTION:RSA -DSA_print_fp 4579 1_1_0d EXIST::FUNCTION:DSA,STDIO -BN_add_word 4580 1_1_0d EXIST::FUNCTION: -CMS_add0_RevocationInfoChoice 4581 1_1_0d EXIST::FUNCTION:CMS -PEM_write_bio_PUBKEY 4582 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_final 4583 1_1_0d EXIST::FUNCTION: -X509_get0_notBefore 4584 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_seed 4585 1_1_0d EXIST::FUNCTION:EC -EVP_CIPHER_CTX_set_num 4586 1_1_0d EXIST::FUNCTION: -BN_mod_lshift 4587 1_1_0d EXIST::FUNCTION: -SOF_GetCertTrustListAltNames 4588 1_1_0d EXIST::FUNCTION: -ENGINE_init 4589 1_1_0d EXIST::FUNCTION:ENGINE -serpent_set_encrypt_key 4590 1_1_0d EXIST::FUNCTION:SERPENT -BFCiphertextBlock_free 4591 1_1_0d EXIST::FUNCTION:BFIBE -SKF_DeleteApplication 4592 1_1_0d EXIST::FUNCTION:SKF -X509_NAME_cmp 4593 1_1_0d EXIST::FUNCTION: -EVP_PKEY_base_id 4594 1_1_0d EXIST::FUNCTION: -SOF_SignData 4595 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_block_size 4596 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_create_by_txt 4597 1_1_0d EXIST::FUNCTION: -RSA_meth_get_bn_mod_exp 4598 1_1_0d EXIST::FUNCTION:RSA -ENGINE_get_last 4599 1_1_0d EXIST::FUNCTION:ENGINE -AES_ecb_encrypt 4600 1_1_0d EXIST::FUNCTION: -d2i_IPAddressRange 4601 1_1_0d EXIST::FUNCTION:RFC3779 -EC_KEY_new_from_ECCPRIVATEKEYBLOB 4602 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -SOF_SetSignMethod 4603 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_div 4604 1_1_0d EXIST::FUNCTION:EC2M -CMS_SharedInfo_encode 4605 1_1_0d EXIST::FUNCTION:CMS -X509_set_subject_name 4606 1_1_0d EXIST::FUNCTION: -d2i_DSAPrivateKey_fp 4607 1_1_0d EXIST::FUNCTION:DSA,STDIO -ASN1_PRINTABLE_free 4608 1_1_0d EXIST::FUNCTION: -i2d_ASN1_GENERALSTRING 4609 1_1_0d EXIST::FUNCTION: -DSA_do_verify 4610 1_1_0d EXIST::FUNCTION:DSA -X509_INFO_new 4611 1_1_0d EXIST::FUNCTION: -X509_get0_trust_objects 4612 1_1_0d EXIST::FUNCTION: -SOF_ExportExchangeUserCert 4613 1_1_0d EXIST::FUNCTION: -CMS_verify_receipt 4614 1_1_0d EXIST::FUNCTION:CMS -i2d_SM9PrivateKey 4615 1_1_0d EXIST::FUNCTION:SM9 -CRYPTO_secure_malloc_init 4616 1_1_0d EXIST::FUNCTION: -d2i_ASN1_BIT_STRING 4617 1_1_0d EXIST::FUNCTION: -d2i_BASIC_CONSTRAINTS 4618 1_1_0d EXIST::FUNCTION: -SM2CiphertextValue_new 4619 1_1_0d EXIST::FUNCTION:SM2 -RSA_meth_get0_app_data 4620 1_1_0d EXIST::FUNCTION:RSA -EC_KEY_priv2buf 4621 1_1_0d EXIST::FUNCTION:EC -ENGINE_set_default_digests 4622 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_derive 4623 1_1_0d EXIST::FUNCTION: -PKCS12_BAGS_new 4624 1_1_0d EXIST::FUNCTION: -ERR_load_PKCS7_strings 4625 1_1_0d EXIST::FUNCTION: -POLICY_CONSTRAINTS_new 4626 1_1_0d EXIST::FUNCTION: -PKCS7_RECIP_INFO_new 4627 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_EC 4628 1_1_0d EXIST::FUNCTION:ENGINE -d2i_ECCSignature_bio 4629 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -DSA_meth_get_sign 4630 1_1_0d EXIST::FUNCTION:DSA -SCT_set0_log_id 4631 1_1_0d EXIST::FUNCTION:CT -X509_STORE_CTX_set_error 4632 1_1_0d EXIST::FUNCTION: -X509V3_string_free 4633 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_ENC_CONTENT 4634 1_1_0d EXIST::FUNCTION: -TS_CONF_set_crypto_device 4635 1_1_0d EXIST::FUNCTION:ENGINE,TS -d2i_X509_CRL_bio 4636 1_1_0d EXIST::FUNCTION: -PKCS7_dataFinal 4637 1_1_0d EXIST::FUNCTION: -d2i_SCT_LIST 4638 1_1_0d EXIST::FUNCTION:CT -BIO_f_base64 4639 1_1_0d EXIST::FUNCTION: -d2i_IPAddressOrRange 4640 1_1_0d EXIST::FUNCTION:RFC3779 -BN_get0_nist_prime_521 4641 1_1_0d EXIST::FUNCTION: -BIO_asn1_set_prefix 4642 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_pop 4643 1_1_0d EXIST::FUNCTION: -SOF_SignMessage 4644 1_1_0d EXIST::FUNCTION: -X509_CRL_get_ext_by_OBJ 4645 1_1_0d EXIST::FUNCTION: -d2i_ECIESParameters 4646 1_1_0d EXIST::FUNCTION:ECIES -PKCS8_PRIV_KEY_INFO_it 4647 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS8_PRIV_KEY_INFO_it 4647 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_RSA 4648 1_1_0d EXIST::FUNCTION:ENGINE -b2i_PVK_bio 4649 1_1_0d EXIST::FUNCTION:DSA,RC4 -TS_ACCURACY_set_seconds 4650 1_1_0d EXIST::FUNCTION:TS -RSA_PSS_PARAMS_new 4651 1_1_0d EXIST::FUNCTION:RSA -d2i_RSA_OAEP_PARAMS 4652 1_1_0d EXIST::FUNCTION:RSA -IDEA_cbc_encrypt 4653 1_1_0d EXIST::FUNCTION:IDEA -HMAC_CTX_free 4654 1_1_0d EXIST::FUNCTION: -BN_get_params 4655 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -PKCS12_pack_p7encdata 4656 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_free 4657 1_1_0d EXIST::FUNCTION:TS -DIST_POINT_set_dpname 4658 1_1_0d EXIST::FUNCTION: -EVP_aes_128_ecb 4659 1_1_0d EXIST::FUNCTION: -PEM_write_DHxparams 4660 1_1_0d EXIST::FUNCTION:DH,STDIO -EVP_PKEY_meth_get_derive 4661 1_1_0d EXIST::FUNCTION: -SCT_get0_log_id 4662 1_1_0d EXIST::FUNCTION:CT -i2b_PrivateKey_bio 4663 1_1_0d EXIST::FUNCTION:DSA -X509V3_set_conf_lhash 4664 1_1_0d EXIST::FUNCTION: -CMS_add0_crl 4665 1_1_0d EXIST::FUNCTION:CMS -d2i_ECPKParameters 4666 1_1_0d EXIST::FUNCTION:EC -SHA1 4667 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_create0_p8inf 4668 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_NDEF_it 4669 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_OCTET_STRING_NDEF_it 4669 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_rc5_32_12_16_ecb 4670 1_1_0d EXIST::FUNCTION:RC5 -ASIdentifierChoice_new 4671 1_1_0d EXIST::FUNCTION:RFC3779 -CMS_RecipientInfo_kari_set0_pkey 4672 1_1_0d EXIST::FUNCTION:CMS -EVP_aes_128_cbc_hmac_sha256 4673 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_test_flags 4674 1_1_0d EXIST::FUNCTION: -CMS_add1_crl 4675 1_1_0d EXIST::FUNCTION:CMS -ASN1_TYPE_set1 4676 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_get_data 4677 1_1_0d EXIST::FUNCTION: -ERR_func_error_string 4678 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_get0_attrs 4679 1_1_0d EXIST::FUNCTION: -ASN1_mbstring_copy 4680 1_1_0d EXIST::FUNCTION: -EVP_PBE_cleanup 4681 1_1_0d EXIST::FUNCTION: -EC_POINT_is_on_curve 4682 1_1_0d EXIST::FUNCTION:EC -PEM_ASN1_write_bio 4683 1_1_0d EXIST::FUNCTION: -X509_set_issuer_name 4684 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_dup 4685 1_1_0d EXIST::FUNCTION: -HMAC_CTX_reset 4686 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_cleanup 4687 1_1_0d EXIST::FUNCTION: -CMS_SignedData_init 4688 1_1_0d EXIST::FUNCTION:CMS -TS_RESP_get_tst_info 4689 1_1_0d EXIST::FUNCTION:TS -EVP_DigestSignFinal 4690 1_1_0d EXIST::FUNCTION: -BIO_get_retry_BIO 4691 1_1_0d EXIST::FUNCTION: -EC_KEY_set_method 4692 1_1_0d EXIST::FUNCTION:EC -EC_KEY_get_ECCPRIVATEKEYBLOB 4693 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -ASYNC_WAIT_CTX_free 4694 1_1_0d EXIST::FUNCTION: -DSA_get_default_method 4695 1_1_0d EXIST::FUNCTION:DSA -OPENSSL_sk_insert 4696 1_1_0d EXIST::FUNCTION: -CMS_SignerInfo_get0_signer_id 4697 1_1_0d EXIST::FUNCTION:CMS -EVP_PKEY_meth_set_derive 4698 1_1_0d EXIST::FUNCTION: -ASN1_STRING_new 4699 1_1_0d EXIST::FUNCTION: -d2i_CPK_MASTER_SECRET 4700 1_1_0d EXIST::FUNCTION:CPK -TS_RESP_CTX_add_failure_info 4701 1_1_0d EXIST::FUNCTION:TS -BIO_ADDRINFO_family 4702 1_1_0d EXIST::FUNCTION:SOCK -CONF_set_default_method 4703 1_1_0d EXIST::FUNCTION: -EVP_PKEY_id 4704 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_add_flags 4705 1_1_0d EXIST::FUNCTION:TS -X509V3_conf_free 4706 1_1_0d EXIST::FUNCTION: -SOF_VerifySignedDataXML 4707 1_1_0d EXIST::FUNCTION: -ERR_put_error 4708 1_1_0d EXIST::FUNCTION: -BIO_ADDRINFO_address 4709 1_1_0d EXIST::FUNCTION:SOCK -d2i_IPAddressChoice 4710 1_1_0d EXIST::FUNCTION:RFC3779 -ASN1_GENERALSTRING_it 4711 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_GENERALSTRING_it 4711 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_gcd 4712 1_1_0d EXIST::FUNCTION: -DSO_METHOD_openssl 4713 1_1_0d EXIST::FUNCTION: -ASN1_NULL_free 4714 1_1_0d EXIST::FUNCTION: -EVP_sms4_cfb8 4715 1_1_0d EXIST::FUNCTION:SMS4 -SXNET_get_id_ulong 4716 1_1_0d EXIST::FUNCTION: -CMS_data_create 4717 1_1_0d EXIST::FUNCTION:CMS -EVP_md5 4718 1_1_0d EXIST::FUNCTION:MD5 -BIO_meth_get_destroy 4719 1_1_0d EXIST::FUNCTION: -X509_REVOKED_set_revocationDate 4720 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_free 4721 1_1_0d EXIST::FUNCTION: -PEM_write 4722 1_1_0d EXIST::FUNCTION:STDIO -X509V3_add1_i2d 4723 1_1_0d EXIST::FUNCTION: -CMAC_Final 4724 1_1_0d EXIST::FUNCTION:CMAC -X509_NAME_ENTRY_new 4725 1_1_0d EXIST::FUNCTION: -X509_SIG_getm 4726 1_1_0d EXIST::FUNCTION: -d2i_OCSP_RESPONSE 4727 1_1_0d EXIST::FUNCTION:OCSP -ASN1_PCTX_set_flags 4728 1_1_0d EXIST::FUNCTION: -PEM_read_bio_X509_REQ 4729 1_1_0d EXIST::FUNCTION: -i2d_ECDSA_SIG 4730 1_1_0d EXIST::FUNCTION:EC -X509_REQ_free 4731 1_1_0d EXIST::FUNCTION: -FIPS_mode_set 4732 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_RSA 4733 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_STRING_length 4734 1_1_0d EXIST::FUNCTION: -EVP_MD_block_size 4735 1_1_0d EXIST::FUNCTION: -i2d_X509_PUBKEY 4736 1_1_0d EXIST::FUNCTION: -PKCS12_unpack_authsafes 4737 1_1_0d EXIST::FUNCTION: -SKF_DecryptUpdate 4738 1_1_0d EXIST::FUNCTION:SKF -TS_MSG_IMPRINT_set_algo 4739 1_1_0d EXIST::FUNCTION:TS -BIO_meth_set_puts 4740 1_1_0d EXIST::FUNCTION: -SDF_InternalVerify_ECC 4741 1_1_0d EXIST::FUNCTION: -SAF_GetCertificateInfo 4742 1_1_0d EXIST::FUNCTION: -OCSP_SIGNATURE_free 4743 1_1_0d EXIST::FUNCTION:OCSP -i2v_ASN1_BIT_STRING 4744 1_1_0d EXIST::FUNCTION: -X509_STORE_new 4745 1_1_0d EXIST::FUNCTION: -i2d_PBE2PARAM 4746 1_1_0d EXIST::FUNCTION: -DSO_bind_func 4747 1_1_0d EXIST::FUNCTION: -ASN1_BIT_STRING_set 4748 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cfb128 4749 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_arr 4750 1_1_0d EXIST::FUNCTION:EC2M -PKCS12_add_CSPName_asc 4751 1_1_0d EXIST::FUNCTION: -PEM_read_PKCS8 4752 1_1_0d EXIST::FUNCTION:STDIO -RC5_32_encrypt 4753 1_1_0d EXIST::FUNCTION:RC5 -PEM_read 4754 1_1_0d EXIST::FUNCTION:STDIO -RAND_event 4755 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 -ERR_load_COMP_strings 4756 1_1_0d EXIST::FUNCTION:COMP -EVP_PKEY_CTX_get_cb 4757 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_tag 4758 1_1_0d EXIST::FUNCTION: -d2i_SM9PublicParameters 4759 1_1_0d EXIST::FUNCTION:SM9 -DES_set_key_unchecked 4760 1_1_0d EXIST::FUNCTION:DES -i2o_ECPublicKey 4761 1_1_0d EXIST::FUNCTION:EC -EXTENDED_KEY_USAGE_it 4762 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -EXTENDED_KEY_USAGE_it 4762 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -IPAddressRange_it 4763 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressRange_it 4763 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -UI_get0_test_string 4764 1_1_0d EXIST::FUNCTION:UI -TS_REQ_add_ext 4765 1_1_0d EXIST::FUNCTION:TS -ASN1_item_sign_ctx 4766 1_1_0d EXIST::FUNCTION: -SM9_wrap_key 4767 1_1_0d EXIST::FUNCTION:SM9 -BN_nist_mod_224 4768 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_extract_public_key 4769 1_1_0d EXIST::FUNCTION:CPK -KDF_get_x9_63 4770 1_1_0d EXIST::FUNCTION: -AES_ige_encrypt 4771 1_1_0d EXIST::FUNCTION: -UI_new_method 4772 1_1_0d EXIST::FUNCTION:UI -X509V3_add_value_int 4773 1_1_0d EXIST::FUNCTION: -PEM_read_bio_DSAPrivateKey 4774 1_1_0d EXIST::FUNCTION:DSA -PEM_write_PrivateKey 4775 1_1_0d EXIST::FUNCTION:STDIO -BN_solinas2bn 4776 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKAC_free 4777 1_1_0d EXIST::FUNCTION: -PEM_read_bio_Parameters 4778 1_1_0d EXIST::FUNCTION: -i2d_SCT_LIST 4779 1_1_0d EXIST::FUNCTION:CT -EVP_blake2b512 4780 1_1_0d EXIST::FUNCTION:BLAKE2 -PEM_read_PKCS8_PRIV_KEY_INFO 4781 1_1_0d EXIST::FUNCTION:STDIO -ERR_get_state 4782 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_ctrl_str 4783 1_1_0d EXIST::FUNCTION: +ERR_load_PKCS7_strings 128 1_1_0d EXIST::FUNCTION: +X509_STORE_add_cert 129 1_1_0d EXIST::FUNCTION: +d2i_ASN1_GENERALIZEDTIME 130 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_digests 131 1_1_0d EXIST::FUNCTION:ENGINE +DH_generate_key 132 1_1_0d EXIST::FUNCTION:DH +UI_construct_prompt 133 1_1_0d EXIST::FUNCTION:UI +ENGINE_get_pkey_meths 134 1_1_0d EXIST::FUNCTION:ENGINE +X509_REQ_delete_attr 135 1_1_0d EXIST::FUNCTION: +CONF_get1_default_config_file 136 1_1_0d EXIST::FUNCTION: +X509v3_asid_validate_path 137 1_1_0d EXIST::FUNCTION:RFC3779 +SAF_SM2_DecodeEnvelopedData 138 1_1_0d EXIST::FUNCTION: +DH_clear_flags 139 1_1_0d EXIST::FUNCTION:DH +EVP_aes_128_wrap_pad 140 1_1_0d EXIST::FUNCTION: +EC_POINT_cmp_fppoint 141 1_1_0d EXIST::FUNCTION: +CONF_modules_finish 142 1_1_0d EXIST::FUNCTION: +i2d_BB1PrivateKeyBlock 143 1_1_0d EXIST::FUNCTION:BB1IBE +PKCS7_ENCRYPT_it 144 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ENCRYPT_it 144 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_STORE_CTX_get_cleanup 145 1_1_0d EXIST::FUNCTION: +X509v3_get_ext_by_critical 146 1_1_0d EXIST::FUNCTION: +CMS_add0_recipient_password 147 1_1_0d EXIST::FUNCTION:CMS +ASN1_digest 148 1_1_0d EXIST::FUNCTION: +DSA_generate_parameters_ex 149 1_1_0d EXIST::FUNCTION:DSA +BN_rshift 150 1_1_0d EXIST::FUNCTION: +PEM_read_bio_RSAPrivateKey 151 1_1_0d EXIST::FUNCTION:RSA +i2d_IPAddressChoice 152 1_1_0d EXIST::FUNCTION:RFC3779 +OCSP_set_max_response_length 153 1_1_0d EXIST::FUNCTION:OCSP +CAST_cbc_encrypt 154 1_1_0d EXIST::FUNCTION:CAST +PKCS7_ENVELOPE_new 155 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_extension_cb 156 1_1_0d EXIST::FUNCTION:TS +EVP_blake2b512 157 1_1_0d EXIST::FUNCTION:BLAKE2 +UI_get0_test_string 158 1_1_0d EXIST::FUNCTION:UI +HMAC_CTX_copy 159 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_copy 160 1_1_0d EXIST::FUNCTION: +PEM_write_bio_DHxparams 161 1_1_0d EXIST::FUNCTION:DH +EVP_sms4_wrap_pad 162 1_1_0d EXIST::FUNCTION:SMS4 +X509_VERIFY_PARAM_inherit 163 1_1_0d EXIST::FUNCTION: +BIO_sock_non_fatal_error 164 1_1_0d EXIST::FUNCTION:SOCK +BN_free 165 1_1_0d EXIST::FUNCTION: +X509_add1_reject_object 166 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_DSA 167 1_1_0d EXIST::FUNCTION:ENGINE +X509_REQ_set_version 168 1_1_0d EXIST::FUNCTION: +SKF_WriteFile 169 1_1_0d EXIST::FUNCTION:SKF +TS_RESP_create_response 170 1_1_0d EXIST::FUNCTION:TS +BFPrivateKeyBlock_free 171 1_1_0d EXIST::FUNCTION:BFIBE +X509v3_addr_validate_resource_set 172 1_1_0d EXIST::FUNCTION:RFC3779 +DSA_meth_set_bn_mod_exp 173 1_1_0d EXIST::FUNCTION:DSA +PEM_write_PKCS8PrivateKey 174 1_1_0d EXIST::FUNCTION:STDIO +SM2_verify 175 1_1_0d EXIST::FUNCTION:SM2 +X509_REQ_get_attr_by_NID 176 1_1_0d EXIST::FUNCTION: +DES_cbc_cksum 177 1_1_0d EXIST::FUNCTION:DES +BUF_MEM_new_ex 178 1_1_0d EXIST::FUNCTION: +BN_mod_sub_quick 179 1_1_0d EXIST::FUNCTION: +X509_REQ_new 180 1_1_0d EXIST::FUNCTION: +EVP_PKEY_add1_attr_by_txt 181 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNED_free 182 1_1_0d EXIST::FUNCTION: +X509V3_extensions_print 183 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_set0_key 184 1_1_0d EXIST::FUNCTION:CMS +X509_policy_tree_get0_user_policies 185 1_1_0d EXIST::FUNCTION: +X509_NAME_digest 186 1_1_0d EXIST::FUNCTION: +CMS_unsigned_add1_attr 187 1_1_0d EXIST::FUNCTION:CMS +X509_VERIFY_PARAM_set_depth 188 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_get_cleanup 189 1_1_0d EXIST::FUNCTION: +IDEA_cbc_encrypt 190 1_1_0d EXIST::FUNCTION:IDEA +EVP_des_ede_ofb 191 1_1_0d EXIST::FUNCTION:DES +EVP_aes_128_ccm 192 1_1_0d EXIST::FUNCTION: +DSA_meth_get_mod_exp 193 1_1_0d EXIST::FUNCTION:DSA +SKF_ExtECCEncrypt 194 1_1_0d EXIST::FUNCTION:SKF +PEM_write_bio_DSAparams 195 1_1_0d EXIST::FUNCTION:DSA +SKF_GetContainerType 196 1_1_0d EXIST::FUNCTION:SKF +X509_CRL_sign_ctx 197 1_1_0d EXIST::FUNCTION: +HMAC_Final 198 1_1_0d EXIST::FUNCTION: +HMAC_CTX_reset 199 1_1_0d EXIST::FUNCTION: +EVP_PKEY_cmp_parameters 200 1_1_0d EXIST::FUNCTION: +SKF_ReadFile 201 1_1_0d EXIST::FUNCTION:SKF +RAND_set_rand_method 202 1_1_0d EXIST::FUNCTION: +EVP_PKEY_new 203 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_new 204 1_1_0d EXIST::FUNCTION: +DSA_meth_new 205 1_1_0d EXIST::FUNCTION:DSA +PAILLIER_new 206 1_1_0d EXIST::FUNCTION:PAILLIER +RSA_meth_set_sign 207 1_1_0d EXIST::FUNCTION:RSA +ECPARAMETERS_it 208 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC +ECPARAMETERS_it 208 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC +GENERAL_NAME_cmp 209 1_1_0d EXIST::FUNCTION: +RSA_get_method 210 1_1_0d EXIST::FUNCTION:RSA +EC_KEY_free 211 1_1_0d EXIST::FUNCTION:EC +EVP_CIPHER_CTX_set_key_length 212 1_1_0d EXIST::FUNCTION: +PROXY_POLICY_it 213 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PROXY_POLICY_it 213 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_METHOD_get_encrypt 214 1_1_0d EXIST::FUNCTION:SM2 +d2i_NETSCAPE_CERT_SEQUENCE 215 1_1_0d EXIST::FUNCTION: +EC_KEY_get_ECCPUBLICKEYBLOB 216 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +CMS_SignerInfo_sign 217 1_1_0d EXIST::FUNCTION:CMS +IPAddressChoice_free 218 1_1_0d EXIST::FUNCTION:RFC3779 +RIPEMD160_Transform 219 1_1_0d EXIST::FUNCTION:RMD160 +RSA_set_RSAPRIVATEKEYBLOB 220 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +WHIRLPOOL 221 1_1_0d EXIST::FUNCTION:WHIRLPOOL +BN_GFP2_zero 222 1_1_0d EXIST::FUNCTION: +d2i_RSA_OAEP_PARAMS 223 1_1_0d EXIST::FUNCTION:RSA +ASYNC_WAIT_CTX_new 224 1_1_0d EXIST::FUNCTION: +i2d_ASN1_OCTET_STRING 225 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_purpose_inherit 226 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_get 227 1_1_0d EXIST::FUNCTION: +DSO_free 228 1_1_0d EXIST::FUNCTION: +BIO_meth_set_ctrl 229 1_1_0d EXIST::FUNCTION: +i2d_DHxparams 230 1_1_0d EXIST::FUNCTION:DH +DH_set_method 231 1_1_0d EXIST::FUNCTION:DH +X509_keyid_set1 232 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_nonce 233 1_1_0d EXIST::FUNCTION:TS +OCSP_RESPID_set_by_name 234 1_1_0d EXIST::FUNCTION:OCSP +SKF_GetPINInfo 235 1_1_0d EXIST::FUNCTION:SKF +BIO_meth_get_gets 236 1_1_0d EXIST::FUNCTION: +TS_RESP_get_status_info 237 1_1_0d EXIST::FUNCTION:TS +CMS_data 238 1_1_0d EXIST::FUNCTION:CMS +BN_GFP2_equ 239 1_1_0d EXIST::FUNCTION: +X509_alias_set1 240 1_1_0d EXIST::FUNCTION: +PROXY_CERT_INFO_EXTENSION_free 241 1_1_0d EXIST::FUNCTION: +TS_RESP_get_tst_info 242 1_1_0d EXIST::FUNCTION:TS +USERNOTICE_it 243 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +USERNOTICE_it 243 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PKCS12_BAGS_new 244 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_num_items 245 1_1_0d EXIST::FUNCTION: +ASIdentifiers_new 246 1_1_0d EXIST::FUNCTION:RFC3779 +d2i_BB1MasterSecret 247 1_1_0d EXIST::FUNCTION:BB1IBE +ASN1_item_pack 248 1_1_0d EXIST::FUNCTION: +ASYNC_WAIT_CTX_clear_fd 249 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_new 250 1_1_0d EXIST::FUNCTION:TS +ASN1_item_i2d_bio 251 1_1_0d EXIST::FUNCTION: +EC_KEY_oct2priv 252 1_1_0d EXIST::FUNCTION:EC +EVP_SealFinal 253 1_1_0d EXIST::FUNCTION:RSA +CRYPTO_gcm128_new 254 1_1_0d EXIST::FUNCTION: +speck_encrypt16 255 1_1_0d EXIST::FUNCTION:SPECK +ASN1_SEQUENCE_ANY_it 256 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_SEQUENCE_ANY_it 256 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_X509_NAME_ENTRY 257 1_1_0d EXIST::FUNCTION: +PKCS7_DIGEST_it 258 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_DIGEST_it 258 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_OBJECT_up_ref_count 259 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_set_down_load 260 1_1_0d EXIST::FUNCTION: +ASIdOrRange_new 261 1_1_0d EXIST::FUNCTION:RFC3779 +CMS_RecipientInfo_decrypt 262 1_1_0d EXIST::FUNCTION:CMS +ENGINE_set_name 263 1_1_0d EXIST::FUNCTION:ENGINE +EVP_CIPHER_CTX_set_app_data 264 1_1_0d EXIST::FUNCTION: +X509_digest 265 1_1_0d EXIST::FUNCTION: +SAF_DestroySymmAlgoObj 266 1_1_0d EXIST::FUNCTION: +BB1PublicParameters_free 267 1_1_0d EXIST::FUNCTION:BB1IBE +X509_LOOKUP_ctrl 268 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get_attr_count 269 1_1_0d EXIST::FUNCTION: +POLICY_MAPPING_new 270 1_1_0d EXIST::FUNCTION: +DES_ofb64_encrypt 271 1_1_0d EXIST::FUNCTION:DES +EC_GROUP_get_mont_data 272 1_1_0d EXIST::FUNCTION:EC +EC_GROUP_get_type1curve_eta 273 1_1_0d EXIST::FUNCTION: +X509v3_addr_inherits 274 1_1_0d EXIST::FUNCTION:RFC3779 +ASN1_OCTET_STRING_new 275 1_1_0d EXIST::FUNCTION: +RAND_screen 276 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 +ERR_reason_error_string 277 1_1_0d EXIST::FUNCTION: +sms4_encrypt 278 1_1_0d EXIST::FUNCTION:SMS4 +d2i_DIST_POINT 279 1_1_0d EXIST::FUNCTION: +X509_get0_notAfter 280 1_1_0d EXIST::FUNCTION: +d2i_DISPLAYTEXT 281 1_1_0d EXIST::FUNCTION: +BN_init 282 1_1_0d EXIST::FUNCTION: +ENGINE_get_default_DH 283 1_1_0d EXIST::FUNCTION:ENGINE +OBJ_obj2nid 284 1_1_0d EXIST::FUNCTION: +ERR_load_EVP_strings 285 1_1_0d EXIST::FUNCTION: +SDF_InternalEncrypt_ECC 286 1_1_0d EXIST::FUNCTION: +BIO_set_shutdown 287 1_1_0d EXIST::FUNCTION: +ENGINE_cmd_is_executable 288 1_1_0d EXIST::FUNCTION:ENGINE +EC_KEY_new_from_ECCPUBLICKEYBLOB 289 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +TS_RESP_new 290 1_1_0d EXIST::FUNCTION:TS +d2i_DSAPrivateKey_bio 291 1_1_0d EXIST::FUNCTION:DSA +SKF_MacInit 292 1_1_0d EXIST::FUNCTION:SKF +SOF_GetLastError 293 1_1_0d EXIST::FUNCTION: +ERR_load_OBJ_strings 294 1_1_0d EXIST::FUNCTION: +OCSP_RESPDATA_new 295 1_1_0d EXIST::FUNCTION:OCSP +SKF_CreateContainer 296 1_1_0d EXIST::FUNCTION:SKF +TS_TST_INFO_get_version 297 1_1_0d EXIST::FUNCTION:TS +EVP_ripemd160 298 1_1_0d EXIST::FUNCTION:RMD160 +X509_INFO_free 299 1_1_0d EXIST::FUNCTION: +d2i_ASN1_UINTEGER 300 1_1_0d EXIST::FUNCTION: +i2d_BB1MasterSecret 301 1_1_0d EXIST::FUNCTION:BB1IBE +TS_REQ_set_version 302 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_get0_SM9_MASTER 303 1_1_0d EXIST::FUNCTION:SM9 +TXT_DB_get_by_index 304 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_test_flags 305 1_1_0d EXIST::FUNCTION: +BN_GFP2_div_bn 306 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_keygen 307 1_1_0d EXIST::FUNCTION: +X509_check_private_key 308 1_1_0d EXIST::FUNCTION: +TS_RESP_print_bio 309 1_1_0d EXIST::FUNCTION:TS +EVP_sha256 310 1_1_0d EXIST::FUNCTION: +CAST_encrypt 311 1_1_0d EXIST::FUNCTION:CAST +EVP_MD_CTX_copy_ex 312 1_1_0d EXIST::FUNCTION: +CMS_add0_crl 313 1_1_0d EXIST::FUNCTION:CMS +DH_compute_key 314 1_1_0d EXIST::FUNCTION:DH +EVP_PKEY_meth_set_verifyctx 315 1_1_0d EXIST::FUNCTION: +PKCS7_dataInit 316 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_time 317 1_1_0d EXIST::FUNCTION: +d2i_DSAPrivateKey 318 1_1_0d EXIST::FUNCTION:DSA +ERR_peek_error 319 1_1_0d EXIST::FUNCTION: +sm3_hmac_update 320 1_1_0d EXIST::FUNCTION:SM3 +ZUC_128eea3 321 1_1_0d EXIST::FUNCTION:ZUC +PKCS5_pbe2_set 322 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_free 323 1_1_0d EXIST::FUNCTION:OCSP +TS_REQ_get_ext 324 1_1_0d EXIST::FUNCTION:TS +ECDSA_SIG_get_ECCSignature 325 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +X509_certificate_type 326 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_EC_KEY 327 1_1_0d EXIST::FUNCTION:EC +EC_GROUP_set_asn1_flag 328 1_1_0d EXIST::FUNCTION:EC +BIO_get_host_ip 329 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +SOF_SignDataXML 330 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext 331 1_1_0d EXIST::FUNCTION:OCSP +BIO_f_reliable 332 1_1_0d EXIST::FUNCTION: +X509_CRL_get_nextUpdate 333 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +EVP_CIPHER_CTX_get_sgd 334 1_1_0d EXIST::FUNCTION:GMAPI +X509_get_default_cert_area 335 1_1_0d EXIST::FUNCTION: +X509V3_EXT_conf 336 1_1_0d EXIST::FUNCTION: +EC_GROUP_get0_generator 337 1_1_0d EXIST::FUNCTION:EC +SAF_RemoveCaCertificate 338 1_1_0d EXIST::FUNCTION: +d2i_ECParameters 339 1_1_0d EXIST::FUNCTION:EC +BN_set_flags 340 1_1_0d EXIST::FUNCTION: +sms4_encrypt_8blocks 341 1_1_0d EXIST::FUNCTION:SMS4 +PKCS7_RECIP_INFO_get0_alg 342 1_1_0d EXIST::FUNCTION: +POLICYINFO_free 343 1_1_0d EXIST::FUNCTION: +ERR_load_UI_strings 344 1_1_0d EXIST::FUNCTION:UI +X509V3_EXT_add_list 345 1_1_0d EXIST::FUNCTION: +EC_KEY_new 346 1_1_0d EXIST::FUNCTION:EC +EVP_CIPHER_meth_set_init 347 1_1_0d EXIST::FUNCTION: +SM2_decrypt 348 1_1_0d EXIST::FUNCTION:SM2 +EVP_aes_192_cfb1 349 1_1_0d EXIST::FUNCTION: +EC_KEY_clear_flags 350 1_1_0d EXIST::FUNCTION:EC +DES_set_odd_parity 351 1_1_0d EXIST::FUNCTION:DES +EVP_PKEY_CTX_get_keygen_info 352 1_1_0d EXIST::FUNCTION: +CRYPTO_clear_free 353 1_1_0d EXIST::FUNCTION: +ASN1_tag2str 354 1_1_0d EXIST::FUNCTION: +ASN1_STRING_print 355 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_status_info_cond 356 1_1_0d EXIST::FUNCTION:TS +SKF_DecryptInit 357 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_set1_PAILLIER 358 1_1_0d EXIST::FUNCTION:PAILLIER +SHA1_Final 359 1_1_0d EXIST::FUNCTION: +ERR_load_EC_strings 360 1_1_0d EXIST::FUNCTION:EC +ENGINE_set_ex_data 361 1_1_0d EXIST::FUNCTION:ENGINE +PEM_write_ECPKParameters 362 1_1_0d EXIST::FUNCTION:EC,STDIO +OCSP_SINGLERESP_get_ext_by_critical 363 1_1_0d EXIST::FUNCTION:OCSP +DH_new 364 1_1_0d EXIST::FUNCTION:DH +EVP_PKEY_asn1_find_str 365 1_1_0d EXIST::FUNCTION: +PKCS12_unpack_p7encdata 366 1_1_0d EXIST::FUNCTION: +SXNET_new 367 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_add1_ext_i2d 368 1_1_0d EXIST::FUNCTION:OCSP +OPENSSL_sk_pop_free 369 1_1_0d EXIST::FUNCTION: +i2d_X509_REQ_fp 370 1_1_0d EXIST::FUNCTION:STDIO +IPAddressOrRange_new 371 1_1_0d EXIST::FUNCTION:RFC3779 +SOF_GetXMLSignatureInfo 372 1_1_0d EXIST::FUNCTION: +RSA_OAEP_PARAMS_it 373 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSA_OAEP_PARAMS_it 373 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +PEM_write_RSAPrivateKey 374 1_1_0d EXIST::FUNCTION:RSA,STDIO +ASN1_IA5STRING_it 375 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_IA5STRING_it 375 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BIO_s_datagram_sctp 376 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +BIO_listen 377 1_1_0d EXIST::FUNCTION:SOCK +SAF_MacUpdate 378 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_get1_ext_d2i 379 1_1_0d EXIST::FUNCTION:OCSP +RC2_decrypt 380 1_1_0d EXIST::FUNCTION:RC2 +SAF_EccVerifySignFile 381 1_1_0d EXIST::FUNCTION:SAF +ECDSA_sign_ex 382 1_1_0d EXIST::FUNCTION:EC +Camellia_ctr128_encrypt 383 1_1_0d EXIST::FUNCTION:CAMELLIA +TS_TST_INFO_get_ext_d2i 384 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_meth_set_init 385 1_1_0d EXIST::FUNCTION: +X509_POLICY_NODE_print 386 1_1_0d EXIST::FUNCTION: +X509_time_adj_ex 387 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_copy 388 1_1_0d EXIST::FUNCTION: +OPENSSL_strlcpy 389 1_1_0d EXIST::FUNCTION: +X509_get_version 390 1_1_0d EXIST::FUNCTION: +RSA_size 391 1_1_0d EXIST::FUNCTION:RSA +SAF_SymmEncryptUpdate 392 1_1_0d EXIST::FUNCTION: +SDF_ExternalVerify_ECC 393 1_1_0d EXIST::FUNCTION: +ASN1_ENUMERATED_set_int64 394 1_1_0d EXIST::FUNCTION: +CRYPTO_cts128_decrypt_block 395 1_1_0d EXIST::FUNCTION: +UI_ctrl 396 1_1_0d EXIST::FUNCTION:UI +X509_PURPOSE_get_trust 397 1_1_0d EXIST::FUNCTION: +ENGINE_get_cipher_engine 398 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_get_pkey_meth 399 1_1_0d EXIST::FUNCTION:ENGINE +TS_CONF_set_ordering 400 1_1_0d EXIST::FUNCTION:TS +ERR_load_BUF_strings 401 1_1_0d EXIST::FUNCTION: +CMS_set1_eContentType 402 1_1_0d EXIST::FUNCTION:CMS +ENGINE_set_default_ciphers 403 1_1_0d EXIST::FUNCTION:ENGINE +OPENSSL_LH_strhash 404 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_count 405 1_1_0d EXIST::FUNCTION: +CMS_get0_SignerInfos 406 1_1_0d EXIST::FUNCTION:CMS +PEM_read_SM9PrivateKey 407 1_1_0d EXIST::FUNCTION:SM9,STDIO +i2d_ASN1_BIT_STRING 408 1_1_0d EXIST::FUNCTION: +d2i_RSAPublicKey 409 1_1_0d EXIST::FUNCTION:RSA +d2i_ECCSignature_bio 410 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +X509v3_asid_canonize 411 1_1_0d EXIST::FUNCTION:RFC3779 +ASN1_NULL_new 412 1_1_0d EXIST::FUNCTION: +X509_REVOKED_delete_ext 413 1_1_0d EXIST::FUNCTION: +SCT_print 414 1_1_0d EXIST::FUNCTION:CT +EVP_PKEY_verify 415 1_1_0d EXIST::FUNCTION: +X509_TRUST_get_trust 416 1_1_0d EXIST::FUNCTION: +SOF_ValidateCert 417 1_1_0d EXIST::FUNCTION: +ERR_load_BIO_strings 418 1_1_0d EXIST::FUNCTION: +i2d_BFCiphertextBlock 419 1_1_0d EXIST::FUNCTION:BFIBE +SKF_LoadLibrary 420 1_1_0d EXIST::FUNCTION:SKF +X509_get_ext_by_critical 421 1_1_0d EXIST::FUNCTION: +SAF_SM2_EncodeSignedData 422 1_1_0d EXIST::FUNCTION: +SCT_LIST_print 423 1_1_0d EXIST::FUNCTION:CT +d2i_NETSCAPE_SPKAC 424 1_1_0d EXIST::FUNCTION: +PKCS7_free 425 1_1_0d EXIST::FUNCTION: +CMS_ReceiptRequest_it 426 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS +CMS_ReceiptRequest_it 426 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS +RSA_padding_check_PKCS1_OAEP_mgf1 427 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_CTX_new 428 1_1_0d EXIST::FUNCTION: +X509_CRL_match 429 1_1_0d EXIST::FUNCTION: +SAF_GetRsaPublicKey 430 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_get_by_id 431 1_1_0d EXIST::FUNCTION: +ESS_ISSUER_SERIAL_free 432 1_1_0d EXIST::FUNCTION:TS +X509_CRL_delete_ext 433 1_1_0d EXIST::FUNCTION: +EC_KEY_priv2buf 434 1_1_0d EXIST::FUNCTION:EC +OCSP_SERVICELOC_it 435 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_SERVICELOC_it 435 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +RSA_get_RSArefPublicKey 436 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +d2i_AutoPrivateKey 437 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_set_num 438 1_1_0d EXIST::FUNCTION: +ASN1_item_print 439 1_1_0d EXIST::FUNCTION: +X509_CRL_get0_nextUpdate 440 1_1_0d EXIST::FUNCTION: +i2d_OCSP_BASICRESP 441 1_1_0d EXIST::FUNCTION:OCSP +UI_add_input_boolean 442 1_1_0d EXIST::FUNCTION:UI +IPAddressOrRange_it 443 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressOrRange_it 443 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +BIO_int_ctrl 444 1_1_0d EXIST::FUNCTION: +X509_get1_ocsp 445 1_1_0d EXIST::FUNCTION: +EVP_OpenFinal 446 1_1_0d EXIST::FUNCTION:RSA +ENGINE_get_default_EC 447 1_1_0d EXIST::FUNCTION:ENGINE +BFPrivateKeyBlock_new 448 1_1_0d EXIST::FUNCTION:BFIBE +EVP_ENCODE_CTX_new 449 1_1_0d EXIST::FUNCTION: +DH_get0_engine 450 1_1_0d EXIST::FUNCTION:DH +NETSCAPE_CERT_SEQUENCE_new 451 1_1_0d EXIST::FUNCTION: +ASRange_it 452 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASRange_it 452 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +SDF_PrintRSAPrivateKey 453 1_1_0d EXIST::FUNCTION:SDF +BN_set_negative 454 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_stats_bio 455 1_1_0d EXIST::FUNCTION: +EVP_PKEY_sign 456 1_1_0d EXIST::FUNCTION: +i2d_ASIdOrRange 457 1_1_0d EXIST::FUNCTION:RFC3779 +X509_NAME_ENTRY_free 458 1_1_0d EXIST::FUNCTION: +BIO_get_new_index 459 1_1_0d EXIST::FUNCTION: +PAILLIER_generate_key 460 1_1_0d EXIST::FUNCTION:PAILLIER +X509_REQ_print_ex 461 1_1_0d EXIST::FUNCTION: +EVP_PBE_alg_add 462 1_1_0d EXIST::FUNCTION: +BIO_fd_non_fatal_error 463 1_1_0d EXIST::FUNCTION: +TS_CONF_set_policies 464 1_1_0d EXIST::FUNCTION:TS +CMS_RecipientInfo_kari_orig_id_cmp 465 1_1_0d EXIST::FUNCTION:CMS +NETSCAPE_SPKAC_free 466 1_1_0d EXIST::FUNCTION: +EVP_aes_192_cfb8 467 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_create_crl 468 1_1_0d EXIST::FUNCTION: +ERR_load_CPK_strings 469 1_1_0d EXIST::FUNCTION:CPK +SDF_FreeECCCipher 470 1_1_0d EXIST::FUNCTION:SDF +BN_GF2m_mod_solve_quad_arr 471 1_1_0d EXIST::FUNCTION:EC2M +X509V3_parse_list 472 1_1_0d EXIST::FUNCTION: +BIO_meth_free 473 1_1_0d EXIST::FUNCTION: +b2i_PrivateKey_bio 474 1_1_0d EXIST::FUNCTION:DSA +SM2_encrypt 475 1_1_0d EXIST::FUNCTION:SM2 +ASN1_INTEGER_new 476 1_1_0d EXIST::FUNCTION: +i2d_ASN1_PRINTABLESTRING 477 1_1_0d EXIST::FUNCTION: +i2d_ECCSignature_fp 478 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO +EVP_MD_CTX_new 479 1_1_0d EXIST::FUNCTION: +BFPublicParameters_new 480 1_1_0d EXIST::FUNCTION:BFIBE +X509at_add1_attr 481 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_ofb 482 1_1_0d EXIST::FUNCTION:CAMELLIA +CMS_signed_get0_data_by_OBJ 483 1_1_0d EXIST::FUNCTION:CMS +i2v_GENERAL_NAME 484 1_1_0d EXIST::FUNCTION: +d2i_EC_PUBKEY_bio 485 1_1_0d EXIST::FUNCTION:EC +ESS_SIGNING_CERT_dup 486 1_1_0d EXIST::FUNCTION:TS +ECIES_CIPHERTEXT_VALUE_ciphertext_length 487 1_1_0d EXIST::FUNCTION:ECIES +PEM_read_DSAparams 488 1_1_0d EXIST::FUNCTION:DSA,STDIO +PKCS5_v2_PBE_keyivgen 489 1_1_0d EXIST::FUNCTION: +d2i_ASN1_GENERALSTRING 490 1_1_0d EXIST::FUNCTION: +SKF_CloseContainer 491 1_1_0d EXIST::FUNCTION:SKF +PEM_write_bio_ECPrivateKey 492 1_1_0d EXIST::FUNCTION:EC +BB1CiphertextBlock_free 493 1_1_0d EXIST::FUNCTION:BB1IBE +X509_PUBKEY_new 494 1_1_0d EXIST::FUNCTION: +d2i_PrivateKey 495 1_1_0d EXIST::FUNCTION: +EVP_PKEY_sign_init 496 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_set_decrypt 497 1_1_0d EXIST::FUNCTION:SM2 +EVP_SignFinal 498 1_1_0d EXIST::FUNCTION: +RSA_verify_PKCS1_PSS 499 1_1_0d EXIST::FUNCTION:RSA +ASN1_parse_dump 500 1_1_0d EXIST::FUNCTION: +EC_KEY_get_flags 501 1_1_0d EXIST::FUNCTION:EC +ASN1_STRING_type 502 1_1_0d EXIST::FUNCTION: +UI_get0_output_string 503 1_1_0d EXIST::FUNCTION:UI +SAF_Base64_DestroyBase64Obj 504 1_1_0d EXIST::FUNCTION: +AES_options 505 1_1_0d EXIST::FUNCTION: +ECIES_PARAMS_get_mac 506 1_1_0d EXIST::FUNCTION:ECIES +d2i_RSAPublicKey_bio 507 1_1_0d EXIST::FUNCTION:RSA +OCSP_CRLID_free 508 1_1_0d EXIST::FUNCTION:OCSP +EVP_aes_128_cbc_hmac_sha256 509 1_1_0d EXIST::FUNCTION: +ASN1_STRING_data 510 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +ASN1_STRING_new 511 1_1_0d EXIST::FUNCTION: +NAME_CONSTRAINTS_free 512 1_1_0d EXIST::FUNCTION: +DSA_meth_set_verify 513 1_1_0d EXIST::FUNCTION:DSA +PKCS7_SIGNER_INFO_get0_algs 514 1_1_0d EXIST::FUNCTION: +X509_TRUST_cleanup 515 1_1_0d EXIST::FUNCTION: +EVP_PBE_alg_add_type 516 1_1_0d EXIST::FUNCTION: +BIO_ADDRINFO_next 517 1_1_0d EXIST::FUNCTION:SOCK +SAF_GenEccKeyPair 518 1_1_0d EXIST::FUNCTION: +SHA512_Final 519 1_1_0d EXIST:!VMSVAX:FUNCTION: +i2d_X509_PUBKEY 520 1_1_0d EXIST::FUNCTION: +EC_POINT_set_compressed_coordinates_GFp 521 1_1_0d EXIST::FUNCTION:EC +X509_trust_clear 522 1_1_0d EXIST::FUNCTION: +EVP_aes_128_wrap 523 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_ecb 524 1_1_0d EXIST::FUNCTION:CAMELLIA +BIO_get_callback_arg 525 1_1_0d EXIST::FUNCTION: +d2i_PaillierPrivateKey 526 1_1_0d EXIST::FUNCTION:PAILLIER +PEM_dek_info 527 1_1_0d EXIST::FUNCTION: +BB1CiphertextBlock_new 528 1_1_0d EXIST::FUNCTION:BB1IBE +SDF_GenerateKeyWithEPK_RSA 529 1_1_0d EXIST::FUNCTION: +DSA_do_sign 530 1_1_0d EXIST::FUNCTION:DSA +SAF_MacFinal 531 1_1_0d EXIST::FUNCTION: +i2d_RSA_PUBKEY 532 1_1_0d EXIST::FUNCTION:RSA +i2d_DIST_POINT_NAME 533 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get_sgd 534 1_1_0d EXIST::FUNCTION:GMAPI +BN_GFP2_is_zero 535 1_1_0d EXIST::FUNCTION: +FpPoint_new 536 1_1_0d EXIST::FUNCTION: +BF_options 537 1_1_0d EXIST::FUNCTION:BF +EVP_camellia_192_ofb 538 1_1_0d EXIST::FUNCTION:CAMELLIA +i2b_PrivateKey_bio 539 1_1_0d EXIST::FUNCTION:DSA +X509_NAME_get_index_by_OBJ 540 1_1_0d EXIST::FUNCTION: +BIO_new_dgram 541 1_1_0d EXIST::FUNCTION:DGRAM +OPENSSL_LH_stats 542 1_1_0d EXIST::FUNCTION:STDIO +EC_KEY_set_private_key 543 1_1_0d EXIST::FUNCTION:EC +TS_REQ_delete_ext 544 1_1_0d EXIST::FUNCTION:TS +i2d_IPAddressFamily 545 1_1_0d EXIST::FUNCTION:RFC3779 +BN_mul 546 1_1_0d EXIST::FUNCTION: +i2d_X509_ATTRIBUTE 547 1_1_0d EXIST::FUNCTION: +i2d_PKCS7 548 1_1_0d EXIST::FUNCTION: +i2d_TS_RESP_fp 549 1_1_0d EXIST::FUNCTION:STDIO,TS +d2i_IPAddressOrRange 550 1_1_0d EXIST::FUNCTION:RFC3779 +MDC2_Update 551 1_1_0d EXIST::FUNCTION:MDC2 +PKCS12_SAFEBAG_new 552 1_1_0d EXIST::FUNCTION: +X509V3_EXT_i2d 553 1_1_0d EXIST::FUNCTION: +serpent_decrypt 554 1_1_0d EXIST::FUNCTION:SERPENT +BN_GF2m_mod_div_arr 555 1_1_0d EXIST::FUNCTION:EC2M +BN_get0_nist_prime_192 556 1_1_0d EXIST::FUNCTION: +EC_POINT_dup 557 1_1_0d EXIST::FUNCTION:EC +ENGINE_register_all_EC 558 1_1_0d EXIST::FUNCTION:ENGINE +SCT_set1_log_id 559 1_1_0d EXIST::FUNCTION:CT +SDF_UnloadLibrary 560 1_1_0d EXIST::FUNCTION:SDF +o2i_ECPublicKey 561 1_1_0d EXIST::FUNCTION:EC +ERR_peek_error_line_data 562 1_1_0d EXIST::FUNCTION: +d2i_ECCCIPHERBLOB 563 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +OPENSSL_sk_is_sorted 564 1_1_0d EXIST::FUNCTION: +d2i_ECCCipher_fp 565 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO +CONF_imodule_get_value 566 1_1_0d EXIST::FUNCTION: +EVP_idea_cfb64 567 1_1_0d EXIST::FUNCTION:IDEA +CMS_signed_add1_attr_by_txt 568 1_1_0d EXIST::FUNCTION:CMS +BN_CTX_end 569 1_1_0d EXIST::FUNCTION: +ASN1_item_digest 570 1_1_0d EXIST::FUNCTION: +SCT_set_log_entry_type 571 1_1_0d EXIST::FUNCTION:CT +CRYPTO_memcmp 572 1_1_0d EXIST::FUNCTION: +OPENSSL_uni2asc 573 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PKCS8 574 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_asn1_to_param 575 1_1_0d EXIST::FUNCTION: +RIPEMD160_Final 576 1_1_0d EXIST::FUNCTION:RMD160 +ENGINE_ctrl 577 1_1_0d EXIST::FUNCTION:ENGINE +d2i_X509_REQ_fp 578 1_1_0d EXIST::FUNCTION:STDIO +CONF_free 579 1_1_0d EXIST::FUNCTION: +d2i_IPAddressRange 580 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_PKEY_meth_get_verify 581 1_1_0d EXIST::FUNCTION: +OCSP_RESPID_it 582 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPID_it 582 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +ASN1_TYPE_new 583 1_1_0d EXIST::FUNCTION: +X509_dup 584 1_1_0d EXIST::FUNCTION: +BN_is_prime_ex 585 1_1_0d EXIST::FUNCTION: +BN_rand 586 1_1_0d EXIST::FUNCTION: +PEM_SignInit 587 1_1_0d EXIST::FUNCTION: +OTP_generate 588 1_1_0d EXIST::FUNCTION:OTP +EC_KEY_copy 589 1_1_0d EXIST::FUNCTION:EC +X509_PUBKEY_get0 590 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_type 591 1_1_0d EXIST::FUNCTION:SM2 +BN_GF2m_mod_sqrt 592 1_1_0d EXIST::FUNCTION:EC2M +PEM_write_bio_X509_AUX 593 1_1_0d EXIST::FUNCTION: +DSO_merge 594 1_1_0d EXIST::FUNCTION: +d2i_PBE2PARAM 595 1_1_0d EXIST::FUNCTION: +d2i_DSA_PUBKEY_fp 596 1_1_0d EXIST::FUNCTION:DSA,STDIO +X509_NAME_get_entry 597 1_1_0d EXIST::FUNCTION: +d2i_ASN1_IA5STRING 598 1_1_0d EXIST::FUNCTION: +CRYPTO_ccm128_tag 599 1_1_0d EXIST::FUNCTION: +SOF_GetEncryptMethod 600 1_1_0d EXIST::FUNCTION: +X509_REQ_get_attr 601 1_1_0d EXIST::FUNCTION: +ERR_remove_state 602 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_0_0 +X509_verify_cert 603 1_1_0d EXIST::FUNCTION: +PKCS7_dataFinal 604 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_set_object 605 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_set0_pkey 606 1_1_0d EXIST::FUNCTION:CMS +X509_check_host 607 1_1_0d EXIST::FUNCTION: +X509_get_default_private_dir 608 1_1_0d EXIST::FUNCTION: +i2d_AUTHORITY_INFO_ACCESS 609 1_1_0d EXIST::FUNCTION: +EC_GROUP_free 610 1_1_0d EXIST::FUNCTION:EC +CRYPTO_secure_malloc 611 1_1_0d EXIST::FUNCTION: +X509_sign 612 1_1_0d EXIST::FUNCTION: +BN_GFP2_mul_bn 613 1_1_0d EXIST::FUNCTION: +PBE2PARAM_new 614 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get1_certs 615 1_1_0d EXIST::FUNCTION: +X509_OBJECT_new 616 1_1_0d EXIST::FUNCTION: +PKCS12_add_localkeyid 617 1_1_0d EXIST::FUNCTION: +X509_TRUST_add 618 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_set 619 1_1_0d EXIST::FUNCTION: +CONF_imodule_get_module 620 1_1_0d EXIST::FUNCTION: +i2d_CERTIFICATEPOLICIES 621 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_adj 622 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_get_algo 623 1_1_0d EXIST::FUNCTION:TS +CMS_get0_eContentType 624 1_1_0d EXIST::FUNCTION:CMS +SAF_EnumCertificatesFree 625 1_1_0d EXIST::FUNCTION: +ERR_load_CMS_strings 626 1_1_0d EXIST::FUNCTION:CMS +BN_num_bits_word 627 1_1_0d EXIST::FUNCTION: +X509_new 628 1_1_0d EXIST::FUNCTION: +RSA_security_bits 629 1_1_0d EXIST::FUNCTION:RSA +ASN1_bn_print 630 1_1_0d EXIST::FUNCTION: +d2i_CPK_PUBLIC_PARAMS_bio 631 1_1_0d EXIST::FUNCTION:CPK +ASN1_item_sign 632 1_1_0d EXIST::FUNCTION: +CRYPTO_new_ex_data 633 1_1_0d EXIST::FUNCTION: +BN_clear_bit 634 1_1_0d EXIST::FUNCTION: +SDF_ExchangeDigitEnvelopeBaseOnRSA 635 1_1_0d EXIST::FUNCTION: +EVP_bf_ecb 636 1_1_0d EXIST::FUNCTION:BF +RSA_meth_free 637 1_1_0d EXIST::FUNCTION:RSA +ERR_load_KDF_strings 638 1_1_0d EXIST::FUNCTION: +BIO_set_callback 639 1_1_0d EXIST::FUNCTION: +X509_get0_notBefore 640 1_1_0d EXIST::FUNCTION: +BN_is_prime_fasttest 641 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +PAILLIER_free 642 1_1_0d EXIST::FUNCTION:PAILLIER +SCT_get_timestamp 643 1_1_0d EXIST::FUNCTION:CT +ASN1_PCTX_get_nm_flags 644 1_1_0d EXIST::FUNCTION: +BIO_set_retry_reason 645 1_1_0d EXIST::FUNCTION: +X509_NAME_add_entry 646 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_free 647 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_DSA 648 1_1_0d EXIST::FUNCTION:ENGINE +EVP_MD_CTX_set_update_fn 649 1_1_0d EXIST::FUNCTION: +X509V3_EXT_print_fp 650 1_1_0d EXIST::FUNCTION:STDIO +ERR_load_GMAPI_strings 651 1_1_0d EXIST::FUNCTION:GMAPI +EVP_CIPHER_CTX_iv_noconst 652 1_1_0d EXIST::FUNCTION: +ASN1_put_eoc 653 1_1_0d EXIST::FUNCTION: +RSA_OAEP_PARAMS_new 654 1_1_0d EXIST::FUNCTION:RSA +SM9PublicKey_it 655 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9PublicKey_it 655 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +d2i_PKEY_USAGE_PERIOD 656 1_1_0d EXIST::FUNCTION: +CMS_get0_type 657 1_1_0d EXIST::FUNCTION:CMS +PKCS7_DIGEST_new 658 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTS_set_certs 659 1_1_0d EXIST::FUNCTION:TS +SOF_InitCertAppPolicy 660 1_1_0d EXIST::FUNCTION: +BN_is_odd 661 1_1_0d EXIST::FUNCTION: +i2d_IPAddressRange 662 1_1_0d EXIST::FUNCTION:RFC3779 +DH_meth_get_compute_key 663 1_1_0d EXIST::FUNCTION:DH +CPK_MASTER_SECRET_extract_public_params 664 1_1_0d EXIST::FUNCTION:CPK +BIO_meth_get_create 665 1_1_0d EXIST::FUNCTION: +PEM_write_X509 666 1_1_0d EXIST::FUNCTION:STDIO +SKF_ECCVerify 667 1_1_0d EXIST::FUNCTION:SKF +EVP_aes_256_ocb 668 1_1_0d EXIST::FUNCTION:OCB +BIO_ADDR_service_string 669 1_1_0d EXIST::FUNCTION:SOCK +X509_STORE_set_trust 670 1_1_0d EXIST::FUNCTION: +DSA_SIG_free 671 1_1_0d EXIST::FUNCTION:DSA +CMS_decrypt 672 1_1_0d EXIST::FUNCTION:CMS +PEM_read_bio_SM9PrivateKey 673 1_1_0d EXIST::FUNCTION:SM9 +BIO_s_file 674 1_1_0d EXIST::FUNCTION: +X509_get0_subject_key_id 675 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_set_msg_imprint 676 1_1_0d EXIST::FUNCTION:TS +EVP_CipherFinal_ex 677 1_1_0d EXIST::FUNCTION: +SKF_DigestInit 678 1_1_0d EXIST::FUNCTION:SKF +ZLONG_it 679 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ZLONG_it 679 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_ISSUING_DIST_POINT 680 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_create_by_OBJ 681 1_1_0d EXIST::FUNCTION: +EC_POINT_clear_free 682 1_1_0d EXIST::FUNCTION:EC +RAND_file_name 683 1_1_0d EXIST::FUNCTION: +RSA_meth_get_pub_enc 684 1_1_0d EXIST::FUNCTION:RSA +i2d_PKCS12_bio 685 1_1_0d EXIST::FUNCTION: +BIO_f_base64 686 1_1_0d EXIST::FUNCTION: +EC_curve_nid2nist 687 1_1_0d EXIST::FUNCTION:EC +NCONF_get_number_e 688 1_1_0d EXIST::FUNCTION: +SAF_EnumKeyContainerInfo 689 1_1_0d EXIST::FUNCTION: +d2i_OCSP_BASICRESP 690 1_1_0d EXIST::FUNCTION:OCSP +SCT_set_version 691 1_1_0d EXIST::FUNCTION:CT +ASN1_T61STRING_it 692 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_T61STRING_it 692 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_VERIFY_PARAM_set_trust 693 1_1_0d EXIST::FUNCTION: +RAND_poll 694 1_1_0d EXIST::FUNCTION: +SKF_DecryptFinal 695 1_1_0d EXIST::FUNCTION:SKF +BIO_set_callback_arg 696 1_1_0d EXIST::FUNCTION: +d2i_SM9PrivateKey 697 1_1_0d EXIST::FUNCTION:SM9 +X509_CRL_get_ext_by_critical 698 1_1_0d EXIST::FUNCTION: +UI_new_method 699 1_1_0d EXIST::FUNCTION:UI +ENGINE_set_ctrl_function 700 1_1_0d EXIST::FUNCTION:ENGINE +PEM_write_bio_X509 701 1_1_0d EXIST::FUNCTION: +ASN1_GENERALIZEDTIME_check 702 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_set_oid_flags 703 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get0_revocationDate 704 1_1_0d EXIST::FUNCTION: +EVP_PKEY_base_id 705 1_1_0d EXIST::FUNCTION: +d2i_ECCCipher 706 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +ECDSA_SIG_set_ECCSIGNATUREBLOB 707 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +SCT_set0_signature 708 1_1_0d EXIST::FUNCTION:CT +ENGINE_unregister_DH 709 1_1_0d EXIST::FUNCTION:ENGINE +SCT_free 710 1_1_0d EXIST::FUNCTION:CT +ERR_load_OCSP_strings 711 1_1_0d EXIST::FUNCTION:OCSP +BN_nnmod 712 1_1_0d EXIST::FUNCTION: +AES_wrap_key 713 1_1_0d EXIST::FUNCTION: +PKCS5_pbkdf2_set 714 1_1_0d EXIST::FUNCTION: +RSA_padding_add_PKCS1_OAEP 715 1_1_0d EXIST::FUNCTION:RSA +RSA_set_method 716 1_1_0d EXIST::FUNCTION:RSA +SKF_CreateApplication 717 1_1_0d EXIST::FUNCTION:SKF +i2d_PUBKEY 718 1_1_0d EXIST::FUNCTION: +ASN1_sign 719 1_1_0d EXIST::FUNCTION: +OBJ_NAME_do_all_sorted 720 1_1_0d EXIST::FUNCTION: +RIPEMD160_Init 721 1_1_0d EXIST::FUNCTION:RMD160 +EVP_CIPHER_CTX_clear_flags 722 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_error 723 1_1_0d EXIST::FUNCTION: +OCSP_basic_verify 724 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_CTX_get0_param 725 1_1_0d EXIST::FUNCTION: +SKF_RSASignData 726 1_1_0d EXIST::FUNCTION:SKF +OPENSSL_sk_push 727 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SM9PublicKey 728 1_1_0d EXIST::FUNCTION:SM9 +PEM_read_bio_DSAparams 729 1_1_0d EXIST::FUNCTION:DSA +EVP_SealInit 730 1_1_0d EXIST::FUNCTION:RSA +EVP_md_null 731 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_iv_length 732 1_1_0d EXIST::FUNCTION: +SOF_SignMessageDetach 733 1_1_0d EXIST::FUNCTION: +SM9PrivateKey_get_public_key 734 1_1_0d EXIST::FUNCTION:SM9 +d2i_CPK_PUBLIC_PARAMS 735 1_1_0d EXIST::FUNCTION:CPK +TS_ASN1_INTEGER_print_bio 736 1_1_0d EXIST::FUNCTION:TS +BIO_connect 737 1_1_0d EXIST::FUNCTION:SOCK +TS_RESP_CTX_new 738 1_1_0d EXIST::FUNCTION:TS +d2i_SM9PublicParameters_fp 739 1_1_0d EXIST::FUNCTION:SM9,STDIO +d2i_RSAPrivateKey_bio 740 1_1_0d EXIST::FUNCTION:RSA +X509_CRL_get_meth_data 741 1_1_0d EXIST::FUNCTION: +SKF_DeleteContainer 742 1_1_0d EXIST::FUNCTION:SKF +PKCS12_setup_mac 743 1_1_0d EXIST::FUNCTION: +PEM_write_X509_AUX 744 1_1_0d EXIST::FUNCTION:STDIO +EC_GFp_nistp521_method 745 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 +GENERAL_SUBTREE_new 746 1_1_0d EXIST::FUNCTION: +BN_BLINDING_unlock 747 1_1_0d EXIST::FUNCTION: +PKCS7_add_crl 748 1_1_0d EXIST::FUNCTION: +sms4_encrypt_init 749 1_1_0d EXIST::FUNCTION:SMS4 +NAME_CONSTRAINTS_new 750 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_set0_keygen_info 751 1_1_0d EXIST::FUNCTION: +TS_CONF_set_clock_precision_digits 752 1_1_0d EXIST::FUNCTION:TS +X509_VERIFY_PARAM_set1_ip_asc 753 1_1_0d EXIST::FUNCTION: +DSA_free 754 1_1_0d EXIST::FUNCTION:DSA +OCSP_url_svcloc_new 755 1_1_0d EXIST::FUNCTION:OCSP +OPENSSL_sk_find_ex 756 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_set1_data 757 1_1_0d EXIST::FUNCTION: +BIO_f_buffer 758 1_1_0d EXIST::FUNCTION: +X509_CRL_sign 759 1_1_0d EXIST::FUNCTION: +CONF_get_section 760 1_1_0d EXIST::FUNCTION: +OCSP_id_get0_info 761 1_1_0d EXIST::FUNCTION:OCSP +USERNOTICE_free 762 1_1_0d EXIST::FUNCTION: +X509_CRL_get_lastUpdate 763 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +BIO_printf 764 1_1_0d EXIST::FUNCTION: +i2d_TS_RESP 765 1_1_0d EXIST::FUNCTION:TS +OPENSSL_LH_retrieve 766 1_1_0d EXIST::FUNCTION: +BN_security_bits 767 1_1_0d EXIST::FUNCTION: +i2d_PKCS8_bio 768 1_1_0d EXIST::FUNCTION: +BN_GFP2_sub 769 1_1_0d EXIST::FUNCTION: +BUF_MEM_grow_clean 770 1_1_0d EXIST::FUNCTION: +EVP_get_ciphernames 771 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_ciphers 772 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_register_RAND 773 1_1_0d EXIST::FUNCTION:ENGINE +EVP_CIPHER_meth_get_init 774 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_get_ext_by_NID 775 1_1_0d EXIST::FUNCTION:OCSP +CMS_unsigned_get_attr_by_OBJ 776 1_1_0d EXIST::FUNCTION:CMS +EVP_CIPHER_meth_set_get_asn1_params 777 1_1_0d EXIST::FUNCTION: +i2d_PKCS8PrivateKey_nid_fp 778 1_1_0d EXIST::FUNCTION:STDIO +X509_SIG_get0 779 1_1_0d EXIST::FUNCTION: +ERR_error_string 780 1_1_0d EXIST::FUNCTION: +i2d_PKCS8PrivateKey_fp 781 1_1_0d EXIST::FUNCTION:STDIO +TS_TST_INFO_set_nonce 782 1_1_0d EXIST::FUNCTION:TS +d2i_ECCSIGNATUREBLOB 783 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +X509_VERIFY_PARAM_get_flags 784 1_1_0d EXIST::FUNCTION: +i2d_OCSP_ONEREQ 785 1_1_0d EXIST::FUNCTION:OCSP +MD4_Transform 786 1_1_0d EXIST::FUNCTION:MD4 +TS_TST_INFO_set_policy_id 787 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_missing_parameters 788 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_final 789 1_1_0d EXIST::FUNCTION: +SKF_MacFinal 790 1_1_0d EXIST::FUNCTION:SKF +EVP_CIPHER_meth_set_ctrl 791 1_1_0d EXIST::FUNCTION: +ASN1_check_infinite_end 792 1_1_0d EXIST::FUNCTION: +ISSUING_DIST_POINT_it 793 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ISSUING_DIST_POINT_it 793 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_priv2oct 794 1_1_0d EXIST::FUNCTION:EC +i2d_SM9_MASTER_PUBKEY 795 1_1_0d EXIST::FUNCTION:SM9 +X509at_add1_attr_by_txt 796 1_1_0d EXIST::FUNCTION: +X509_REQ_sign_ctx 797 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_encrypt 798 1_1_0d EXIST::FUNCTION:OCB +SMIME_text 799 1_1_0d EXIST::FUNCTION: +PAILLIER_ciphertext_add 800 1_1_0d EXIST::FUNCTION:PAILLIER +i2d_ASN1_OBJECT 801 1_1_0d EXIST::FUNCTION: +ZUC_128eia3 802 1_1_0d EXIST::FUNCTION:ZUC +X509_set_proxy_flag 803 1_1_0d EXIST::FUNCTION: +EC_KEY_check_key 804 1_1_0d EXIST::FUNCTION:EC +BIO_socket_nbio 805 1_1_0d EXIST::FUNCTION:SOCK +DSO_convert_filename 806 1_1_0d EXIST::FUNCTION: +BN_is_zero 807 1_1_0d EXIST::FUNCTION: +PEM_read_PaillierPublicKey 808 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +NOTICEREF_new 809 1_1_0d EXIST::FUNCTION: +CMAC_Init 810 1_1_0d EXIST::FUNCTION:CMAC +d2i_SXNET 811 1_1_0d EXIST::FUNCTION: +X509_SIG_getm 812 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1_name 813 1_1_0d EXIST::FUNCTION: +ECPARAMETERS_free 814 1_1_0d EXIST::FUNCTION:EC +CRYPTO_nistcts128_encrypt_block 815 1_1_0d EXIST::FUNCTION: +X509v3_addr_add_range 816 1_1_0d EXIST::FUNCTION:RFC3779 +EC_GROUP_set_curve_GFp 817 1_1_0d EXIST::FUNCTION:EC +EVP_MD_meth_set_flags 818 1_1_0d EXIST::FUNCTION: +sm3_hmac 819 1_1_0d EXIST::FUNCTION:SM3 +SKF_ImportECCKeyPair 820 1_1_0d EXIST::FUNCTION:SKF +EVP_DecryptFinal_ex 821 1_1_0d EXIST::FUNCTION: +CRYPTO_ccm128_init 822 1_1_0d EXIST::FUNCTION: +i2d_RSAPrivateKey_bio 823 1_1_0d EXIST::FUNCTION:RSA +ASN1_BIT_STRING_set 824 1_1_0d EXIST::FUNCTION: +i2d_RSA_OAEP_PARAMS 825 1_1_0d EXIST::FUNCTION:RSA +EC_GROUP_copy 826 1_1_0d EXIST::FUNCTION:EC +i2d_CMS_ReceiptRequest 827 1_1_0d EXIST::FUNCTION:CMS +TS_TST_INFO_get_tsa 828 1_1_0d EXIST::FUNCTION:TS +EC_POINT_free 829 1_1_0d EXIST::FUNCTION:EC +PKCS7_set_digest 830 1_1_0d EXIST::FUNCTION: +d2i_TS_RESP 831 1_1_0d EXIST::FUNCTION:TS +SKF_ExportPublicKey 832 1_1_0d EXIST::FUNCTION:SKF +i2d_DSAPublicKey 833 1_1_0d EXIST::FUNCTION:DSA +PEM_read_bio_X509_CRL 834 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_it 835 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_PUBKEY_it 835 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_ECCCIPHERBLOB_bio 836 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +PEM_proc_type 837 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_cleanup 838 1_1_0d EXIST::FUNCTION:TS +CMS_get0_content 839 1_1_0d EXIST::FUNCTION:CMS +CMS_get1_certs 840 1_1_0d EXIST::FUNCTION:CMS +PEM_read_bio_Parameters 841 1_1_0d EXIST::FUNCTION: +BIO_write 842 1_1_0d EXIST::FUNCTION: +RSA_X931_hash_id 843 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_CTX_get_error_depth 844 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_copy 845 1_1_0d EXIST::FUNCTION: +SAF_HashUpdate 846 1_1_0d EXIST::FUNCTION: +EC_KEY_oct2key 847 1_1_0d EXIST::FUNCTION:EC +TS_X509_ALGOR_print_bio 848 1_1_0d EXIST::FUNCTION:TS +DH_meth_set1_name 849 1_1_0d EXIST::FUNCTION:DH +d2i_TS_REQ 850 1_1_0d EXIST::FUNCTION:TS +d2i_CMS_bio 851 1_1_0d EXIST::FUNCTION:CMS +OCSP_SINGLERESP_it 852 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_SINGLERESP_it 852 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +TS_STATUS_INFO_dup 853 1_1_0d EXIST::FUNCTION:TS +PEM_read_PUBKEY 854 1_1_0d EXIST::FUNCTION:STDIO +RSA_meth_get0_app_data 855 1_1_0d EXIST::FUNCTION:RSA +OCSP_BASICRESP_add_ext 856 1_1_0d EXIST::FUNCTION:OCSP +SM2_do_sign_ex 857 1_1_0d EXIST::FUNCTION:SM2 +d2i_X509_CRL_bio 858 1_1_0d EXIST::FUNCTION: +i2d_PKCS8_PRIV_KEY_INFO 859 1_1_0d EXIST::FUNCTION: +NCONF_WIN32 860 1_1_0d EXIST::FUNCTION: +SCT_get_version 861 1_1_0d EXIST::FUNCTION:CT +CRYPTO_mem_debug_malloc 862 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +OCSP_ONEREQ_it 863 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_ONEREQ_it 863 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +X509_check_ca 864 1_1_0d EXIST::FUNCTION: +X509_STORE_set_lookup_crls 865 1_1_0d EXIST::FUNCTION: +EC_GROUP_cmp 866 1_1_0d EXIST::FUNCTION:EC +X509at_delete_attr 867 1_1_0d EXIST::FUNCTION: +FFX_CTX_free 868 1_1_0d EXIST::FUNCTION: +OPENSSL_INIT_free 869 1_1_0d EXIST::FUNCTION: +SKF_GetContainerTypeName 870 1_1_0d EXIST::FUNCTION:SKF +PEM_write_SM9_PUBKEY 871 1_1_0d EXIST::FUNCTION:SM9,STDIO +ASN1_UTCTIME_free 872 1_1_0d EXIST::FUNCTION: +SAF_VerifyCertificate 873 1_1_0d EXIST::FUNCTION: +i2d_OCSP_SERVICELOC 874 1_1_0d EXIST::FUNCTION:OCSP +d2i_DHxparams 875 1_1_0d EXIST::FUNCTION:DH +EVP_EncodeInit 876 1_1_0d EXIST::FUNCTION: +speck_decrypt64 877 1_1_0d EXIST::FUNCTION:SPECK +PEM_write_PKCS8PrivateKey_nid 878 1_1_0d EXIST::FUNCTION:STDIO +OBJ_NAME_new_index 879 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_it 880 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_INTEGER_it 880 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ERR_load_X509_strings 881 1_1_0d EXIST::FUNCTION: +X509_STORE_get0_param 882 1_1_0d EXIST::FUNCTION: +SKF_SetLabel 883 1_1_0d EXIST::FUNCTION:SKF +RSA_meth_set_mod_exp 884 1_1_0d EXIST::FUNCTION:RSA +RSA_meth_set_keygen 885 1_1_0d EXIST::FUNCTION:RSA +EC_KEY_new_from_ECCrefPrivateKey 886 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +Camellia_ecb_encrypt 887 1_1_0d EXIST::FUNCTION:CAMELLIA +CMS_SignerInfo_verify_content 888 1_1_0d EXIST::FUNCTION:CMS +PEM_write_RSAPublicKey 889 1_1_0d EXIST::FUNCTION:RSA,STDIO +CPK_PUBLIC_PARAMS_extract_public_key 890 1_1_0d EXIST::FUNCTION:CPK +X509_REQ_get_attr_count 891 1_1_0d EXIST::FUNCTION: +BN_bn2gfp2 892 1_1_0d EXIST::FUNCTION: +PKCS7_ATTR_SIGN_it 893 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ATTR_SIGN_it 893 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_PKCS7_ENC_CONTENT 894 1_1_0d EXIST::FUNCTION: +X509_STORE_add_crl 895 1_1_0d EXIST::FUNCTION: +d2i_X509_CRL_fp 896 1_1_0d EXIST::FUNCTION:STDIO +EVP_PKEY_bits 897 1_1_0d EXIST::FUNCTION: +ESS_ISSUER_SERIAL_dup 898 1_1_0d EXIST::FUNCTION:TS +SDF_InternalPrivateKeyOperation_RSA 899 1_1_0d EXIST::FUNCTION: +X509_REQ_add_extensions 900 1_1_0d EXIST::FUNCTION: +AUTHORITY_KEYID_new 901 1_1_0d EXIST::FUNCTION: +X509_REQ_free 902 1_1_0d EXIST::FUNCTION: +OBJ_new_nid 903 1_1_0d EXIST::FUNCTION: +ENGINE_set_id 904 1_1_0d EXIST::FUNCTION:ENGINE +EC_GROUP_get_ecpkparameters 905 1_1_0d EXIST::FUNCTION:EC +BN_get_params 906 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +RSA_set_RSArefPublicKey 907 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +EVP_aes_192_ccm 908 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get_ext_d2i 909 1_1_0d EXIST::FUNCTION: +ERR_load_RSA_strings 910 1_1_0d EXIST::FUNCTION:RSA +SAF_GenerateAgreementDataWithECC 911 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_ext_free 912 1_1_0d EXIST::FUNCTION:TS +OCSP_CERTID_it 913 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_CERTID_it 913 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +X509_EXTENSION_set_critical 914 1_1_0d EXIST::FUNCTION: +EVP_get_digestbysgd 915 1_1_0d EXIST::FUNCTION:GMAPI +TS_ACCURACY_free 916 1_1_0d EXIST::FUNCTION:TS +SHA384_Final 917 1_1_0d EXIST:!VMSVAX:FUNCTION: +X509_SIG_free 918 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1_ip 919 1_1_0d EXIST::FUNCTION: +EC_POINT_get_affine_coordinates_GFp 920 1_1_0d EXIST::FUNCTION:EC +DH_meth_get0_name 921 1_1_0d EXIST::FUNCTION:DH +X509_PURPOSE_get0_sname 922 1_1_0d EXIST::FUNCTION: +X509_get_default_cert_dir_env 923 1_1_0d EXIST::FUNCTION: +EVP_DigestInit 924 1_1_0d EXIST::FUNCTION: +PBE2PARAM_it 925 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PBE2PARAM_it 925 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SM9_verify 926 1_1_0d EXIST::FUNCTION:SM9 +ASN1_STRING_TABLE_get 927 1_1_0d EXIST::FUNCTION: +X509v3_get_ext_count 928 1_1_0d EXIST::FUNCTION: +BN_RECP_CTX_set 929 1_1_0d EXIST::FUNCTION: +SOF_CreateTimeStampRequest 930 1_1_0d EXIST::FUNCTION: +DSA_meth_set_sign 931 1_1_0d EXIST::FUNCTION:DSA +v2i_GENERAL_NAMES 932 1_1_0d EXIST::FUNCTION: +sm3_final 933 1_1_0d EXIST::FUNCTION:SM3 +X509_REQ_sign 934 1_1_0d EXIST::FUNCTION: +X509_REQ_INFO_new 935 1_1_0d EXIST::FUNCTION: +EVP_EncodeBlock 936 1_1_0d EXIST::FUNCTION: +EVP_blake2s256 937 1_1_0d EXIST::FUNCTION:BLAKE2 +OCSP_BASICRESP_add1_ext_i2d 938 1_1_0d EXIST::FUNCTION:OCSP +EC_KEY_set_ex_data 939 1_1_0d EXIST::FUNCTION:EC +ASN1_UTF8STRING_new 940 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_ctrl 941 1_1_0d EXIST::FUNCTION: +SM9Ciphertext_it 942 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9Ciphertext_it 942 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +d2i_PROXY_POLICY 943 1_1_0d EXIST::FUNCTION: +ENGINE_set_cmd_defns 944 1_1_0d EXIST::FUNCTION:ENGINE +sms4_set_encrypt_key 945 1_1_0d EXIST::FUNCTION:SMS4 +UI_free 946 1_1_0d EXIST::FUNCTION:UI +BN_get_rfc3526_prime_2048 947 1_1_0d EXIST::FUNCTION: +BN_mod_exp_recp 948 1_1_0d EXIST::FUNCTION: +SKF_ClearSecureState 949 1_1_0d EXIST::FUNCTION:SKF +ASN1_const_check_infinite_end 950 1_1_0d EXIST::FUNCTION: +PKCS8_pkey_get0_attrs 951 1_1_0d EXIST::FUNCTION: +PKEY_USAGE_PERIOD_new 952 1_1_0d EXIST::FUNCTION: +PKCS5_pbe_set0_algor 953 1_1_0d EXIST::FUNCTION: +d2i_NETSCAPE_SPKI 954 1_1_0d EXIST::FUNCTION: +d2i_PrivateKey_bio 955 1_1_0d EXIST::FUNCTION: +i2d_ASN1_VISIBLESTRING 956 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_set1 957 1_1_0d EXIST::FUNCTION: +ENGINE_register_EC 958 1_1_0d EXIST::FUNCTION:ENGINE +CRL_DIST_POINTS_new 959 1_1_0d EXIST::FUNCTION: +CMS_signed_add1_attr_by_OBJ 960 1_1_0d EXIST::FUNCTION:CMS +ASN1_SET_ANY_it 961 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_SET_ANY_it 961 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +sm3 962 1_1_0d EXIST::FUNCTION:SM3 +ENGINE_register_all_DSA 963 1_1_0d EXIST::FUNCTION:ENGINE +X509_STORE_set_check_policy 964 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_cfb128 965 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_aes_256_cbc_hmac_sha256 966 1_1_0d EXIST::FUNCTION: +SAF_EnumKeyContainerInfoFree 967 1_1_0d EXIST::FUNCTION: +i2d_EC_PUBKEY 968 1_1_0d EXIST::FUNCTION:EC +PKCS7_set_signed_attributes 969 1_1_0d EXIST::FUNCTION: +_shadow_DES_check_key 970 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DES +_shadow_DES_check_key 970 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DES +BIO_meth_new 971 1_1_0d EXIST::FUNCTION: +EC_POINT_make_affine 972 1_1_0d EXIST::FUNCTION:EC +X509_VERIFY_PARAM_add1_host 973 1_1_0d EXIST::FUNCTION: +CRL_DIST_POINTS_it 974 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +CRL_DIST_POINTS_it 974 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ZUC_128eia3_final 975 1_1_0d EXIST::FUNCTION:ZUC +RSA_meth_set0_app_data 976 1_1_0d EXIST::FUNCTION:RSA +EVP_add_digest 977 1_1_0d EXIST::FUNCTION: +ERR_load_PAILLIER_strings 978 1_1_0d EXIST::FUNCTION:PAILLIER +BN_generate_prime 979 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +d2i_PAILLIER_PUBKEY 980 1_1_0d EXIST::FUNCTION:PAILLIER +ASN1_TIME_set 981 1_1_0d EXIST::FUNCTION: +ASN1_tag2bit 982 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_free 983 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_pkey_meths 984 1_1_0d EXIST::FUNCTION:ENGINE +BASIC_CONSTRAINTS_new 985 1_1_0d EXIST::FUNCTION: +i2d_TS_REQ_bio 986 1_1_0d EXIST::FUNCTION:TS +b2i_PublicKey 987 1_1_0d EXIST::FUNCTION:DSA +OCSP_archive_cutoff_new 988 1_1_0d EXIST::FUNCTION:OCSP +X509V3_get_string 989 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_set 990 1_1_0d EXIST::FUNCTION: +BIO_s_bio 991 1_1_0d EXIST::FUNCTION: +ASYNC_WAIT_CTX_free 992 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_create0_pkcs8 993 1_1_0d EXIST::FUNCTION: +BN_GENCB_get_arg 994 1_1_0d EXIST::FUNCTION: +PEM_read_bio_X509 995 1_1_0d EXIST::FUNCTION: +OPENSSL_asc2uni 996 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_get_ext_by_NID 997 1_1_0d EXIST::FUNCTION:OCSP +UI_get_string_type 998 1_1_0d EXIST::FUNCTION:UI +X509_VAL_free 999 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_RSA 1000 1_1_0d EXIST::FUNCTION:ENGINE +PKCS12_SAFEBAG_get0_attrs 1001 1_1_0d EXIST::FUNCTION: +X509_add1_trust_object 1002 1_1_0d EXIST::FUNCTION: +EVP_camellia_192_ecb 1003 1_1_0d EXIST::FUNCTION:CAMELLIA +PEM_read_SM9PublicKey 1004 1_1_0d EXIST::FUNCTION:SM9,STDIO +ERR_load_SM2_strings 1005 1_1_0d EXIST::FUNCTION:SM2 +RSA_get0_factors 1006 1_1_0d EXIST::FUNCTION:RSA +ECDSA_do_verify 1007 1_1_0d EXIST::FUNCTION:EC +TS_TST_INFO_get_policy_id 1008 1_1_0d EXIST::FUNCTION:TS +BN_set_params 1009 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +d2i_ASIdentifiers 1010 1_1_0d EXIST::FUNCTION:RFC3779 +CRYPTO_THREAD_read_lock 1011 1_1_0d EXIST::FUNCTION: +ASN1_d2i_bio 1012 1_1_0d EXIST::FUNCTION: +EC_KEY_key2buf 1013 1_1_0d EXIST::FUNCTION:EC +EVP_PKEY_CTX_dup 1014 1_1_0d EXIST::FUNCTION: +CMS_ReceiptRequest_new 1015 1_1_0d EXIST::FUNCTION:CMS +OBJ_nid2ln 1016 1_1_0d EXIST::FUNCTION: +ZUC_128eia3_set_key 1017 1_1_0d EXIST::FUNCTION:ZUC +i2d_TS_MSG_IMPRINT 1018 1_1_0d EXIST::FUNCTION:TS +d2i_PUBKEY_bio 1019 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_sqr_arr 1020 1_1_0d EXIST::FUNCTION:EC2M +EVP_PKEY_asn1_get_count 1021 1_1_0d EXIST::FUNCTION: +BIO_f_cipher 1022 1_1_0d EXIST::FUNCTION: +DES_cfb64_encrypt 1023 1_1_0d EXIST::FUNCTION:DES +X509_EXTENSION_set_data 1024 1_1_0d EXIST::FUNCTION: +X509V3_EXT_val_prn 1025 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get_sgd 1026 1_1_0d EXIST::FUNCTION:GMAPI +i2d_ASN1_PRINTABLE 1027 1_1_0d EXIST::FUNCTION: +PKCS12_MAC_DATA_it 1028 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_MAC_DATA_it 1028 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_get_default_digest 1029 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_iv 1030 1_1_0d EXIST::FUNCTION: +ECDSA_sign 1031 1_1_0d EXIST::FUNCTION:EC +SAF_SM2_DecodeSignedAndEnvelopedData 1032 1_1_0d EXIST::FUNCTION: +OPENSSL_DIR_read 1033 1_1_0d EXIST::FUNCTION: +d2i_PKCS12_BAGS 1034 1_1_0d EXIST::FUNCTION: +CONF_imodule_set_flags 1035 1_1_0d EXIST::FUNCTION: +sms4_set_decrypt_key 1036 1_1_0d EXIST::FUNCTION:SMS4 +EVP_MD_CTX_ctrl 1037 1_1_0d EXIST::FUNCTION: +ERR_peek_last_error 1038 1_1_0d EXIST::FUNCTION: +d2i_RSA_PSS_PARAMS 1039 1_1_0d EXIST::FUNCTION:RSA +EC_METHOD_get_field_type 1040 1_1_0d EXIST::FUNCTION:EC +d2i_ECIES_CIPHERTEXT_VALUE 1041 1_1_0d EXIST::FUNCTION:ECIES +RSA_new 1042 1_1_0d EXIST::FUNCTION:RSA +EVP_add_alg_module 1043 1_1_0d EXIST::FUNCTION: +PKCS7_ENC_CONTENT_it 1044 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ENC_CONTENT_it 1044 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BIO_asn1_get_suffix 1045 1_1_0d EXIST::FUNCTION: +BF_encrypt 1046 1_1_0d EXIST::FUNCTION:BF +RSA_set_flags 1047 1_1_0d EXIST::FUNCTION:RSA +BIO_s_mem 1048 1_1_0d EXIST::FUNCTION: +X509_policy_tree_get0_policies 1049 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_encrypt 1050 1_1_0d EXIST::FUNCTION:CMS +EVP_des_ede3_ecb 1051 1_1_0d EXIST::FUNCTION:DES +d2i_DIRECTORYSTRING 1052 1_1_0d EXIST::FUNCTION: +PEM_write_bio_CMS 1053 1_1_0d EXIST::FUNCTION:CMS +UI_set_method 1054 1_1_0d EXIST::FUNCTION:UI +SOF_SetEncryptMethod 1055 1_1_0d EXIST::FUNCTION: +X509_STORE_add_lookup 1056 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_update 1057 1_1_0d EXIST::FUNCTION: +PKCS12_MAC_DATA_new 1058 1_1_0d EXIST::FUNCTION: +EC_GROUP_clear_free 1059 1_1_0d EXIST::FUNCTION:EC +BB1MasterSecret_new 1060 1_1_0d EXIST::FUNCTION:BB1IBE +OCSP_ONEREQ_get_ext_by_critical 1061 1_1_0d EXIST::FUNCTION:OCSP +CONF_dump_fp 1062 1_1_0d EXIST::FUNCTION:STDIO +SAF_DestroyKeyHandle 1063 1_1_0d EXIST::FUNCTION: +SKF_GenerateAgreementDataAndKeyWithECC 1064 1_1_0d EXIST::FUNCTION:SKF +TS_TST_INFO_set_tsa 1065 1_1_0d EXIST::FUNCTION:TS +ERR_load_X509V3_strings 1066 1_1_0d EXIST::FUNCTION: +SKF_PrintECCCipher 1067 1_1_0d EXIST::FUNCTION:SKF +KDF_get_x9_63 1068 1_1_0d EXIST::FUNCTION: +EVP_DecryptInit 1069 1_1_0d EXIST::FUNCTION: +i2d_CPK_MASTER_SECRET_bio 1070 1_1_0d EXIST::FUNCTION:CPK +SKF_EnumDev 1071 1_1_0d EXIST::FUNCTION:SKF +BN_mod_exp2_mont 1072 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_get0_data 1073 1_1_0d EXIST::FUNCTION: +BN_copy 1074 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_get_int_octetstring 1075 1_1_0d EXIST::FUNCTION: +X509_NAME_print_ex_fp 1076 1_1_0d EXIST::FUNCTION:STDIO +EC_GROUP_get_trinomial_basis 1077 1_1_0d EXIST::FUNCTION:EC,EC2M +X509_CRL_INFO_it 1078 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CRL_INFO_it 1078 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_hex2bn 1079 1_1_0d EXIST::FUNCTION: +ENGINE_set_load_privkey_function 1080 1_1_0d EXIST::FUNCTION:ENGINE +BN_div_word 1081 1_1_0d EXIST::FUNCTION: +IDEA_options 1082 1_1_0d EXIST::FUNCTION:IDEA +OCSP_request_set1_name 1083 1_1_0d EXIST::FUNCTION:OCSP +d2i_CRL_DIST_POINTS 1084 1_1_0d EXIST::FUNCTION: +BN_GFP2_free 1085 1_1_0d EXIST::FUNCTION: +ENGINE_get_static_state 1086 1_1_0d EXIST::FUNCTION:ENGINE +DH_size 1087 1_1_0d EXIST::FUNCTION:DH +ESS_CERT_ID_dup 1088 1_1_0d EXIST::FUNCTION:TS +ECDSA_do_sign 1089 1_1_0d EXIST::FUNCTION:EC +EVP_cast5_ofb 1090 1_1_0d EXIST::FUNCTION:CAST +ASN1_ANY_it 1091 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_ANY_it 1091 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_SCTX_new 1092 1_1_0d EXIST::FUNCTION: +PaillierPrivateKey_it 1093 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER +PaillierPrivateKey_it 1093 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER +SAF_Pkcs7_EncodeEnvelopedData 1094 1_1_0d EXIST::FUNCTION: +X509V3_set_conf_lhash 1095 1_1_0d EXIST::FUNCTION: +EVP_DigestSignFinal 1096 1_1_0d EXIST::FUNCTION: +CRYPTO_mem_debug_free 1097 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +EVP_CIPHER_CTX_new 1098 1_1_0d EXIST::FUNCTION: +X509_supported_extension 1099 1_1_0d EXIST::FUNCTION: +DHparams_it 1100 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DH +DHparams_it 1100 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DH +EC_POINT_set_Jprojective_coordinates_GFp 1101 1_1_0d EXIST::FUNCTION:EC +DSA_get0_engine 1102 1_1_0d EXIST::FUNCTION:DSA +EC_KEY_get_ECCPRIVATEKEYBLOB 1103 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +EC_GROUP_new_curve_GFp 1104 1_1_0d EXIST::FUNCTION:EC +ENGINE_load_private_key 1105 1_1_0d EXIST::FUNCTION:ENGINE +RSA_flags 1106 1_1_0d EXIST::FUNCTION:RSA +EVP_DigestFinal 1107 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_get 1108 1_1_0d EXIST::FUNCTION: +ENGINE_get_name 1109 1_1_0d EXIST::FUNCTION:ENGINE +RSA_meth_get_priv_dec 1110 1_1_0d EXIST::FUNCTION:RSA +SKF_ECCDecrypt 1111 1_1_0d EXIST::FUNCTION:SKF +OTHERNAME_cmp 1112 1_1_0d EXIST::FUNCTION: +BN_set_bit 1113 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_shift 1114 1_1_0d EXIST::FUNCTION: +SM9_generate_key_exchange 1115 1_1_0d EXIST::FUNCTION:SM9 +BIO_asn1_set_prefix 1116 1_1_0d EXIST::FUNCTION: +i2d_ASN1_TYPE 1117 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_get0_mem_bio 1118 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_ctr128_encrypt_ctr32 1119 1_1_0d EXIST::FUNCTION: +SKF_GenExtRSAKey 1120 1_1_0d EXIST::FUNCTION:SKF +CRYPTO_mem_debug_pop 1121 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +X509_CRL_set1_nextUpdate 1122 1_1_0d EXIST::FUNCTION: +CTLOG_get0_name 1123 1_1_0d EXIST::FUNCTION:CT +CRYPTO_ocb128_aad 1124 1_1_0d EXIST::FUNCTION:OCB +EVP_MD_meth_set_ctrl 1125 1_1_0d EXIST::FUNCTION: +EVP_seed_ofb 1126 1_1_0d EXIST::FUNCTION:SEED +SAF_Hash 1127 1_1_0d EXIST::FUNCTION: +SAF_ChangePin 1128 1_1_0d EXIST::FUNCTION: +EC_POINT_get_affine_coordinates_GF2m 1129 1_1_0d EXIST::FUNCTION:EC,EC2M +SDF_PrintRSAPublicKey 1130 1_1_0d EXIST::FUNCTION:SDF +CMAC_CTX_free 1131 1_1_0d EXIST::FUNCTION:CMAC +X509V3_EXT_add_nconf 1132 1_1_0d EXIST::FUNCTION: +TS_CONF_set_default_engine 1133 1_1_0d EXIST::FUNCTION:ENGINE,TS +X509v3_addr_get_range 1134 1_1_0d EXIST::FUNCTION:RFC3779 +CMS_signed_get_attr 1135 1_1_0d EXIST::FUNCTION:CMS +X509_load_crl_file 1136 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kari_decrypt 1137 1_1_0d EXIST::FUNCTION:CMS +d2i_SM9Signature_fp 1138 1_1_0d EXIST::FUNCTION:SM9,STDIO +EVP_cast5_cfb64 1139 1_1_0d EXIST::FUNCTION:CAST +SCT_validate 1140 1_1_0d EXIST::FUNCTION:CT +CPK_MASTER_SECRET_print 1141 1_1_0d EXIST::FUNCTION:CPK +ASN1_STRING_length_set 1142 1_1_0d EXIST::FUNCTION: +CRYPTO_cts128_decrypt 1143 1_1_0d EXIST::FUNCTION: +serpent_encrypt 1144 1_1_0d EXIST::FUNCTION:SERPENT +ENGINE_by_id 1145 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_set1_SM9 1146 1_1_0d EXIST::FUNCTION:SM9 +PEM_read_CMS 1147 1_1_0d EXIST::FUNCTION:CMS,STDIO +ASN1_put_object 1148 1_1_0d EXIST::FUNCTION: +CMS_ReceiptRequest_free 1149 1_1_0d EXIST::FUNCTION:CMS +EVP_PKEY2PKCS8 1150 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kari_get0_reks 1151 1_1_0d EXIST::FUNCTION:CMS +ASN1_BMPSTRING_it 1152 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_BMPSTRING_it 1152 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_GROUP_new_type1curve_ex 1153 1_1_0d EXIST::FUNCTION: +BN_gfp22bn 1154 1_1_0d EXIST::FUNCTION: +SRP_Verify_B_mod_N 1155 1_1_0d EXIST::FUNCTION:SRP +DH_get0_key 1156 1_1_0d EXIST::FUNCTION:DH +d2i_X509_REVOKED 1157 1_1_0d EXIST::FUNCTION: +ASN1_ENUMERATED_get_int64 1158 1_1_0d EXIST::FUNCTION: +HMAC_Update 1159 1_1_0d EXIST::FUNCTION: +CBIGNUM_it 1160 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +CBIGNUM_it 1160 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_PKEY_new 1161 1_1_0d EXIST::FUNCTION: +PKCS8_pkey_get0 1162 1_1_0d EXIST::FUNCTION: +EVP_DecodeFinal 1163 1_1_0d EXIST::FUNCTION: +s2i_ASN1_OCTET_STRING 1164 1_1_0d EXIST::FUNCTION: +v2i_GENERAL_NAME_ex 1165 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get0_safes 1166 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_verify_cb 1167 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PaillierPublicKey 1168 1_1_0d EXIST::FUNCTION:PAILLIER +NCONF_dump_fp 1169 1_1_0d EXIST::FUNCTION:STDIO +EC_GROUP_get_curve_GF2m 1170 1_1_0d EXIST::FUNCTION:EC,EC2M +EVP_PKEY_meth_get_init 1171 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_print_bio 1172 1_1_0d EXIST::FUNCTION:TS +DIST_POINT_new 1173 1_1_0d EXIST::FUNCTION: +OCSP_cert_status_str 1174 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_secure_allocated 1175 1_1_0d EXIST::FUNCTION: +i2d_DSA_SIG 1176 1_1_0d EXIST::FUNCTION:DSA +i2d_CPK_PUBLIC_PARAMS 1177 1_1_0d EXIST::FUNCTION:CPK +i2d_BB1CiphertextBlock 1178 1_1_0d EXIST::FUNCTION:BB1IBE +EVP_CipherUpdate 1179 1_1_0d EXIST::FUNCTION: +OCSP_copy_nonce 1180 1_1_0d EXIST::FUNCTION:OCSP +SDF_LoadLibrary 1181 1_1_0d EXIST::FUNCTION:SDF +OBJ_cmp 1182 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get0 1183 1_1_0d EXIST::FUNCTION: +SKF_ECCSignData 1184 1_1_0d EXIST::FUNCTION:SKF +X509_STORE_set_cert_crl 1185 1_1_0d EXIST::FUNCTION: +BIO_nread 1186 1_1_0d EXIST::FUNCTION: +SDF_DestroyKey 1187 1_1_0d EXIST::FUNCTION: +BN_ucmp 1188 1_1_0d EXIST::FUNCTION: +ASN1_OBJECT_new 1189 1_1_0d EXIST::FUNCTION: +CAST_ecb_encrypt 1190 1_1_0d EXIST::FUNCTION:CAST +BN_GFP2_copy 1191 1_1_0d EXIST::FUNCTION: +X509V3_string_free 1192 1_1_0d EXIST::FUNCTION: +X509v3_asid_is_canonical 1193 1_1_0d EXIST::FUNCTION:RFC3779 +EC_POINT_get_Jprojective_coordinates_GFp 1194 1_1_0d EXIST::FUNCTION:EC +OCSP_CRLID_it 1195 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_CRLID_it 1195 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +BN_abs_is_word 1196 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_DSA 1197 1_1_0d EXIST::FUNCTION:DSA +ASN1_UTCTIME_check 1198 1_1_0d EXIST::FUNCTION: +SDF_GetErrorString 1199 1_1_0d EXIST::FUNCTION:SDF +OCSP_REVOKEDINFO_it 1200 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_REVOKEDINFO_it 1200 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +ERR_load_BN_strings 1201 1_1_0d EXIST::FUNCTION: +SKF_ECCExportSessionKey 1202 1_1_0d EXIST::FUNCTION:SKF +BN_with_flags 1203 1_1_0d EXIST::FUNCTION: +DH_OpenSSL 1204 1_1_0d EXIST::FUNCTION:DH +X509_check_ip_asc 1205 1_1_0d EXIST::FUNCTION: +EVP_get_digestbyname 1206 1_1_0d EXIST::FUNCTION: +SAF_Pkcs7_DecodeDigestedData 1207 1_1_0d EXIST::FUNCTION: +d2i_X509_CERT_AUX 1208 1_1_0d EXIST::FUNCTION: +X509_CRL_INFO_new 1209 1_1_0d EXIST::FUNCTION: +d2i_NOTICEREF 1210 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_get0_text 1211 1_1_0d EXIST::FUNCTION:TS +UI_add_user_data 1212 1_1_0d EXIST::FUNCTION:UI +PKCS7_SIGNED_it 1213 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_SIGNED_it 1213 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_CipherFinal 1214 1_1_0d EXIST::FUNCTION: +ERR_load_FFX_strings 1215 1_1_0d EXIST::FUNCTION: +X509_set_issuer_name 1216 1_1_0d EXIST::FUNCTION: +PKCS12_unpack_p7data 1217 1_1_0d EXIST::FUNCTION: +IDEA_set_decrypt_key 1218 1_1_0d EXIST::FUNCTION:IDEA +EVP_CIPHER_CTX_key_length 1219 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_set0_othername 1220 1_1_0d EXIST::FUNCTION: +BN_to_montgomery 1221 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_get0_otherName 1222 1_1_0d EXIST::FUNCTION: +PKCS12_BAGS_it 1223 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_BAGS_it 1223 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_ECCSIGNATUREBLOB_bio 1224 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +X509_VERIFY_PARAM_set_flags 1225 1_1_0d EXIST::FUNCTION: +ASYNC_cleanup_thread 1226 1_1_0d EXIST::FUNCTION: +POLICYINFO_it 1227 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICYINFO_it 1227 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_it 1228 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_it 1228 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_PCTX_set_flags 1229 1_1_0d EXIST::FUNCTION: +d2i_OCSP_CERTSTATUS 1230 1_1_0d EXIST::FUNCTION:OCSP +BIO_copy_next_retry 1231 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_num 1232 1_1_0d EXIST::FUNCTION: +BN_pseudo_rand_range 1233 1_1_0d EXIST::FUNCTION: +CRYPTO_secure_used 1234 1_1_0d EXIST::FUNCTION: +CRYPTO_get_ex_data 1235 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_find 1236 1_1_0d EXIST::FUNCTION: +EC_KEY_get_ECCrefPublicKey 1237 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +ERR_load_BB1IBE_strings 1238 1_1_0d EXIST::FUNCTION:BB1IBE +OCSP_RESPBYTES_new 1239 1_1_0d EXIST::FUNCTION:OCSP +TS_RESP_CTX_set_signer_cert 1240 1_1_0d EXIST::FUNCTION:TS +EVP_des_ede3_cbc 1241 1_1_0d EXIST::FUNCTION:DES +X509_ALGOR_free 1242 1_1_0d EXIST::FUNCTION: +i2d_DSA_PUBKEY 1243 1_1_0d EXIST::FUNCTION:DSA +BN_mod_sqr 1244 1_1_0d EXIST::FUNCTION: +SKF_ExtRSAPubKeyOperation 1245 1_1_0d EXIST::FUNCTION:SKF +PEM_write_bio_DSA_PUBKEY 1246 1_1_0d EXIST::FUNCTION:DSA +X509_STORE_unlock 1247 1_1_0d EXIST::FUNCTION: +Camellia_encrypt 1248 1_1_0d EXIST::FUNCTION:CAMELLIA +SAF_CreateSymmKeyObj 1249 1_1_0d EXIST::FUNCTION: +ENGINE_get_digest 1250 1_1_0d EXIST::FUNCTION:ENGINE +X509_ATTRIBUTE_get0_type 1251 1_1_0d EXIST::FUNCTION: +ASRange_free 1252 1_1_0d EXIST::FUNCTION:RFC3779 +CMS_signed_add1_attr 1253 1_1_0d EXIST::FUNCTION:CMS +i2d_X509_bio 1254 1_1_0d EXIST::FUNCTION: +BIO_indent 1255 1_1_0d EXIST::FUNCTION: +TXT_DB_read 1256 1_1_0d EXIST::FUNCTION: +EVP_aes_192_ecb 1257 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_set_seconds 1258 1_1_0d EXIST::FUNCTION:TS +X509at_add1_attr_by_OBJ 1259 1_1_0d EXIST::FUNCTION: +EDIPARTYNAME_new 1260 1_1_0d EXIST::FUNCTION: +EVP_VerifyFinal 1261 1_1_0d EXIST::FUNCTION: +RSA_new_from_RSAPUBLICKEYBLOB 1262 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +PKCS7_ENC_CONTENT_new 1263 1_1_0d EXIST::FUNCTION: +RSAPrivateKey_it 1264 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSAPrivateKey_it 1264 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +RSA_set_RSArefPrivateKey 1265 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +X509_REQ_set_pubkey 1266 1_1_0d EXIST::FUNCTION: +X509_get_ext_by_NID 1267 1_1_0d EXIST::FUNCTION: +X509_REQ_get_version 1268 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_set_keygen 1269 1_1_0d EXIST::FUNCTION:EC +BIO_ctrl_reset_read_request 1270 1_1_0d EXIST::FUNCTION: +EVP_sms4_ofb 1271 1_1_0d EXIST::FUNCTION:SMS4 +SOF_GetErrorString 1272 1_1_0d EXIST::FUNCTION:SOF +X509_LOOKUP_new 1273 1_1_0d EXIST::FUNCTION: +SOF_VerifySignedMessageDetach 1274 1_1_0d EXIST::FUNCTION: +OCSP_sendreq_nbio 1275 1_1_0d EXIST::FUNCTION:OCSP +PKCS7_ENVELOPE_it 1276 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ENVELOPE_it 1276 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CRYPTO_ccm128_setiv 1277 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_ecb 1278 1_1_0d EXIST::FUNCTION:CAMELLIA +d2i_SCT_LIST 1279 1_1_0d EXIST::FUNCTION:CT +EVP_PKEY_asn1_get0_info 1280 1_1_0d EXIST::FUNCTION: +X509_NAME_print 1281 1_1_0d EXIST::FUNCTION: +UTF8_putc 1282 1_1_0d EXIST::FUNCTION: +PEM_write_SM9PrivateKey 1283 1_1_0d EXIST::FUNCTION:SM9,STDIO +BN_mul_word 1284 1_1_0d EXIST::FUNCTION: +DSA_meth_get_sign_setup 1285 1_1_0d EXIST::FUNCTION:DSA +X509_STORE_CTX_get_get_issuer 1286 1_1_0d EXIST::FUNCTION: +d2i_SM9Ciphertext 1287 1_1_0d EXIST::FUNCTION:SM9 +ERR_load_DSA_strings 1288 1_1_0d EXIST::FUNCTION:DSA +SAF_HashFinal 1289 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_add1_ext_i2d 1290 1_1_0d EXIST::FUNCTION:OCSP +ECIES_PARAMS_init_with_recommended 1291 1_1_0d EXIST::FUNCTION:ECIES +DH_meth_get0_app_data 1292 1_1_0d EXIST::FUNCTION:DH +EC_KEY_new_method 1293 1_1_0d EXIST::FUNCTION:EC +ASN1_mbstring_copy 1294 1_1_0d EXIST::FUNCTION: +CRYPTO_cbc128_encrypt 1295 1_1_0d EXIST::FUNCTION: +i2d_X509_ALGOR 1296 1_1_0d EXIST::FUNCTION: +ERR_load_CT_strings 1297 1_1_0d EXIST::FUNCTION:CT +SRP_create_verifier_BN 1298 1_1_0d EXIST::FUNCTION:SRP +EC_KEY_METHOD_set_sign 1299 1_1_0d EXIST::FUNCTION:EC +BIO_new_NDEF 1300 1_1_0d EXIST::FUNCTION: +RSA_sign 1301 1_1_0d EXIST::FUNCTION:RSA +DH_set0_pqg 1302 1_1_0d EXIST::FUNCTION:DH +BF_cfb64_encrypt 1303 1_1_0d EXIST::FUNCTION:BF +EVP_rc4_40 1304 1_1_0d EXIST::FUNCTION:RC4 +X509_NAME_set 1305 1_1_0d EXIST::FUNCTION: +BN_nist_mod_384 1306 1_1_0d EXIST::FUNCTION: +MD4 1307 1_1_0d EXIST::FUNCTION:MD4 +EVP_rc2_ofb 1308 1_1_0d EXIST::FUNCTION:RC2 +X509_issuer_and_serial_cmp 1309 1_1_0d EXIST::FUNCTION: +CMS_stream 1310 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_set_get_crl 1311 1_1_0d EXIST::FUNCTION: +AUTHORITY_KEYID_it 1312 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +AUTHORITY_KEYID_it 1312 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_PKEY_up_ref 1313 1_1_0d EXIST::FUNCTION: +SRP_VBASE_new 1314 1_1_0d EXIST::FUNCTION:SRP +X509_load_cert_crl_file 1315 1_1_0d EXIST::FUNCTION: +X509_policy_node_get0_policy 1316 1_1_0d EXIST::FUNCTION: +SAF_GetRootCaCertificate 1317 1_1_0d EXIST::FUNCTION: +X509V3_get_section 1318 1_1_0d EXIST::FUNCTION: +BIO_closesocket 1319 1_1_0d EXIST::FUNCTION:SOCK +BIO_test_flags 1320 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1 1321 1_1_0d EXIST::FUNCTION: +UI_method_get_closer 1322 1_1_0d EXIST::FUNCTION:UI +TS_TST_INFO_get_accuracy 1323 1_1_0d EXIST::FUNCTION:TS +i2o_SCT_LIST 1324 1_1_0d EXIST::FUNCTION:CT +EVP_get_default_cipher 1325 1_1_0d EXIST::FUNCTION: +EVP_idea_ofb 1326 1_1_0d EXIST::FUNCTION:IDEA +EVP_CIPHER_do_all 1327 1_1_0d EXIST::FUNCTION: +EVP_aes_192_cfb128 1328 1_1_0d EXIST::FUNCTION: +EC_KEY_set_ECCrefPrivateKey 1329 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +SEED_set_key 1330 1_1_0d EXIST::FUNCTION:SEED +PEM_write_SM9PublicParameters 1331 1_1_0d EXIST::FUNCTION:SM9,STDIO +OCSP_resp_find 1332 1_1_0d EXIST::FUNCTION:OCSP +SAF_Pkcs7_DecodeSignedData 1333 1_1_0d EXIST::FUNCTION: +TXT_DB_free 1334 1_1_0d EXIST::FUNCTION: +TS_CONF_load_key 1335 1_1_0d EXIST::FUNCTION:TS +CRYPTO_secure_malloc_init 1336 1_1_0d EXIST::FUNCTION: +TS_CONF_set_signer_key 1337 1_1_0d EXIST::FUNCTION:TS +PEM_write_X509_CRL 1338 1_1_0d EXIST::FUNCTION:STDIO +PEM_write_bio_SM9MasterSecret 1339 1_1_0d EXIST::FUNCTION:SM9 +CMAC_CTX_new 1340 1_1_0d EXIST::FUNCTION:CMAC +X509_CERT_AUX_free 1341 1_1_0d EXIST::FUNCTION: +SAF_VerifySignByCert 1342 1_1_0d EXIST::FUNCTION: +ECPKPARAMETERS_new 1343 1_1_0d EXIST::FUNCTION:EC +ASN1_STRING_print_ex_fp 1344 1_1_0d EXIST::FUNCTION:STDIO +OTHERNAME_free 1345 1_1_0d EXIST::FUNCTION: +DSA_new 1346 1_1_0d EXIST::FUNCTION:DSA +X509_NAME_get_text_by_OBJ 1347 1_1_0d EXIST::FUNCTION: +EVP_sms4_ccm 1348 1_1_0d EXIST::FUNCTION:SMS4 +CRYPTO_memdup 1349 1_1_0d EXIST::FUNCTION: +MD5_Transform 1350 1_1_0d EXIST::FUNCTION:MD5 +BFMasterSecret_free 1351 1_1_0d EXIST::FUNCTION:BFIBE +BN_CTX_start 1352 1_1_0d EXIST::FUNCTION: +X509v3_asid_inherits 1353 1_1_0d EXIST::FUNCTION:RFC3779 +SDF_PrintECCCipher 1354 1_1_0d EXIST::FUNCTION:SDF +SRP_Calc_x 1355 1_1_0d EXIST::FUNCTION:SRP +CMS_dataFinal 1356 1_1_0d EXIST::FUNCTION:CMS +EVP_PKEY_type 1357 1_1_0d EXIST::FUNCTION: +OCSP_onereq_get0_id 1358 1_1_0d EXIST::FUNCTION:OCSP +OCSP_id_cmp 1359 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_get0_RSA 1360 1_1_0d EXIST::FUNCTION:RSA +BIO_vsnprintf 1361 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_get_asn1_iv 1362 1_1_0d EXIST::FUNCTION: +PEM_read_bio_NETSCAPE_CERT_SEQUENCE 1363 1_1_0d EXIST::FUNCTION: +i2d_TS_MSG_IMPRINT_bio 1364 1_1_0d EXIST::FUNCTION:TS +X509_ATTRIBUTE_create_by_txt 1365 1_1_0d EXIST::FUNCTION: +RSA_blinding_off 1366 1_1_0d EXIST::FUNCTION:RSA +OCSP_request_add0_id 1367 1_1_0d EXIST::FUNCTION:OCSP +X509_set1_notBefore 1368 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_get0_signer_id 1369 1_1_0d EXIST::FUNCTION:CMS +ASN1_item_d2i 1370 1_1_0d EXIST::FUNCTION: +d2i_PKCS8_fp 1371 1_1_0d EXIST::FUNCTION:STDIO +CMS_add_standard_smimecap 1372 1_1_0d EXIST::FUNCTION:CMS +BIO_get_port 1373 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +BIO_ADDR_rawaddress 1374 1_1_0d EXIST::FUNCTION:SOCK +RSA_set0_key 1375 1_1_0d EXIST::FUNCTION:RSA +PEM_X509_INFO_read 1376 1_1_0d EXIST::FUNCTION:STDIO +i2d_X509_EXTENSIONS 1377 1_1_0d EXIST::FUNCTION: +i2d_SM9Ciphertext 1378 1_1_0d EXIST::FUNCTION:SM9 +i2d_PKCS7_NDEF 1379 1_1_0d EXIST::FUNCTION: +SHA256_Update 1380 1_1_0d EXIST::FUNCTION: +X509_NAME_free 1381 1_1_0d EXIST::FUNCTION: +PKCS12_key_gen_uni 1382 1_1_0d EXIST::FUNCTION: +i2d_TS_REQ 1383 1_1_0d EXIST::FUNCTION:TS +CMS_get1_ReceiptRequest 1384 1_1_0d EXIST::FUNCTION:CMS +d2i_CMS_ContentInfo 1385 1_1_0d EXIST::FUNCTION:CMS +EVP_PKEY_get_attr 1386 1_1_0d EXIST::FUNCTION: +CRYPTO_cfb128_1_encrypt 1387 1_1_0d EXIST::FUNCTION: +SM9_unwrap_key 1388 1_1_0d EXIST::FUNCTION:SM9 +SOF_ExportUserCert 1389 1_1_0d EXIST::FUNCTION: +SDF_ExchangeDigitEnvelopeBaseOnECC 1390 1_1_0d EXIST::FUNCTION: +ASN1_buf_print 1391 1_1_0d EXIST::FUNCTION: +X509_SIG_it 1392 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_SIG_it 1392 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_CTX_get 1393 1_1_0d EXIST::FUNCTION: +i2d_X509_fp 1394 1_1_0d EXIST::FUNCTION:STDIO +SDF_PrintECCSignature 1395 1_1_0d EXIST::FUNCTION:SDF +ASN1_STRING_get0_data 1396 1_1_0d EXIST::FUNCTION: +FpPoint_free 1397 1_1_0d EXIST::FUNCTION: +UI_get0_result 1398 1_1_0d EXIST::FUNCTION:UI +X509_REVOKED_get_ext 1399 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_http 1400 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_get1_RSA 1401 1_1_0d EXIST::FUNCTION:RSA +SKF_ChangeDevAuthKey 1402 1_1_0d EXIST::FUNCTION:SKF +PKCS12_pack_p7data 1403 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set_hostflags 1404 1_1_0d EXIST::FUNCTION: +SEED_ecb_encrypt 1405 1_1_0d EXIST::FUNCTION:SEED +SM9_VerifyInit 1406 1_1_0d EXIST::FUNCTION:SM9 +OBJ_sn2nid 1407 1_1_0d EXIST::FUNCTION: +X509_REQ_get_extensions 1408 1_1_0d EXIST::FUNCTION: +BN_GFP2_sqr 1409 1_1_0d EXIST::FUNCTION: +RAND_pseudo_bytes 1410 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +SKF_GenerateKeyWithECC 1411 1_1_0d EXIST::FUNCTION:SKF +PEM_ASN1_write_bio 1412 1_1_0d EXIST::FUNCTION: +BB1IBE_encrypt 1413 1_1_0d EXIST::FUNCTION:BB1IBE +ENGINE_register_pkey_meths 1414 1_1_0d EXIST::FUNCTION:ENGINE +b2i_PublicKey_bio 1415 1_1_0d EXIST::FUNCTION:DSA +TS_TST_INFO_delete_ext 1416 1_1_0d EXIST::FUNCTION:TS +X509_CRL_print_fp 1417 1_1_0d EXIST::FUNCTION:STDIO +SXNET_add_id_asc 1418 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_node_stats 1419 1_1_0d EXIST::FUNCTION:STDIO +CRYPTO_secure_zalloc 1420 1_1_0d EXIST::FUNCTION: +RSA_print 1421 1_1_0d EXIST::FUNCTION:RSA +CMS_get0_signers 1422 1_1_0d EXIST::FUNCTION:CMS +DES_ecb3_encrypt 1423 1_1_0d EXIST::FUNCTION:DES +TS_RESP_CTX_add_md 1424 1_1_0d EXIST::FUNCTION:TS +CRYPTO_mem_ctrl 1425 1_1_0d EXIST::FUNCTION: +SDF_ExportSignPublicKey_ECC 1426 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_pkey_asn1_meths 1427 1_1_0d EXIST::FUNCTION:ENGINE +BN_bn2mpi 1428 1_1_0d EXIST::FUNCTION: +SKF_NewEnvelopedKey 1429 1_1_0d EXIST::FUNCTION:SKF +EC_GROUP_dup 1430 1_1_0d EXIST::FUNCTION:EC +COMP_CTX_get_type 1431 1_1_0d EXIST::FUNCTION:COMP +d2i_ECCCIPHERBLOB_fp 1432 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO +X509_REQ_add1_attr_by_txt 1433 1_1_0d EXIST::FUNCTION: +BIO_new_dgram_sctp 1434 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +RSA_setup_blinding 1435 1_1_0d EXIST::FUNCTION:RSA +EVP_MD_meth_new 1436 1_1_0d EXIST::FUNCTION: +CRYPTO_nistcts128_encrypt 1437 1_1_0d EXIST::FUNCTION: +TS_REQ_get_cert_req 1438 1_1_0d EXIST::FUNCTION:TS +d2i_ECPrivateKey_fp 1439 1_1_0d EXIST::FUNCTION:EC,STDIO +BFPublicParameters_free 1440 1_1_0d EXIST::FUNCTION:BFIBE +OPENSSL_atexit 1441 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_aad 1442 1_1_0d EXIST::FUNCTION: +BIO_sock_init 1443 1_1_0d EXIST::FUNCTION:SOCK +PKCS12_BAGS_free 1444 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithIPK_ECC 1445 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod 1446 1_1_0d EXIST::FUNCTION:EC2M +EC_type1curve_tate 1447 1_1_0d EXIST::FUNCTION: +EVP_rc2_64_cbc 1448 1_1_0d EXIST::FUNCTION:RC2 +X509_STORE_CTX_get_check_policy 1449 1_1_0d EXIST::FUNCTION: +EVP_md4 1450 1_1_0d EXIST::FUNCTION:MD4 +EVP_PKEY_delete_attr 1451 1_1_0d EXIST::FUNCTION: +SOF_ChangePassWd 1452 1_1_0d EXIST::FUNCTION: +BN_from_montgomery 1453 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_SIGNER_INFO 1454 1_1_0d EXIST::FUNCTION: +i2d_X509_NAME_ENTRY 1455 1_1_0d EXIST::FUNCTION: +ENGINE_get_first 1456 1_1_0d EXIST::FUNCTION:ENGINE +SKF_ImportRSAKeyPair 1457 1_1_0d EXIST::FUNCTION:SKF +X509_aux_print 1458 1_1_0d EXIST::FUNCTION: +BIO_ADDR_rawmake 1459 1_1_0d EXIST::FUNCTION:SOCK +PAILLIER_up_ref 1460 1_1_0d EXIST::FUNCTION:PAILLIER +i2d_X509_REVOKED 1461 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_free 1462 1_1_0d EXIST::FUNCTION: +EVP_PBE_get 1463 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_free 1464 1_1_0d EXIST::FUNCTION:TS +ASIdentifiers_it 1465 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASIdentifiers_it 1465 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +d2i_X509_fp 1466 1_1_0d EXIST::FUNCTION:STDIO +X509_get0_serialNumber 1467 1_1_0d EXIST::FUNCTION: +RSA_meth_get_flags 1468 1_1_0d EXIST::FUNCTION:RSA +EVP_CIPHER_block_size 1469 1_1_0d EXIST::FUNCTION: +PKCS8_PRIV_KEY_INFO_free 1470 1_1_0d EXIST::FUNCTION: +CONF_imodule_get_name 1471 1_1_0d EXIST::FUNCTION: +CMS_ContentInfo_it 1472 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS +CMS_ContentInfo_it 1472 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS +BUF_MEM_new 1473 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_set_micros 1474 1_1_0d EXIST::FUNCTION:TS +i2d_PKCS12 1475 1_1_0d EXIST::FUNCTION: +EVP_des_cfb64 1476 1_1_0d EXIST::FUNCTION:DES +X509_STORE_get_cleanup 1477 1_1_0d EXIST::FUNCTION: +CRYPTO_realloc 1478 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_free 1479 1_1_0d EXIST::FUNCTION: +i2d_re_X509_CRL_tbs 1480 1_1_0d EXIST::FUNCTION: +X509at_get_attr_by_OBJ 1481 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_get_ext_by_OBJ 1482 1_1_0d EXIST::FUNCTION:OCSP +SDF_ExternalPublicKeyOperation_RSA 1483 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get1_chain 1484 1_1_0d EXIST::FUNCTION: +RSA_get_RSAPUBLICKEYBLOB 1485 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +EVP_des_ofb 1486 1_1_0d EXIST::FUNCTION:DES +i2d_DSAPrivateKey_fp 1487 1_1_0d EXIST::FUNCTION:DSA,STDIO +OPENSSL_sk_new_null 1488 1_1_0d EXIST::FUNCTION: +OCSP_response_status 1489 1_1_0d EXIST::FUNCTION:OCSP +EVP_des_ede_cbc 1490 1_1_0d EXIST::FUNCTION:DES +ASN1_STRING_free 1491 1_1_0d EXIST::FUNCTION: +RAND_get_rand_method 1492 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_get_ext_count 1493 1_1_0d EXIST::FUNCTION:OCSP +i2d_DSA_PUBKEY_fp 1494 1_1_0d EXIST::FUNCTION:DSA,STDIO +BN_GF2m_mod_inv_arr 1495 1_1_0d EXIST::FUNCTION:EC2M +i2d_PKCS8PrivateKey_bio 1496 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_order 1497 1_1_0d EXIST::FUNCTION:EC +PKCS8_set0_pbe 1498 1_1_0d EXIST::FUNCTION: +X509_NAME_get_text_by_NID 1499 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_free 1500 1_1_0d EXIST::FUNCTION:TS +SKF_GenECCKeyPair 1501 1_1_0d EXIST::FUNCTION:SKF +EC_GFp_sm2p256_method 1502 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128,SM2 +RSA_get0_crt_params 1503 1_1_0d EXIST::FUNCTION:RSA +PEM_write_bio_PKCS8PrivateKey 1504 1_1_0d EXIST::FUNCTION: +SDF_GenerateRandom 1505 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kari_get0_alg 1506 1_1_0d EXIST::FUNCTION:CMS +CPK_MASTER_SECRET_create 1507 1_1_0d EXIST::FUNCTION:CPK +RSAPublicKey_it 1508 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSAPublicKey_it 1508 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +EVP_PKEY_set1_tls_encodedpoint 1509 1_1_0d EXIST::FUNCTION: +ESS_ISSUER_SERIAL_new 1510 1_1_0d EXIST::FUNCTION:TS +PEM_read_PaillierPrivateKey 1511 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +ENGINE_unregister_RAND 1512 1_1_0d EXIST::FUNCTION:ENGINE +ESS_CERT_ID_new 1513 1_1_0d EXIST::FUNCTION:TS +CONF_imodule_get_flags 1514 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithEPK_ECC 1515 1_1_0d EXIST::FUNCTION: +SKF_EncryptInit 1516 1_1_0d EXIST::FUNCTION:SKF +RSA_padding_add_PKCS1_OAEP_mgf1 1517 1_1_0d EXIST::FUNCTION:RSA +EVP_PKEY_free 1518 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyPair_ECC 1519 1_1_0d EXIST::FUNCTION: +ASYNC_WAIT_CTX_set_wait_fd 1520 1_1_0d EXIST::FUNCTION: +DH_meth_new 1521 1_1_0d EXIST::FUNCTION:DH +PKCS7_sign 1522 1_1_0d EXIST::FUNCTION: +SAF_Base64_CreateBase64Obj 1523 1_1_0d EXIST::FUNCTION: +BN_get_rfc3526_prime_6144 1524 1_1_0d EXIST::FUNCTION: +CMS_unsigned_get_attr_count 1525 1_1_0d EXIST::FUNCTION:CMS +PKCS12_add_safe 1526 1_1_0d EXIST::FUNCTION: +OBJ_add_sigid 1527 1_1_0d EXIST::FUNCTION: +OCSP_basic_add1_cert 1528 1_1_0d EXIST::FUNCTION:OCSP +OPENSSL_strnlen 1529 1_1_0d EXIST::FUNCTION: +EVP_CipherInit_ex 1530 1_1_0d EXIST::FUNCTION: +RAND_load_file 1531 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add 1532 1_1_0d EXIST::FUNCTION: +SAF_Pkcs7_EncodeDigestedData 1533 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_decrypt_ctr32 1534 1_1_0d EXIST::FUNCTION: +i2d_X509_VAL 1535 1_1_0d EXIST::FUNCTION: +PKCS7_ISSUER_AND_SERIAL_new 1536 1_1_0d EXIST::FUNCTION: +SAF_Mac 1537 1_1_0d EXIST::FUNCTION: +X509_CRL_METHOD_new 1538 1_1_0d EXIST::FUNCTION: +ASN1_VISIBLESTRING_free 1539 1_1_0d EXIST::FUNCTION: +EC_KEY_set_default_secg_method 1540 1_1_0d EXIST::FUNCTION:SM2 +i2s_ASN1_IA5STRING 1541 1_1_0d EXIST::FUNCTION: +ENGINE_get_pkey_asn1_meths 1542 1_1_0d EXIST::FUNCTION:ENGINE +EVP_CIPHER_CTX_set_padding 1543 1_1_0d EXIST::FUNCTION: +SXNET_free 1544 1_1_0d EXIST::FUNCTION: +IPAddressRange_it 1545 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressRange_it 1545 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +EVP_add_cipher 1546 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_mul_arr 1547 1_1_0d EXIST::FUNCTION:EC2M +CMS_final 1548 1_1_0d EXIST::FUNCTION:CMS +TS_RESP_set_status_info 1549 1_1_0d EXIST::FUNCTION:TS +X509v3_addr_get_afi 1550 1_1_0d EXIST::FUNCTION:RFC3779 +d2i_ASN1_TIME 1551 1_1_0d EXIST::FUNCTION: +SDF_InternalPublicKeyOperation_RSA 1552 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_set_public 1553 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_error 1554 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_get_int64 1555 1_1_0d EXIST::FUNCTION: +DH_set_default_method 1556 1_1_0d EXIST::FUNCTION:DH +ASYNC_get_wait_ctx 1557 1_1_0d EXIST::FUNCTION: +SAF_AddTrustedRootCaCertificate 1558 1_1_0d EXIST::FUNCTION: +i2d_PaillierPublicKey 1559 1_1_0d EXIST::FUNCTION:PAILLIER +PKCS7_it 1560 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_it 1560 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_write_NETSCAPE_CERT_SEQUENCE 1561 1_1_0d EXIST::FUNCTION:STDIO +ENGINE_set_default_pkey_meths 1562 1_1_0d EXIST::FUNCTION:ENGINE +X509_STORE_CTX_cleanup 1563 1_1_0d EXIST::FUNCTION: +X509_CRL_METHOD_free 1564 1_1_0d EXIST::FUNCTION: +BN_sub_word 1565 1_1_0d EXIST::FUNCTION: +DIRECTORYSTRING_free 1566 1_1_0d EXIST::FUNCTION: +SOF_CreateTimeStampResponse 1567 1_1_0d EXIST::FUNCTION: +X509_CRL_get0_extensions 1568 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_it 1569 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM2 +SM2CiphertextValue_it 1569 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM2 +CPK_PUBLIC_PARAMS_validate_private_key 1570 1_1_0d EXIST::FUNCTION:CPK +i2d_ASRange 1571 1_1_0d EXIST::FUNCTION:RFC3779 +DH_get0_pqg 1572 1_1_0d EXIST::FUNCTION:DH +TS_REQ_get_exts 1573 1_1_0d EXIST::FUNCTION:TS +BIO_ADDRINFO_free 1574 1_1_0d EXIST::FUNCTION:SOCK +SM2_do_verify 1575 1_1_0d EXIST::FUNCTION:SM2 +X509_STORE_lock 1576 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get0_pkcs8 1577 1_1_0d EXIST::FUNCTION: +RSA_get_RSArefPrivateKey 1578 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +i2d_OCSP_RESPID 1579 1_1_0d EXIST::FUNCTION:OCSP +SKF_ExtECCSign 1580 1_1_0d EXIST::FUNCTION:SKF +X509_VERIFY_PARAM_get_depth 1581 1_1_0d EXIST::FUNCTION: +SDF_CloseSession 1582 1_1_0d EXIST::FUNCTION: +BN_nist_mod_func 1583 1_1_0d EXIST::FUNCTION: +ENGINE_get_id 1584 1_1_0d EXIST::FUNCTION:ENGINE +ERR_add_error_vdata 1585 1_1_0d EXIST::FUNCTION: +SKF_EncryptFinal 1586 1_1_0d EXIST::FUNCTION:SKF +CMS_RecipientInfo_kari_set0_pkey 1587 1_1_0d EXIST::FUNCTION:CMS +EVP_get_cipherbyname 1588 1_1_0d EXIST::FUNCTION: +X509_alias_get0 1589 1_1_0d EXIST::FUNCTION: +BFMasterSecret_it 1590 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFMasterSecret_it 1590 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +i2d_CRL_DIST_POINTS 1591 1_1_0d EXIST::FUNCTION: +PEM_write_PUBKEY 1592 1_1_0d EXIST::FUNCTION:STDIO +X509_STORE_get_check_policy 1593 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_update_fn 1594 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_get_ext_count 1595 1_1_0d EXIST::FUNCTION:OCSP +PKCS8_add_keyusage 1596 1_1_0d EXIST::FUNCTION: +ERR_add_error_data 1597 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_new 1598 1_1_0d EXIST::FUNCTION: +i2d_RSAPublicKey_bio 1599 1_1_0d EXIST::FUNCTION:RSA +X509_CRL_INFO_free 1600 1_1_0d EXIST::FUNCTION: +ERR_lib_error_string 1601 1_1_0d EXIST::FUNCTION: +EC_GROUP_get0_cofactor 1602 1_1_0d EXIST::FUNCTION:EC +OCSP_REQ_CTX_free 1603 1_1_0d EXIST::FUNCTION:OCSP +EVP_cast5_ecb 1604 1_1_0d EXIST::FUNCTION:CAST +ASN1_GENERALIZEDTIME_new 1605 1_1_0d EXIST::FUNCTION: +BN_get_rfc3526_prime_3072 1606 1_1_0d EXIST::FUNCTION: +TS_REQ_get_ext_d2i 1607 1_1_0d EXIST::FUNCTION:TS +PKCS12_SAFEBAG_create_cert 1608 1_1_0d EXIST::FUNCTION: +CONF_modules_load_file 1609 1_1_0d EXIST::FUNCTION: +sms4_cbc_encrypt 1610 1_1_0d EXIST::FUNCTION:SMS4 +BF_ofb64_encrypt 1611 1_1_0d EXIST::FUNCTION:BF +i2d_BFPrivateKeyBlock 1612 1_1_0d EXIST::FUNCTION:BFIBE +BIO_f_linebuffer 1613 1_1_0d EXIST::FUNCTION: +d2i_TS_TST_INFO 1614 1_1_0d EXIST::FUNCTION:TS +UI_set_ex_data 1615 1_1_0d EXIST::FUNCTION:UI +X509_STORE_get0_objects 1616 1_1_0d EXIST::FUNCTION: +PKCS7_add_signature 1617 1_1_0d EXIST::FUNCTION: +i2d_PrivateKey_bio 1618 1_1_0d EXIST::FUNCTION: +ERR_load_DH_strings 1619 1_1_0d EXIST::FUNCTION:DH +COMP_get_type 1620 1_1_0d EXIST::FUNCTION:COMP +d2i_PKCS7_ENVELOPE 1621 1_1_0d EXIST::FUNCTION: +CMS_decrypt_set1_pkey 1622 1_1_0d EXIST::FUNCTION:CMS +BN_swap 1623 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_DH 1624 1_1_0d EXIST::FUNCTION:DH +PEM_ASN1_write 1625 1_1_0d EXIST::FUNCTION:STDIO +PEM_read_bio_RSA_PUBKEY 1626 1_1_0d EXIST::FUNCTION:RSA +EVP_des_ede3 1627 1_1_0d EXIST::FUNCTION:DES +SKF_DecryptUpdate 1628 1_1_0d EXIST::FUNCTION:SKF +d2i_TS_MSG_IMPRINT_bio 1629 1_1_0d EXIST::FUNCTION:TS +WHIRLPOOL_Update 1630 1_1_0d EXIST::FUNCTION:WHIRLPOOL +X509V3_add_value_uchar 1631 1_1_0d EXIST::FUNCTION: +CMAC_Final 1632 1_1_0d EXIST::FUNCTION:CMAC +EVP_aes_128_cbc 1633 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext_by_OBJ 1634 1_1_0d EXIST::FUNCTION:OCSP +i2d_OCSP_CERTSTATUS 1635 1_1_0d EXIST::FUNCTION:OCSP +X509_VAL_it 1636 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_VAL_it 1636 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_PKCS12_MAC_DATA 1637 1_1_0d EXIST::FUNCTION: +X509_get_issuer_name 1638 1_1_0d EXIST::FUNCTION: +CRYPTO_dup_ex_data 1639 1_1_0d EXIST::FUNCTION: +SOF_GetCertTrustListAltNames 1640 1_1_0d EXIST::FUNCTION: +X509_REQ_print_fp 1641 1_1_0d EXIST::FUNCTION:STDIO +d2i_GENERAL_NAMES 1642 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_new 1643 1_1_0d EXIST::FUNCTION: +HMAC_CTX_new 1644 1_1_0d EXIST::FUNCTION: +ERR_pop_to_mark 1645 1_1_0d EXIST::FUNCTION: +BF_cbc_encrypt 1646 1_1_0d EXIST::FUNCTION:BF +i2d_RSAPrivateKey 1647 1_1_0d EXIST::FUNCTION:RSA +ENGINE_set_finish_function 1648 1_1_0d EXIST::FUNCTION:ENGINE +X509_STORE_set_check_issued 1649 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_encrypt_ctr32 1650 1_1_0d EXIST::FUNCTION: +EC_KEY_get_default_method 1651 1_1_0d EXIST::FUNCTION:EC +a2d_ASN1_OBJECT 1652 1_1_0d EXIST::FUNCTION: +CRYPTO_secure_malloc_initialized 1653 1_1_0d EXIST::FUNCTION: +DISPLAYTEXT_free 1654 1_1_0d EXIST::FUNCTION: +RSA_X931_derive_ex 1655 1_1_0d EXIST::FUNCTION:RSA +BIO_f_null 1656 1_1_0d EXIST::FUNCTION: +ECIES_PARAMS_get_enc 1657 1_1_0d EXIST::FUNCTION:ECIES +i2d_SM9Ciphertext_fp 1658 1_1_0d EXIST::FUNCTION:SM9,STDIO +BIO_ctrl_get_write_guarantee 1659 1_1_0d EXIST::FUNCTION: +POLICYINFO_new 1660 1_1_0d EXIST::FUNCTION: +DSA_set0_key 1661 1_1_0d EXIST::FUNCTION:DSA +DH_test_flags 1662 1_1_0d EXIST::FUNCTION:DH +PKCS7_set_content 1663 1_1_0d EXIST::FUNCTION: +PEM_write_DHxparams 1664 1_1_0d EXIST::FUNCTION:DH,STDIO +OCSP_basic_sign 1665 1_1_0d EXIST::FUNCTION:OCSP +d2i_ASN1_T61STRING 1666 1_1_0d EXIST::FUNCTION: +WHIRLPOOL_Final 1667 1_1_0d EXIST::FUNCTION:WHIRLPOOL +SHA1_Init 1668 1_1_0d EXIST::FUNCTION: +ASIdentifierChoice_free 1669 1_1_0d EXIST::FUNCTION:RFC3779 +X509_PURPOSE_get0_name 1670 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_get_compute_key 1671 1_1_0d EXIST::FUNCTION:EC +EVP_DigestFinal_ex 1672 1_1_0d EXIST::FUNCTION: +PEM_write_bio_SM9PublicKey 1673 1_1_0d EXIST::FUNCTION:SM9 +ASN1_UTCTIME_new 1674 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_compare_id 1675 1_1_0d EXIST::FUNCTION: +OCSP_RESPID_new 1676 1_1_0d EXIST::FUNCTION:OCSP +X509_to_X509_REQ 1677 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_get0_signature 1678 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_CTX_get_verify 1679 1_1_0d EXIST::FUNCTION: +UI_get0_user_data 1680 1_1_0d EXIST::FUNCTION:UI +POLICY_MAPPING_it 1681 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICY_MAPPING_it 1681 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +TS_CONF_set_digests 1682 1_1_0d EXIST::FUNCTION:TS +PEM_write_PKCS7 1683 1_1_0d EXIST::FUNCTION:STDIO +SM9PrivateKey_get_gmtls_public_key 1684 1_1_0d EXIST::FUNCTION:SM9 +DSO_get_filename 1685 1_1_0d EXIST::FUNCTION: +a2i_GENERAL_NAME 1686 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_get_sgd 1687 1_1_0d EXIST::FUNCTION:GMAPI +i2d_PBKDF2PARAM 1688 1_1_0d EXIST::FUNCTION: +EC_KEY_set_public_key_affine_coordinates 1689 1_1_0d EXIST::FUNCTION:EC +X509V3_add_value_bool 1690 1_1_0d EXIST::FUNCTION: +d2i_ASN1_INTEGER 1691 1_1_0d EXIST::FUNCTION: +PKCS1_MGF1 1692 1_1_0d EXIST::FUNCTION:RSA +PEM_read_DHparams 1693 1_1_0d EXIST::FUNCTION:DH,STDIO +BIO_s_socket 1694 1_1_0d EXIST::FUNCTION:SOCK +NETSCAPE_SPKI_get_pubkey 1695 1_1_0d EXIST::FUNCTION: +X509_OBJECT_idx_by_subject 1696 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get0_attr 1697 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_get_micros 1698 1_1_0d EXIST::FUNCTION:TS +X509_CRL_set_default_method 1699 1_1_0d EXIST::FUNCTION: +EDIPARTYNAME_free 1700 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_decrypt 1701 1_1_0d EXIST::FUNCTION:OCB +TS_RESP_verify_signature 1702 1_1_0d EXIST::FUNCTION:TS +ASN1_item_ndef_i2d 1703 1_1_0d EXIST::FUNCTION: +d2i_BFPublicParameters 1704 1_1_0d EXIST::FUNCTION:BFIBE +PEM_read_SM9MasterSecret 1705 1_1_0d EXIST::FUNCTION:SM9,STDIO +SAF_Finalize 1706 1_1_0d EXIST::FUNCTION: +X509_get_pubkey_parameters 1707 1_1_0d EXIST::FUNCTION: +d2i_PKCS7 1708 1_1_0d EXIST::FUNCTION: +OCSP_crl_reason_str 1709 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_get_get_crl 1710 1_1_0d EXIST::FUNCTION: +X509_verify 1711 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get0_policy_tree 1712 1_1_0d EXIST::FUNCTION: +i2d_RSA_PUBKEY_fp 1713 1_1_0d EXIST::FUNCTION:RSA,STDIO +OCSP_ONEREQ_get_ext 1714 1_1_0d EXIST::FUNCTION:OCSP +TS_TST_INFO_set_serial 1715 1_1_0d EXIST::FUNCTION:TS +CRYPTO_ofb128_encrypt 1716 1_1_0d EXIST::FUNCTION: +BN_mod_exp_mont_word 1717 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_nbio 1718 1_1_0d EXIST::FUNCTION:OCSP +BN_to_ASN1_INTEGER 1719 1_1_0d EXIST::FUNCTION: +Camellia_set_key 1720 1_1_0d EXIST::FUNCTION:CAMELLIA +OCSP_crlID_new 1721 1_1_0d EXIST:!VMS:FUNCTION:OCSP +OCSP_crlID2_new 1721 1_1_0d EXIST:VMS:FUNCTION:OCSP +UI_process 1722 1_1_0d EXIST::FUNCTION:UI +RSA_private_encrypt 1723 1_1_0d EXIST::FUNCTION:RSA +BIO_new_bio_pair 1724 1_1_0d EXIST::FUNCTION: +ASN1_PRINTABLE_new 1725 1_1_0d EXIST::FUNCTION: +TS_CONF_set_signer_digest 1726 1_1_0d EXIST::FUNCTION:TS +EVP_CIPHER_meth_get_set_asn1_params 1727 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get0_parent_ctx 1728 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_get_ECCCIPHERBLOB 1729 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 +CONF_load_fp 1730 1_1_0d EXIST::FUNCTION:STDIO +DSA_meth_set_finish 1731 1_1_0d EXIST::FUNCTION:DSA +X509v3_asid_validate_resource_set 1732 1_1_0d EXIST::FUNCTION:RFC3779 +ERR_put_error 1733 1_1_0d EXIST::FUNCTION: +CMS_sign_receipt 1734 1_1_0d EXIST::FUNCTION:CMS +PKCS12_SAFEBAG_it 1735 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_SAFEBAG_it 1735 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +IPAddressChoice_it 1736 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressChoice_it 1736 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +CONF_imodule_set_usr_data 1737 1_1_0d EXIST::FUNCTION: +PKCS12_mac_present 1738 1_1_0d EXIST::FUNCTION: +SDF_DeleteFile 1739 1_1_0d EXIST::FUNCTION: +TS_REQ_print_bio 1740 1_1_0d EXIST::FUNCTION:TS +i2d_PKCS8PrivateKeyInfo_fp 1741 1_1_0d EXIST::FUNCTION:STDIO +ASN1_BMPSTRING_new 1742 1_1_0d EXIST::FUNCTION: +SRP_Calc_A 1743 1_1_0d EXIST::FUNCTION:SRP +X509_LOOKUP_init 1744 1_1_0d EXIST::FUNCTION: +i2d_ECCSIGNATUREBLOB 1745 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +BB1IBE_do_encrypt 1746 1_1_0d EXIST::FUNCTION:BB1IBE +UI_method_get_reader 1747 1_1_0d EXIST::FUNCTION:UI +DSA_size 1748 1_1_0d EXIST::FUNCTION:DSA +ASN1_PCTX_free 1749 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_DIGEST 1750 1_1_0d EXIST::FUNCTION: +PEM_read_bio_PKCS7 1751 1_1_0d EXIST::FUNCTION: +UI_set_default_method 1752 1_1_0d EXIST::FUNCTION:UI +EVP_MD_do_all_sorted 1753 1_1_0d EXIST::FUNCTION: +OCSP_CERTSTATUS_free 1754 1_1_0d EXIST::FUNCTION:OCSP +d2i_PKCS7_fp 1755 1_1_0d EXIST::FUNCTION:STDIO +EVP_bf_cfb64 1756 1_1_0d EXIST::FUNCTION:BF +SDF_CalculateMAC 1757 1_1_0d EXIST::FUNCTION: +EVP_aes_192_wrap 1758 1_1_0d EXIST::FUNCTION: +SCT_set_source 1759 1_1_0d EXIST::FUNCTION:CT +CMS_RecipientInfo_kari_get0_ctx 1760 1_1_0d EXIST::FUNCTION:CMS +OBJ_bsearch_ex_ 1761 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_verifyctx 1762 1_1_0d EXIST::FUNCTION: +UI_method_get_flusher 1763 1_1_0d EXIST::FUNCTION:UI +RSA_padding_add_PKCS1_PSS_mgf1 1764 1_1_0d EXIST::FUNCTION:RSA +RSA_meth_dup 1765 1_1_0d EXIST::FUNCTION:RSA +OCSP_resp_get0_produced_at 1766 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_get_check_revocation 1767 1_1_0d EXIST::FUNCTION: +ERR_get_state 1768 1_1_0d EXIST::FUNCTION: +ECIES_PARAMS_init_with_type 1769 1_1_0d EXIST::FUNCTION:ECIES +SM2_KAP_CTX_cleanup 1770 1_1_0d EXIST::FUNCTION:SM2 +CMS_add1_recipient_cert 1771 1_1_0d EXIST::FUNCTION:CMS +PEM_write_bio_PUBKEY 1772 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_ctrl 1773 1_1_0d EXIST::FUNCTION: +RSA_get_RSAPRIVATEKEYBLOB 1774 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +d2i_ECCSignature_fp 1775 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO +PEM_read_bio_CMS 1776 1_1_0d EXIST::FUNCTION:CMS +PKCS7_dup 1777 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_set0_value 1778 1_1_0d EXIST::FUNCTION: +EVP_PKEY_new_mac_key 1779 1_1_0d EXIST::FUNCTION: +X509v3_add_ext 1780 1_1_0d EXIST::FUNCTION: +OBJ_nid2sn 1781 1_1_0d EXIST::FUNCTION: +CONF_get_string 1782 1_1_0d EXIST::FUNCTION: +BN_is_bit_set 1783 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_RSA 1784 1_1_0d EXIST::FUNCTION:RSA +ERR_load_DSO_strings 1785 1_1_0d EXIST::FUNCTION: +CMS_unsigned_add1_attr_by_OBJ 1786 1_1_0d EXIST::FUNCTION:CMS +SHA384_Update 1787 1_1_0d EXIST:!VMSVAX:FUNCTION: +i2d_PBEPARAM 1788 1_1_0d EXIST::FUNCTION: +ASN1_NULL_free 1789 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_SIGN_ENVELOPE 1790 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_get_seconds 1791 1_1_0d EXIST::FUNCTION:TS +TXT_DB_insert 1792 1_1_0d EXIST::FUNCTION: +OCSP_RESPDATA_it 1793 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPDATA_it 1793 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +s2i_ASN1_INTEGER 1794 1_1_0d EXIST::FUNCTION: +X509V3_get_d2i 1795 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_set_asc 1796 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_trust 1797 1_1_0d EXIST::FUNCTION: +i2d_OCSP_SINGLERESP 1798 1_1_0d EXIST::FUNCTION:OCSP +SDF_GenerateAgreementDataAndKeyWithECC 1799 1_1_0d EXIST::FUNCTION: +RSA_padding_add_PKCS1_type_1 1800 1_1_0d EXIST::FUNCTION:RSA +BIO_lookup 1801 1_1_0d EXIST::FUNCTION:SOCK +OPENSSL_INIT_new 1802 1_1_0d EXIST::FUNCTION: +DIST_POINT_NAME_it 1803 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DIST_POINT_NAME_it 1803 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_ECCSignature 1804 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +CRYPTO_atomic_add 1805 1_1_0d EXIST::FUNCTION: +PKCS7_RECIP_INFO_new 1806 1_1_0d EXIST::FUNCTION: +DSA_SIG_get0 1807 1_1_0d EXIST::FUNCTION:DSA +OBJ_NAME_remove 1808 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_set_item 1809 1_1_0d EXIST::FUNCTION: +SKF_EnumFiles 1810 1_1_0d EXIST::FUNCTION:SKF +i2d_PKCS8_PRIV_KEY_INFO_bio 1811 1_1_0d EXIST::FUNCTION: +ERR_get_error_line 1812 1_1_0d EXIST::FUNCTION: +SM9_SignInit 1813 1_1_0d EXIST::FUNCTION:SM9 +ASN1_GENERALIZEDTIME_set_string 1814 1_1_0d EXIST::FUNCTION: +b2i_PVK_bio 1815 1_1_0d EXIST::FUNCTION:DSA,RC4 +PKCS7_RECIP_INFO_it 1816 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_RECIP_INFO_it 1816 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_POLICYINFO 1817 1_1_0d EXIST::FUNCTION: +EC_GROUP_get0_order 1818 1_1_0d EXIST::FUNCTION:EC +UI_method_set_opener 1819 1_1_0d EXIST::FUNCTION:UI +X509_CRL_set1_lastUpdate 1820 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_input_blocksize 1821 1_1_0d EXIST::FUNCTION: +SAF_VerifyCertificateByCrl 1822 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_free 1823 1_1_0d EXIST::FUNCTION:TS +SKF_ConnectDev 1824 1_1_0d EXIST::FUNCTION:SKF +NCONF_dump_bio 1825 1_1_0d EXIST::FUNCTION: +PKCS12_gen_mac 1826 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PKCS8PrivateKey_nid 1827 1_1_0d EXIST::FUNCTION: +d2i_ASN1_PRINTABLESTRING 1828 1_1_0d EXIST::FUNCTION: +OCSP_resp_get0 1829 1_1_0d EXIST::FUNCTION:OCSP +CMS_signed_get_attr_count 1830 1_1_0d EXIST::FUNCTION:CMS +ENGINE_add 1831 1_1_0d EXIST::FUNCTION:ENGINE +CRYPTO_mem_debug_realloc 1832 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +i2s_ASN1_OCTET_STRING 1833 1_1_0d EXIST::FUNCTION: +CMS_sign 1834 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_CTX_set0_trusted_stack 1835 1_1_0d EXIST::FUNCTION: +BIO_sock_should_retry 1836 1_1_0d EXIST::FUNCTION:SOCK +ESS_SIGNING_CERT_new 1837 1_1_0d EXIST::FUNCTION:TS +i2d_SM9PublicKey 1838 1_1_0d EXIST::FUNCTION:SM9 +PKCS12_add_cert 1839 1_1_0d EXIST::FUNCTION: +BN_lshift 1840 1_1_0d EXIST::FUNCTION: +UI_create_method 1841 1_1_0d EXIST::FUNCTION:UI +OCSP_SIGNATURE_free 1842 1_1_0d EXIST::FUNCTION:OCSP +ASN1_TYPE_free 1843 1_1_0d EXIST::FUNCTION: +SCT_validation_status_string 1844 1_1_0d EXIST::FUNCTION:CT +PEM_write_SM9MasterSecret 1845 1_1_0d EXIST::FUNCTION:SM9,STDIO +CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE 1846 1_1_0d EXIST::FUNCTION:CT +EVP_aes_256_cfb128 1847 1_1_0d EXIST::FUNCTION: +TS_RESP_dup 1848 1_1_0d EXIST::FUNCTION:TS +OCSP_BASICRESP_get1_ext_d2i 1849 1_1_0d EXIST::FUNCTION:OCSP +CMS_RecipientInfo_get0_pkey_ctx 1850 1_1_0d EXIST::FUNCTION:CMS +OPENSSL_sk_zero 1851 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_set_version 1852 1_1_0d EXIST::FUNCTION:TS +EC_GFp_simple_method 1853 1_1_0d EXIST::FUNCTION:EC +EVP_PKEY_keygen 1854 1_1_0d EXIST::FUNCTION: +BFIBE_encrypt 1855 1_1_0d EXIST::FUNCTION:BFIBE +BIO_ADDRINFO_address 1856 1_1_0d EXIST::FUNCTION:SOCK +RSA_meth_get0_name 1857 1_1_0d EXIST::FUNCTION:RSA +DES_quad_cksum 1858 1_1_0d EXIST::FUNCTION:DES +SKF_SetSymmKey 1859 1_1_0d EXIST::FUNCTION:SKF +EVP_MD_meth_set_init 1860 1_1_0d EXIST::FUNCTION: +HMAC_Init_ex 1861 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_RECIP_INFO 1862 1_1_0d EXIST::FUNCTION: +TS_REQ_add_ext 1863 1_1_0d EXIST::FUNCTION:TS +PEM_write_bio_X509_REQ_NEW 1864 1_1_0d EXIST::FUNCTION: +TS_REQ_ext_free 1865 1_1_0d EXIST::FUNCTION:TS +ASN1_BMPSTRING_free 1866 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_ktri_cert_cmp 1867 1_1_0d EXIST::FUNCTION:CMS +TS_RESP_CTX_set_signer_key 1868 1_1_0d EXIST::FUNCTION:TS +DES_key_sched 1869 1_1_0d EXIST::FUNCTION:DES +i2o_SM2CiphertextValue 1870 1_1_0d EXIST::FUNCTION:SM2 +X509_STORE_set_check_crl 1871 1_1_0d EXIST::FUNCTION: +BN_add_word 1872 1_1_0d EXIST::FUNCTION: +EVP_PKEY_keygen_init 1873 1_1_0d EXIST::FUNCTION: +i2d_ASN1_UNIVERSALSTRING 1874 1_1_0d EXIST::FUNCTION: +i2d_SM9Signature 1875 1_1_0d EXIST::FUNCTION:SM9 +ASN1_get_object 1876 1_1_0d EXIST::FUNCTION: +EC_KEY_new_from_ECCrefPublicKey 1877 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +CMS_RecipientInfo_set0_password 1878 1_1_0d EXIST::FUNCTION:CMS +BIO_meth_set_create 1879 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_check_crl 1880 1_1_0d EXIST::FUNCTION: +X509_pubkey_digest 1881 1_1_0d EXIST::FUNCTION: +SDF_ExternalEncrypt_ECC 1882 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKI_free 1883 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_free 1884 1_1_0d EXIST::FUNCTION: +DSA_meth_get_paramgen 1885 1_1_0d EXIST::FUNCTION:DSA +PEM_write_bio_SM9_MASTER_PUBKEY 1886 1_1_0d EXIST::FUNCTION:SM9 +PaillierPublicKey_it 1887 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER +PaillierPublicKey_it 1887 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER +X509_VERIFY_PARAM_set_inh_flags 1888 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_auth_level 1889 1_1_0d EXIST::FUNCTION: +i2d_OCSP_REVOKEDINFO 1890 1_1_0d EXIST::FUNCTION:OCSP +SAF_RemoveRootCaCertificate 1891 1_1_0d EXIST::FUNCTION: +DISPLAYTEXT_new 1892 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_is_zero 1893 1_1_0d EXIST::FUNCTION:SM2 +ECDSA_verify 1894 1_1_0d EXIST::FUNCTION:EC +X509_getm_notBefore 1895 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_update 1896 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ext_count 1897 1_1_0d EXIST::FUNCTION:TS +X509_STORE_CTX_get0_store 1898 1_1_0d EXIST::FUNCTION: +OCSP_response_create 1899 1_1_0d EXIST::FUNCTION:OCSP +SAF_GetErrorString 1900 1_1_0d EXIST::FUNCTION:SAF +SDF_GetDeviceInfo 1901 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0 1902 1_1_0d EXIST::FUNCTION: +CMS_add0_RevocationInfoChoice 1903 1_1_0d EXIST::FUNCTION:CMS +BIO_sock_error 1904 1_1_0d EXIST::FUNCTION:SOCK +d2i_IPAddressChoice 1905 1_1_0d EXIST::FUNCTION:RFC3779 +OCSP_ONEREQ_new 1906 1_1_0d EXIST::FUNCTION:OCSP +ASN1_GENERALIZEDTIME_adj 1907 1_1_0d EXIST::FUNCTION: +CMS_get1_crls 1908 1_1_0d EXIST::FUNCTION:CMS +X509_print 1909 1_1_0d EXIST::FUNCTION: +i2d_SXNET 1910 1_1_0d EXIST::FUNCTION: +DH_meth_get_bn_mod_exp 1911 1_1_0d EXIST::FUNCTION:DH +RSA_generate_key_ex 1912 1_1_0d EXIST::FUNCTION:RSA +RSA_padding_add_none 1913 1_1_0d EXIST::FUNCTION:RSA +ASN1_item_ex_d2i 1914 1_1_0d EXIST::FUNCTION: +d2i_X509_REQ_INFO 1915 1_1_0d EXIST::FUNCTION: +DH_get_default_method 1916 1_1_0d EXIST::FUNCTION:DH +SKF_CancelWaitForDevEvent 1917 1_1_0d EXIST::FUNCTION:SKF +ENGINE_register_complete 1918 1_1_0d EXIST::FUNCTION:ENGINE +SKF_PrintRSAPublicKey 1919 1_1_0d EXIST::FUNCTION:SKF +PEM_read_RSAPrivateKey 1920 1_1_0d EXIST::FUNCTION:RSA,STDIO +DSO_new 1921 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_by_subject 1922 1_1_0d EXIST::FUNCTION: +SAF_Login 1923 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_new_from_ECCSIGNATUREBLOB 1924 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +PEM_write_bio_PrivateKey 1925 1_1_0d EXIST::FUNCTION: +X509_STORE_set_cleanup 1926 1_1_0d EXIST::FUNCTION: +EVP_PKEY_encrypt 1927 1_1_0d EXIST::FUNCTION: +PROXY_CERT_INFO_EXTENSION_new 1928 1_1_0d EXIST::FUNCTION: +ECIES_PARAMS_get_kdf 1929 1_1_0d EXIST::FUNCTION:ECIES +POLICYQUALINFO_new 1930 1_1_0d EXIST::FUNCTION: +ECPKParameters_print_fp 1931 1_1_0d EXIST::FUNCTION:EC,STDIO +CONF_module_add 1932 1_1_0d EXIST::FUNCTION: +OCSP_CERTID_free 1933 1_1_0d EXIST::FUNCTION:OCSP +CMS_SignerInfo_get0_algs 1934 1_1_0d EXIST::FUNCTION:CMS +i2d_ASN1_SET_ANY 1935 1_1_0d EXIST::FUNCTION: +EVP_aes_256_cbc 1936 1_1_0d EXIST::FUNCTION: +PEM_write_bio_Parameters 1937 1_1_0d EXIST::FUNCTION: +BN_is_solinas 1938 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_ofb 1939 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_PKEY_get0_asn1 1940 1_1_0d EXIST::FUNCTION: +MDC2 1941 1_1_0d EXIST::FUNCTION:MDC2 +d2i_PKCS12_MAC_DATA 1942 1_1_0d EXIST::FUNCTION: +RC4_set_key 1943 1_1_0d EXIST::FUNCTION:RC4 +PEM_read_bio 1944 1_1_0d EXIST::FUNCTION: +CMS_ContentInfo_new 1945 1_1_0d EXIST::FUNCTION:CMS +EC_GROUP_new_from_ecparameters 1946 1_1_0d EXIST::FUNCTION:EC +BN_get_rfc2409_prime_768 1947 1_1_0d EXIST::FUNCTION: +X509_get_pathlen 1948 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_new 1949 1_1_0d EXIST::FUNCTION:ECIES +CPK_PUBLIC_PARAMS_it 1950 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK +CPK_PUBLIC_PARAMS_it 1950 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK +ISSUING_DIST_POINT_free 1951 1_1_0d EXIST::FUNCTION: +OCSP_REVOKEDINFO_new 1952 1_1_0d EXIST::FUNCTION:OCSP +SM2_sign_ex 1953 1_1_0d EXIST::FUNCTION:SM2 +OCSP_ONEREQ_free 1954 1_1_0d EXIST::FUNCTION:OCSP +X509_VERIFY_PARAM_set_purpose 1955 1_1_0d EXIST::FUNCTION: +d2i_PUBKEY 1956 1_1_0d EXIST::FUNCTION: +EC_KEY_set_flags 1957 1_1_0d EXIST::FUNCTION:EC +d2i_TS_REQ_bio 1958 1_1_0d EXIST::FUNCTION:TS +RSA_meth_set_flags 1959 1_1_0d EXIST::FUNCTION:RSA +RSA_blinding_on 1960 1_1_0d EXIST::FUNCTION:RSA +d2i_DHparams 1961 1_1_0d EXIST::FUNCTION:DH +i2d_TS_STATUS_INFO 1962 1_1_0d EXIST::FUNCTION:TS +DH_meth_get_generate_params 1963 1_1_0d EXIST::FUNCTION:DH +EC_POINT_copy 1964 1_1_0d EXIST::FUNCTION:EC +ECDSA_sign_setup 1965 1_1_0d EXIST::FUNCTION:EC +OBJ_bsearch_ 1966 1_1_0d EXIST::FUNCTION: +DES_set_key_checked 1967 1_1_0d EXIST::FUNCTION:DES +OPENSSL_LH_node_usage_stats_bio 1968 1_1_0d EXIST::FUNCTION: +SAF_RsaSign 1969 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_signer_digest 1970 1_1_0d EXIST::FUNCTION:TS +TS_TST_INFO_get_msg_imprint 1971 1_1_0d EXIST::FUNCTION:TS +OCSP_REQ_CTX_new 1972 1_1_0d EXIST::FUNCTION:OCSP +X509_ALGOR_cmp 1973 1_1_0d EXIST::FUNCTION: +BB1IBE_do_decrypt 1974 1_1_0d EXIST::FUNCTION:BB1IBE +SAF_EccPublicKeyEnc 1975 1_1_0d EXIST::FUNCTION: +ERR_load_BFIBE_strings 1976 1_1_0d EXIST::FUNCTION:BFIBE +CMS_verify 1977 1_1_0d EXIST::FUNCTION:CMS +i2d_BFPublicParameters 1978 1_1_0d EXIST::FUNCTION:BFIBE +BN_lshift1 1979 1_1_0d EXIST::FUNCTION: +SKF_ImportCertificate 1980 1_1_0d EXIST::FUNCTION:SKF +ENGINE_get_digests 1981 1_1_0d EXIST::FUNCTION:ENGINE +OPENSSL_buf2hexstr 1982 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_ctr 1983 1_1_0d EXIST::FUNCTION:CAMELLIA +X509_get0_tbs_sigalg 1984 1_1_0d EXIST::FUNCTION: +RSA_padding_check_SSLv23 1985 1_1_0d EXIST::FUNCTION:RSA +ASN1_item_unpack 1986 1_1_0d EXIST::FUNCTION: +BN_pseudo_rand 1987 1_1_0d EXIST::FUNCTION: +ERR_load_TS_strings 1988 1_1_0d EXIST::FUNCTION:TS +BIO_meth_get_callback_ctrl 1989 1_1_0d EXIST::FUNCTION: +ENGINE_get_load_privkey_function 1990 1_1_0d EXIST::FUNCTION:ENGINE +BIO_fd_should_retry 1991 1_1_0d EXIST::FUNCTION: +BN_rshift1 1992 1_1_0d EXIST::FUNCTION: +X509_CRL_print 1993 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_default 1994 1_1_0d EXIST::FUNCTION: +SAF_EnumCertificates 1995 1_1_0d EXIST::FUNCTION: +sms4_ofb128_encrypt 1996 1_1_0d EXIST::FUNCTION:SMS4 +NETSCAPE_SPKI_verify 1997 1_1_0d EXIST::FUNCTION: +X509_NAME_add_entry_by_txt 1998 1_1_0d EXIST::FUNCTION: +i2d_X509_CRL_fp 1999 1_1_0d EXIST::FUNCTION:STDIO +X509_STORE_get_get_issuer 2000 1_1_0d EXIST::FUNCTION: +CMS_add1_cert 2001 1_1_0d EXIST::FUNCTION:CMS +X509_VERIFY_PARAM_table_cleanup 2002 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SM9PublicParameters 2003 1_1_0d EXIST::FUNCTION:SM9 +PAILLIER_ciphertext_scalar_mul 2004 1_1_0d EXIST::FUNCTION:PAILLIER +X509_ALGOR_dup 2005 1_1_0d EXIST::FUNCTION: +ASN1_STRING_cmp 2006 1_1_0d EXIST::FUNCTION: +DSAparams_print_fp 2007 1_1_0d EXIST::FUNCTION:DSA,STDIO +PKCS7_ENCRYPT_free 2008 1_1_0d EXIST::FUNCTION: +PKCS7_encrypt 2009 1_1_0d EXIST::FUNCTION: +OCSP_REQINFO_free 2010 1_1_0d EXIST::FUNCTION:OCSP +BN_GF2m_mod_inv 2011 1_1_0d EXIST::FUNCTION:EC2M +CRYPTO_gcm128_init 2012 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_free 2013 1_1_0d EXIST::FUNCTION: +EC_POINT_cmp 2014 1_1_0d EXIST::FUNCTION:EC +ERR_load_ASYNC_strings 2015 1_1_0d EXIST::FUNCTION: +CRYPTO_mem_debug_push 2016 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +BIO_pop 2017 1_1_0d EXIST::FUNCTION: +EVP_sms4_ocb 2018 1_1_0d EXIST::FUNCTION:SMS4 +BN_GFP2_exp 2019 1_1_0d EXIST::FUNCTION: +PEM_read_RSAPublicKey 2020 1_1_0d EXIST::FUNCTION:RSA,STDIO +ENGINE_load_public_key 2021 1_1_0d EXIST::FUNCTION:ENGINE +EC_KEY_up_ref 2022 1_1_0d EXIST::FUNCTION:EC +BIO_set_flags 2023 1_1_0d EXIST::FUNCTION: +ERR_load_SAF_strings 2024 1_1_0d EXIST::FUNCTION:SAF +BIO_dump_cb 2025 1_1_0d EXIST::FUNCTION: +PROXY_POLICY_free 2026 1_1_0d EXIST::FUNCTION: +X509_CRL_set_issuer_name 2027 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_ex_data 2028 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_doall_arg 2029 1_1_0d EXIST::FUNCTION: +SXNET_get_id_INTEGER 2030 1_1_0d EXIST::FUNCTION: +RSA_meth_set_priv_dec 2031 1_1_0d EXIST::FUNCTION:RSA +OPENSSL_sk_unshift 2032 1_1_0d EXIST::FUNCTION: +BIO_get_callback 2033 1_1_0d EXIST::FUNCTION: +X509V3_EXT_CRL_add_conf 2034 1_1_0d EXIST::FUNCTION: +o2i_SCT 2035 1_1_0d EXIST::FUNCTION:CT +ERR_unload_strings 2036 1_1_0d EXIST::FUNCTION: +ASN1_STRING_TABLE_cleanup 2037 1_1_0d EXIST::FUNCTION: +ENGINE_get_default_RAND 2038 1_1_0d EXIST::FUNCTION:ENGINE +i2d_SCT_LIST 2039 1_1_0d EXIST::FUNCTION:CT +BFMasterSecret_new 2040 1_1_0d EXIST::FUNCTION:BFIBE +i2d_PKCS7_fp 2041 1_1_0d EXIST::FUNCTION:STDIO +OCSP_REQ_CTX_nbio_d2i 2042 1_1_0d EXIST::FUNCTION:OCSP +POLICYQUALINFO_free 2043 1_1_0d EXIST::FUNCTION: +X509_chain_up_ref 2044 1_1_0d EXIST::FUNCTION: +BIO_f_nbio_test 2045 1_1_0d EXIST::FUNCTION: +EVP_BytesToKey 2046 1_1_0d EXIST::FUNCTION: +DIRECTORYSTRING_it 2047 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DIRECTORYSTRING_it 2047 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SCT_get_signature_nid 2048 1_1_0d EXIST::FUNCTION:CT +ASYNC_init_thread 2049 1_1_0d EXIST::FUNCTION: +SDF_InternalVerify_ECC 2050 1_1_0d EXIST::FUNCTION: +d2i_OTHERNAME 2051 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_SM9 2052 1_1_0d EXIST::FUNCTION:SM9 +d2i_ASN1_NULL 2053 1_1_0d EXIST::FUNCTION: +CPK_PUBLIC_PARAMS_free 2054 1_1_0d EXIST::FUNCTION:CPK +PKCS12_verify_mac 2055 1_1_0d EXIST::FUNCTION: +BN_set_word 2056 1_1_0d EXIST::FUNCTION: +EVP_DecodeInit 2057 1_1_0d EXIST::FUNCTION: +speck_set_decrypt_key64 2058 1_1_0d EXIST::FUNCTION:SPECK +ENGINE_get_table_flags 2059 1_1_0d EXIST::FUNCTION:ENGINE +TLS_FEATURE_new 2060 1_1_0d EXIST::FUNCTION: +ERR_load_SM9_strings 2061 1_1_0d EXIST::FUNCTION:SM9 +EVP_PKEY_get1_DSA 2062 1_1_0d EXIST::FUNCTION:DSA +CRYPTO_free_ex_data 2063 1_1_0d EXIST::FUNCTION: +EC_POINT_is_at_infinity 2064 1_1_0d EXIST::FUNCTION:EC +X509v3_addr_add_inherit 2065 1_1_0d EXIST::FUNCTION:RFC3779 +OCSP_sendreq_new 2066 1_1_0d EXIST::FUNCTION:OCSP +OCSP_RESPONSE_it 2067 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPONSE_it 2067 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +OPENSSL_cleanup 2068 1_1_0d EXIST::FUNCTION: +ERR_load_ASN1_strings 2069 1_1_0d EXIST::FUNCTION: +RAND_add 2070 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_string 2071 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_UTF8STRING_free 2072 1_1_0d EXIST::FUNCTION: +PEM_write_bio_RSA_PUBKEY 2073 1_1_0d EXIST::FUNCTION:RSA +i2d_X509_AUX 2074 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ordering 2075 1_1_0d EXIST::FUNCTION:TS +DES_set_key 2076 1_1_0d EXIST::FUNCTION:DES +CRYPTO_mem_leaks 2077 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +DH_check_pub_key 2078 1_1_0d EXIST::FUNCTION:DH +X509V3_EXT_get_nid 2079 1_1_0d EXIST::FUNCTION: +DH_bits 2080 1_1_0d EXIST::FUNCTION:DH +X509_STORE_CTX_get_by_subject 2081 1_1_0d EXIST::FUNCTION: +d2i_ASIdOrRange 2082 1_1_0d EXIST::FUNCTION:RFC3779 +PEM_read_DSA_PUBKEY 2083 1_1_0d EXIST::FUNCTION:DSA,STDIO +X509_CRL_free 2084 1_1_0d EXIST::FUNCTION: +CMS_RecipientEncryptedKey_cert_cmp 2085 1_1_0d EXIST::FUNCTION:CMS +SKF_ExportCertificate 2086 1_1_0d EXIST::FUNCTION:SKF +X509v3_get_ext_by_NID 2087 1_1_0d EXIST::FUNCTION: +BIO_meth_get_ctrl 2088 1_1_0d EXIST::FUNCTION: +SDF_ImportKeyWithISK_RSA 2089 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_it 2090 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +GENERAL_NAME_it 2090 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_camellia_192_cbc 2091 1_1_0d EXIST::FUNCTION:CAMELLIA +ASN1_PRINTABLE_type 2092 1_1_0d EXIST::FUNCTION: +OBJ_add_object 2093 1_1_0d EXIST::FUNCTION: +d2i_ASN1_SEQUENCE_ANY 2094 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_free 2095 1_1_0d EXIST::FUNCTION: +SOF_Login 2096 1_1_0d EXIST::FUNCTION: +i2d_ASN1_BMPSTRING 2097 1_1_0d EXIST::FUNCTION: +X509_set_proxy_pathlen 2098 1_1_0d EXIST::FUNCTION: +X509v3_asid_add_inherit 2099 1_1_0d EXIST::FUNCTION:RFC3779 +CPK_PUBLIC_PARAMS_get_name 2100 1_1_0d EXIST::FUNCTION:CPK +OCSP_SERVICELOC_free 2101 1_1_0d EXIST::FUNCTION:OCSP +TS_RESP_verify_token 2102 1_1_0d EXIST::FUNCTION:TS +SAF_SM2_EncodeSignedAndEnvelopedData 2103 1_1_0d EXIST::FUNCTION: +COMP_expand_block 2104 1_1_0d EXIST::FUNCTION:COMP +CONF_load 2105 1_1_0d EXIST::FUNCTION: +i2d_DSAPrivateKey_bio 2106 1_1_0d EXIST::FUNCTION:DSA +d2i_ESS_SIGNING_CERT 2107 1_1_0d EXIST::FUNCTION:TS +OPENSSL_LH_new 2108 1_1_0d EXIST::FUNCTION: +i2d_OCSP_REQINFO 2109 1_1_0d EXIST::FUNCTION:OCSP +BIO_asn1_set_suffix 2110 1_1_0d EXIST::FUNCTION: +X509_STORE_get_check_crl 2111 1_1_0d EXIST::FUNCTION: +i2d_CPK_MASTER_SECRET 2112 1_1_0d EXIST::FUNCTION:CPK +d2i_TS_TST_INFO_bio 2113 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_decrypt_old 2114 1_1_0d EXIST::FUNCTION: +SKF_GetDevState 2115 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_asn1_set_ctrl 2116 1_1_0d EXIST::FUNCTION: +d2i_OCSP_CRLID 2117 1_1_0d EXIST::FUNCTION:OCSP +NETSCAPE_SPKI_b64_decode 2118 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_cleanup_local 2119 1_1_0d EXIST::FUNCTION: +EVP_md5_sha1 2120 1_1_0d EXIST::FUNCTION:MD5 +UI_add_verify_string 2121 1_1_0d EXIST::FUNCTION:UI +ZUC_128eea3_set_key 2122 1_1_0d EXIST::FUNCTION:ZUC +ASN1_SCTX_set_app_data 2123 1_1_0d EXIST::FUNCTION: +EVP_PKEY_paramgen_init 2124 1_1_0d EXIST::FUNCTION: +ASN1_GENERALIZEDTIME_set 2125 1_1_0d EXIST::FUNCTION: +Camellia_cfb128_encrypt 2126 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_PKEY_meth_get0_info 2127 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_new_from_ECCCipher 2128 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 +i2d_ECIES_CIPHERTEXT_VALUE 2129 1_1_0d EXIST::FUNCTION:ECIES +EVP_aes_128_cfb8 2130 1_1_0d EXIST::FUNCTION: +RSA_up_ref 2131 1_1_0d EXIST::FUNCTION:RSA +d2i_ASN1_UTF8STRING 2132 1_1_0d EXIST::FUNCTION: +EVP_rc2_ecb 2133 1_1_0d EXIST::FUNCTION:RC2 +OBJ_NAME_cleanup 2134 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_set_cmp_func 2135 1_1_0d EXIST::FUNCTION: +SOF_EncryptFile 2136 1_1_0d EXIST::FUNCTION: +BIO_puts 2137 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_print_bio 2138 1_1_0d EXIST::FUNCTION:TS +PKCS8_pkey_set0 2139 1_1_0d EXIST::FUNCTION: +BIO_meth_set_gets 2140 1_1_0d EXIST::FUNCTION: +COMP_zlib 2141 1_1_0d EXIST::FUNCTION:COMP +UI_dup_error_string 2142 1_1_0d EXIST::FUNCTION:UI +CT_POLICY_EVAL_CTX_new 2143 1_1_0d EXIST::FUNCTION:CT +s2i_ASN1_IA5STRING 2144 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_set0 2145 1_1_0d EXIST::FUNCTION:EC +DES_decrypt3 2146 1_1_0d EXIST::FUNCTION:DES +X509_TRUST_get_count 2147 1_1_0d EXIST::FUNCTION: +BN_generate_prime_ex 2148 1_1_0d EXIST::FUNCTION: +RSA_padding_check_X931 2149 1_1_0d EXIST::FUNCTION:RSA +X509_VERIFY_PARAM_set_time 2150 1_1_0d EXIST::FUNCTION: +d2i_PROXY_CERT_INFO_EXTENSION 2151 1_1_0d EXIST::FUNCTION: +HMAC_size 2152 1_1_0d EXIST::FUNCTION: +EVP_md2 2153 1_1_0d EXIST::FUNCTION:MD2 +DH_set_length 2154 1_1_0d EXIST::FUNCTION:DH +i2d_RSAPublicKey_fp 2155 1_1_0d EXIST::FUNCTION:RSA,STDIO +PBE2PARAM_free 2156 1_1_0d EXIST::FUNCTION: +CRYPTO_cts128_encrypt 2157 1_1_0d EXIST::FUNCTION: +ENGINE_get_load_pubkey_function 2158 1_1_0d EXIST::FUNCTION:ENGINE +KDF_get_ibcs 2159 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get_data 2160 1_1_0d EXIST::FUNCTION: +X509at_get_attr_count 2161 1_1_0d EXIST::FUNCTION: +SAF_GenerateKeyWithEPK 2162 1_1_0d EXIST::FUNCTION: +SCT_get0_log_id 2163 1_1_0d EXIST::FUNCTION:CT +UI_UTIL_read_pw 2164 1_1_0d EXIST::FUNCTION:UI +i2d_ASN1_SEQUENCE_ANY 2165 1_1_0d EXIST::FUNCTION: +OBJ_find_sigid_algs 2166 1_1_0d EXIST::FUNCTION: +X509_keyid_get0 2167 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PrivateKey_traditional 2168 1_1_0d EXIST::FUNCTION: +i2d_X509_NAME 2169 1_1_0d EXIST::FUNCTION: +EVP_md5 2170 1_1_0d EXIST::FUNCTION:MD5 +CRYPTO_ocb128_new 2171 1_1_0d EXIST::FUNCTION:OCB +CMS_SignedData_init 2172 1_1_0d EXIST::FUNCTION:CMS +PKCS7_add_signed_attribute 2173 1_1_0d EXIST::FUNCTION: +BIO_dump 2174 1_1_0d EXIST::FUNCTION: +OBJ_txt2obj 2175 1_1_0d EXIST::FUNCTION: +CONF_module_set_usr_data 2176 1_1_0d EXIST::FUNCTION: +EVP_EncodeFinal 2177 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_new_from_ECCSignature 2178 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +ASN1_UNIVERSALSTRING_new 2179 1_1_0d EXIST::FUNCTION: +X509_policy_node_get0_qualifiers 2180 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_set_local 2181 1_1_0d EXIST::FUNCTION: +BN_GFP2_set_bn 2182 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_create_pkcs8_encrypt 2183 1_1_0d EXIST::FUNCTION: +BIO_dgram_is_sctp 2184 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +X509_VERIFY_PARAM_set1_email 2185 1_1_0d EXIST::FUNCTION: +CRYPTO_get_mem_functions 2186 1_1_0d EXIST::FUNCTION: +a2i_ASN1_ENUMERATED 2187 1_1_0d EXIST::FUNCTION: +BN_bn2binpad 2188 1_1_0d EXIST::FUNCTION: +d2i_TS_RESP_fp 2189 1_1_0d EXIST::FUNCTION:STDIO,TS +SKF_ExtECCDecrypt 2190 1_1_0d EXIST::FUNCTION:SKF +OCSP_SINGLERESP_get_ext 2191 1_1_0d EXIST::FUNCTION:OCSP +ASN1_PCTX_get_flags 2192 1_1_0d EXIST::FUNCTION: +RC5_32_cbc_encrypt 2193 1_1_0d EXIST::FUNCTION:RC5 +EC_KEY_METHOD_set_encrypt 2194 1_1_0d EXIST::FUNCTION:SM2 +i2d_X509_SIG 2195 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_dup 2196 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_DH 2197 1_1_0d EXIST::FUNCTION:DH +SRP_Calc_client_key 2198 1_1_0d EXIST::FUNCTION:SRP +X509_VERIFY_PARAM_get0_name 2199 1_1_0d EXIST::FUNCTION: +OPENSSL_thread_stop 2200 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_free 2201 1_1_0d EXIST::FUNCTION:TS +CTLOG_new_from_base64 2202 1_1_0d EXIST::FUNCTION:CT +BN_uadd 2203 1_1_0d EXIST::FUNCTION: +SM9_wrap_key 2204 1_1_0d EXIST::FUNCTION:SM9 +SOF_SetSignMethod 2205 1_1_0d EXIST::FUNCTION: +ASN1_SCTX_get_template 2206 1_1_0d EXIST::FUNCTION: +ECIES_decrypt 2207 1_1_0d EXIST::FUNCTION:ECIES +DSA_meth_get_init 2208 1_1_0d EXIST::FUNCTION:DSA +PKCS7_get_signer_info 2209 1_1_0d EXIST::FUNCTION: +CMS_signed_get_attr_by_NID 2210 1_1_0d EXIST::FUNCTION:CMS +DSA_clear_flags 2211 1_1_0d EXIST::FUNCTION:DSA +BIO_new_PKCS7 2212 1_1_0d EXIST::FUNCTION: +EVP_bf_cbc 2213 1_1_0d EXIST::FUNCTION:BF +ASN1_SCTX_get_flags 2214 1_1_0d EXIST::FUNCTION: +EVP_get_digestnames 2215 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_set_md_data 2216 1_1_0d EXIST::FUNCTION: +EVP_PKEY_print_private 2217 1_1_0d EXIST::FUNCTION: +BN_kronecker 2218 1_1_0d EXIST::FUNCTION: +EC_KEY_get0_public_key 2219 1_1_0d EXIST::FUNCTION:EC +COMP_CTX_free 2220 1_1_0d EXIST::FUNCTION:COMP +CTLOG_STORE_load_file 2221 1_1_0d EXIST::FUNCTION:CT +X509_STORE_CTX_get0_untrusted 2222 1_1_0d EXIST::FUNCTION: +d2i_X509_EXTENSIONS 2223 1_1_0d EXIST::FUNCTION: +BN_mod_word 2224 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithECC 2225 1_1_0d EXIST::FUNCTION: +X509_REQ_set_extension_nids 2226 1_1_0d EXIST::FUNCTION: +d2i_AUTHORITY_KEYID 2227 1_1_0d EXIST::FUNCTION: +AES_bi_ige_encrypt 2228 1_1_0d EXIST::FUNCTION: +X509_CRL_get_issuer 2229 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get_ext_by_OBJ 2230 1_1_0d EXIST::FUNCTION: +EVP_PKEY_print_public 2231 1_1_0d EXIST::FUNCTION: +PKCS12_pack_p7encdata 2232 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get0_peername 2233 1_1_0d EXIST::FUNCTION: +TS_REQ_set_policy_id 2234 1_1_0d EXIST::FUNCTION:TS +X509_CRL_verify 2235 1_1_0d EXIST::FUNCTION: +d2i_ECPrivateKey_bio 2236 1_1_0d EXIST::FUNCTION:EC +PKCS12_add_CSPName_asc 2237 1_1_0d EXIST::FUNCTION: +ASN1_GENERALSTRING_it 2238 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_GENERALSTRING_it 2238 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_OCSP_SIGNATURE 2239 1_1_0d EXIST::FUNCTION:OCSP +SKF_ExtRSAPriKeyOperation 2240 1_1_0d EXIST::FUNCTION:SKF +ENGINE_pkey_asn1_find_str 2241 1_1_0d EXIST::FUNCTION:ENGINE +SM9Signature_it 2242 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9Signature_it 2242 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +ENGINE_finish 2243 1_1_0d EXIST::FUNCTION:ENGINE +ZUC_128eea3_encrypt 2244 1_1_0d EXIST::FUNCTION:ZUC +BFIBE_decrypt 2245 1_1_0d EXIST::FUNCTION:BFIBE +EVP_MD_meth_free 2246 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_i2d 2247 1_1_0d EXIST::FUNCTION:OCSP +PEM_read_bio_ECPKParameters 2248 1_1_0d EXIST::FUNCTION:EC +RSA_meth_get_verify 2249 1_1_0d EXIST::FUNCTION:RSA +CMS_ContentInfo_free 2250 1_1_0d EXIST::FUNCTION:CMS +PKCS12_parse 2251 1_1_0d EXIST::FUNCTION: +EVP_sms4_cfb128 2252 1_1_0d EXIST::FUNCTION:SMS4 +SAF_EccPublicKeyEncByCert 2253 1_1_0d EXIST::FUNCTION: +SM9Ciphertext_new 2254 1_1_0d EXIST::FUNCTION:SM9 +PKCS7_get_smimecap 2255 1_1_0d EXIST::FUNCTION: +SKF_EnumContainer 2256 1_1_0d EXIST::FUNCTION:SKF +EVP_camellia_256_cfb1 2257 1_1_0d EXIST::FUNCTION:CAMELLIA +OCSP_single_get0_status 2258 1_1_0d EXIST::FUNCTION:OCSP +SKF_GenRandom 2259 1_1_0d EXIST::FUNCTION:SKF +CRYPTO_THREAD_run_once 2260 1_1_0d EXIST::FUNCTION: +PEM_read_bio_X509_AUX 2261 1_1_0d EXIST::FUNCTION: +MD5_Init 2262 1_1_0d EXIST::FUNCTION:MD5 +EVP_desx_cbc 2263 1_1_0d EXIST::FUNCTION:DES +SKF_PrintECCSignature 2264 1_1_0d EXIST::FUNCTION:SKF +ISSUING_DIST_POINT_new 2265 1_1_0d EXIST::FUNCTION: +CMS_decrypt_set1_key 2266 1_1_0d EXIST::FUNCTION:CMS +X509_CRL_add1_ext_i2d 2267 1_1_0d EXIST::FUNCTION: +OCSP_SIGNATURE_it 2268 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_SIGNATURE_it 2268 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +CONF_modules_load 2269 1_1_0d EXIST::FUNCTION: +EC_GROUP_set_curve_name 2270 1_1_0d EXIST::FUNCTION:EC +ENGINE_unregister_EC 2271 1_1_0d EXIST::FUNCTION:ENGINE +i2d_PKCS12_BAGS 2272 1_1_0d EXIST::FUNCTION: +CTLOG_get0_public_key 2273 1_1_0d EXIST::FUNCTION:CT +EVP_CIPHER_CTX_get_app_data 2274 1_1_0d EXIST::FUNCTION: +BUF_MEM_free 2275 1_1_0d EXIST::FUNCTION: +i2d_PublicKey 2276 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_curve_GFp 2277 1_1_0d EXIST::FUNCTION:EC +ENGINE_get_RSA 2278 1_1_0d EXIST::FUNCTION:ENGINE +CRYPTO_128_wrap 2279 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_add_flags 2280 1_1_0d EXIST::FUNCTION:TS +i2d_SM9MasterSecret_fp 2281 1_1_0d EXIST::FUNCTION:SM9,STDIO +BIO_clear_flags 2282 1_1_0d EXIST::FUNCTION: +i2d_PKCS12_SAFEBAG 2283 1_1_0d EXIST::FUNCTION: +BN_hash_to_range 2284 1_1_0d EXIST::FUNCTION: +BN_BLINDING_convert_ex 2285 1_1_0d EXIST::FUNCTION: +i2d_OCSP_RESPDATA 2286 1_1_0d EXIST::FUNCTION:OCSP +RSA_private_decrypt 2287 1_1_0d EXIST::FUNCTION:RSA +AES_cbc_encrypt 2288 1_1_0d EXIST::FUNCTION: +X509_STORE_set_depth 2289 1_1_0d EXIST::FUNCTION: +PEM_write_X509_REQ 2290 1_1_0d EXIST::FUNCTION:STDIO +ASN1_PCTX_set_cert_flags 2291 1_1_0d EXIST::FUNCTION: +BIO_ADDR_hostname_string 2292 1_1_0d EXIST::FUNCTION:SOCK +EVP_camellia_192_cfb8 2293 1_1_0d EXIST::FUNCTION:CAMELLIA +TS_STATUS_INFO_get0_failure_info 2294 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_meth_copy 2295 1_1_0d EXIST::FUNCTION: +DSA_meth_set_sign_setup 2296 1_1_0d EXIST::FUNCTION:DSA +PEM_SignUpdate 2297 1_1_0d EXIST::FUNCTION: +Camellia_cfb8_encrypt 2298 1_1_0d EXIST::FUNCTION:CAMELLIA +CMS_uncompress 2299 1_1_0d EXIST::FUNCTION:CMS +i2d_PaillierPrivateKey 2300 1_1_0d EXIST::FUNCTION:PAILLIER +X509_NAME_add_entry_by_OBJ 2301 1_1_0d EXIST::FUNCTION: +EC_KEY_can_sign 2302 1_1_0d EXIST::FUNCTION:EC +BIO_accept 2303 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +ASN1_generate_v3 2304 1_1_0d EXIST::FUNCTION: +SM2_do_encrypt 2305 1_1_0d EXIST::FUNCTION:SM2 +EC_KEY_METHOD_get_keygen 2306 1_1_0d EXIST::FUNCTION:EC +BIO_dump_indent 2307 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_cbc 2308 1_1_0d EXIST::FUNCTION:CAMELLIA +ENGINE_register_all_RSA 2309 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_add_conf_module 2310 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_size 2311 1_1_0d EXIST::FUNCTION: +X509_check_trust 2312 1_1_0d EXIST::FUNCTION: +BIO_nread0 2313 1_1_0d EXIST::FUNCTION: +PBKDF2PARAM_new 2314 1_1_0d EXIST::FUNCTION: +RSA_meth_set_init 2315 1_1_0d EXIST::FUNCTION:RSA +EVP_CIPHER_CTX_encrypting 2316 1_1_0d EXIST::FUNCTION: +BN_BLINDING_get_flags 2317 1_1_0d EXIST::FUNCTION: +X509_cmp_current_time 2318 1_1_0d EXIST::FUNCTION: +SHA512_Update 2319 1_1_0d EXIST:!VMSVAX:FUNCTION: +GENERAL_NAMES_it 2320 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +GENERAL_NAMES_it 2320 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_REQ_check_private_key 2321 1_1_0d EXIST::FUNCTION: +UI_dup_verify_string 2322 1_1_0d EXIST::FUNCTION:UI +PEM_write_bio_SM9PublicParameters 2323 1_1_0d EXIST::FUNCTION:SM9 +ENGINE_get_flags 2324 1_1_0d EXIST::FUNCTION:ENGINE +NETSCAPE_SPKAC_new 2325 1_1_0d EXIST::FUNCTION: +BB1MasterSecret_it 2326 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1MasterSecret_it 2326 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +ASN1_ENUMERATED_to_BN 2327 1_1_0d EXIST::FUNCTION: +SM9PublicKey_get_gmtls_encoded 2328 1_1_0d EXIST::FUNCTION:SM9 +EVP_read_pw_string 2329 1_1_0d EXIST::FUNCTION:UI +ECDSA_SIG_set_ECCSignature 2330 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +i2d_ECDSA_SIG 2331 1_1_0d EXIST::FUNCTION:EC +CMS_unsigned_add1_attr_by_NID 2332 1_1_0d EXIST::FUNCTION:CMS +SDF_HashUpdate 2333 1_1_0d EXIST::FUNCTION: +DH_meth_set_finish 2334 1_1_0d EXIST::FUNCTION:DH +ECParameters_print_fp 2335 1_1_0d EXIST::FUNCTION:EC,STDIO +ASN1_VISIBLESTRING_new 2336 1_1_0d EXIST::FUNCTION: +i2d_PBE2PARAM 2337 1_1_0d EXIST::FUNCTION: +i2d_X509_CINF 2338 1_1_0d EXIST::FUNCTION: +i2d_EC_PUBKEY_bio 2339 1_1_0d EXIST::FUNCTION:EC +CMS_RecipientInfo_ktri_get0_signer_id 2340 1_1_0d EXIST::FUNCTION:CMS +d2i_BB1PrivateKeyBlock 2341 1_1_0d EXIST::FUNCTION:BB1IBE +BN_mod_add_quick 2342 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_get0_md_ctx 2343 1_1_0d EXIST::FUNCTION:CMS +DSA_dup_DH 2344 1_1_0d EXIST::FUNCTION:DH,DSA +X509V3_EXT_REQ_add_conf 2345 1_1_0d EXIST::FUNCTION: +WHIRLPOOL_Init 2346 1_1_0d EXIST::FUNCTION:WHIRLPOOL +CRYPTO_THREAD_unlock 2347 1_1_0d EXIST::FUNCTION: +X509_REVOKED_set_serialNumber 2348 1_1_0d EXIST::FUNCTION: +i2s_ASN1_ENUMERATED_TABLE 2349 1_1_0d EXIST::FUNCTION: +PKCS8_pkey_add1_attr_by_NID 2350 1_1_0d EXIST::FUNCTION: +BN_get_rfc3526_prime_8192 2351 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set0 2352 1_1_0d EXIST::FUNCTION: +BN_consttime_swap 2353 1_1_0d EXIST::FUNCTION: +i2s_ASN1_ENUMERATED 2354 1_1_0d EXIST::FUNCTION: +i2d_X509_CRL_bio 2355 1_1_0d EXIST::FUNCTION: +DH_meth_set_bn_mod_exp 2356 1_1_0d EXIST::FUNCTION:DH +i2d_ASN1_T61STRING 2357 1_1_0d EXIST::FUNCTION: +PKCS8_get_attr 2358 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_set 2359 1_1_0d EXIST::FUNCTION: +SXNET_add_id_INTEGER 2360 1_1_0d EXIST::FUNCTION: +DHparams_dup 2361 1_1_0d EXIST::FUNCTION:DH +ENGINE_register_all_digests 2362 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_meth_get_cleanup 2363 1_1_0d EXIST::FUNCTION: +o2i_SCT_LIST 2364 1_1_0d EXIST::FUNCTION:CT +ASN1_BIT_STRING_it 2365 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_BIT_STRING_it 2365 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_METHOD_set_init 2366 1_1_0d EXIST::FUNCTION:EC +i2d_ESS_ISSUER_SERIAL 2367 1_1_0d EXIST::FUNCTION:TS +X509_PURPOSE_get_count 2368 1_1_0d EXIST::FUNCTION: +d2i_EXTENDED_KEY_USAGE 2369 1_1_0d EXIST::FUNCTION: +RC2_ecb_encrypt 2370 1_1_0d EXIST::FUNCTION:RC2 +EVP_Cipher 2371 1_1_0d EXIST::FUNCTION: +SAF_GetRootCaCertificateCount 2372 1_1_0d EXIST::FUNCTION: +i2d_DSA_PUBKEY_bio 2373 1_1_0d EXIST::FUNCTION:DSA +X509V3_EXT_conf_nid 2374 1_1_0d EXIST::FUNCTION: +RSA_null_method 2375 1_1_0d EXIST::FUNCTION:RSA +ECDSA_size 2376 1_1_0d EXIST::FUNCTION:EC +d2i_X509_CINF 2377 1_1_0d EXIST::FUNCTION: +i2v_ASN1_BIT_STRING 2378 1_1_0d EXIST::FUNCTION: +EC_POINT_mul 2379 1_1_0d EXIST::FUNCTION:EC +RC4 2380 1_1_0d EXIST::FUNCTION:RC4 +X509_CRL_http_nbio 2381 1_1_0d EXIST::FUNCTION:OCSP +d2i_SXNETID 2382 1_1_0d EXIST::FUNCTION: +ENGINE_get_prev 2383 1_1_0d EXIST::FUNCTION:ENGINE +EVP_rc2_cfb64 2384 1_1_0d EXIST::FUNCTION:RC2 +X509_STORE_up_ref 2385 1_1_0d EXIST::FUNCTION: +EVP_des_ede 2386 1_1_0d EXIST::FUNCTION:DES +EVP_PKEY_get_attr_by_OBJ 2387 1_1_0d EXIST::FUNCTION: +DSO_set_filename 2388 1_1_0d EXIST::FUNCTION: +TS_REQ_get_policy_id 2389 1_1_0d EXIST::FUNCTION:TS +d2i_PaillierPublicKey 2390 1_1_0d EXIST::FUNCTION:PAILLIER +ASN1_STRING_set 2391 1_1_0d EXIST::FUNCTION: +TS_CONF_get_tsa_section 2392 1_1_0d EXIST::FUNCTION:TS +i2d_TS_TST_INFO 2393 1_1_0d EXIST::FUNCTION:TS +i2s_ASN1_INTEGER 2394 1_1_0d EXIST::FUNCTION: +BIO_set_tcp_ndelay 2395 1_1_0d EXIST::FUNCTION:SOCK +UI_new 2396 1_1_0d EXIST::FUNCTION:UI +EVP_EncryptFinal_ex 2397 1_1_0d EXIST::FUNCTION: +OCSP_basic_add1_status 2398 1_1_0d EXIST::FUNCTION:OCSP +ASN1_item_i2d 2399 1_1_0d EXIST::FUNCTION: +SCT_new_from_base64 2400 1_1_0d EXIST::FUNCTION:CT +PKCS7_add_recipient 2401 1_1_0d EXIST::FUNCTION: +RSA_verify 2402 1_1_0d EXIST::FUNCTION:RSA +d2i_OCSP_RESPBYTES 2403 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_set_ex_data 2404 1_1_0d EXIST::FUNCTION: +BIO_ADDR_free 2405 1_1_0d EXIST::FUNCTION:SOCK +CMS_verify_receipt 2406 1_1_0d EXIST::FUNCTION:CMS +BN_bn2bin 2407 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_it 2408 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK +CPK_MASTER_SECRET_it 2408 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK +ENGINE_ctrl_cmd_string 2409 1_1_0d EXIST::FUNCTION:ENGINE +SRP_VBASE_get1_by_user 2410 1_1_0d EXIST::FUNCTION:SRP +d2i_USERNOTICE 2411 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_create_by_OBJ 2412 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_set_flags 2413 1_1_0d EXIST::FUNCTION: +GENERAL_SUBTREE_it 2414 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +GENERAL_SUBTREE_it 2414 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_PKEY_CTX_hex2ctrl 2415 1_1_0d EXIST::FUNCTION: +SAF_Pkcs7_EncodeSignedData 2416 1_1_0d EXIST::FUNCTION: +X509_NAME_get0_der 2417 1_1_0d EXIST::FUNCTION: +X509_NAME_entry_count 2418 1_1_0d EXIST::FUNCTION: +RSA_meth_get_bn_mod_exp 2419 1_1_0d EXIST::FUNCTION:RSA +NCONF_load 2420 1_1_0d EXIST::FUNCTION: +SKF_PrintDevInfo 2421 1_1_0d EXIST::FUNCTION:SKF +SM9_signature_size 2422 1_1_0d EXIST::FUNCTION:SM9 +FFX_encrypt 2423 1_1_0d EXIST::FUNCTION: +BIO_f_zlib 2424 1_1_0d EXIST:ZLIB:FUNCTION:COMP +CRYPTO_ccm128_decrypt_ccm64 2425 1_1_0d EXIST::FUNCTION: +CRYPTO_clear_realloc 2426 1_1_0d EXIST::FUNCTION: +i2d_RSAPrivateKey_fp 2427 1_1_0d EXIST::FUNCTION:RSA,STDIO +X509V3_EXT_nconf_nid 2428 1_1_0d EXIST::FUNCTION: +d2i_PUBKEY_fp 2429 1_1_0d EXIST::FUNCTION:STDIO +X509_NAME_ENTRY_set_data 2430 1_1_0d EXIST::FUNCTION: +SCT_get_validation_status 2431 1_1_0d EXIST::FUNCTION:CT +ECIES_do_encrypt 2432 1_1_0d EXIST::FUNCTION:ECIES +BN_get_rfc3526_prime_4096 2433 1_1_0d EXIST::FUNCTION: +ENGINE_get_DSA 2434 1_1_0d EXIST::FUNCTION:ENGINE +OCSP_RESPONSE_print 2435 1_1_0d EXIST::FUNCTION:OCSP +i2d_PublicParameters_fp 2436 1_1_0d EXIST::FUNCTION:SM9,STDIO +TS_RESP_CTX_add_failure_info 2437 1_1_0d EXIST::FUNCTION:TS +BN_value_one 2438 1_1_0d EXIST::FUNCTION: +EVP_des_ede3_ofb 2439 1_1_0d EXIST::FUNCTION:DES +d2i_SM9MasterSecret 2440 1_1_0d EXIST::FUNCTION:SM9 +PEM_write_bio_CMS_stream 2441 1_1_0d EXIST::FUNCTION:CMS +i2d_X509_EXTENSION 2442 1_1_0d EXIST::FUNCTION: +SAF_Pkcs7_DecodeEnvelopedData 2443 1_1_0d EXIST::FUNCTION: +SKF_RSAExportSessionKey 2444 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_CTX_set_cb 2445 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_set_private 2446 1_1_0d EXIST::FUNCTION: +d2i_ASN1_UTCTIME 2447 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_set_int_octetstring 2448 1_1_0d EXIST::FUNCTION: +PKCS7_add_signer 2449 1_1_0d EXIST::FUNCTION: +ASN1_FBOOLEAN_it 2450 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_FBOOLEAN_it 2450 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_get_method 2451 1_1_0d EXIST::FUNCTION:EC +PKCS12_PBE_keyivgen 2452 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_get0_object 2453 1_1_0d EXIST::FUNCTION: +X509V3_EXT_get 2454 1_1_0d EXIST::FUNCTION: +BIO_callback_ctrl 2455 1_1_0d EXIST::FUNCTION: +BIO_dump_indent_cb 2456 1_1_0d EXIST::FUNCTION: +CRYPTO_set_mem_debug 2457 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_set_ECCCipher 2458 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 +DSA_get0_pqg 2459 1_1_0d EXIST::FUNCTION:DSA +d2i_POLICYQUALINFO 2460 1_1_0d EXIST::FUNCTION: +PKCS7_SIGN_ENVELOPE_new 2461 1_1_0d EXIST::FUNCTION: +PEM_read_bio_PaillierPrivateKey 2462 1_1_0d EXIST::FUNCTION:PAILLIER +EC_KEY_METHOD_get_sign 2463 1_1_0d EXIST::FUNCTION:EC +CMS_SharedInfo_encode 2464 1_1_0d EXIST::FUNCTION:CMS +d2i_ASN1_BIT_STRING 2465 1_1_0d EXIST::FUNCTION: +MD2_Final 2466 1_1_0d EXIST::FUNCTION:MD2 +ASN1_GENERALIZEDTIME_print 2467 1_1_0d EXIST::FUNCTION: +FIPS_mode 2468 1_1_0d EXIST::FUNCTION: +PKCS7_ISSUER_AND_SERIAL_digest 2469 1_1_0d EXIST::FUNCTION: +X509_CRL_get_ext_count 2470 1_1_0d EXIST::FUNCTION: +PKCS5_pbe_set 2471 1_1_0d EXIST::FUNCTION: +sms4_encrypt_16blocks 2472 1_1_0d EXIST::FUNCTION:SMS4 +X509_CRL_get0_by_cert 2473 1_1_0d EXIST::FUNCTION: +EVP_chacha20 2474 1_1_0d EXIST::FUNCTION:CHACHA +TS_MSG_IMPRINT_set_algo 2475 1_1_0d EXIST::FUNCTION:TS +SOF_VerifySignedData 2476 1_1_0d EXIST::FUNCTION: +BIO_number_read 2477 1_1_0d EXIST::FUNCTION: +POLICYQUALINFO_it 2478 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICYQUALINFO_it 2478 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BIO_get_retry_BIO 2479 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNER_INFO_sign 2480 1_1_0d EXIST::FUNCTION: +BN_mod_lshift 2481 1_1_0d EXIST::FUNCTION: +PEM_read_bio_DHparams 2482 1_1_0d EXIST::FUNCTION:DH +CAST_set_key 2483 1_1_0d EXIST::FUNCTION:CAST +SCT_set1_extensions 2484 1_1_0d EXIST::FUNCTION:CT +BN_sqr 2485 1_1_0d EXIST::FUNCTION: +OTHERNAME_it 2486 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +OTHERNAME_it 2486 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +DSAparams_dup 2487 1_1_0d EXIST::FUNCTION:DSA +X509_STORE_load_locations 2488 1_1_0d EXIST::FUNCTION: +OCSP_cert_id_new 2489 1_1_0d EXIST::FUNCTION:OCSP +EVP_des_cbc 2490 1_1_0d EXIST::FUNCTION:DES +ECDH_compute_key 2491 1_1_0d EXIST::FUNCTION:EC +OPENSSL_load_builtin_modules 2492 1_1_0d EXIST::FUNCTION: +CMS_set_detached 2493 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_CTX_get_lookup_certs 2494 1_1_0d EXIST::FUNCTION: +X509_STORE_set1_param 2495 1_1_0d EXIST::FUNCTION: +i2d_OCSP_CRLID 2496 1_1_0d EXIST::FUNCTION:OCSP +X509_get_subject_name 2497 1_1_0d EXIST::FUNCTION: +PROXY_POLICY_new 2498 1_1_0d EXIST::FUNCTION: +BIO_debug_callback 2499 1_1_0d EXIST::FUNCTION: +BN_GFP2_inv 2500 1_1_0d EXIST::FUNCTION: +PKCS7_RECIP_INFO_set 2501 1_1_0d EXIST::FUNCTION: +EVP_aes_128_ofb 2502 1_1_0d EXIST::FUNCTION: +BN_nist_mod_224 2503 1_1_0d EXIST::FUNCTION: +d2i_BFPrivateKeyBlock 2504 1_1_0d EXIST::FUNCTION:BFIBE +ERR_get_error 2505 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PKCS7_stream 2506 1_1_0d EXIST::FUNCTION: +i2d_ECCCipher_fp 2507 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,STDIO +SAF_GetCertificateInfo 2508 1_1_0d EXIST::FUNCTION: +BB1CiphertextBlock_it 2509 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1CiphertextBlock_it 2509 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +DSA_print 2510 1_1_0d EXIST::FUNCTION:DSA +ASN1_verify 2511 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_set_int64 2512 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_sign 2513 1_1_0d EXIST::FUNCTION: +PKCS12_add_safes 2514 1_1_0d EXIST::FUNCTION: +EVP_PKEY_print_params 2515 1_1_0d EXIST::FUNCTION: +AES_set_encrypt_key 2516 1_1_0d EXIST::FUNCTION: +PEM_SignFinal 2517 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_to_BN 2518 1_1_0d EXIST::FUNCTION: +d2i_X509_bio 2519 1_1_0d EXIST::FUNCTION: +RSA_meth_set_pub_enc 2520 1_1_0d EXIST::FUNCTION:RSA +EVP_idea_ecb 2521 1_1_0d EXIST::FUNCTION:IDEA +SHA256_Final 2522 1_1_0d EXIST::FUNCTION: +BIO_new_file 2523 1_1_0d EXIST::FUNCTION: +DH_get_2048_224 2524 1_1_0d EXIST::FUNCTION:DH +d2i_SM9PublicKey_fp 2525 1_1_0d EXIST::FUNCTION:SM9,STDIO +X509_REQ_get_pubkey 2526 1_1_0d EXIST::FUNCTION: +PKCS12_get_friendlyname 2527 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_cert_flags 2528 1_1_0d EXIST::FUNCTION: +d2i_TS_REQ_fp 2529 1_1_0d EXIST::FUNCTION:STDIO,TS +v2i_ASN1_BIT_STRING 2530 1_1_0d EXIST::FUNCTION: +PEM_write_SM9PublicKey 2531 1_1_0d EXIST::FUNCTION:SM9,STDIO +CT_POLICY_EVAL_CTX_free 2532 1_1_0d EXIST::FUNCTION:CT +ASN1_TYPE_set_octetstring 2533 1_1_0d EXIST::FUNCTION: +i2d_FpPoint 2534 1_1_0d EXIST::FUNCTION: +SDF_PrintECCPrivateKey 2535 1_1_0d EXIST::FUNCTION:SDF +POLICY_CONSTRAINTS_new 2536 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_current_cert 2537 1_1_0d EXIST::FUNCTION: +CAST_ofb64_encrypt 2538 1_1_0d EXIST::FUNCTION:CAST +TS_RESP_CTX_add_flags 2539 1_1_0d EXIST::FUNCTION:TS +TS_CONF_load_certs 2540 1_1_0d EXIST::FUNCTION:TS +BN_div_recp 2541 1_1_0d EXIST::FUNCTION: +ENGINE_free 2542 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_set_pkey_asn1_meths 2543 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_asn1_set_security_bits 2544 1_1_0d EXIST::FUNCTION: +d2i_OCSP_RESPONSE 2545 1_1_0d EXIST::FUNCTION:OCSP +SKF_DeleteFile 2546 1_1_0d EXIST::FUNCTION:SKF +X509_REQ_get_X509_PUBKEY 2547 1_1_0d EXIST::FUNCTION: +X509_CRL_dup 2548 1_1_0d EXIST::FUNCTION: +SAF_EccSign 2549 1_1_0d EXIST::FUNCTION: +EVP_MD_pkey_type 2550 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get1_issuer 2551 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_str_flags 2552 1_1_0d EXIST::FUNCTION: +serpent_set_encrypt_key 2553 1_1_0d EXIST::FUNCTION:SERPENT +EVP_sms4_xts 2554 1_1_0d EXIST::FUNCTION:SMS4 +X509_REVOKED_get_ext_by_NID 2555 1_1_0d EXIST::FUNCTION: +X509_STORE_get_ex_data 2556 1_1_0d EXIST::FUNCTION: +SM9_encrypt 2557 1_1_0d EXIST::FUNCTION:SM9 +X509_STORE_CTX_get_lookup_crls 2558 1_1_0d EXIST::FUNCTION: +EC_type1curve_tate_ratio 2559 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_get_local 2560 1_1_0d EXIST::FUNCTION: +i2o_ECPublicKey 2561 1_1_0d EXIST::FUNCTION:EC +EVP_DigestInit_ex 2562 1_1_0d EXIST::FUNCTION: +X509_REQ_extension_nid 2563 1_1_0d EXIST::FUNCTION: +d2i_PKCS8PrivateKey_bio 2564 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_get_time 2565 1_1_0d EXIST::FUNCTION:CT +ASN1_PRINTABLESTRING_it 2566 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_PRINTABLESTRING_it 2566 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SM9_KEY_up_ref 2567 1_1_0d EXIST::FUNCTION:SM9 +DH_meth_set_generate_params 2568 1_1_0d EXIST::FUNCTION:DH +EVP_des_ede3_cfb64 2569 1_1_0d EXIST::FUNCTION:DES +SAF_Base64_Decode 2570 1_1_0d EXIST::FUNCTION: +BIO_dump_fp 2571 1_1_0d EXIST::FUNCTION:STDIO +i2d_DIST_POINT 2572 1_1_0d EXIST::FUNCTION: +d2i_ASN1_ENUMERATED 2573 1_1_0d EXIST::FUNCTION: +PKCS8_PRIV_KEY_INFO_it 2574 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS8_PRIV_KEY_INFO_it 2574 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CRYPTO_xts128_encrypt 2575 1_1_0d EXIST::FUNCTION: +BIO_get_init 2576 1_1_0d EXIST::FUNCTION: +ASN1_TIME_check 2577 1_1_0d EXIST::FUNCTION: +a2i_ASN1_STRING 2578 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_get_object 2579 1_1_0d EXIST::FUNCTION: +PEM_read_bio_PKCS8_PRIV_KEY_INFO 2580 1_1_0d EXIST::FUNCTION: +PKCS7_get_signed_attribute 2581 1_1_0d EXIST::FUNCTION: +ASN1_T61STRING_new 2582 1_1_0d EXIST::FUNCTION: +PEM_write_PrivateKey 2583 1_1_0d EXIST::FUNCTION:STDIO +RSA_get0_key 2584 1_1_0d EXIST::FUNCTION:RSA +EC_POINT_set_compressed_coordinates_GF2m 2585 1_1_0d EXIST::FUNCTION:EC,EC2M +OCSP_RESPID_match 2586 1_1_0d EXIST::FUNCTION:OCSP +i2d_X509_CERT_AUX 2587 1_1_0d EXIST::FUNCTION: +SOF_GetUserList 2588 1_1_0d EXIST::FUNCTION: +SHA256_Transform 2589 1_1_0d EXIST::FUNCTION: +ENGINE_set_init_function 2590 1_1_0d EXIST::FUNCTION:ENGINE +EVP_CIPHER_key_length 2591 1_1_0d EXIST::FUNCTION: +X509_STORE_set_verify 2592 1_1_0d EXIST::FUNCTION: +BB1PublicParameters_new 2593 1_1_0d EXIST::FUNCTION:BB1IBE +BN_mod_mul_montgomery 2594 1_1_0d EXIST::FUNCTION: +MDC2_Final 2595 1_1_0d EXIST::FUNCTION:MDC2 +ECDH_KDF_X9_62 2596 1_1_0d EXIST::FUNCTION:EC +SKF_CreateFile 2597 1_1_0d EXIST::FUNCTION:SKF +UI_OpenSSL 2598 1_1_0d EXIST::FUNCTION:UI +ENGINE_get_EC 2599 1_1_0d EXIST::FUNCTION:ENGINE +SMIME_read_PKCS7 2600 1_1_0d EXIST::FUNCTION: +X509_sign_ctx 2601 1_1_0d EXIST::FUNCTION: +EVP_PBE_scrypt 2602 1_1_0d EXIST::FUNCTION:SCRYPT +BN_X931_derive_prime_ex 2603 1_1_0d EXIST::FUNCTION: +PEM_read 2604 1_1_0d EXIST::FUNCTION:STDIO +BIO_new_fp 2605 1_1_0d EXIST::FUNCTION:STDIO +SM9PrivateKey_it 2606 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9PrivateKey_it 2606 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +SOF_SignFile 2607 1_1_0d EXIST::FUNCTION: +MD2 2608 1_1_0d EXIST::FUNCTION:MD2 +ENGINE_register_all_pkey_asn1_meths 2609 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_unregister_digests 2610 1_1_0d EXIST::FUNCTION:ENGINE +EC_KEY_METHOD_get_verify 2611 1_1_0d EXIST::FUNCTION:EC +PEM_read_bio_DSAPrivateKey 2612 1_1_0d EXIST::FUNCTION:DSA +SOF_SetCertTrustList 2613 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_ctrl 2614 1_1_0d EXIST::FUNCTION: +CRYPTO_strndup 2615 1_1_0d EXIST::FUNCTION: +OPENSSL_init_crypto 2616 1_1_0d EXIST::FUNCTION: +EC_GROUP_set_seed 2617 1_1_0d EXIST::FUNCTION:EC +X509_PURPOSE_get0 2618 1_1_0d EXIST::FUNCTION: +DSA_sign 2619 1_1_0d EXIST::FUNCTION:DSA +PEM_write_bio 2620 1_1_0d EXIST::FUNCTION: +UI_get_ex_data 2621 1_1_0d EXIST::FUNCTION:UI +EVP_PKEY_assign 2622 1_1_0d EXIST::FUNCTION: +ASYNC_is_capable 2623 1_1_0d EXIST::FUNCTION: +SKF_UnlockDev 2624 1_1_0d EXIST::FUNCTION:SKF +PKCS7_set_attributes 2625 1_1_0d EXIST::FUNCTION: +DH_get_ex_data 2626 1_1_0d EXIST::FUNCTION:DH +EVP_read_pw_string_min 2627 1_1_0d EXIST::FUNCTION:UI +PEM_read_bio_ECPrivateKey 2628 1_1_0d EXIST::FUNCTION:EC +FIPS_mode_set 2629 1_1_0d EXIST::FUNCTION: +SDF_ReadFile 2630 1_1_0d EXIST::FUNCTION: +X509_STORE_free 2631 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_it 2632 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_UTCTIME_it 2632 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_GF2m_mod_mul 2633 1_1_0d EXIST::FUNCTION:EC2M +EVP_MD_meth_set_final 2634 1_1_0d EXIST::FUNCTION: +PKCS7_set0_type_other 2635 1_1_0d EXIST::FUNCTION: +USERNOTICE_new 2636 1_1_0d EXIST::FUNCTION: +CRYPTO_secure_actual_size 2637 1_1_0d EXIST::FUNCTION: +X509_STORE_get_lookup_crls 2638 1_1_0d EXIST::FUNCTION: +PEM_write_EC_PUBKEY 2639 1_1_0d EXIST::FUNCTION:EC,STDIO +BN_GF2m_mod_sqr 2640 1_1_0d EXIST::FUNCTION:EC2M +PEM_ASN1_read_bio 2641 1_1_0d EXIST::FUNCTION: +UI_method_set_prompt_constructor 2642 1_1_0d EXIST::FUNCTION:UI +ENGINE_register_digests 2643 1_1_0d EXIST::FUNCTION:ENGINE +X509_CRL_get_ext 2644 1_1_0d EXIST::FUNCTION: +OPENSSL_cleanse 2645 1_1_0d EXIST::FUNCTION: +CONF_set_default_method 2646 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_node_stats_bio 2647 1_1_0d EXIST::FUNCTION: +ASYNC_WAIT_CTX_get_fd 2648 1_1_0d EXIST::FUNCTION: +DISPLAYTEXT_it 2649 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DISPLAYTEXT_it 2649 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SKF_GetFileInfo 2650 1_1_0d EXIST::FUNCTION:SKF +PKCS12_SAFEBAG_get1_cert 2651 1_1_0d EXIST::FUNCTION: +sms4_cfb128_encrypt 2652 1_1_0d EXIST::FUNCTION:SMS4 +OPENSSL_sk_find 2653 1_1_0d EXIST::FUNCTION: +PBKDF2PARAM_free 2654 1_1_0d EXIST::FUNCTION: +X509_find_by_issuer_and_serial 2655 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_create_by_NID 2656 1_1_0d EXIST::FUNCTION: +X509v3_asid_subset 2657 1_1_0d EXIST::FUNCTION:RFC3779 +PEM_read_X509_CRL 2658 1_1_0d EXIST::FUNCTION:STDIO +X509_CINF_new 2659 1_1_0d EXIST::FUNCTION: +ENGINE_get_cipher 2660 1_1_0d EXIST::FUNCTION:ENGINE +X509_subject_name_cmp 2661 1_1_0d EXIST::FUNCTION: +SM2_do_sign 2662 1_1_0d EXIST::FUNCTION:SM2 +SKF_Transmit 2663 1_1_0d EXIST::FUNCTION:SKF +ACCESS_DESCRIPTION_new 2664 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_oid_flags 2665 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_get_ext_count 2666 1_1_0d EXIST::FUNCTION:OCSP +FFX_decrypt 2667 1_1_0d EXIST::FUNCTION: +sm3_compress 2668 1_1_0d EXIST::FUNCTION:SM3 +TS_CONF_set_signer_cert 2669 1_1_0d EXIST::FUNCTION:TS +d2i_OCSP_SIGNATURE 2670 1_1_0d EXIST::FUNCTION:OCSP +PKCS12_SAFEBAG_get_nid 2671 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_clear_flags 2672 1_1_0d EXIST::FUNCTION: +DSA_meth_set_init 2673 1_1_0d EXIST::FUNCTION:DSA +EVP_PKEY_save_parameters 2674 1_1_0d EXIST::FUNCTION: +PKCS7_final 2675 1_1_0d EXIST::FUNCTION: +BIO_s_fd 2676 1_1_0d EXIST::FUNCTION: +OCSP_SIGNATURE_new 2677 1_1_0d EXIST::FUNCTION:OCSP +ASN1_TIME_free 2678 1_1_0d EXIST::FUNCTION: +PKCS12_free 2679 1_1_0d EXIST::FUNCTION: +X509_REVOKED_free 2680 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_file 2681 1_1_0d EXIST::FUNCTION: +PAILLIER_security_bits 2682 1_1_0d EXIST::FUNCTION:PAILLIER +OCSP_CERTSTATUS_it 2683 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_CERTSTATUS_it 2683 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +EVP_PKEY_derive_init 2684 1_1_0d EXIST::FUNCTION: +RSA_PSS_PARAMS_new 2685 1_1_0d EXIST::FUNCTION:RSA +EVP_MD_CTX_test_flags 2686 1_1_0d EXIST::FUNCTION: +ENGINE_load_builtin_engines 2687 1_1_0d EXIST::FUNCTION:ENGINE +CMS_signed_delete_attr 2688 1_1_0d EXIST::FUNCTION:CMS +CPK_MASTER_SECRET_validate_public_params 2689 1_1_0d EXIST::FUNCTION:CPK +ASN1_item_verify 2690 1_1_0d EXIST::FUNCTION: +MD2_Init 2691 1_1_0d EXIST::FUNCTION:MD2 +DHparams_print 2692 1_1_0d EXIST::FUNCTION:DH +EVP_rc4 2693 1_1_0d EXIST::FUNCTION:RC4 +EVP_sha384 2694 1_1_0d EXIST:!VMSVAX:FUNCTION: +OCSP_SINGLERESP_get0_id 2695 1_1_0d EXIST::FUNCTION:OCSP +ASN1_BIT_STRING_free 2696 1_1_0d EXIST::FUNCTION: +EC_POINT_point2oct 2697 1_1_0d EXIST::FUNCTION:EC +X509_REQ_get_attr_by_OBJ 2698 1_1_0d EXIST::FUNCTION: +X509_issuer_name_hash_old 2699 1_1_0d EXIST::FUNCTION:MD5 +DH_set_flags 2700 1_1_0d EXIST::FUNCTION:DH +X509_EXTENSION_new 2701 1_1_0d EXIST::FUNCTION: +d2i_ASN1_SET_ANY 2702 1_1_0d EXIST::FUNCTION: +SAF_Base64_DecodeFinal 2703 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_reset 2704 1_1_0d EXIST::FUNCTION: +DH_generate_parameters 2705 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DH +EVP_aes_256_wrap_pad 2706 1_1_0d EXIST::FUNCTION: +CRYPTO_ctr128_encrypt 2707 1_1_0d EXIST::FUNCTION: +d2i_ACCESS_DESCRIPTION 2708 1_1_0d EXIST::FUNCTION: +EVP_EncryptInit_ex 2709 1_1_0d EXIST::FUNCTION: +X509_email_free 2710 1_1_0d EXIST::FUNCTION: +ENGINE_set_load_ssl_client_cert_function 2711 1_1_0d EXIST::FUNCTION:ENGINE +X509_STORE_set_purpose 2712 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_count 2713 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_cipher 2714 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_degree 2715 1_1_0d EXIST::FUNCTION:EC +BIO_meth_get_read 2716 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_get_bit 2717 1_1_0d EXIST::FUNCTION: +PKCS12_MAC_DATA_free 2718 1_1_0d EXIST::FUNCTION: +RSA_meth_get_pub_dec 2719 1_1_0d EXIST::FUNCTION:RSA +sm3_init 2720 1_1_0d EXIST::FUNCTION:SM3 +PEM_get_EVP_CIPHER_INFO 2721 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_get_cipher_data 2722 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_get_ext 2723 1_1_0d EXIST::FUNCTION:OCSP +i2o_SCT 2724 1_1_0d EXIST::FUNCTION:CT +EC_GROUP_get_basis_type 2725 1_1_0d EXIST::FUNCTION:EC +PEM_read_X509_AUX 2726 1_1_0d EXIST::FUNCTION:STDIO +PEM_bytes_read_bio 2727 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_tls_encodedpoint 2728 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_get_data 2729 1_1_0d EXIST::FUNCTION: +DSA_meth_set1_name 2730 1_1_0d EXIST::FUNCTION:DSA +BN_asc2bn 2731 1_1_0d EXIST::FUNCTION: +DH_meth_get_generate_key 2732 1_1_0d EXIST::FUNCTION:DH +OPENSSL_gmtime_diff 2733 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_copy_ctx 2734 1_1_0d EXIST::FUNCTION:OCB +d2i_DSA_PUBKEY 2735 1_1_0d EXIST::FUNCTION:DSA +NETSCAPE_SPKI_it 2736 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NETSCAPE_SPKI_it 2736 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_write_PAILLIER_PUBKEY 2737 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +SCT_LIST_free 2738 1_1_0d EXIST::FUNCTION:CT +EVP_MD_CTX_md_data 2739 1_1_0d EXIST::FUNCTION: +BN_get_word 2740 1_1_0d EXIST::FUNCTION: +DIST_POINT_set_dpname 2741 1_1_0d EXIST::FUNCTION: +SHA224 2742 1_1_0d EXIST::FUNCTION: +SDF_HashFinal 2743 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_it 2744 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_REQUEST_it 2744 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +ENGINE_get_RAND 2745 1_1_0d EXIST::FUNCTION:ENGINE +i2d_ASN1_UTCTIME 2746 1_1_0d EXIST::FUNCTION: +SKF_UnblockPIN 2747 1_1_0d EXIST::FUNCTION:SKF +NCONF_free_data 2748 1_1_0d EXIST::FUNCTION: +X509_find_by_subject 2749 1_1_0d EXIST::FUNCTION: +X509_CRL_get_ext_by_NID 2750 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_set_verify 2751 1_1_0d EXIST::FUNCTION:EC +d2i_X509_REQ_bio 2752 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_print_bio 2753 1_1_0d EXIST::FUNCTION:TS +ECIES_CIPHERTEXT_VALUE_new_from_ECCCIPHERBLOB 2754 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF +BN_is_one 2755 1_1_0d EXIST::FUNCTION: +DH_meth_get_init 2756 1_1_0d EXIST::FUNCTION:DH +OPENSSL_die 2757 1_1_0d EXIST::FUNCTION: +ENGINE_set_DSA 2758 1_1_0d EXIST::FUNCTION:ENGINE +i2v_GENERAL_NAMES 2759 1_1_0d EXIST::FUNCTION: +SM2_KAP_final_check 2760 1_1_0d EXIST::FUNCTION:SM2 +X509_get_key_usage 2761 1_1_0d EXIST::FUNCTION: +RSA_padding_add_PKCS1_PSS 2762 1_1_0d EXIST::FUNCTION:RSA +OCSP_ONEREQ_get_ext_by_NID 2763 1_1_0d EXIST::FUNCTION:OCSP +PEM_write_CMS 2764 1_1_0d EXIST::FUNCTION:CMS,STDIO +X509_EXTENSIONS_it 2765 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_EXTENSIONS_it 2765 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_UTF8STRING_it 2766 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_UTF8STRING_it 2766 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_add1_ext_i2d 2767 1_1_0d EXIST::FUNCTION: +SEED_encrypt 2768 1_1_0d EXIST::FUNCTION:SEED +i2d_SM2CiphertextValue 2769 1_1_0d EXIST::FUNCTION:SM2 +ASN1_item_ex_i2d 2770 1_1_0d EXIST::FUNCTION: +DSA_get_default_method 2771 1_1_0d EXIST::FUNCTION:DSA +EVP_MD_block_size 2772 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKI_b64_encode 2773 1_1_0d EXIST::FUNCTION: +PKCS12_get_attr_gen 2774 1_1_0d EXIST::FUNCTION: +SAF_GetCertFromLdap 2775 1_1_0d EXIST::FUNCTION: +TS_REQ_get_msg_imprint 2776 1_1_0d EXIST::FUNCTION:TS +BFPrivateKeyBlock_it 2777 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFPrivateKeyBlock_it 2777 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +d2i_X509_NAME 2778 1_1_0d EXIST::FUNCTION: +SM9_KEY_free 2779 1_1_0d EXIST::FUNCTION:SM9 +X509_NAME_dup 2780 1_1_0d EXIST::FUNCTION: +BN_secure_new 2781 1_1_0d EXIST::FUNCTION: +X509_time_adj 2782 1_1_0d EXIST::FUNCTION: +ERR_load_KDF2_strings 2783 1_1_0d EXIST::FUNCTION: +CRYPTO_free_ex_index 2784 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set_type 2785 1_1_0d EXIST::FUNCTION: +ERR_remove_thread_state 2786 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +X509_CRL_get0_by_serial 2787 1_1_0d EXIST::FUNCTION: +BN_clear 2788 1_1_0d EXIST::FUNCTION: +CPK_PUBLIC_PARAMS_print 2789 1_1_0d EXIST::FUNCTION:CPK +i2d_SM9_PUBKEY 2790 1_1_0d EXIST::FUNCTION:SM9 +ASN1_PRINTABLE_free 2791 1_1_0d EXIST::FUNCTION: +IPAddressFamily_free 2792 1_1_0d EXIST::FUNCTION:RFC3779 +PKCS12_decrypt_skey 2793 1_1_0d EXIST::FUNCTION: +i2d_USERNOTICE 2794 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNER_INFO_it 2795 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_SIGNER_INFO_it 2795 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_REQ_get_subject_name 2796 1_1_0d EXIST::FUNCTION: +BF_set_key 2797 1_1_0d EXIST::FUNCTION:BF +SXNETID_free 2798 1_1_0d EXIST::FUNCTION: +OCSP_basic_add1_nonce 2799 1_1_0d EXIST::FUNCTION:OCSP +ERR_clear_error 2800 1_1_0d EXIST::FUNCTION: +EVP_rc2_40_cbc 2801 1_1_0d EXIST::FUNCTION:RC2 +X509_issuer_and_serial_hash 2802 1_1_0d EXIST::FUNCTION: +DSA_meth_get_sign 2803 1_1_0d EXIST::FUNCTION:DSA +CMS_unsigned_delete_attr 2804 1_1_0d EXIST::FUNCTION:CMS +X509V3_add_standard_extensions 2805 1_1_0d EXIST::FUNCTION: +ENGINE_set_DH 2806 1_1_0d EXIST::FUNCTION:ENGINE +SDF_HashInit 2807 1_1_0d EXIST::FUNCTION: +i2d_ASN1_GENERALSTRING 2808 1_1_0d EXIST::FUNCTION: +UI_method_set_writer 2809 1_1_0d EXIST::FUNCTION:UI +ASN1_STRING_print_ex 2810 1_1_0d EXIST::FUNCTION: +RSA_bits 2811 1_1_0d EXIST::FUNCTION:RSA +BF_decrypt 2812 1_1_0d EXIST::FUNCTION:BF +X509_get1_email 2813 1_1_0d EXIST::FUNCTION: +SAF_AddCrl 2814 1_1_0d EXIST::FUNCTION: +i2d_EXTENDED_KEY_USAGE 2815 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_impl_ctx_size 2816 1_1_0d EXIST::FUNCTION: +AUTHORITY_INFO_ACCESS_it 2817 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +AUTHORITY_INFO_ACCESS_it 2817 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SKF_UnloadLibrary 2818 1_1_0d EXIST::FUNCTION:SKF +UI_dup_input_string 2819 1_1_0d EXIST::FUNCTION:UI +RAND_egd_bytes 2820 1_1_0d EXIST::FUNCTION:EGD +X509_NAME_it 2821 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_NAME_it 2821 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_CTX_new 2822 1_1_0d EXIST::FUNCTION: +RSA_set_default_method 2823 1_1_0d EXIST::FUNCTION:RSA +PKCS7_add_attribute 2824 1_1_0d EXIST::FUNCTION: +X509_NAME_oneline 2825 1_1_0d EXIST::FUNCTION: +UI_get0_result_string 2826 1_1_0d EXIST::FUNCTION:UI +CTLOG_STORE_new 2827 1_1_0d EXIST::FUNCTION:CT +OCSP_REQUEST_get_ext_by_OBJ 2828 1_1_0d EXIST::FUNCTION:OCSP +BIO_set_init 2829 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get_attr_by_NID 2830 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_dup 2831 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_add0 2832 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_EC_KEY 2833 1_1_0d EXIST::FUNCTION:EC +d2i_RSAPrivateKey 2834 1_1_0d EXIST::FUNCTION:RSA +CRYPTO_secure_free 2835 1_1_0d EXIST::FUNCTION: +CMS_ContentInfo_print_ctx 2836 1_1_0d EXIST::FUNCTION:CMS +SAF_GenerateKeyWithECC 2837 1_1_0d EXIST::FUNCTION: +SAF_SymmEncrypt 2838 1_1_0d EXIST::FUNCTION: +CRYPTO_get_ex_new_index 2839 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_find 2840 1_1_0d EXIST::FUNCTION: +EVP_des_ede3_cfb8 2841 1_1_0d EXIST::FUNCTION:DES +SKF_DevAuth 2842 1_1_0d EXIST::FUNCTION:SKF +ASN1_item_free 2843 1_1_0d EXIST::FUNCTION: +EC_KEY_get_enc_flags 2844 1_1_0d EXIST::FUNCTION:EC +i2d_ECPKParameters 2845 1_1_0d EXIST::FUNCTION:EC +ASN1_d2i_fp 2846 1_1_0d EXIST::FUNCTION:STDIO +BIO_ctrl_get_read_request 2847 1_1_0d EXIST::FUNCTION: +ASYNC_WAIT_CTX_get_all_fds 2848 1_1_0d EXIST::FUNCTION: +SRP_check_known_gN_param 2849 1_1_0d EXIST::FUNCTION:SRP +sm3_hmac_init 2850 1_1_0d EXIST::FUNCTION:SM3 +BN_get_rfc3526_prime_1536 2851 1_1_0d EXIST::FUNCTION: +ERR_func_error_string 2852 1_1_0d EXIST::FUNCTION: +PKEY_USAGE_PERIOD_free 2853 1_1_0d EXIST::FUNCTION: +OCSP_resp_count 2854 1_1_0d EXIST::FUNCTION:OCSP +WHIRLPOOL_BitUpdate 2855 1_1_0d EXIST::FUNCTION:WHIRLPOOL +EVP_rc4_hmac_md5 2856 1_1_0d EXIST::FUNCTION:MD5,RC4 +BIO_dgram_sctp_wait_for_dry 2857 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +ENGINE_ctrl_cmd 2858 1_1_0d EXIST::FUNCTION:ENGINE +SOF_GetCertInfoByOid 2859 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_set_flags 2860 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_set_asn1_params 2861 1_1_0d EXIST::FUNCTION: +OPENSSL_utf82uni 2862 1_1_0d EXIST::FUNCTION: +EVP_sms4_wrap 2863 1_1_0d EXIST::FUNCTION:SMS4 +DIRECTORYSTRING_new 2864 1_1_0d EXIST::FUNCTION: +ASYNC_pause_job 2865 1_1_0d EXIST::FUNCTION: +ERR_load_ENGINE_strings 2866 1_1_0d EXIST::FUNCTION:ENGINE +X509_add_ext 2867 1_1_0d EXIST::FUNCTION: +RC2_ofb64_encrypt 2868 1_1_0d EXIST::FUNCTION:RC2 +SM9_setup 2869 1_1_0d EXIST::FUNCTION:SM9 +SOF_VerifySignedDataXML 2870 1_1_0d EXIST::FUNCTION: +SM9_MASTER_KEY_free 2871 1_1_0d EXIST::FUNCTION:SM9 +PEM_read_PKCS8 2872 1_1_0d EXIST::FUNCTION:STDIO +RC5_32_encrypt 2873 1_1_0d EXIST::FUNCTION:RC5 +ENGINE_get_last 2874 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_get_pkey_asn1_meth 2875 1_1_0d EXIST::FUNCTION:ENGINE +X509_policy_node_get0_parent 2876 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_flags 2877 1_1_0d EXIST::FUNCTION: +SM9_extract_private_key 2878 1_1_0d EXIST::FUNCTION:SM9 +BN_GF2m_mod_exp_arr 2879 1_1_0d EXIST::FUNCTION:EC2M +BIO_ADDR_rawport 2880 1_1_0d EXIST::FUNCTION:SOCK +X509_policy_level_node_count 2881 1_1_0d EXIST::FUNCTION: +IDEA_encrypt 2882 1_1_0d EXIST::FUNCTION:IDEA +d2i_RSAPrivateKey_fp 2883 1_1_0d EXIST::FUNCTION:RSA,STDIO +TS_CONF_set_def_policy 2884 1_1_0d EXIST::FUNCTION:TS +X509_EXTENSION_get_critical 2885 1_1_0d EXIST::FUNCTION: +d2i_OCSP_SINGLERESP 2886 1_1_0d EXIST::FUNCTION:OCSP +EC_KEY_METHOD_free 2887 1_1_0d EXIST::FUNCTION:EC +DH_set_ex_data 2888 1_1_0d EXIST::FUNCTION:DH +X509_STORE_CTX_init 2889 1_1_0d EXIST::FUNCTION: +BIO_ctrl_wpending 2890 1_1_0d EXIST::FUNCTION: +BN_mod_sub 2891 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_add_ext 2892 1_1_0d EXIST::FUNCTION:OCSP +ENGINE_get_finish_function 2893 1_1_0d EXIST::FUNCTION:ENGINE +EVP_camellia_192_ctr 2894 1_1_0d EXIST::FUNCTION:CAMELLIA +NOTICEREF_it 2895 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NOTICEREF_it 2895 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_PKEY_meth_new 2896 1_1_0d EXIST::FUNCTION: +CRYPTO_zalloc 2897 1_1_0d EXIST::FUNCTION: +UI_method_set_flusher 2898 1_1_0d EXIST::FUNCTION:UI +SKF_LockDev 2899 1_1_0d EXIST::FUNCTION:SKF +ENGINE_new 2900 1_1_0d EXIST::FUNCTION:ENGINE +CT_POLICY_EVAL_CTX_get0_cert 2901 1_1_0d EXIST::FUNCTION:CT +X509_TRUST_get0_name 2902 1_1_0d EXIST::FUNCTION: +PEM_read_RSA_PUBKEY 2903 1_1_0d EXIST::FUNCTION:RSA,STDIO +CAST_cfb64_encrypt 2904 1_1_0d EXIST::FUNCTION:CAST +ECIES_CIPHERTEXT_VALUE_free 2905 1_1_0d EXIST::FUNCTION:ECIES +SAF_RsaSignFile 2906 1_1_0d EXIST::FUNCTION: +X509_STORE_set_lookup_certs 2907 1_1_0d EXIST::FUNCTION: +RSA_PKCS1_OpenSSL 2908 1_1_0d EXIST::FUNCTION:RSA +IPAddressFamily_new 2909 1_1_0d EXIST::FUNCTION:RFC3779 +PKCS12_item_i2d_encrypt 2910 1_1_0d EXIST::FUNCTION: +DES_cfb_encrypt 2911 1_1_0d EXIST::FUNCTION:DES +ASN1_OCTET_STRING_it 2912 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_OCTET_STRING_it 2912 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_get_rfc2409_prime_1024 2913 1_1_0d EXIST::FUNCTION: +BN_get_flags 2914 1_1_0d EXIST::FUNCTION: +BIO_new_CMS 2915 1_1_0d EXIST::FUNCTION:CMS +X509_ATTRIBUTE_dup 2916 1_1_0d EXIST::FUNCTION: +X509V3_conf_free 2917 1_1_0d EXIST::FUNCTION: +OCSP_response_status_str 2918 1_1_0d EXIST::FUNCTION:OCSP +EVP_MD_CTX_reset 2919 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_pkey_meths 2920 1_1_0d EXIST::FUNCTION:ENGINE +RAND_query_egd_bytes 2921 1_1_0d EXIST::FUNCTION:EGD +i2d_X509_ALGORS 2922 1_1_0d EXIST::FUNCTION: +X509_TRUST_get_flags 2923 1_1_0d EXIST::FUNCTION: +EC_POINT_dbl 2924 1_1_0d EXIST::FUNCTION:EC +EC_KEY_new_by_curve_name 2925 1_1_0d EXIST::FUNCTION:EC +i2d_ECCCIPHERBLOB 2926 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +NCONF_default 2927 1_1_0d EXIST::FUNCTION: +BN_bn2solinas 2928 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_hash_dir 2929 1_1_0d EXIST::FUNCTION: +BN_mod_sqrt 2930 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_pkey_ctx 2931 1_1_0d EXIST::FUNCTION: +d2i_ASN1_PRINTABLE 2932 1_1_0d EXIST::FUNCTION: +SKF_DigestUpdate 2933 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_CTX_new_id 2934 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_get_current_id 2935 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_SIGNED 2936 1_1_0d EXIST::FUNCTION: +i2d_ECCCIPHERBLOB_fp 2937 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO +i2d_TS_TST_INFO_bio 2938 1_1_0d EXIST::FUNCTION:TS +TS_REQ_dup 2939 1_1_0d EXIST::FUNCTION:TS +PKCS12_SAFEBAG_get_bag_nid 2940 1_1_0d EXIST::FUNCTION: +TS_REQ_get_ext_by_NID 2941 1_1_0d EXIST::FUNCTION:TS +X509_CRL_set_meth_data 2942 1_1_0d EXIST::FUNCTION: +i2d_OCSP_RESPBYTES 2943 1_1_0d EXIST::FUNCTION:OCSP +i2d_PKCS8_fp 2944 1_1_0d EXIST::FUNCTION:STDIO +BN_GENCB_free 2945 1_1_0d EXIST::FUNCTION: +ASN1_TIME_to_generalizedtime 2946 1_1_0d EXIST::FUNCTION: +BN_BLINDING_lock 2947 1_1_0d EXIST::FUNCTION: +IPAddressChoice_new 2948 1_1_0d EXIST::FUNCTION:RFC3779 +SM2_do_decrypt 2949 1_1_0d EXIST::FUNCTION:SM2 +speck_encrypt64 2950 1_1_0d EXIST::FUNCTION:SPECK +EVP_MD_type 2951 1_1_0d EXIST::FUNCTION: +PKCS12_new 2952 1_1_0d EXIST::FUNCTION: +BN_GENCB_new 2953 1_1_0d EXIST::FUNCTION: +BN_dup 2954 1_1_0d EXIST::FUNCTION: +SRP_user_pwd_free 2955 1_1_0d EXIST::FUNCTION:SRP +BIGNUM_it 2956 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +BIGNUM_it 2956 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CRYPTO_gcm128_release 2957 1_1_0d EXIST::FUNCTION: +RSA_meth_set_verify 2958 1_1_0d EXIST::FUNCTION:RSA +PEM_write_RSA_PUBKEY 2959 1_1_0d EXIST::FUNCTION:RSA,STDIO +EVP_PKEY_meth_get_ctrl 2960 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_get0_log_store 2961 1_1_0d EXIST::FUNCTION:CT +EVP_PKEY_copy_parameters 2962 1_1_0d EXIST::FUNCTION: +EC_POINT_oct2point 2963 1_1_0d EXIST::FUNCTION:EC +d2i_ASN1_UNIVERSALSTRING 2964 1_1_0d EXIST::FUNCTION: +DSO_load 2965 1_1_0d EXIST::FUNCTION: +ENGINE_up_ref 2966 1_1_0d EXIST::FUNCTION:ENGINE +speck_decrypt16 2967 1_1_0d EXIST::FUNCTION:SPECK +BIO_meth_set_callback_ctrl 2968 1_1_0d EXIST::FUNCTION: +PAILLIER_check_key 2969 1_1_0d EXIST::FUNCTION:PAILLIER +ASN1_INTEGER_get_uint64 2970 1_1_0d EXIST::FUNCTION: +i2d_CMS_bio_stream 2971 1_1_0d EXIST::FUNCTION:CMS +ENGINE_register_all_complete 2972 1_1_0d EXIST::FUNCTION:ENGINE +X509_REQ_dup 2973 1_1_0d EXIST::FUNCTION: +BIO_vprintf 2974 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_set_time 2975 1_1_0d EXIST::FUNCTION:CT +RC5_32_ecb_encrypt 2976 1_1_0d EXIST::FUNCTION:RC5 +BIO_ADDRINFO_protocol 2977 1_1_0d EXIST::FUNCTION:SOCK +i2d_IPAddressOrRange 2978 1_1_0d EXIST::FUNCTION:RFC3779 +UI_method_get_opener 2979 1_1_0d EXIST::FUNCTION:UI +X509_STORE_set_flags 2980 1_1_0d EXIST::FUNCTION: +SHA512 2981 1_1_0d EXIST:!VMSVAX:FUNCTION: +X509_PUBKEY_set0_param 2982 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_ENVELOPE 2983 1_1_0d EXIST::FUNCTION: +BN_mod_lshift_quick 2984 1_1_0d EXIST::FUNCTION: +EC_KEY_generate_key 2985 1_1_0d EXIST::FUNCTION:EC +IPAddressFamily_it 2986 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressFamily_it 2986 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +TS_ACCURACY_get_millis 2987 1_1_0d EXIST::FUNCTION:TS +PEM_X509_INFO_read_bio 2988 1_1_0d EXIST::FUNCTION: +EC_GFp_mont_method 2989 1_1_0d EXIST::FUNCTION:EC +TS_REQ_get_version 2990 1_1_0d EXIST::FUNCTION:TS +d2i_PKCS7_RECIP_INFO 2991 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKI_sign 2992 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SM9MasterSecret 2993 1_1_0d EXIST::FUNCTION:SM9 +PKCS7_cert_from_signer_info 2994 1_1_0d EXIST::FUNCTION: +CONF_get_number 2995 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_bio 2996 1_1_0d EXIST::FUNCTION: +X509_chain_check_suiteb 2997 1_1_0d EXIST::FUNCTION: +BASIC_CONSTRAINTS_it 2998 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +BASIC_CONSTRAINTS_it 2998 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SHA1_Update 2999 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_finish 3000 1_1_0d EXIST::FUNCTION:OCB +X509_REVOKED_set_revocationDate 3001 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_result_size 3002 1_1_0d EXIST::FUNCTION: +PKCS12_item_decrypt_d2i 3003 1_1_0d EXIST::FUNCTION: +X509_get0_pubkey 3004 1_1_0d EXIST::FUNCTION: +EC_KEY_set_enc_flags 3005 1_1_0d EXIST::FUNCTION:EC +EVP_DecodeUpdate 3006 1_1_0d EXIST::FUNCTION: +X509_REQ_digest 3007 1_1_0d EXIST::FUNCTION: +LONG_it 3008 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +LONG_it 3008 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_DSAPrivateKey 3009 1_1_0d EXIST::FUNCTION:DSA +OCSP_response_get1_basic 3010 1_1_0d EXIST::FUNCTION:OCSP +BN_is_prime 3011 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +DES_ofb_encrypt 3012 1_1_0d EXIST::FUNCTION:DES +EVP_MD_get_sgd 3013 1_1_0d EXIST::FUNCTION:GMAPI +CTLOG_free 3014 1_1_0d EXIST::FUNCTION:CT +ASN1_GENERALIZEDTIME_it 3015 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_GENERALIZEDTIME_it 3015 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PBEPARAM_it 3016 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PBEPARAM_it 3016 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +RSA_verify_ASN1_OCTET_STRING 3017 1_1_0d EXIST::FUNCTION:RSA +X509_NAME_print_ex 3018 1_1_0d EXIST::FUNCTION: +BN_BLINDING_set_flags 3019 1_1_0d EXIST::FUNCTION: +X509_check_akid 3020 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_cleanup 3021 1_1_0d EXIST::FUNCTION: +ENGINE_set_RSA 3022 1_1_0d EXIST::FUNCTION:ENGINE +TS_TST_INFO_add_ext 3023 1_1_0d EXIST::FUNCTION:TS +BN_GF2m_mod_arr 3024 1_1_0d EXIST::FUNCTION:EC2M +OPENSSL_gmtime_adj 3025 1_1_0d EXIST::FUNCTION: +RSA_meth_set_pub_dec 3026 1_1_0d EXIST::FUNCTION:RSA +X509_NAME_ENTRY_get_data 3027 1_1_0d EXIST::FUNCTION: +X509_OBJECT_get_type 3028 1_1_0d EXIST::FUNCTION: +SCT_set_timestamp 3029 1_1_0d EXIST::FUNCTION:CT +EVP_PBE_cleanup 3030 1_1_0d EXIST::FUNCTION: +EC_KEY_set_public_key 3031 1_1_0d EXIST::FUNCTION:EC +EVP_EncodeUpdate 3032 1_1_0d EXIST::FUNCTION: +d2i_RSA_PUBKEY_bio 3033 1_1_0d EXIST::FUNCTION:RSA +BIO_gets 3034 1_1_0d EXIST::FUNCTION: +OCSP_request_onereq_count 3035 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_CTX_get_explicit_policy 3036 1_1_0d EXIST::FUNCTION: +OPENSSL_hexchar2int 3037 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_setiv 3038 1_1_0d EXIST::FUNCTION: +ENGINE_get_init_function 3039 1_1_0d EXIST::FUNCTION:ENGINE +PEM_read_X509 3040 1_1_0d EXIST::FUNCTION:STDIO +OCSP_resp_get0_signature 3041 1_1_0d EXIST::FUNCTION:OCSP +ERR_peek_last_error_line 3042 1_1_0d EXIST::FUNCTION: +SOF_ExportExchangeUserCert 3043 1_1_0d EXIST::FUNCTION: +X509_REQ_get_extension_nids 3044 1_1_0d EXIST::FUNCTION: +OBJ_create 3045 1_1_0d EXIST::FUNCTION: +CRL_DIST_POINTS_free 3046 1_1_0d EXIST::FUNCTION: +X509_get_extended_key_usage 3047 1_1_0d EXIST::FUNCTION: +b2i_PrivateKey 3048 1_1_0d EXIST::FUNCTION:DSA +TS_RESP_CTX_set_def_policy 3049 1_1_0d EXIST::FUNCTION:TS +BN_GF2m_arr2poly 3050 1_1_0d EXIST::FUNCTION:EC2M +d2i_SM9PrivateKey_fp 3051 1_1_0d EXIST::FUNCTION:SM9,STDIO +PEM_write_bio_X509_REQ 3052 1_1_0d EXIST::FUNCTION: +ASN1_TIME_set_string 3053 1_1_0d EXIST::FUNCTION: +BN_mod_exp 3054 1_1_0d EXIST::FUNCTION: +SOF_GenRandom 3055 1_1_0d EXIST::FUNCTION: +SKF_GetErrorString 3056 1_1_0d EXIST::FUNCTION:SKF +BIO_socket 3057 1_1_0d EXIST::FUNCTION:SOCK +SKF_PrintECCPrivateKey 3058 1_1_0d EXIST::FUNCTION:SKF +EVP_CIPHER_meth_set_do_cipher 3059 1_1_0d EXIST::FUNCTION: +HMAC_CTX_get_md 3060 1_1_0d EXIST::FUNCTION: +OCSP_request_add1_nonce 3061 1_1_0d EXIST::FUNCTION:OCSP +SXNET_add_id_ulong 3062 1_1_0d EXIST::FUNCTION: +ASN1_UNIVERSALSTRING_free 3063 1_1_0d EXIST::FUNCTION: +X509_verify_cert_error_string 3064 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_asn1_flag 3065 1_1_0d EXIST::FUNCTION:EC +ENGINE_register_pkey_asn1_meths 3066 1_1_0d EXIST::FUNCTION:ENGINE +EVP_CIPHER_meth_get_ctrl 3067 1_1_0d EXIST::FUNCTION: +PEM_read_SM9PublicParameters 3068 1_1_0d EXIST::FUNCTION:SM9,STDIO +d2i_PBKDF2PARAM 3069 1_1_0d EXIST::FUNCTION: +X509V3_EXT_nconf 3070 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_create_by_NID 3071 1_1_0d EXIST::FUNCTION: +EVP_aes_128_gcm 3072 1_1_0d EXIST::FUNCTION: +ERR_peek_last_error_line_data 3073 1_1_0d EXIST::FUNCTION: +X509_ocspid_print 3074 1_1_0d EXIST::FUNCTION: +FFX_CTX_new 3075 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_new 3076 1_1_0d EXIST::FUNCTION: +SHA384_Init 3077 1_1_0d EXIST:!VMSVAX:FUNCTION: +i2d_PUBKEY_fp 3078 1_1_0d EXIST::FUNCTION:STDIO +ASN1_UNIVERSALSTRING_it 3079 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_UNIVERSALSTRING_it 3079 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +GENERAL_NAMES_new 3080 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_hmac 3081 1_1_0d EXIST::FUNCTION: +SKF_ExtECCVerify 3082 1_1_0d EXIST::FUNCTION:SKF +X509_OBJECT_retrieve_match 3083 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext_by_NID 3084 1_1_0d EXIST::FUNCTION:OCSP +RSA_padding_check_none 3085 1_1_0d EXIST::FUNCTION:RSA +TS_ACCURACY_set_millis 3086 1_1_0d EXIST::FUNCTION:TS +OCSP_BASICRESP_new 3087 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_nistcts128_decrypt 3088 1_1_0d EXIST::FUNCTION: +X509V3_get_value_int 3089 1_1_0d EXIST::FUNCTION: +X509_get_signature_nid 3090 1_1_0d EXIST::FUNCTION: +AES_ofb128_encrypt 3091 1_1_0d EXIST::FUNCTION: +ASN1_VISIBLESTRING_it 3092 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_VISIBLESTRING_it 3092 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_read_EC_PUBKEY 3093 1_1_0d EXIST::FUNCTION:EC,STDIO +X509_REVOKED_it 3094 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_REVOKED_it 3094 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PKCS7_ISSUER_AND_SERIAL_it 3095 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ISSUER_AND_SERIAL_it 3095 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OCSP_sendreq_bio 3096 1_1_0d EXIST::FUNCTION:OCSP +X509_get_proxy_pathlen 3097 1_1_0d EXIST::FUNCTION: +ENGINE_get_DH 3098 1_1_0d EXIST::FUNCTION:ENGINE +AUTHORITY_INFO_ACCESS_free 3099 1_1_0d EXIST::FUNCTION: +BN_mod_inverse 3100 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_type1curve_zeta 3101 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_block_size 3102 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_ktri_get0_algs 3103 1_1_0d EXIST::FUNCTION:CMS +BIO_new_socket 3104 1_1_0d EXIST::FUNCTION:SOCK +BN_lebin2bn 3105 1_1_0d EXIST::FUNCTION: +i2d_EC_PUBKEY_fp 3106 1_1_0d EXIST::FUNCTION:EC,STDIO +X509_STORE_CTX_set_depth 3107 1_1_0d EXIST::FUNCTION: +SOF_VerifyTimeStamp 3108 1_1_0d EXIST::FUNCTION: +PKCS5_PBKDF2_HMAC 3109 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_set1_cert 3110 1_1_0d EXIST::FUNCTION:CT +SEED_ofb128_encrypt 3111 1_1_0d EXIST::FUNCTION:SEED +EVP_PKEY_asn1_add0 3112 1_1_0d EXIST::FUNCTION: +DH_get_length 3113 1_1_0d EXIST::FUNCTION:DH +EC_POINT_set_affine_coordinates_GFp 3114 1_1_0d EXIST::FUNCTION:EC +DSO_pathbyaddr 3115 1_1_0d EXIST::FUNCTION: +PKCS7_get0_signers 3116 1_1_0d EXIST::FUNCTION: +CRYPTO_128_unwrap 3117 1_1_0d EXIST::FUNCTION: +ASN1_item_new 3118 1_1_0d EXIST::FUNCTION: +ASN1_TIME_adj 3119 1_1_0d EXIST::FUNCTION: +BIO_s_log 3120 1_1_0d EXIST:!WIN32,!macintosh:FUNCTION: +X509_VERIFY_PARAM_new 3121 1_1_0d EXIST::FUNCTION: +SM9Signature_new 3122 1_1_0d EXIST::FUNCTION:SM9 +DSA_get0_key 3123 1_1_0d EXIST::FUNCTION:DSA +EVP_PKEY_meth_set_signctx 3124 1_1_0d EXIST::FUNCTION: +d2i_PKCS8_PRIV_KEY_INFO_bio 3125 1_1_0d EXIST::FUNCTION: +X509_print_ex 3126 1_1_0d EXIST::FUNCTION: +ERR_load_PKCS12_strings 3127 1_1_0d EXIST::FUNCTION: +RAND_set_rand_engine 3128 1_1_0d EXIST::FUNCTION:ENGINE +X509V3_EXT_print 3129 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_get_crl 3130 1_1_0d EXIST::FUNCTION: +EVP_cast5_cbc 3131 1_1_0d EXIST::FUNCTION:CAST +EVP_OpenInit 3132 1_1_0d EXIST::FUNCTION:RSA +RSA_sign_ASN1_OCTET_STRING 3133 1_1_0d EXIST::FUNCTION:RSA +EVP_CIPHER_CTX_set_cipher_data 3134 1_1_0d EXIST::FUNCTION: +i2d_OCSP_REQUEST 3135 1_1_0d EXIST::FUNCTION:OCSP +X509_EXTENSION_it 3136 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_EXTENSION_it 3136 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_IA5STRING_new 3137 1_1_0d EXIST::FUNCTION: +BN_GF2m_poly2arr 3138 1_1_0d EXIST::FUNCTION:EC2M +EC_KEY_set_ECCrefPublicKey 3139 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +SM2_KAP_prepare 3140 1_1_0d EXIST::FUNCTION:SM2 +PKCS12_SAFEBAG_get0_p8inf 3141 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get0_pkey 3142 1_1_0d EXIST::FUNCTION: +SCT_get_source 3143 1_1_0d EXIST::FUNCTION:CT +X509_policy_tree_free 3144 1_1_0d EXIST::FUNCTION: +OCSP_parse_url 3145 1_1_0d EXIST::FUNCTION:OCSP +i2d_NETSCAPE_CERT_SEQUENCE 3146 1_1_0d EXIST::FUNCTION: +X509V3_EXT_REQ_add_nconf 3147 1_1_0d EXIST::FUNCTION: +RSA_meth_new 3148 1_1_0d EXIST::FUNCTION:RSA +BN_new 3149 1_1_0d EXIST::FUNCTION: +UI_add_info_string 3150 1_1_0d EXIST::FUNCTION:UI +EC_GROUP_set_curve_GF2m 3151 1_1_0d EXIST::FUNCTION:EC,EC2M +PEM_write_ECPrivateKey 3152 1_1_0d EXIST::FUNCTION:EC,STDIO +EVP_PKEY_asn1_set_param 3153 1_1_0d EXIST::FUNCTION: +ASN1_SCTX_free 3154 1_1_0d EXIST::FUNCTION: +X509v3_addr_add_prefix 3155 1_1_0d EXIST::FUNCTION:RFC3779 +OBJ_NAME_init 3156 1_1_0d EXIST::FUNCTION: +DSA_SIG_new 3157 1_1_0d EXIST::FUNCTION:DSA +CRYPTO_ocb128_setiv 3158 1_1_0d EXIST::FUNCTION:OCB +EC_GROUP_precompute_mult 3159 1_1_0d EXIST::FUNCTION:EC +DSA_set_default_method 3160 1_1_0d EXIST::FUNCTION:DSA +d2i_PKCS7_bio 3161 1_1_0d EXIST::FUNCTION: +BIO_meth_set_write 3162 1_1_0d EXIST::FUNCTION: +CMS_compress 3163 1_1_0d EXIST::FUNCTION:CMS +i2d_DSAparams 3164 1_1_0d EXIST::FUNCTION:DSA +SKF_CloseHandle 3165 1_1_0d EXIST::FUNCTION:SKF +EC_POINT_point2hex 3166 1_1_0d EXIST::FUNCTION:EC +X509_REVOKED_get_ext_count 3167 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_delete 3168 1_1_0d EXIST::FUNCTION: +ERR_load_SDF_strings 3169 1_1_0d EXIST::FUNCTION:SDF +EC_POINT_hash2point 3170 1_1_0d EXIST::FUNCTION: +EVP_PKEY_cmp 3171 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_DH 3172 1_1_0d EXIST::FUNCTION:ENGINE +SM9_SignFinal 3173 1_1_0d EXIST::FUNCTION:SM9 +PKCS5_PBE_add 3174 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_status_info 3175 1_1_0d EXIST::FUNCTION:TS +ENGINE_register_DSA 3176 1_1_0d EXIST::FUNCTION:ENGINE +CMS_digest_verify 3177 1_1_0d EXIST::FUNCTION:CMS +CMS_add0_cert 3178 1_1_0d EXIST::FUNCTION:CMS +UI_add_input_string 3179 1_1_0d EXIST::FUNCTION:UI +speck_set_encrypt_key64 3180 1_1_0d EXIST::FUNCTION:SPECK +SM9_VerifyFinal 3181 1_1_0d EXIST::FUNCTION:SM9 +DSA_generate_parameters 3182 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DSA +OBJ_txt2nid 3183 1_1_0d EXIST::FUNCTION: +X509_get_pubkey 3184 1_1_0d EXIST::FUNCTION: +X509_cmp 3185 1_1_0d EXIST::FUNCTION: +i2d_ASN1_INTEGER 3186 1_1_0d EXIST::FUNCTION: +speck_set_decrypt_key32 3187 1_1_0d EXIST::FUNCTION:SPECK +RAND_status 3188 1_1_0d EXIST::FUNCTION: +ENGINE_register_ciphers 3189 1_1_0d EXIST::FUNCTION:ENGINE +SHA512_Transform 3190 1_1_0d EXIST:!VMSVAX:FUNCTION: +d2i_PBEPARAM 3191 1_1_0d EXIST::FUNCTION: +SDF_PrintECCPublicKey 3192 1_1_0d EXIST::FUNCTION:SDF +OPENSSL_issetugid 3193 1_1_0d EXIST::FUNCTION: +ASIdOrRange_it 3194 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASIdOrRange_it 3194 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +EVP_aes_256_cbc_hmac_sha1 3195 1_1_0d EXIST::FUNCTION: +i2d_OCSP_CERTID 3196 1_1_0d EXIST::FUNCTION:OCSP +X509_CRL_get_ext_d2i 3197 1_1_0d EXIST::FUNCTION: +DES_xcbc_encrypt 3198 1_1_0d EXIST::FUNCTION:DES +UI_set_result 3199 1_1_0d EXIST::FUNCTION:UI +BIO_ADDR_clear 3200 1_1_0d EXIST::FUNCTION:SOCK +X509_VERIFY_PARAM_lookup 3201 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_get_init 3202 1_1_0d EXIST::FUNCTION:EC +SAF_Initialize 3203 1_1_0d EXIST::FUNCTION: +CMS_RecipientEncryptedKey_get0_id 3204 1_1_0d EXIST::FUNCTION:CMS +TS_REQ_free 3205 1_1_0d EXIST::FUNCTION:TS +X509_STORE_CTX_set0_verified_chain 3206 1_1_0d EXIST::FUNCTION: +CMS_EncryptedData_encrypt 3207 1_1_0d EXIST::FUNCTION:CMS +X509_ATTRIBUTE_create_by_OBJ 3208 1_1_0d EXIST::FUNCTION: +EVP_sms4_ctr 3209 1_1_0d EXIST::FUNCTION:SMS4 +CRYPTO_THREAD_init_local 3210 1_1_0d EXIST::FUNCTION: +RSA_print_fp 3211 1_1_0d EXIST::FUNCTION:RSA,STDIO +d2i_PKCS8PrivateKey_fp 3212 1_1_0d EXIST::FUNCTION:STDIO +NETSCAPE_SPKI_print 3213 1_1_0d EXIST::FUNCTION: +DSA_meth_set_paramgen 3214 1_1_0d EXIST::FUNCTION:DSA +SMIME_write_PKCS7 3215 1_1_0d EXIST::FUNCTION: +RSA_new_from_RSArefPrivateKey 3216 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +i2b_PublicKey_bio 3217 1_1_0d EXIST::FUNCTION:DSA +serpent_set_decrypt_key 3218 1_1_0d EXIST::FUNCTION:SERPENT +BN_GF2m_mod_sqrt_arr 3219 1_1_0d EXIST::FUNCTION:EC2M +BIO_ptr_ctrl 3220 1_1_0d EXIST::FUNCTION: +SAF_SymmDecrypt 3221 1_1_0d EXIST::FUNCTION: +X509_get_default_cert_dir 3222 1_1_0d EXIST::FUNCTION: +DH_compute_key_padded 3223 1_1_0d EXIST::FUNCTION:DH +COMP_compress_block 3224 1_1_0d EXIST::FUNCTION:COMP +BN_is_word 3225 1_1_0d EXIST::FUNCTION: +EC_GROUP_new_curve_GF2m 3226 1_1_0d EXIST::FUNCTION:EC,EC2M +X509_CRL_get0_signature 3227 1_1_0d EXIST::FUNCTION: +X509V3_add_value_bool_nf 3228 1_1_0d EXIST::FUNCTION: +CMS_set1_signers_certs 3229 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_CTX_get_check_revocation 3230 1_1_0d EXIST::FUNCTION: +ENGINE_get_pkey_asn1_meth_str 3231 1_1_0d EXIST::FUNCTION:ENGINE +SKF_GetDevInfo 3232 1_1_0d EXIST::FUNCTION:SKF +X509_policy_tree_get0_level 3233 1_1_0d EXIST::FUNCTION: +SCT_set_signature_nid 3234 1_1_0d EXIST::FUNCTION:CT +SXNET_get_id_ulong 3235 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_md 3236 1_1_0d EXIST::FUNCTION: +DH_generate_parameters_ex 3237 1_1_0d EXIST::FUNCTION:DH +PEM_read_X509_REQ 3238 1_1_0d EXIST::FUNCTION:STDIO +EVP_ENCODE_CTX_num 3239 1_1_0d EXIST::FUNCTION: +PKCS12_add_friendlyname_uni 3240 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set_default_mask_asc 3241 1_1_0d EXIST::FUNCTION: +EVP_ENCODE_CTX_copy 3242 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PKCS7 3243 1_1_0d EXIST::FUNCTION: +X509V3_EXT_CRL_add_nconf 3244 1_1_0d EXIST::FUNCTION: +i2d_GENERAL_NAMES 3245 1_1_0d EXIST::FUNCTION: +d2i_OCSP_SERVICELOC 3246 1_1_0d EXIST::FUNCTION:OCSP +i2d_PROXY_CERT_INFO_EXTENSION 3247 1_1_0d EXIST::FUNCTION: +BN_GFP2_sub_bn 3248 1_1_0d EXIST::FUNCTION: +SOF_GetServerCertificate 3249 1_1_0d EXIST::FUNCTION: +UI_get_method 3250 1_1_0d EXIST::FUNCTION:UI +PKCS12_newpass 3251 1_1_0d EXIST::FUNCTION: +BIO_ctrl 3252 1_1_0d EXIST::FUNCTION: +SDF_ImportKey 3253 1_1_0d EXIST::FUNCTION:SDF +UI_get_default_method 3254 1_1_0d EXIST::FUNCTION:UI +DH_check 3255 1_1_0d EXIST::FUNCTION:DH +ECDSA_SIG_get_ECCSIGNATUREBLOB 3256 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +CMS_add1_ReceiptRequest 3257 1_1_0d EXIST::FUNCTION:CMS +OCSP_check_nonce 3258 1_1_0d EXIST::FUNCTION:OCSP +BIO_ADDRINFO_family 3259 1_1_0d EXIST::FUNCTION:SOCK +EVP_seed_ecb 3260 1_1_0d EXIST::FUNCTION:SEED +X509v3_addr_subset 3261 1_1_0d EXIST::FUNCTION:RFC3779 +RSA_free 3262 1_1_0d EXIST::FUNCTION:RSA +EVP_camellia_192_cfb128 3263 1_1_0d EXIST::FUNCTION:CAMELLIA +CMS_data_create 3264 1_1_0d EXIST::FUNCTION:CMS +X509_NAME_add_entry_by_NID 3265 1_1_0d EXIST::FUNCTION: +UI_method_set_reader 3266 1_1_0d EXIST::FUNCTION:UI +SMIME_crlf_copy 3267 1_1_0d EXIST::FUNCTION: +SM2_compute_id_digest 3268 1_1_0d EXIST::FUNCTION:SM2 +X509_STORE_CTX_set0_crls 3269 1_1_0d EXIST::FUNCTION: +BIO_new_fd 3270 1_1_0d EXIST::FUNCTION: +i2d_CMS_bio 3271 1_1_0d EXIST::FUNCTION:CMS +BIO_find_type 3272 1_1_0d EXIST::FUNCTION: +SOF_GetVersion 3273 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNER_INFO_new 3274 1_1_0d EXIST::FUNCTION: +PEM_read_PKCS8_PRIV_KEY_INFO 3275 1_1_0d EXIST::FUNCTION:STDIO +DH_new_method 3276 1_1_0d EXIST::FUNCTION:DH +d2i_CERTIFICATEPOLICIES 3277 1_1_0d EXIST::FUNCTION: +TXT_DB_create_index 3278 1_1_0d EXIST::FUNCTION: +SHA384 3279 1_1_0d EXIST:!VMSVAX:FUNCTION: +EVP_CIPHER_meth_get_get_asn1_params 3280 1_1_0d EXIST::FUNCTION: +POLICY_CONSTRAINTS_it 3281 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICY_CONSTRAINTS_it 3281 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2a_ASN1_OBJECT 3282 1_1_0d EXIST::FUNCTION: +EC_POINT_invert 3283 1_1_0d EXIST::FUNCTION:EC +NCONF_load_bio 3284 1_1_0d EXIST::FUNCTION: +PEM_read_SM9_PUBKEY 3285 1_1_0d EXIST::FUNCTION:SM9,STDIO +d2i_ASRange 3286 1_1_0d EXIST::FUNCTION:RFC3779 +d2i_TS_MSG_IMPRINT 3287 1_1_0d EXIST::FUNCTION:TS +X509_STORE_set_default_paths 3288 1_1_0d EXIST::FUNCTION: +EVP_PKEY_add1_attr_by_OBJ 3289 1_1_0d EXIST::FUNCTION: +BN_GFP2_canonical 3290 1_1_0d EXIST::FUNCTION: +GENERAL_SUBTREE_free 3291 1_1_0d EXIST::FUNCTION: +ENGINE_get_default_RSA 3292 1_1_0d EXIST::FUNCTION:ENGINE +CMS_get0_RecipientInfos 3293 1_1_0d EXIST::FUNCTION:CMS +GENERAL_NAME_new 3294 1_1_0d EXIST::FUNCTION: +OBJ_create_objects 3295 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_current_cert 3296 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_unpack_sequence 3297 1_1_0d EXIST::FUNCTION: +EC_GFp_nist_method 3298 1_1_0d EXIST::FUNCTION:EC +EC_KEY_set_group 3299 1_1_0d EXIST::FUNCTION:EC +PBKDF2PARAM_it 3300 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PBKDF2PARAM_it 3300 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_to_ASN1_ENUMERATED 3301 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_RAND 3302 1_1_0d EXIST::FUNCTION:ENGINE +X509V3_set_nconf 3303 1_1_0d EXIST::FUNCTION: +ECPARAMETERS_new 3304 1_1_0d EXIST::FUNCTION:EC +DH_get_1024_160 3305 1_1_0d EXIST::FUNCTION:DH +PKCS7_add_attrib_content_type 3306 1_1_0d EXIST::FUNCTION: +BN_GF2m_add 3307 1_1_0d EXIST::FUNCTION:EC2M +SEED_decrypt 3308 1_1_0d EXIST::FUNCTION:SEED +CMS_ReceiptRequest_create0 3309 1_1_0d EXIST::FUNCTION:CMS +CRYPTO_secure_malloc_done 3310 1_1_0d EXIST::FUNCTION: +X509_STORE_get_lookup_certs 3311 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_cmp 3312 1_1_0d EXIST::FUNCTION: +SKF_GetAlgorName 3313 1_1_0d EXIST::FUNCTION:SKF +BIO_ctrl_pending 3314 1_1_0d EXIST::FUNCTION: +EC_GF2m_simple_method 3315 1_1_0d EXIST::FUNCTION:EC,EC2M +TS_TST_INFO_set_time 3316 1_1_0d EXIST::FUNCTION:TS +BN_BLINDING_free 3317 1_1_0d EXIST::FUNCTION: +SDF_ExportEncPublicKey_RSA 3318 1_1_0d EXIST::FUNCTION: +X509v3_addr_canonize 3319 1_1_0d EXIST::FUNCTION:RFC3779 +PEM_write_bio_PKCS8_PRIV_KEY_INFO 3320 1_1_0d EXIST::FUNCTION: +BIO_dgram_sctp_notification_cb 3321 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +BN_GFP2_new 3322 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_new 3323 1_1_0d EXIST::FUNCTION:CPK +OCSP_SINGLERESP_get1_ext_d2i 3324 1_1_0d EXIST::FUNCTION:OCSP +DSA_meth_get_verify 3325 1_1_0d EXIST::FUNCTION:DSA +RSA_new_method 3326 1_1_0d EXIST::FUNCTION:RSA +EVP_aes_128_ctr 3327 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_encrypt 3328 1_1_0d EXIST::FUNCTION: +BIO_s_datagram 3329 1_1_0d EXIST::FUNCTION:DGRAM +X509_get_extension_flags 3330 1_1_0d EXIST::FUNCTION: +DSA_verify 3331 1_1_0d EXIST::FUNCTION:DSA +SKF_VerifyPIN 3332 1_1_0d EXIST::FUNCTION:SKF +EC_POINT_point2buf 3333 1_1_0d EXIST::FUNCTION:EC +SKF_Encrypt 3334 1_1_0d EXIST::FUNCTION:SKF +EVP_zuc 3335 1_1_0d EXIST::FUNCTION:ZUC +RSA_padding_add_PKCS1_type_2 3336 1_1_0d EXIST::FUNCTION:RSA +PEM_write_bio_RSAPublicKey 3337 1_1_0d EXIST::FUNCTION:RSA +OCSP_ONEREQ_get1_ext_d2i 3338 1_1_0d EXIST::FUNCTION:OCSP +X509_get0_extensions 3339 1_1_0d EXIST::FUNCTION: +RSA_meth_set_finish 3340 1_1_0d EXIST::FUNCTION:RSA +RSA_public_encrypt 3341 1_1_0d EXIST::FUNCTION:RSA +RSA_public_decrypt 3342 1_1_0d EXIST::FUNCTION:RSA +OPENSSL_DIR_end 3343 1_1_0d EXIST::FUNCTION: +SOF_EncryptData 3344 1_1_0d EXIST::FUNCTION: +NOTICEREF_free 3345 1_1_0d EXIST::FUNCTION: +EVP_sms4_cfb1 3346 1_1_0d EXIST::FUNCTION:SMS4 +EXTENDED_KEY_USAGE_it 3347 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +EXTENDED_KEY_USAGE_it 3347 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_clear_free 3348 1_1_0d EXIST::FUNCTION: +SAF_CreateHashObj 3349 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_sort 3350 1_1_0d EXIST::FUNCTION: +d2i_TS_ACCURACY 3351 1_1_0d EXIST::FUNCTION:TS +X509_STORE_get_cert_crl 3352 1_1_0d EXIST::FUNCTION: +ERR_load_RAND_strings 3353 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_set_ordering 3354 1_1_0d EXIST::FUNCTION:TS +SM2CiphertextValue_free 3355 1_1_0d EXIST::FUNCTION:SM2 +ASYNC_WAIT_CTX_get_changed_fds 3356 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_str2ctrl 3357 1_1_0d EXIST::FUNCTION: +EC_KEY_get0_group 3358 1_1_0d EXIST::FUNCTION:EC +SDF_InternalDecrypt_ECC 3359 1_1_0d EXIST::FUNCTION: +ASN1_GENERALSTRING_free 3360 1_1_0d EXIST::FUNCTION: +SM9_extract_public_parameters 3361 1_1_0d EXIST::FUNCTION:SM9 +SCT_set0_log_id 3362 1_1_0d EXIST::FUNCTION:CT +MD2_Update 3363 1_1_0d EXIST::FUNCTION:MD2 +X509_get0_uids 3364 1_1_0d EXIST::FUNCTION: +CRYPTO_128_wrap_pad 3365 1_1_0d EXIST::FUNCTION: +DSA_meth_get0_name 3366 1_1_0d EXIST::FUNCTION:DSA +OpenSSL_version_num 3367 1_1_0d EXIST::FUNCTION: +PKCS12_add_friendlyname_asc 3368 1_1_0d EXIST::FUNCTION: +ASN1_SEQUENCE_it 3369 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_SEQUENCE_it 3369 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_EncryptUpdate 3370 1_1_0d EXIST::FUNCTION: +CRYPTO_set_mem_functions 3371 1_1_0d EXIST::FUNCTION: +EVP_rc5_32_12_16_cfb64 3372 1_1_0d EXIST::FUNCTION:RC5 +i2d_TS_MSG_IMPRINT_fp 3373 1_1_0d EXIST::FUNCTION:STDIO,TS +X509_print_fp 3374 1_1_0d EXIST::FUNCTION:STDIO +BN_X931_generate_prime_ex 3375 1_1_0d EXIST::FUNCTION: +DES_set_key_unchecked 3376 1_1_0d EXIST::FUNCTION:DES +EVP_MD_meth_set_copy 3377 1_1_0d EXIST::FUNCTION: +X509V3_add1_i2d 3378 1_1_0d EXIST::FUNCTION: +d2i_ASN1_OBJECT 3379 1_1_0d EXIST::FUNCTION: +SOF_DelCertTrustList 3380 1_1_0d EXIST::FUNCTION: +ENGINE_set_ciphers 3381 1_1_0d EXIST::FUNCTION:ENGINE +SAF_RsaVerifySign 3382 1_1_0d EXIST::FUNCTION: +RC2_set_key 3383 1_1_0d EXIST::FUNCTION:RC2 +SKF_GetDevStateName 3384 1_1_0d EXIST::FUNCTION:SKF +BN_mod_exp_simple 3385 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_new 3386 1_1_0d EXIST::FUNCTION:TS +PKCS5_PBKDF2_HMAC_SHA1 3387 1_1_0d EXIST::FUNCTION:SHA +X509_STORE_CTX_get_obj_by_subject 3388 1_1_0d EXIST::FUNCTION: +PKCS12_it 3389 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_it 3389 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_sms4_cbc 3390 1_1_0d EXIST::FUNCTION:SMS4 +i2d_SM9MasterSecret 3391 1_1_0d EXIST::FUNCTION:SM9 +d2i_DSAPublicKey 3392 1_1_0d EXIST::FUNCTION:DSA +ASN1_ENUMERATED_it 3393 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_ENUMERATED_it 3393 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +MD5_Update 3394 1_1_0d EXIST::FUNCTION:MD5 +CMS_add_simple_smimecap 3395 1_1_0d EXIST::FUNCTION:CMS +ECDSA_SIG_free 3396 1_1_0d EXIST::FUNCTION:EC +BN_BLINDING_invert_ex 3397 1_1_0d EXIST::FUNCTION: +i2d_re_X509_REQ_tbs 3398 1_1_0d EXIST::FUNCTION: +ECParameters_print 3399 1_1_0d EXIST::FUNCTION:EC +EVP_CIPHER_CTX_original_iv 3400 1_1_0d EXIST::FUNCTION: +X509_get0_signature 3401 1_1_0d EXIST::FUNCTION: +RSA_test_flags 3402 1_1_0d EXIST::FUNCTION:RSA +PEM_write_bio_PaillierPrivateKey 3403 1_1_0d EXIST::FUNCTION:PAILLIER +PEM_read_bio_SM9_MASTER_PUBKEY 3404 1_1_0d EXIST::FUNCTION:SM9 +EVP_CIPHER_do_all_sorted 3405 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get0_peerkey 3406 1_1_0d EXIST::FUNCTION: +DSA_generate_key 3407 1_1_0d EXIST::FUNCTION:DSA +ASN1_OBJECT_free 3408 1_1_0d EXIST::FUNCTION: +EC_KEY_set_default_sm_method 3409 1_1_0d EXIST::FUNCTION:SM2 +ASN1_T61STRING_free 3410 1_1_0d EXIST::FUNCTION: +UI_add_error_string 3411 1_1_0d EXIST::FUNCTION:UI +EVP_MD_CTX_clear_flags 3412 1_1_0d EXIST::FUNCTION: +PKCS7_dataDecode 3413 1_1_0d EXIST::FUNCTION: +HMAC 3414 1_1_0d EXIST::FUNCTION: +DES_ede3_cfb_encrypt 3415 1_1_0d EXIST::FUNCTION:DES +TS_CONF_set_tsa_name 3416 1_1_0d EXIST::FUNCTION:TS +PKCS5_pbe2_set_iv 3417 1_1_0d EXIST::FUNCTION: +X509_REQ_INFO_free 3418 1_1_0d EXIST::FUNCTION: +BFCiphertextBlock_it 3419 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFCiphertextBlock_it 3419 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +ECIES_do_decrypt 3420 1_1_0d EXIST::FUNCTION:ECIES +BN_GF2m_mod_solve_quad 3421 1_1_0d EXIST::FUNCTION:EC2M +PKCS7_stream 3422 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get1_crls 3423 1_1_0d EXIST::FUNCTION: +d2i_X509_PUBKEY 3424 1_1_0d EXIST::FUNCTION: +DSA_meth_get_finish 3425 1_1_0d EXIST::FUNCTION:DSA +SDF_Encrypt 3426 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add_nconf_sk 3427 1_1_0d EXIST::FUNCTION: +i2d_ECCSIGNATUREBLOB_bio 3428 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +X509_cmp_time 3429 1_1_0d EXIST::FUNCTION: +EC_KEY_set_asn1_flag 3430 1_1_0d EXIST::FUNCTION:EC +X509V3_add_value_int 3431 1_1_0d EXIST::FUNCTION: +d2i_SM9PublicParameters 3432 1_1_0d EXIST::FUNCTION:SM9 +PKCS7_new 3433 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_get_down_load 3434 1_1_0d EXIST::FUNCTION: +DH_meth_set_init 3435 1_1_0d EXIST::FUNCTION:DH +GENERAL_NAME_dup 3436 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_certs 3437 1_1_0d EXIST::FUNCTION:TS +OCSP_accept_responses_new 3438 1_1_0d EXIST::FUNCTION:OCSP +CERTIFICATEPOLICIES_free 3439 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_get0_status 3440 1_1_0d EXIST::FUNCTION:TS +CMAC_CTX_copy 3441 1_1_0d EXIST::FUNCTION:CMAC +DSA_set_method 3442 1_1_0d EXIST::FUNCTION:DSA +PEM_read_bio_PKCS8 3443 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_set_object 3444 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_free 3445 1_1_0d EXIST::FUNCTION:OCSP +BFPublicParameters_it 3446 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFPublicParameters_it 3446 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +d2i_OCSP_REQINFO 3447 1_1_0d EXIST::FUNCTION:OCSP +ZUC_generate_keyword 3448 1_1_0d EXIST::FUNCTION:ZUC +SM2CiphertextValue_size 3449 1_1_0d EXIST::FUNCTION:SM2 +ASN1_GENERALIZEDTIME_free 3450 1_1_0d EXIST::FUNCTION: +X509_REQ_add1_attr_by_NID 3451 1_1_0d EXIST::FUNCTION: +BFCiphertextBlock_free 3452 1_1_0d EXIST::FUNCTION:BFIBE +ECCPRIVATEKEYBLOB_set_private_key 3453 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +CTLOG_STORE_free 3454 1_1_0d EXIST::FUNCTION:CT +TS_CONF_set_accuracy 3455 1_1_0d EXIST::FUNCTION:TS +d2i_BFMasterSecret 3456 1_1_0d EXIST::FUNCTION:BFIBE +BIO_vfree 3457 1_1_0d EXIST::FUNCTION: +PKCS7_add_attrib_smimecap 3458 1_1_0d EXIST::FUNCTION: +SAF_RsaVerifySignFile 3459 1_1_0d EXIST::FUNCTION: +i2d_NETSCAPE_SPKAC 3460 1_1_0d EXIST::FUNCTION: +d2i_BB1CiphertextBlock 3461 1_1_0d EXIST::FUNCTION:BB1IBE +SOF_GetDeviceInfo 3462 1_1_0d EXIST::FUNCTION: +EVP_aes_128_ecb 3463 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_new_from_ECCCipher 3464 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF +CRYPTO_ccm128_aad 3465 1_1_0d EXIST::FUNCTION: +i2d_NETSCAPE_SPKI 3466 1_1_0d EXIST::FUNCTION: +i2d_ASN1_UTF8STRING 3467 1_1_0d EXIST::FUNCTION: +i2d_X509_CRL 3468 1_1_0d EXIST::FUNCTION: +ENGINE_get_default_DSA 3469 1_1_0d EXIST::FUNCTION:ENGINE +d2i_X509_REQ 3470 1_1_0d EXIST::FUNCTION: +DSA_set_ex_data 3471 1_1_0d EXIST::FUNCTION:DSA +i2d_PKCS8PrivateKeyInfo_bio 3472 1_1_0d EXIST::FUNCTION: +OPENSSL_hexstr2buf 3473 1_1_0d EXIST::FUNCTION: +i2d_PrivateKey_fp 3474 1_1_0d EXIST::FUNCTION:STDIO +CRYPTO_ccm128_decrypt 3475 1_1_0d EXIST::FUNCTION: +TS_RESP_free 3476 1_1_0d EXIST::FUNCTION:TS +ENGINE_get_next 3477 1_1_0d EXIST::FUNCTION:ENGINE +OBJ_nid2obj 3478 1_1_0d EXIST::FUNCTION: +PKCS7_add1_attrib_digest 3479 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_new 3480 1_1_0d EXIST::FUNCTION:EC +SXNET_it 3481 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +SXNET_it 3481 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SOF_GetInfoFromSignedMessage 3482 1_1_0d EXIST::FUNCTION: +SM9Signature_free 3483 1_1_0d EXIST::FUNCTION:SM9 +SM2_KAP_compute_key 3484 1_1_0d EXIST::FUNCTION:SM2 +ASN1_BIT_STRING_name_print 3485 1_1_0d EXIST::FUNCTION: +BN_add 3486 1_1_0d EXIST::FUNCTION: +ENGINE_get_ssl_client_cert_function 3487 1_1_0d EXIST::FUNCTION:ENGINE +AES_cfb8_encrypt 3488 1_1_0d EXIST::FUNCTION: +i2d_RSA_PUBKEY_bio 3489 1_1_0d EXIST::FUNCTION:RSA +DIST_POINT_free 3490 1_1_0d EXIST::FUNCTION: +DH_set0_key 3491 1_1_0d EXIST::FUNCTION:DH +X509_STORE_CTX_get_num_untrusted 3492 1_1_0d EXIST::FUNCTION: +OPENSSL_isservice 3493 1_1_0d EXIST::FUNCTION: +IDEA_ofb64_encrypt 3494 1_1_0d EXIST::FUNCTION:IDEA +ASN1_parse 3495 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_set 3496 1_1_0d EXIST::FUNCTION: +DES_encrypt2 3497 1_1_0d EXIST::FUNCTION:DES +i2d_PKCS7_ISSUER_AND_SERIAL 3498 1_1_0d EXIST::FUNCTION: +SM9PublicParameters_it 3499 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9PublicParameters_it 3499 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +d2i_PKCS8_PRIV_KEY_INFO_fp 3500 1_1_0d EXIST::FUNCTION:STDIO +SAF_Pkcs7_EncodeData 3501 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_derive 3502 1_1_0d EXIST::FUNCTION: +ENGINE_setup_bsd_cryptodev 3503 1_1_0d EXIST:__FreeBSD__:FUNCTION:DEPRECATEDIN_1_1_0,ENGINE +DSA_meth_get_flags 3504 1_1_0d EXIST::FUNCTION:DSA +X509v3_delete_ext 3505 1_1_0d EXIST::FUNCTION: +X509_signature_print 3506 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_set_status 3507 1_1_0d EXIST::FUNCTION:TS +EVP_camellia_128_cfb8 3508 1_1_0d EXIST::FUNCTION:CAMELLIA +OCSP_request_verify 3509 1_1_0d EXIST::FUNCTION:OCSP +ENGINE_init 3510 1_1_0d EXIST::FUNCTION:ENGINE +speck_encrypt32 3511 1_1_0d EXIST::FUNCTION:SPECK +PKCS12_get0_mac 3512 1_1_0d EXIST::FUNCTION: +SKF_EncryptUpdate 3513 1_1_0d EXIST::FUNCTION:SKF +i2d_PROXY_POLICY 3514 1_1_0d EXIST::FUNCTION: +NCONF_get_section 3515 1_1_0d EXIST::FUNCTION: +SKF_Digest 3516 1_1_0d EXIST::FUNCTION:SKF +ERR_load_SKF_strings 3517 1_1_0d EXIST::FUNCTION:SKF +BN_bntest_rand 3518 1_1_0d EXIST::FUNCTION: +SKF_MacUpdate 3519 1_1_0d EXIST::FUNCTION:SKF +PEM_write_PaillierPrivateKey 3520 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +EVP_aes_256_gcm 3521 1_1_0d EXIST::FUNCTION: +d2i_CPK_MASTER_SECRET_bio 3522 1_1_0d EXIST::FUNCTION:CPK +X509_LOOKUP_free 3523 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_DSA 3524 1_1_0d EXIST::FUNCTION:DSA +ENGINE_set_default_DH 3525 1_1_0d EXIST::FUNCTION:ENGINE +BN_cmp 3526 1_1_0d EXIST::FUNCTION: +CMS_ReceiptRequest_get0_values 3527 1_1_0d EXIST::FUNCTION:CMS +RC5_32_ofb64_encrypt 3528 1_1_0d EXIST::FUNCTION:RC5 +X509_PURPOSE_cleanup 3529 1_1_0d EXIST::FUNCTION: +PKCS7_simple_smimecap 3530 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_SIGNED 3531 1_1_0d EXIST::FUNCTION: +SDF_Decrypt 3532 1_1_0d EXIST::FUNCTION: +PKCS7_digest_from_attributes 3533 1_1_0d EXIST::FUNCTION: +IPAddressRange_new 3534 1_1_0d EXIST::FUNCTION:RFC3779 +DHparams_print_fp 3535 1_1_0d EXIST::FUNCTION:DH,STDIO +DSA_security_bits 3536 1_1_0d EXIST::FUNCTION:DSA +CRYPTO_free 3537 1_1_0d EXIST::FUNCTION: +CMS_unsigned_get0_data_by_OBJ 3538 1_1_0d EXIST::FUNCTION:CMS +i2d_X509_REQ 3539 1_1_0d EXIST::FUNCTION: +X509_set_subject_name 3540 1_1_0d EXIST::FUNCTION: +OPENSSL_init 3541 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_verify 3542 1_1_0d EXIST::FUNCTION:CMS +PKCS12_unpack_authsafes 3543 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_accuracy 3544 1_1_0d EXIST::FUNCTION:TS +BN_is_negative 3545 1_1_0d EXIST::FUNCTION: +DH_meth_set0_app_data 3546 1_1_0d EXIST::FUNCTION:DH +X509_STORE_CTX_set_error_depth 3547 1_1_0d EXIST::FUNCTION: +RIPEMD160_Update 3548 1_1_0d EXIST::FUNCTION:RMD160 +ERR_get_next_error_library 3549 1_1_0d EXIST::FUNCTION: +ERR_print_errors_fp 3550 1_1_0d EXIST::FUNCTION:STDIO +IDEA_ecb_encrypt 3551 1_1_0d EXIST::FUNCTION:IDEA +ERR_load_CONF_strings 3552 1_1_0d EXIST::FUNCTION: +DH_free 3553 1_1_0d EXIST::FUNCTION:DH +OCSP_CERTID_new 3554 1_1_0d EXIST::FUNCTION:OCSP +SMIME_write_CMS 3555 1_1_0d EXIST::FUNCTION:CMS +EC_POINT_hex2point 3556 1_1_0d EXIST::FUNCTION:EC +CRYPTO_ccm128_encrypt 3557 1_1_0d EXIST::FUNCTION: +d2i_SM2CiphertextValue 3558 1_1_0d EXIST::FUNCTION:SM2 +BIO_s_secmem 3559 1_1_0d EXIST::FUNCTION: +PEM_write_bio_X509_CRL 3560 1_1_0d EXIST::FUNCTION: +ENGINE_set_pkey_meths 3561 1_1_0d EXIST::FUNCTION:ENGINE +PKCS8_PRIV_KEY_INFO_new 3562 1_1_0d EXIST::FUNCTION: +d2i_PKCS12_bio 3563 1_1_0d EXIST::FUNCTION: +PKCS7_set_type 3564 1_1_0d EXIST::FUNCTION: +X509_CRL_new 3565 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set0_untrusted 3566 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_set 3567 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_flags 3568 1_1_0d EXIST::FUNCTION: +ENGINE_set_load_pubkey_function 3569 1_1_0d EXIST::FUNCTION:ENGINE +X509_NAME_hash 3570 1_1_0d EXIST::FUNCTION: +BIO_s_null 3571 1_1_0d EXIST::FUNCTION: +OBJ_dup 3572 1_1_0d EXIST::FUNCTION: +BIO_asn1_get_prefix 3573 1_1_0d EXIST::FUNCTION: +SAF_ImportEncedKey 3574 1_1_0d EXIST::FUNCTION: +i2d_X509_CRL_INFO 3575 1_1_0d EXIST::FUNCTION: +BIO_get_accept_socket 3576 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +ENGINE_set_default 3577 1_1_0d EXIST::FUNCTION:ENGINE +EVP_camellia_128_cfb1 3578 1_1_0d EXIST::FUNCTION:CAMELLIA +DIST_POINT_NAME_free 3579 1_1_0d EXIST::FUNCTION: +RSA_padding_check_PKCS1_type_1 3580 1_1_0d EXIST::FUNCTION:RSA +i2b_PVK_bio 3581 1_1_0d EXIST::FUNCTION:DSA,RC4 +SDF_ExportEncPublicKey_ECC 3582 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_set_store 3583 1_1_0d EXIST::FUNCTION:TS +ASN1_OBJECT_create 3584 1_1_0d EXIST::FUNCTION: +MD4_Init 3585 1_1_0d EXIST::FUNCTION:MD4 +TS_RESP_verify_response 3586 1_1_0d EXIST::FUNCTION:TS +X509_STORE_CTX_set_purpose 3587 1_1_0d EXIST::FUNCTION: +SOF_DecryptFile 3588 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext_count 3589 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_CTX_get_cb 3590 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set_default_mask 3591 1_1_0d EXIST::FUNCTION: +BIO_ADDRINFO_socktype 3592 1_1_0d EXIST::FUNCTION:SOCK +TS_TST_INFO_get_serial 3593 1_1_0d EXIST::FUNCTION:TS +d2i_X509_VAL 3594 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_get_by_sname 3595 1_1_0d EXIST::FUNCTION: +EC_KEY_get_conv_form 3596 1_1_0d EXIST::FUNCTION:EC +SKF_DigestFinal 3597 1_1_0d EXIST::FUNCTION:SKF +BN_RECP_CTX_new 3598 1_1_0d EXIST::FUNCTION: +EVP_rc5_32_12_16_cbc 3599 1_1_0d EXIST::FUNCTION:RC5 +TS_MSG_IMPRINT_get_msg 3600 1_1_0d EXIST::FUNCTION:TS +CRYPTO_mem_leaks_fp 3601 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG,STDIO +X509_STORE_CTX_set_time 3602 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_set_accuracy 3603 1_1_0d EXIST::FUNCTION:TS +EC_GROUP_method_of 3604 1_1_0d EXIST::FUNCTION:EC +d2i_SM9Ciphertext_fp 3605 1_1_0d EXIST::FUNCTION:SM9,STDIO +EVP_PKEY_meth_set_derive 3606 1_1_0d EXIST::FUNCTION: +X509_reject_clear 3607 1_1_0d EXIST::FUNCTION: +EVP_PKEY_add1_attr_by_NID 3608 1_1_0d EXIST::FUNCTION: +SKF_DeleteApplication 3609 1_1_0d EXIST::FUNCTION:SKF +COMP_CTX_new 3610 1_1_0d EXIST::FUNCTION:COMP +X509_free 3611 1_1_0d EXIST::FUNCTION: +OBJ_get0_data 3612 1_1_0d EXIST::FUNCTION: +BIO_f_asn1 3613 1_1_0d EXIST::FUNCTION: +PKCS12_key_gen_asc 3614 1_1_0d EXIST::FUNCTION: +SMIME_write_ASN1 3615 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_init 3616 1_1_0d EXIST::FUNCTION: +BN_RECP_CTX_free 3617 1_1_0d EXIST::FUNCTION: +PEM_read_bio_EC_PUBKEY 3618 1_1_0d EXIST::FUNCTION:EC +ASN1_item_ex_new 3619 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_by_fingerprint 3620 1_1_0d EXIST::FUNCTION: +d2i_PublicKey 3621 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_delete_ext 3622 1_1_0d EXIST::FUNCTION:OCSP +PEM_write_bio_DHparams 3623 1_1_0d EXIST::FUNCTION:DH +RSA_meth_get_sign 3624 1_1_0d EXIST::FUNCTION:RSA +ASN1_item_i2d_fp 3625 1_1_0d EXIST::FUNCTION:STDIO +TS_VERIFY_CTX_set_imprint 3626 1_1_0d EXIST::FUNCTION:TS +X509_REVOKED_get0_extensions 3627 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_add0_policy 3628 1_1_0d EXIST::FUNCTION: +i2d_ASN1_ENUMERATED 3629 1_1_0d EXIST::FUNCTION: +X509_VAL_new 3630 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add_alias 3631 1_1_0d EXIST::FUNCTION: +DES_ncbc_encrypt 3632 1_1_0d EXIST::FUNCTION:DES +BIO_set_next 3633 1_1_0d EXIST::FUNCTION: +BB1PrivateKeyBlock_new 3634 1_1_0d EXIST::FUNCTION:BB1IBE +SKF_PrintRSAPrivateKey 3635 1_1_0d EXIST::FUNCTION:SKF +MD2_options 3636 1_1_0d EXIST::FUNCTION:MD2 +EC_GFp_nistp224_method 3637 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 +OPENSSL_sk_dup 3638 1_1_0d EXIST::FUNCTION: +d2i_OCSP_REQUEST 3639 1_1_0d EXIST::FUNCTION:OCSP +EC_KEY_GmSSL 3640 1_1_0d EXIST::FUNCTION:SM2 +EVP_MD_meth_dup 3641 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_get_decrypt 3642 1_1_0d EXIST::FUNCTION:SM2 +BN_bn2lebinpad 3643 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_cmp_time_t 3644 1_1_0d EXIST::FUNCTION: +X509_CRL_add_ext 3645 1_1_0d EXIST::FUNCTION: +ERR_get_error_line_data 3646 1_1_0d EXIST::FUNCTION: +X509_get_X509_PUBKEY 3647 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_RSA 3648 1_1_0d EXIST::FUNCTION:ENGINE +SAF_EccSignFile 3649 1_1_0d EXIST::FUNCTION:SAF +X509_REVOKED_get0_serialNumber 3650 1_1_0d EXIST::FUNCTION: +BN_BLINDING_update 3651 1_1_0d EXIST::FUNCTION: +RSAPrivateKey_dup 3652 1_1_0d EXIST::FUNCTION:RSA +ERR_peek_error_line 3653 1_1_0d EXIST::FUNCTION: +DH_up_ref 3654 1_1_0d EXIST::FUNCTION:DH +CMS_decrypt_set1_password 3655 1_1_0d EXIST::FUNCTION:CMS +EVP_aes_128_xts 3656 1_1_0d EXIST::FUNCTION: +PEM_ASN1_read 3657 1_1_0d EXIST::FUNCTION:STDIO +DES_check_key_parity 3658 1_1_0d EXIST::FUNCTION:DES +CMS_add0_CertificateChoices 3659 1_1_0d EXIST::FUNCTION:CMS +RAND_seed 3660 1_1_0d EXIST::FUNCTION: +BN_mask_bits 3661 1_1_0d EXIST::FUNCTION: +ENGINE_register_RSA 3662 1_1_0d EXIST::FUNCTION:ENGINE +EVP_aes_192_ctr 3663 1_1_0d EXIST::FUNCTION: +OPENSSL_strlcat 3664 1_1_0d EXIST::FUNCTION: +speck_decrypt32 3665 1_1_0d EXIST::FUNCTION:SPECK +ASN1_OCTET_STRING_free 3666 1_1_0d EXIST::FUNCTION: +i2d_X509_REQ_bio 3667 1_1_0d EXIST::FUNCTION: +ASN1_NULL_it 3668 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_NULL_it 3668 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SDF_ImportKeyWithISK_ECC 3669 1_1_0d EXIST::FUNCTION: +DES_ecb_encrypt 3670 1_1_0d EXIST::FUNCTION:DES +DES_ede3_ofb64_encrypt 3671 1_1_0d EXIST::FUNCTION:DES +EVP_seed_cfb128 3672 1_1_0d EXIST::FUNCTION:SEED +X509_PKEY_free 3673 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_insert 3674 1_1_0d EXIST::FUNCTION: +SCT_set0_extensions 3675 1_1_0d EXIST::FUNCTION:CT +RSA_set_RSAPUBLICKEYBLOB 3676 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +OPENSSL_sk_free 3677 1_1_0d EXIST::FUNCTION: +CMS_unsigned_get_attr_by_NID 3678 1_1_0d EXIST::FUNCTION:CMS +ERR_load_PEM_strings 3679 1_1_0d EXIST::FUNCTION: +NCONF_load_fp 3680 1_1_0d EXIST::FUNCTION:STDIO +X509_STORE_CTX_get0_current_crl 3681 1_1_0d EXIST::FUNCTION: +CMS_signed_get_attr_by_OBJ 3682 1_1_0d EXIST::FUNCTION:CMS +DH_meth_set_compute_key 3683 1_1_0d EXIST::FUNCTION:DH +ASN1_OCTET_STRING_dup 3684 1_1_0d EXIST::FUNCTION: +ACCESS_DESCRIPTION_free 3685 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_get_tst_info 3686 1_1_0d EXIST::FUNCTION:TS +EC_KEY_set_conv_form 3687 1_1_0d EXIST::FUNCTION:EC +X509_REVOKED_add1_ext_i2d 3688 1_1_0d EXIST::FUNCTION: +PKCS12_set_mac 3689 1_1_0d EXIST::FUNCTION: +RSA_verify_PKCS1_PSS_mgf1 3690 1_1_0d EXIST::FUNCTION:RSA +DIST_POINT_NAME_new 3691 1_1_0d EXIST::FUNCTION: +BASIC_CONSTRAINTS_free 3692 1_1_0d EXIST::FUNCTION: +CONF_module_get_usr_data 3693 1_1_0d EXIST::FUNCTION: +NCONF_new 3694 1_1_0d EXIST::FUNCTION: +X509_ALGORS_it 3695 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_ALGORS_it 3695 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_ECCSIGNATUREBLOB_fp 3696 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO +X509_CRL_get_version 3697 1_1_0d EXIST::FUNCTION: +ASN1_TIME_diff 3698 1_1_0d EXIST::FUNCTION: +SDF_OpenSession 3699 1_1_0d EXIST::FUNCTION: +BN_GFP2_div 3700 1_1_0d EXIST::FUNCTION: +BN_MONT_CTX_set 3701 1_1_0d EXIST::FUNCTION: +X509v3_asid_add_id_or_range 3702 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_PKEY_paramgen 3703 1_1_0d EXIST::FUNCTION: +d2i_ECPKParameters 3704 1_1_0d EXIST::FUNCTION:EC +OBJ_ln2nid 3705 1_1_0d EXIST::FUNCTION: +EC_curve_nist2nid 3706 1_1_0d EXIST::FUNCTION:EC +EVP_mdc2 3707 1_1_0d EXIST::FUNCTION:MDC2 +EVP_PBE_CipherInit 3708 1_1_0d EXIST::FUNCTION: +d2i_ASN1_OCTET_STRING 3709 1_1_0d EXIST::FUNCTION: +X509_CINF_free 3710 1_1_0d EXIST::FUNCTION: +OCSP_RESPID_free 3711 1_1_0d EXIST::FUNCTION:OCSP +d2i_X509_EXTENSION 3712 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get0_type 3713 1_1_0d EXIST::FUNCTION: +X509at_get0_data_by_OBJ 3714 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_set1_object 3715 1_1_0d EXIST::FUNCTION: +PKCS12_item_pack_safebag 3716 1_1_0d EXIST::FUNCTION: +SDF_GenerateAgreementDataWithECC 3717 1_1_0d EXIST::FUNCTION: +ENGINE_get_pkey_asn1_meth_engine 3718 1_1_0d EXIST::FUNCTION:ENGINE +CERTIFICATEPOLICIES_new 3719 1_1_0d EXIST::FUNCTION: +RSA_PSS_PARAMS_free 3720 1_1_0d EXIST::FUNCTION:RSA +SMIME_read_CMS 3721 1_1_0d EXIST::FUNCTION:CMS +OCSP_SERVICELOC_new 3722 1_1_0d EXIST::FUNCTION:OCSP +EVP_camellia_192_cfb1 3723 1_1_0d EXIST::FUNCTION:CAMELLIA +TS_RESP_CTX_add_policy 3724 1_1_0d EXIST::FUNCTION:TS +BIO_snprintf 3725 1_1_0d EXIST::FUNCTION: +EC_POINT_new 3726 1_1_0d EXIST::FUNCTION:EC +SAF_GetCrlFromLdap 3727 1_1_0d EXIST::FUNCTION: +PKCS12_create 3728 1_1_0d EXIST::FUNCTION: +SAF_GetCaCertificateCount 3729 1_1_0d EXIST::FUNCTION: +BN_BLINDING_create_param 3730 1_1_0d EXIST::FUNCTION: +speck_set_decrypt_key16 3731 1_1_0d EXIST::FUNCTION:SPECK +SKF_EnumApplication 3732 1_1_0d EXIST::FUNCTION:SKF +NETSCAPE_SPKI_new 3733 1_1_0d EXIST::FUNCTION: +PEM_read_DSAPrivateKey 3734 1_1_0d EXIST::FUNCTION:DSA,STDIO +OPENSSL_LH_node_usage_stats 3735 1_1_0d EXIST::FUNCTION:STDIO +CMS_unsigned_add1_attr_by_txt 3736 1_1_0d EXIST::FUNCTION:CMS +CMAC_Update 3737 1_1_0d EXIST::FUNCTION:CMAC +BN_GENCB_set 3738 1_1_0d EXIST::FUNCTION: +PKCS7_decrypt 3739 1_1_0d EXIST::FUNCTION: +RC5_32_decrypt 3740 1_1_0d EXIST::FUNCTION:RC5 +OCSP_BASICRESP_it 3741 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_BASICRESP_it 3741 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +BIO_meth_set_puts 3742 1_1_0d EXIST::FUNCTION: +NCONF_get_string 3743 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_new 3744 1_1_0d EXIST::FUNCTION:TS +EC_KEY_METHOD_set_compute_key 3745 1_1_0d EXIST::FUNCTION:EC +RSA_meth_set_bn_mod_exp 3746 1_1_0d EXIST::FUNCTION:RSA +EVP_sms4_gcm 3747 1_1_0d EXIST::FUNCTION:SMS4 +i2d_ECCCipher 3748 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +PKCS7_add_recipient_info 3749 1_1_0d EXIST::FUNCTION: +X509_subject_name_hash_old 3750 1_1_0d EXIST::FUNCTION:MD5 +FpPoint_it 3751 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +FpPoint_it 3751 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_MD_meth_get_ctrl 3752 1_1_0d EXIST::FUNCTION: +i2d_PKCS8PrivateKey_nid_bio 3753 1_1_0d EXIST::FUNCTION: +UTF8_getc 3754 1_1_0d EXIST::FUNCTION: +DSO_global_lookup 3755 1_1_0d EXIST::FUNCTION: +DES_encrypt3 3756 1_1_0d EXIST::FUNCTION:DES +ERR_load_OTP_strings 3757 1_1_0d EXIST::FUNCTION:OTP +PKCS7_signatureVerify 3758 1_1_0d EXIST::FUNCTION: +OPENSSL_config 3759 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +SRP_VBASE_get_by_user 3760 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SRP +ENGINE_get_ciphers 3761 1_1_0d EXIST::FUNCTION:ENGINE +TS_CONF_set_crypto_device 3762 1_1_0d EXIST::FUNCTION:ENGINE,TS +BIO_push 3763 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_free 3764 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_paramgen 3765 1_1_0d EXIST::FUNCTION: +MD5 3766 1_1_0d EXIST::FUNCTION:MD5 +RSA_check_key_ex 3767 1_1_0d EXIST::FUNCTION:RSA +d2i_PKCS12_SAFEBAG 3768 1_1_0d EXIST::FUNCTION: +SOF_SignData 3769 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_new 3770 1_1_0d EXIST::FUNCTION:OCSP +i2d_BB1PublicParameters 3771 1_1_0d EXIST::FUNCTION:BB1IBE +DSA_up_ref 3772 1_1_0d EXIST::FUNCTION:DSA +EC_KEY_get_ECCrefPrivateKey 3773 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +X509_CERT_AUX_it 3774 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CERT_AUX_it 3774 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +TS_RESP_CTX_set_time_cb 3775 1_1_0d EXIST::FUNCTION:TS +ASN1_OCTET_STRING_NDEF_it 3776 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_OCTET_STRING_NDEF_it 3776 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_BFCiphertextBlock 3777 1_1_0d EXIST::FUNCTION:BFIBE +BN_solinas2bn 3778 1_1_0d EXIST::FUNCTION: +X509_getm_notAfter 3779 1_1_0d EXIST::FUNCTION: +EVP_get_pw_prompt 3780 1_1_0d EXIST::FUNCTION:UI +X509_policy_tree_level_count 3781 1_1_0d EXIST::FUNCTION: +BIO_meth_set_destroy 3782 1_1_0d EXIST::FUNCTION: +EVP_des_ecb 3783 1_1_0d EXIST::FUNCTION:DES +EC_KEY_OpenSSL 3784 1_1_0d EXIST::FUNCTION:EC +SKF_ImportSessionKey 3785 1_1_0d EXIST::FUNCTION:SKF +PEM_read_bio_X509_REQ 3786 1_1_0d EXIST::FUNCTION: +PKCS12_key_gen_utf8 3787 1_1_0d EXIST::FUNCTION: +OCSP_REQINFO_new 3788 1_1_0d EXIST::FUNCTION:OCSP +OCSP_REVOKEDINFO_free 3789 1_1_0d EXIST::FUNCTION:OCSP +d2i_TS_MSG_IMPRINT_fp 3790 1_1_0d EXIST::FUNCTION:STDIO,TS +X509V3_set_ctx 3791 1_1_0d EXIST::FUNCTION: +BN_GFP2_one 3792 1_1_0d EXIST::FUNCTION: +d2i_DSA_SIG 3793 1_1_0d EXIST::FUNCTION:DSA +BIO_free 3794 1_1_0d EXIST::FUNCTION: +ERR_load_COMP_strings 3795 1_1_0d EXIST::FUNCTION:COMP +OPENSSL_LH_insert 3796 1_1_0d EXIST::FUNCTION: +SHA1_Transform 3797 1_1_0d EXIST::FUNCTION: +ASN1_UNIVERSALSTRING_to_string 3798 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get0_chain 3799 1_1_0d EXIST::FUNCTION: +OCSP_REQINFO_it 3800 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_REQINFO_it 3800 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +i2d_ESS_SIGNING_CERT 3801 1_1_0d EXIST::FUNCTION:TS +i2d_PKCS8_PRIV_KEY_INFO_fp 3802 1_1_0d EXIST::FUNCTION:STDIO +SKF_DisConnectDev 3803 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_asn1_set_free 3804 1_1_0d EXIST::FUNCTION: +DSA_test_flags 3805 1_1_0d EXIST::FUNCTION:DSA +FFX_init 3806 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_dup 3807 1_1_0d EXIST::FUNCTION: +CONF_load_bio 3808 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_num 3809 1_1_0d EXIST::FUNCTION: +SDF_WriteFile 3810 1_1_0d EXIST::FUNCTION: +SM9_MASTER_KEY_new 3811 1_1_0d EXIST::FUNCTION:SM9 +CMAC_CTX_get0_cipher_ctx 3812 1_1_0d EXIST::FUNCTION:CMAC +ASN1_PRINTABLESTRING_free 3813 1_1_0d EXIST::FUNCTION: +EC_GROUP_set_point_conversion_form 3814 1_1_0d EXIST::FUNCTION:EC +CERTIFICATEPOLICIES_it 3815 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +CERTIFICATEPOLICIES_it 3815 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_CRL_get_signature_nid 3816 1_1_0d EXIST::FUNCTION: +X509_STORE_set_check_revocation 3817 1_1_0d EXIST::FUNCTION: +BN_X931_generate_Xpq 3818 1_1_0d EXIST::FUNCTION: +SM2_KAP_CTX_init 3819 1_1_0d EXIST::FUNCTION:SM2 +TS_REQ_get_ext_by_OBJ 3820 1_1_0d EXIST::FUNCTION:TS +CRYPTO_num_locks 3821 1_1_0d EXIST::FUNCTION: +i2d_ACCESS_DESCRIPTION 3822 1_1_0d EXIST::FUNCTION: +EVP_aes_256_ecb 3823 1_1_0d EXIST::FUNCTION: +BIO_s_connect 3824 1_1_0d EXIST::FUNCTION:SOCK +CTLOG_new 3825 1_1_0d EXIST::FUNCTION:CT +TS_CONF_set_serial 3826 1_1_0d EXIST::FUNCTION:TS +i2a_ASN1_ENUMERATED 3827 1_1_0d EXIST::FUNCTION: +DSA_get_method 3828 1_1_0d EXIST::FUNCTION:DSA +EC_KEY_new_from_ECCPRIVATEKEYBLOB 3829 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +DES_fcrypt 3830 1_1_0d EXIST::FUNCTION:DES +CMS_RecipientInfo_type 3831 1_1_0d EXIST::FUNCTION:CMS +BIO_sock_info 3832 1_1_0d EXIST::FUNCTION:SOCK +X509_LOOKUP_shutdown 3833 1_1_0d EXIST::FUNCTION: +SDF_OpenDevice 3834 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_signctx 3835 1_1_0d EXIST::FUNCTION: +EVP_des_ede3_cfb1 3836 1_1_0d EXIST::FUNCTION:DES +PKEY_USAGE_PERIOD_it 3837 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKEY_USAGE_PERIOD_it 3837 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CRYPTO_gcm128_tag 3838 1_1_0d EXIST::FUNCTION: +CRYPTO_malloc 3839 1_1_0d EXIST::FUNCTION: +RAND_bytes 3840 1_1_0d EXIST::FUNCTION: +SCT_get_log_entry_type 3841 1_1_0d EXIST::FUNCTION:CT +ASN1_IA5STRING_free 3842 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithKEK 3843 1_1_0d EXIST::FUNCTION: +COMP_CTX_get_method 3844 1_1_0d EXIST::FUNCTION:COMP +EVP_CIPHER_type 3845 1_1_0d EXIST::FUNCTION: +BIO_parse_hostserv 3846 1_1_0d EXIST::FUNCTION:SOCK +SAF_SymmDecryptFinal 3847 1_1_0d EXIST::FUNCTION: +X509_check_issued 3848 1_1_0d EXIST::FUNCTION: +i2d_PAILLIER_PUBKEY 3849 1_1_0d EXIST::FUNCTION:PAILLIER +RSA_new_from_RSArefPublicKey 3850 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +SM2_sign 3851 1_1_0d EXIST::FUNCTION:SM2 +NETSCAPE_SPKI_set_pubkey 3852 1_1_0d EXIST::FUNCTION: +i2d_SM9PrivateKey_fp 3853 1_1_0d EXIST::FUNCTION:SM9,STDIO +ENGINE_set_destroy_function 3854 1_1_0d EXIST::FUNCTION:ENGINE +SOF_SignMessage 3855 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_cmp 3856 1_1_0d EXIST::FUNCTION: +d2i_BB1PublicParameters 3857 1_1_0d EXIST::FUNCTION:BB1IBE +EVP_MD_do_all 3858 1_1_0d EXIST::FUNCTION: +PEM_write_PaillierPublicKey 3859 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +X509_CRL_digest 3860 1_1_0d EXIST::FUNCTION: +sms4_unwrap_key 3861 1_1_0d EXIST::FUNCTION:SMS4 +d2i_PrivateKey_fp 3862 1_1_0d EXIST::FUNCTION:STDIO +ENGINE_get_pkey_meth_engine 3863 1_1_0d EXIST::FUNCTION:ENGINE +CMS_is_detached 3864 1_1_0d EXIST::FUNCTION:CMS +i2d_ECIESParameters 3865 1_1_0d EXIST::FUNCTION:ECIES +d2i_PKCS7_ENCRYPT 3866 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_verify_recover 3867 1_1_0d EXIST::FUNCTION: +PEM_read_bio_DSA_PUBKEY 3868 1_1_0d EXIST::FUNCTION:DSA +CMS_SignerInfo_get0_pkey_ctx 3869 1_1_0d EXIST::FUNCTION:CMS +d2i_PKCS7_ISSUER_AND_SERIAL 3870 1_1_0d EXIST::FUNCTION: +i2d_AUTHORITY_KEYID 3871 1_1_0d EXIST::FUNCTION: +X509_up_ref 3872 1_1_0d EXIST::FUNCTION: +BN_options 3873 1_1_0d EXIST::FUNCTION: +ERR_error_string_n 3874 1_1_0d EXIST::FUNCTION: +CMS_dataInit 3875 1_1_0d EXIST::FUNCTION:CMS +Camellia_ofb128_encrypt 3876 1_1_0d EXIST::FUNCTION:CAMELLIA +ASN1_PCTX_set_nm_flags 3877 1_1_0d EXIST::FUNCTION: +i2d_ESS_CERT_ID 3878 1_1_0d EXIST::FUNCTION:TS +EVP_whirlpool 3879 1_1_0d EXIST::FUNCTION:WHIRLPOOL +SEED_cbc_encrypt 3880 1_1_0d EXIST::FUNCTION:SEED +CRYPTO_128_unwrap_pad 3881 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_free 3882 1_1_0d EXIST::FUNCTION: +SM9MasterSecret_it 3883 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9MasterSecret_it 3883 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +RC5_32_cfb64_encrypt 3884 1_1_0d EXIST::FUNCTION:RC5 +PEM_read_bio_PUBKEY 3885 1_1_0d EXIST::FUNCTION: +X509_gmtime_adj 3886 1_1_0d EXIST::FUNCTION: +CRYPTO_set_ex_data 3887 1_1_0d EXIST::FUNCTION: +EVP_sms4_cfb8 3888 1_1_0d EXIST::FUNCTION:SMS4 +EVP_des_ede_ecb 3889 1_1_0d EXIST::FUNCTION:DES +DSA_meth_get_keygen 3890 1_1_0d EXIST::FUNCTION:DSA +EVP_PKEY_id 3891 1_1_0d EXIST::FUNCTION: +BB1PublicParameters_it 3892 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1PublicParameters_it 3892 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +TS_TST_INFO_new 3893 1_1_0d EXIST::FUNCTION:TS +BIO_dump_indent_fp 3894 1_1_0d EXIST::FUNCTION:STDIO +i2d_PKCS7_ENC_CONTENT 3895 1_1_0d EXIST::FUNCTION: +EVP_PKEY_derive 3896 1_1_0d EXIST::FUNCTION: +PKCS12_pbe_crypt 3897 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNED_new 3898 1_1_0d EXIST::FUNCTION: +Camellia_cfb1_encrypt 3899 1_1_0d EXIST::FUNCTION:CAMELLIA +SM2CiphertextValue_new_from_ECCCIPHERBLOB 3900 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 +i2d_ECPrivateKey_fp 3901 1_1_0d EXIST::FUNCTION:EC,STDIO +CMS_unsigned_get_attr 3902 1_1_0d EXIST::FUNCTION:CMS +d2i_CPK_MASTER_SECRET 3903 1_1_0d EXIST::FUNCTION:CPK +d2i_PKCS7_SIGNER_INFO 3904 1_1_0d EXIST::FUNCTION: +OCSP_CERTSTATUS_new 3905 1_1_0d EXIST::FUNCTION:OCSP +NAME_CONSTRAINTS_check_CN 3906 1_1_0d EXIST::FUNCTION: +EC_GROUP_order_bits 3907 1_1_0d EXIST::FUNCTION:EC +SHA256 3908 1_1_0d EXIST::FUNCTION: +X509_get_ext_count 3909 1_1_0d EXIST::FUNCTION: +PKCS12_get_attr 3910 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +OCSP_ONEREQ_add1_ext_i2d 3911 1_1_0d EXIST::FUNCTION:OCSP +NETSCAPE_CERT_SEQUENCE_free 3912 1_1_0d EXIST::FUNCTION: +IDEA_set_encrypt_key 3913 1_1_0d EXIST::FUNCTION:IDEA +ASIdentifiers_free 3914 1_1_0d EXIST::FUNCTION:RFC3779 +CRYPTO_gcm128_encrypt 3915 1_1_0d EXIST::FUNCTION: +X509V3_EXT_cleanup 3916 1_1_0d EXIST::FUNCTION: +PEM_write_bio_SM9_PUBKEY 3917 1_1_0d EXIST::FUNCTION:SM9 +UI_get0_action_string 3918 1_1_0d EXIST::FUNCTION:UI +EVP_PKEY_set1_SM9_MASTER 3919 1_1_0d EXIST::FUNCTION:SM9 +DSA_meth_dup 3920 1_1_0d EXIST::FUNCTION:DSA +i2d_SM9PublicParameters 3921 1_1_0d EXIST::FUNCTION:SM9 +EVP_CIPHER_param_to_asn1 3922 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_get_id 3923 1_1_0d EXIST::FUNCTION: +BIO_ADDR_path_string 3924 1_1_0d EXIST::FUNCTION:SOCK +OCSP_CERTID_dup 3925 1_1_0d EXIST::FUNCTION:OCSP +BB1PrivateKeyBlock_it 3926 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1PrivateKeyBlock_it 3926 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +RSA_meth_get_priv_enc 3927 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_CTX_set0_param 3928 1_1_0d EXIST::FUNCTION: +CRYPTO_cbc128_decrypt 3929 1_1_0d EXIST::FUNCTION: +EVP_seed_cbc 3930 1_1_0d EXIST::FUNCTION:SEED +EC_POINT_add 3931 1_1_0d EXIST::FUNCTION:EC +PEM_read_PKCS7 3932 1_1_0d EXIST::FUNCTION:STDIO +PEM_do_header 3933 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1_policies 3934 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_free 3935 1_1_0d EXIST::FUNCTION: +SKF_GenRSAKeyPair 3936 1_1_0d EXIST::FUNCTION:SKF +i2d_SXNETID 3937 1_1_0d EXIST::FUNCTION: +RSA_generate_key 3938 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,RSA +X509_VERIFY_PARAM_get_inh_flags 3939 1_1_0d EXIST::FUNCTION: +SRP_create_verifier 3940 1_1_0d EXIST::FUNCTION:SRP +EC_POINTs_make_affine 3941 1_1_0d EXIST::FUNCTION:EC +CONF_dump_bio 3942 1_1_0d EXIST::FUNCTION: +BIO_ADDR_new 3943 1_1_0d EXIST::FUNCTION:SOCK +SRP_Verify_A_mod_N 3944 1_1_0d EXIST::FUNCTION:SRP +PKCS7_content_new 3945 1_1_0d EXIST::FUNCTION: +i2d_OTHERNAME 3946 1_1_0d EXIST::FUNCTION: +PEM_write_PKCS8 3947 1_1_0d EXIST::FUNCTION:STDIO +X509_LOOKUP_by_issuer_serial 3948 1_1_0d EXIST::FUNCTION: +X509_CRL_get_ext_by_OBJ 3949 1_1_0d EXIST::FUNCTION: +PKCS7_dataVerify 3950 1_1_0d EXIST::FUNCTION: +EVP_PKCS82PKEY 3951 1_1_0d EXIST::FUNCTION: +EVP_idea_cbc 3952 1_1_0d EXIST::FUNCTION:IDEA +ENGINE_set_digests 3953 1_1_0d EXIST::FUNCTION:ENGINE +BN_MONT_CTX_set_locked 3954 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_verify_cb 3955 1_1_0d EXIST::FUNCTION: +X509_get_ex_data 3956 1_1_0d EXIST::FUNCTION: +PEM_write_bio_RSAPrivateKey 3957 1_1_0d EXIST::FUNCTION:RSA +BN_is_prime_fasttest_ex 3958 1_1_0d EXIST::FUNCTION: +OCSP_request_onereq_get0 3959 1_1_0d EXIST::FUNCTION:OCSP +X509_get_ext_by_OBJ 3960 1_1_0d EXIST::FUNCTION: +X509_delete_ext 3961 1_1_0d EXIST::FUNCTION: +AES_set_decrypt_key 3962 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_ecparameters 3963 1_1_0d EXIST::FUNCTION:EC +ASYNC_start_job 3964 1_1_0d EXIST::FUNCTION: +BN_CTX_secure_new 3965 1_1_0d EXIST::FUNCTION: +UI_method_get_prompt_constructor 3966 1_1_0d EXIST::FUNCTION:UI +EVP_PKEY_verify_recover_init 3967 1_1_0d EXIST::FUNCTION: +d2i_ASN1_VISIBLESTRING 3968 1_1_0d EXIST::FUNCTION: +i2d_ECCSIGNATUREBLOB_fp 3969 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,STDIO +i2d_NOTICEREF 3970 1_1_0d EXIST::FUNCTION: +CRYPTO_cts128_encrypt_block 3971 1_1_0d EXIST::FUNCTION: +POLICY_MAPPINGS_it 3972 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICY_MAPPINGS_it 3972 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +DSO_dsobyaddr 3973 1_1_0d EXIST::FUNCTION: +X509_ALGOR_it 3974 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_ALGOR_it 3974 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BIO_method_type 3975 1_1_0d EXIST::FUNCTION: +i2d_BFMasterSecret 3976 1_1_0d EXIST::FUNCTION:BFIBE +i2d_ASN1_bio_stream 3977 1_1_0d EXIST::FUNCTION: +MD5_Final 3978 1_1_0d EXIST::FUNCTION:MD5 +CRYPTO_gcm128_finish 3979 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_cbc 3980 1_1_0d EXIST::FUNCTION:CAMELLIA +RAND_OpenSSL 3981 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get1_crl 3982 1_1_0d EXIST::FUNCTION: +RSA_padding_add_X931 3983 1_1_0d EXIST::FUNCTION:RSA +NCONF_free 3984 1_1_0d EXIST::FUNCTION: +X509_check_email 3985 1_1_0d EXIST::FUNCTION: +d2i_GENERAL_NAME 3986 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_free 3987 1_1_0d EXIST::FUNCTION: +SAF_Base64_DecodeUpdate 3988 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_sign 3989 1_1_0d EXIST::FUNCTION: +PBEPARAM_new 3990 1_1_0d EXIST::FUNCTION: +ASN1_BOOLEAN_it 3991 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_BOOLEAN_it 3991 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_CRL_up_ref 3992 1_1_0d EXIST::FUNCTION: +CMS_add0_recipient_key 3993 1_1_0d EXIST::FUNCTION:CMS +ZUC_generate_keystream 3994 1_1_0d EXIST::FUNCTION:ZUC +ENGINE_get_destroy_function 3995 1_1_0d EXIST::FUNCTION:ENGINE +BN_mod_lshift1 3996 1_1_0d EXIST::FUNCTION: +OPENSSL_gmtime 3997 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_set_ECCCipher 3998 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF +BIO_hex_string 3999 1_1_0d EXIST::FUNCTION: +PEM_def_callback 4000 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ext_by_OBJ 4001 1_1_0d EXIST::FUNCTION:TS +X509_REQ_get1_email 4002 1_1_0d EXIST::FUNCTION: +CMS_EncryptedData_set1_key 4003 1_1_0d EXIST::FUNCTION:CMS +TS_RESP_get_token 4004 1_1_0d EXIST::FUNCTION:TS +RSA_padding_check_PKCS1_OAEP 4005 1_1_0d EXIST::FUNCTION:RSA +BIO_up_ref 4006 1_1_0d EXIST::FUNCTION: +i2d_PKEY_USAGE_PERIOD 4007 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kekri_id_cmp 4008 1_1_0d EXIST::FUNCTION:CMS +BN_CTX_free 4009 1_1_0d EXIST::FUNCTION: +X509_OBJECT_retrieve_by_subject 4010 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_cert_cmp 4011 1_1_0d EXIST::FUNCTION:CMS +ASN1_TBOOLEAN_it 4012 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_TBOOLEAN_it 4012 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +TXT_DB_write 4013 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_pentanomial_basis 4014 1_1_0d EXIST::FUNCTION:EC,EC2M +BN_MONT_CTX_copy 4015 1_1_0d EXIST::FUNCTION: +SKF_OpenContainer 4016 1_1_0d EXIST::FUNCTION:SKF +EVP_PBE_find 4017 1_1_0d EXIST::FUNCTION: +ENGINE_set_table_flags 4018 1_1_0d EXIST::FUNCTION:ENGINE +i2d_RSAPublicKey 4019 1_1_0d EXIST::FUNCTION:RSA +ASRange_new 4020 1_1_0d EXIST::FUNCTION:RFC3779 +ASN1_GENERALSTRING_new 4021 1_1_0d EXIST::FUNCTION: +PKCS8_decrypt 4022 1_1_0d EXIST::FUNCTION: +ZUC_set_key 4023 1_1_0d EXIST::FUNCTION:ZUC +EVP_sha224 4024 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_new 4025 1_1_0d EXIST::FUNCTION:EC +X509_OBJECT_get0_X509 4026 1_1_0d EXIST::FUNCTION: +X509_TRUST_set_default 4027 1_1_0d EXIST::FUNCTION: +d2i_X509_ATTRIBUTE 4028 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_cleanup 4029 1_1_0d EXIST::FUNCTION: +o2i_SM2CiphertextValue 4030 1_1_0d EXIST::FUNCTION:SM2 +EVP_ENCODE_CTX_free 4031 1_1_0d EXIST::FUNCTION: +PEM_write_DHparams 4032 1_1_0d EXIST::FUNCTION:DH,STDIO +EC_POINTs_mul 4033 1_1_0d EXIST::FUNCTION:EC +PEM_write_SM9_MASTER_PUBKEY 4034 1_1_0d EXIST::FUNCTION:SM9,STDIO +SOF_DecryptData 4035 1_1_0d EXIST::FUNCTION: +EVP_DecryptInit_ex 4036 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_num_asc 4037 1_1_0d EXIST::FUNCTION: +EVP_sha1 4038 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_set 4039 1_1_0d EXIST::FUNCTION: +ASN1_TIME_it 4040 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_TIME_it 4040 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OBJ_length 4041 1_1_0d EXIST::FUNCTION: +BN_GENCB_call 4042 1_1_0d EXIST::FUNCTION: +EVP_des_ede_cfb64 4043 1_1_0d EXIST::FUNCTION:DES +TS_TST_INFO_get_time 4044 1_1_0d EXIST::FUNCTION:TS +X509_get_signature_type 4045 1_1_0d EXIST::FUNCTION: +ERR_print_errors_cb 4046 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_SM9 4047 1_1_0d EXIST::FUNCTION:SM9 +X509_ATTRIBUTE_it 4048 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_ATTRIBUTE_it 4048 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_rc2_cbc 4049 1_1_0d EXIST::FUNCTION:RC2 +X509_ATTRIBUTE_create 4050 1_1_0d EXIST::FUNCTION: +Camellia_cbc_encrypt 4051 1_1_0d EXIST::FUNCTION:CAMELLIA +RSA_get0_engine 4052 1_1_0d EXIST::FUNCTION:RSA +ASN1_TYPE_pack_sequence 4053 1_1_0d EXIST::FUNCTION: +DSA_get_ex_data 4054 1_1_0d EXIST::FUNCTION:DSA +DES_random_key 4055 1_1_0d EXIST::FUNCTION:DES +i2d_SM9PublicKey_fp 4056 1_1_0d EXIST::FUNCTION:SM9,STDIO +CRYPTO_THREAD_lock_new 4057 1_1_0d EXIST::FUNCTION: +X509_TRUST_set 4058 1_1_0d EXIST::FUNCTION: +EVP_aes_192_ocb 4059 1_1_0d EXIST::FUNCTION:OCB +EVP_camellia_128_ctr 4060 1_1_0d EXIST::FUNCTION:CAMELLIA +PEM_write_bio_PAILLIER_PUBKEY 4061 1_1_0d EXIST::FUNCTION:PAILLIER +SRP_Calc_server_key 4062 1_1_0d EXIST::FUNCTION:SRP +ENGINE_get_ctrl_function 4063 1_1_0d EXIST::FUNCTION:ENGINE +CMS_signed_add1_attr_by_NID 4064 1_1_0d EXIST::FUNCTION:CMS +SOF_VerifySignedFile 4065 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_new 4066 1_1_0d EXIST::FUNCTION:TS +BN_reciprocal 4067 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_keygen 4068 1_1_0d EXIST::FUNCTION: +AES_cfb1_encrypt 4069 1_1_0d EXIST::FUNCTION: +MD4_Update 4070 1_1_0d EXIST::FUNCTION:MD4 +SM9_sign 4071 1_1_0d EXIST::FUNCTION:SM9 +BN_GFP2_mul 4072 1_1_0d EXIST::FUNCTION: +CMS_add1_crl 4073 1_1_0d EXIST::FUNCTION:CMS +AES_ige_encrypt 4074 1_1_0d EXIST::FUNCTION: +X509_ALGOR_get0 4075 1_1_0d EXIST::FUNCTION: +RC4_options 4076 1_1_0d EXIST::FUNCTION:RC4 +EVP_MD_meth_get_app_datasize 4077 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set_by_NID 4078 1_1_0d EXIST::FUNCTION: +BN_MONT_CTX_free 4079 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_RAND 4080 1_1_0d EXIST::FUNCTION:ENGINE +BIO_nwrite0 4081 1_1_0d EXIST::FUNCTION: +SAF_GetCertificateStateByOCSP 4082 1_1_0d EXIST::FUNCTION: +a2i_ASN1_INTEGER 4083 1_1_0d EXIST::FUNCTION: +DES_ede3_cbc_encrypt 4084 1_1_0d EXIST::FUNCTION:DES +OPENSSL_sk_delete_ptr 4085 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_cert 4086 1_1_0d EXIST::FUNCTION: +PEM_write_DSAPrivateKey 4087 1_1_0d EXIST::FUNCTION:DSA,STDIO +EC_KEY_set_ECCPUBLICKEYBLOB 4088 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +ASN1_ENUMERATED_set 4089 1_1_0d EXIST::FUNCTION: +ASN1_OBJECT_it 4090 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_OBJECT_it 4090 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BIO_new_accept 4091 1_1_0d EXIST::FUNCTION:SOCK +TS_VERIFY_CTX_set_flags 4092 1_1_0d EXIST::FUNCTION:TS +X509_REQ_INFO_it 4093 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_REQ_INFO_it 4093 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_STORE_CTX_set_verify 4094 1_1_0d EXIST::FUNCTION: +DH_meth_get_finish 4095 1_1_0d EXIST::FUNCTION:DH +BN_mod_lshift1_quick 4096 1_1_0d EXIST::FUNCTION: +i2d_DIRECTORYSTRING 4097 1_1_0d EXIST::FUNCTION: +SOF_GetCertTrustList 4098 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1_host 4099 1_1_0d EXIST::FUNCTION: +X509_load_cert_file 4100 1_1_0d EXIST::FUNCTION: +SKF_Decrypt 4101 1_1_0d EXIST::FUNCTION:SKF +BF_ecb_encrypt 4102 1_1_0d EXIST::FUNCTION:BF +d2i_DSAparams 4103 1_1_0d EXIST::FUNCTION:DSA +X509v3_addr_is_canonical 4104 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_PKEY_get0_PAILLIER 4105 1_1_0d EXIST::FUNCTION:PAILLIER +SKF_WaitForDevEvent 4106 1_1_0d EXIST::FUNCTION:SKF +d2i_ESS_ISSUER_SERIAL 4107 1_1_0d EXIST::FUNCTION:TS +BIO_f_md 4108 1_1_0d EXIST::FUNCTION: +BB1PrivateKeyBlock_free 4109 1_1_0d EXIST::FUNCTION:BB1IBE +EVP_PKEY_asn1_get0 4110 1_1_0d EXIST::FUNCTION: +i2d_ASIdentifiers 4111 1_1_0d EXIST::FUNCTION:RFC3779 +BIO_set_cipher 4112 1_1_0d EXIST::FUNCTION: +SKF_RSAVerify 4113 1_1_0d EXIST::FUNCTION:SKF +d2i_ESS_CERT_ID 4114 1_1_0d EXIST::FUNCTION:TS +X509_ALGOR_set0 4115 1_1_0d EXIST::FUNCTION: +OBJ_sigid_free 4116 1_1_0d EXIST::FUNCTION: +d2i_TS_TST_INFO_fp 4117 1_1_0d EXIST::FUNCTION:STDIO,TS +EVP_des_cfb8 4118 1_1_0d EXIST::FUNCTION:DES +i2d_re_X509_tbs 4119 1_1_0d EXIST::FUNCTION: +OCSP_resp_find_status 4120 1_1_0d EXIST::FUNCTION:OCSP +TS_VERIFY_CTX_set_data 4121 1_1_0d EXIST::FUNCTION:TS +ASN1_ENUMERATED_get 4122 1_1_0d EXIST::FUNCTION: +EVP_aes_256_ccm 4123 1_1_0d EXIST::FUNCTION: +ASIdentifierChoice_it 4124 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASIdentifierChoice_it 4124 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +SAF_Logout 4125 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ext_by_NID 4126 1_1_0d EXIST::FUNCTION:TS +PKCS12_SAFEBAGS_it 4127 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_SAFEBAGS_it 4127 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +NAME_CONSTRAINTS_check 4128 1_1_0d EXIST::FUNCTION: +ENGINE_set_EC 4129 1_1_0d EXIST::FUNCTION:ENGINE +ERR_load_strings 4130 1_1_0d EXIST::FUNCTION: +CTLOG_STORE_load_default_file 4131 1_1_0d EXIST::FUNCTION:CT +BN_print_fp 4132 1_1_0d EXIST::FUNCTION:STDIO +d2i_TS_RESP_bio 4133 1_1_0d EXIST::FUNCTION:TS +ERR_load_ERR_strings 4134 1_1_0d EXIST::FUNCTION: +ASIdOrRange_free 4135 1_1_0d EXIST::FUNCTION:RFC3779 +d2i_CMS_ReceiptRequest 4136 1_1_0d EXIST::FUNCTION:CMS +X509_NAME_ENTRY_new 4137 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_delete_ext 4138 1_1_0d EXIST::FUNCTION:OCSP +PEM_write_bio_DSAPrivateKey 4139 1_1_0d EXIST::FUNCTION:DSA +ASN1_item_d2i_fp 4140 1_1_0d EXIST::FUNCTION:STDIO +ASN1_item_d2i_bio 4141 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get_default_digest_nid 4142 1_1_0d EXIST::FUNCTION: +ENGINE_register_DH 4143 1_1_0d EXIST::FUNCTION:ENGINE +SXNETID_it 4144 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +SXNETID_it 4144 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_get0_private_key 4145 1_1_0d EXIST::FUNCTION:EC +OCSP_RESPDATA_free 4146 1_1_0d EXIST::FUNCTION:OCSP +d2i_AUTHORITY_INFO_ACCESS 4147 1_1_0d EXIST::FUNCTION: +X509_set_ex_data 4148 1_1_0d EXIST::FUNCTION: +DES_encrypt1 4149 1_1_0d EXIST::FUNCTION:DES +AES_unwrap_key 4150 1_1_0d EXIST::FUNCTION: +PAILLIER_decrypt 4151 1_1_0d EXIST::FUNCTION:PAILLIER +SCT_get0_extensions 4152 1_1_0d EXIST::FUNCTION:CT +SRP_VBASE_init 4153 1_1_0d EXIST::FUNCTION:SRP +ENGINE_get_digest_engine 4154 1_1_0d EXIST::FUNCTION:ENGINE +OCSP_ONEREQ_add_ext 4155 1_1_0d EXIST::FUNCTION:OCSP +OCSP_request_add1_cert 4156 1_1_0d EXIST::FUNCTION:OCSP +EC_GROUP_have_precompute_mult 4157 1_1_0d EXIST::FUNCTION:EC +EVP_bf_ofb 4158 1_1_0d EXIST::FUNCTION:BF +EC_GROUP_new_by_curve_name 4159 1_1_0d EXIST::FUNCTION:EC +NAME_CONSTRAINTS_it 4160 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NAME_CONSTRAINTS_it 4160 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_SM9PublicKey 4161 1_1_0d EXIST::FUNCTION:SM9 +SAF_SymmEncryptFinal 4162 1_1_0d EXIST::FUNCTION: +X509_STORE_set_get_issuer 4163 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_cfb8 4164 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_DecryptFinal 4165 1_1_0d EXIST::FUNCTION: +DH_meth_free 4166 1_1_0d EXIST::FUNCTION:DH +X509_check_ip 4167 1_1_0d EXIST::FUNCTION: +ENGINE_set_RAND 4168 1_1_0d EXIST::FUNCTION:ENGINE +X509_set_pubkey 4169 1_1_0d EXIST::FUNCTION: +BN_mod_exp_mont 4170 1_1_0d EXIST::FUNCTION: +OBJ_NAME_add 4171 1_1_0d EXIST::FUNCTION: +PKCS7_ISSUER_AND_SERIAL_free 4172 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_copy 4173 1_1_0d EXIST::FUNCTION: +i2d_ECCSignature_bio 4174 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +i2d_ECPrivateKey_bio 4175 1_1_0d EXIST::FUNCTION:EC +SAF_SM2_EncodeEnvelopedData 4176 1_1_0d EXIST::FUNCTION: +DES_options 4177 1_1_0d EXIST::FUNCTION:DES +BN_MONT_CTX_new 4178 1_1_0d EXIST::FUNCTION: +EVP_aes_128_cfb128 4179 1_1_0d EXIST::FUNCTION: +AUTHORITY_KEYID_free 4180 1_1_0d EXIST::FUNCTION: +X509_policy_level_get0_node 4181 1_1_0d EXIST::FUNCTION: +EC_GFp_nistp256_method 4182 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 +BIO_dgram_non_fatal_error 4183 1_1_0d EXIST::FUNCTION:DGRAM +i2d_TS_ACCURACY 4184 1_1_0d EXIST::FUNCTION:TS +TS_CONF_set_certs 4185 1_1_0d EXIST::FUNCTION:TS +SDF_ReleasePrivateKeyAccessRight 4186 1_1_0d EXIST::FUNCTION: +BFIBE_do_encrypt 4187 1_1_0d EXIST::FUNCTION:BFIBE +BFIBE_extract_private_key 4188 1_1_0d EXIST::FUNCTION:BFIBE +EVP_PKEY_set1_DH 4189 1_1_0d EXIST::FUNCTION:DH +PKCS12_SAFEBAG_create0_p8inf 4190 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_input_blocksize 4191 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_new 4192 1_1_0d EXIST::FUNCTION: +SAF_SM2_DecodeSignedData 4193 1_1_0d EXIST::FUNCTION: +i2a_ASN1_STRING 4194 1_1_0d EXIST::FUNCTION: +SHA224_Init 4195 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_iv_length 4196 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_set_msg 4197 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_get1_EC_KEY 4198 1_1_0d EXIST::FUNCTION:EC +DH_get_2048_256 4199 1_1_0d EXIST::FUNCTION:DH +EVP_MD_flags 4200 1_1_0d EXIST::FUNCTION: +DES_pcbc_encrypt 4201 1_1_0d EXIST::FUNCTION:DES +GENERAL_NAMES_free 4202 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_flags 4203 1_1_0d EXIST::FUNCTION: +X509V3_add_value 4204 1_1_0d EXIST::FUNCTION: +PEM_read_NETSCAPE_CERT_SEQUENCE 4205 1_1_0d EXIST::FUNCTION:STDIO +BUF_reverse 4206 1_1_0d EXIST::FUNCTION: +UI_dup_info_string 4207 1_1_0d EXIST::FUNCTION:UI +OCSP_REQ_CTX_set1_req 4208 1_1_0d EXIST::FUNCTION:OCSP +SM9_MASTER_KEY_up_ref 4209 1_1_0d EXIST::FUNCTION:SM9 +EC_GROUP_new_from_ecpkparameters 4210 1_1_0d EXIST::FUNCTION:EC +X509_EXTENSION_free 4211 1_1_0d EXIST::FUNCTION: +CMS_add_smimecap 4212 1_1_0d EXIST::FUNCTION:CMS +ASN1_UTCTIME_print 4213 1_1_0d EXIST::FUNCTION: +X509_REQ_set_subject_name 4214 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_get_sgd 4215 1_1_0d EXIST::FUNCTION:GMAPI +ASN1_add_stable_module 4216 1_1_0d EXIST::FUNCTION: +d2i_IPAddressFamily 4217 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_CIPHER_set_asn1_iv 4218 1_1_0d EXIST::FUNCTION: +d2i_ASIdentifierChoice 4219 1_1_0d EXIST::FUNCTION:RFC3779 +SM2CiphertextValue_get_ECCCipher 4220 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 +BIO_get_retry_reason 4221 1_1_0d EXIST::FUNCTION: +i2a_ASN1_INTEGER 4222 1_1_0d EXIST::FUNCTION: +PKCS7_get_issuer_and_serial 4223 1_1_0d EXIST::FUNCTION: +d2i_ASN1_BMPSTRING 4224 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_pop 4225 1_1_0d EXIST::FUNCTION: +BFIBE_do_decrypt 4226 1_1_0d EXIST::FUNCTION:BFIBE +SAF_Base64_Encode 4227 1_1_0d EXIST::FUNCTION: +HMAC_Init 4228 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +CRYPTO_gcm128_decrypt 4229 1_1_0d EXIST::FUNCTION: +EVP_PKEY_add1_attr 4230 1_1_0d EXIST::FUNCTION: +EVP_PKEY_decrypt 4231 1_1_0d EXIST::FUNCTION: +UI_method_get_writer 4232 1_1_0d EXIST::FUNCTION:UI +d2i_SM9MasterSecret_fp 4233 1_1_0d EXIST::FUNCTION:SM9,STDIO +CRYPTO_cfb128_encrypt 4234 1_1_0d EXIST::FUNCTION: +RSA_X931_generate_key_ex 4235 1_1_0d EXIST::FUNCTION:RSA +d2i_FpPoint 4236 1_1_0d EXIST::FUNCTION: +i2d_TS_REQ_fp 4237 1_1_0d EXIST::FUNCTION:STDIO,TS +ENGINE_set_default_EC 4238 1_1_0d EXIST::FUNCTION:ENGINE +SXNET_get_id_asc 4239 1_1_0d EXIST::FUNCTION: +TS_REQ_to_TS_VERIFY_CTX 4240 1_1_0d EXIST::FUNCTION:TS +IPAddressRange_free 4241 1_1_0d EXIST::FUNCTION:RFC3779 +i2d_PKCS7_ENCRYPT 4242 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_decrypt 4243 1_1_0d EXIST::FUNCTION: +X509_REQ_add_extensions_nid 4244 1_1_0d EXIST::FUNCTION: +ASIdentifierChoice_new 4245 1_1_0d EXIST::FUNCTION:RFC3779 +BN_BLINDING_is_current_thread 4246 1_1_0d EXIST::FUNCTION: +PKCS7_print_ctx 4247 1_1_0d EXIST::FUNCTION: +DSA_new_method 4248 1_1_0d EXIST::FUNCTION:DSA +ECPKPARAMETERS_it 4249 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC +ECPKPARAMETERS_it 4249 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC +i2d_POLICYQUALINFO 4250 1_1_0d EXIST::FUNCTION: +HMAC_CTX_set_flags 4251 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_cmp 4252 1_1_0d EXIST::FUNCTION: +TS_OBJ_print_bio 4253 1_1_0d EXIST::FUNCTION:TS +RSA_set0_crt_params 4254 1_1_0d EXIST::FUNCTION:RSA +CRYPTO_ocb128_init 4255 1_1_0d EXIST::FUNCTION:OCB +d2i_X509_AUX 4256 1_1_0d EXIST::FUNCTION: +POLICY_CONSTRAINTS_free 4257 1_1_0d EXIST::FUNCTION: +DSA_set0_pqg 4258 1_1_0d EXIST::FUNCTION:DSA +PEM_read_bio_PrivateKey 4259 1_1_0d EXIST::FUNCTION: +TS_REQ_get_nonce 4260 1_1_0d EXIST::FUNCTION:TS +CRYPTO_THREAD_lock_free 4261 1_1_0d EXIST::FUNCTION: +DSA_SIG_set0 4262 1_1_0d EXIST::FUNCTION:DSA +EVP_aes_256_cfb1 4263 1_1_0d EXIST::FUNCTION: +X509V3_section_free 4264 1_1_0d EXIST::FUNCTION: +BIO_socket_ioctl 4265 1_1_0d EXIST::FUNCTION:SOCK +d2i_EDIPARTYNAME 4266 1_1_0d EXIST::FUNCTION: +PBEPARAM_free 4267 1_1_0d EXIST::FUNCTION: +BIO_new 4268 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_delete_ext 4269 1_1_0d EXIST::FUNCTION:OCSP +EC_GROUP_get_curve_name 4270 1_1_0d EXIST::FUNCTION:EC +DSA_bits 4271 1_1_0d EXIST::FUNCTION:DSA +i2d_ECParameters 4272 1_1_0d EXIST::FUNCTION:EC +BN_BLINDING_invert 4273 1_1_0d EXIST::FUNCTION: +ASN1_item_sign_ctx 4274 1_1_0d EXIST::FUNCTION: +d2i_OCSP_RESPID 4275 1_1_0d EXIST::FUNCTION:OCSP +DES_crypt 4276 1_1_0d EXIST::FUNCTION:DES +SKF_OpenApplication 4277 1_1_0d EXIST::FUNCTION:SKF +i2d_CPK_PUBLIC_PARAMS_bio 4278 1_1_0d EXIST::FUNCTION:CPK +DH_meth_set_flags 4279 1_1_0d EXIST::FUNCTION:DH +EVP_aes_192_ofb 4280 1_1_0d EXIST::FUNCTION: +CMAC_resume 4281 1_1_0d EXIST::FUNCTION:CMAC +SHA224_Final 4282 1_1_0d EXIST::FUNCTION: +v2i_GENERAL_NAME 4283 1_1_0d EXIST::FUNCTION: +X509_CRL_cmp 4284 1_1_0d EXIST::FUNCTION: +EVP_aes_256_ctr 4285 1_1_0d EXIST::FUNCTION: +RSA_set_ex_data 4286 1_1_0d EXIST::FUNCTION:RSA +ECPKPARAMETERS_free 4287 1_1_0d EXIST::FUNCTION:EC +X509_NAME_delete_entry 4288 1_1_0d EXIST::FUNCTION: +i2a_ACCESS_DESCRIPTION 4289 1_1_0d EXIST::FUNCTION: +PKCS12_PBE_add 4290 1_1_0d EXIST::FUNCTION: +TS_RESP_set_tst_info 4291 1_1_0d EXIST::FUNCTION:TS +i2d_SM9Signature_fp 4292 1_1_0d EXIST::FUNCTION:SM9,STDIO +SHA256_Init 4293 1_1_0d EXIST::FUNCTION: +SM9_decrypt 4294 1_1_0d EXIST::FUNCTION:SM9 +X509_CRL_get_REVOKED 4295 1_1_0d EXIST::FUNCTION: +X509_trusted 4296 1_1_0d EXIST::FUNCTION: +ACCESS_DESCRIPTION_it 4297 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ACCESS_DESCRIPTION_it 4297 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OTHERNAME_new 4298 1_1_0d EXIST::FUNCTION: +SEED_cfb128_encrypt 4299 1_1_0d EXIST::FUNCTION:SEED +X509_CRL_add0_revoked 4300 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_get0_value 4301 1_1_0d EXIST::FUNCTION: +OPENSSL_INIT_set_config_appname 4302 1_1_0d EXIST::FUNCTION:STDIO +SOF_GetPinRetryCount 4303 1_1_0d EXIST::FUNCTION: +ZUC_128eia3_update 4304 1_1_0d EXIST::FUNCTION:ZUC +d2i_ECCSignature 4305 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +PKCS7_to_TS_TST_INFO 4306 1_1_0d EXIST::FUNCTION:TS +SDF_ImportKeyWithKEK 4307 1_1_0d EXIST::FUNCTION: +PEM_read_SM9_MASTER_PUBKEY 4308 1_1_0d EXIST::FUNCTION:SM9,STDIO +X509_ATTRIBUTE_free 4309 1_1_0d EXIST::FUNCTION: +d2i_X509_ALGOR 4310 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_cert_crl 4311 1_1_0d EXIST::FUNCTION: +BUF_MEM_grow 4312 1_1_0d EXIST::FUNCTION: +i2d_ASN1_IA5STRING 4313 1_1_0d EXIST::FUNCTION: +DES_cbc_encrypt 4314 1_1_0d EXIST::FUNCTION:DES +ASN1_STRING_length 4315 1_1_0d EXIST::FUNCTION: +ASN1_mbstring_ncopy 4316 1_1_0d EXIST::FUNCTION: +X509_REQ_it 4317 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_REQ_it 4317 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_write_bio_NETSCAPE_CERT_SEQUENCE 4318 1_1_0d EXIST::FUNCTION: +RSA_meth_get_finish 4319 1_1_0d EXIST::FUNCTION:RSA +UI_get_input_flags 4320 1_1_0d EXIST::FUNCTION:UI +X509_EXTENSION_get_object 4321 1_1_0d EXIST::FUNCTION: +ASN1_i2d_fp 4322 1_1_0d EXIST::FUNCTION:STDIO +X509_print_ex_fp 4323 1_1_0d EXIST::FUNCTION:STDIO +BN_GF2m_mod_div 4324 1_1_0d EXIST::FUNCTION:EC2M +EVP_camellia_256_cfb128 4325 1_1_0d EXIST::FUNCTION:CAMELLIA +BN_bin2bn 4326 1_1_0d EXIST::FUNCTION: +X509_REQ_get_signature_nid 4327 1_1_0d EXIST::FUNCTION: +BN_sub 4328 1_1_0d EXIST::FUNCTION: +EVP_PKEY_encrypt_old 4329 1_1_0d EXIST::FUNCTION: +PEM_read_PrivateKey 4330 1_1_0d EXIST::FUNCTION:STDIO +NETSCAPE_CERT_SEQUENCE_it 4331 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NETSCAPE_CERT_SEQUENCE_it 4331 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_STRING_clear_free 4332 1_1_0d EXIST::FUNCTION: +RAND_write_file 4333 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_move_peername 4334 1_1_0d EXIST::FUNCTION: +SAF_DestroyHashObj 4335 1_1_0d EXIST::FUNCTION: +DSO_METHOD_openssl 4336 1_1_0d EXIST::FUNCTION: +SAF_AddCaCertificate 4337 1_1_0d EXIST::FUNCTION: +PAILLIER_encrypt 4338 1_1_0d EXIST::FUNCTION:PAILLIER +ASN1_SCTX_get_app_data 4339 1_1_0d EXIST::FUNCTION: +i2d_POLICYINFO 4340 1_1_0d EXIST::FUNCTION: +DES_string_to_key 4341 1_1_0d EXIST::FUNCTION:DES +OCSP_SINGLERESP_free 4342 1_1_0d EXIST::FUNCTION:OCSP +OBJ_obj2txt 4343 1_1_0d EXIST::FUNCTION: +SDF_CreateFile 4344 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_copy 4345 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_init 4346 1_1_0d EXIST::FUNCTION:TS +EVP_DigestVerifyFinal 4347 1_1_0d EXIST::FUNCTION: +i2d_ASN1_GENERALIZEDTIME 4348 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set0_dane 4349 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_delete 4350 1_1_0d EXIST::FUNCTION: +EVP_CipherInit 4351 1_1_0d EXIST::FUNCTION: +i2d_X509 4352 1_1_0d EXIST::FUNCTION: +X509_get0_pubkey_bitstr 4353 1_1_0d EXIST::FUNCTION: +X509v3_addr_validate_path 4354 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_PKEY_CTX_set_data 4355 1_1_0d EXIST::FUNCTION: +BN_div 4356 1_1_0d EXIST::FUNCTION: +PKCS7_set_cipher 4357 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_dup 4358 1_1_0d EXIST::FUNCTION:TS +BIO_meth_get_write 4359 1_1_0d EXIST::FUNCTION: +d2i_RSAPublicKey_fp 4360 1_1_0d EXIST::FUNCTION:RSA,STDIO +SAF_SymmDecryptUpdate 4361 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_copy 4362 1_1_0d EXIST::FUNCTION: +EVP_DigestUpdate 4363 1_1_0d EXIST::FUNCTION: +ERR_load_SOF_strings 4364 1_1_0d EXIST::FUNCTION:SOF +i2d_PUBKEY_bio 4365 1_1_0d EXIST::FUNCTION: +RSA_meth_get_mod_exp 4366 1_1_0d EXIST::FUNCTION:RSA +EC_GROUP_check_discriminant 4367 1_1_0d EXIST::FUNCTION:EC +ENGINE_load_ssl_client_cert 4368 1_1_0d EXIST::FUNCTION:ENGINE +PEM_write_bio_ASN1_stream 4369 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_set 4370 1_1_0d EXIST::FUNCTION: +i2d_ECPrivateKey 4371 1_1_0d EXIST::FUNCTION:EC +SAF_GetVersion 4372 1_1_0d EXIST::FUNCTION: +BN_generate_dsa_nonce 4373 1_1_0d EXIST::FUNCTION: +err_free_strings_int 4374 1_1_0d EXIST::FUNCTION: +BIO_s_accept 4375 1_1_0d EXIST::FUNCTION:SOCK +X509_signature_dump 4376 1_1_0d EXIST::FUNCTION: +X509_get0_reject_objects 4377 1_1_0d EXIST::FUNCTION: +EVP_DigestVerifyInit 4378 1_1_0d EXIST::FUNCTION: +TS_REQ_new 4379 1_1_0d EXIST::FUNCTION:TS +OBJ_find_sigid_by_algs 4380 1_1_0d EXIST::FUNCTION: +CMS_EnvelopedData_create 4381 1_1_0d EXIST::FUNCTION:CMS +a2i_IPADDRESS_NC 4382 1_1_0d EXIST::FUNCTION: +ERR_set_error_data 4383 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get_ext_by_critical 4384 1_1_0d EXIST::FUNCTION: +sm3_hmac_final 4385 1_1_0d EXIST::FUNCTION:SM3 +SOF_VerifySignedMessage 4386 1_1_0d EXIST::FUNCTION: +UI_UTIL_read_pw_string 4387 1_1_0d EXIST::FUNCTION:UI +ASN1_INTEGER_set_uint64 4388 1_1_0d EXIST::FUNCTION: +X509_OBJECT_free 4389 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_set_ECCCIPHERBLOB 4390 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF +EVP_PKEY_CTX_get_operation 4391 1_1_0d EXIST::FUNCTION: +DH_meth_set_generate_key 4392 1_1_0d EXIST::FUNCTION:DH +OCSP_check_validity 4393 1_1_0d EXIST::FUNCTION:OCSP +X509at_get_attr 4394 1_1_0d EXIST::FUNCTION: +DES_ede3_cfb64_encrypt 4395 1_1_0d EXIST::FUNCTION:DES +EVP_CIPHER_meth_dup 4396 1_1_0d EXIST::FUNCTION: +RSA_meth_set1_name 4397 1_1_0d EXIST::FUNCTION:RSA +ASYNC_get_current_job 4398 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_rand_key 4399 1_1_0d EXIST::FUNCTION: +ENGINE_get_ex_data 4400 1_1_0d EXIST::FUNCTION:ENGINE +PKCS7_ctrl 4401 1_1_0d EXIST::FUNCTION: +X509_OBJECT_get0_X509_CRL 4402 1_1_0d EXIST::FUNCTION: +DH_KDF_X9_42 4403 1_1_0d EXIST::FUNCTION:CMS,DH +EC_POINT_set_affine_coordinates_GF2m 4404 1_1_0d EXIST::FUNCTION:EC,EC2M +BIO_gethostbyname 4405 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +d2i_RSA_PUBKEY 4406 1_1_0d EXIST::FUNCTION:RSA +EVP_PKEY_verify_init 4407 1_1_0d EXIST::FUNCTION: +BB1IBE_decrypt 4408 1_1_0d EXIST::FUNCTION:BB1IBE +CONF_modules_unload 4409 1_1_0d EXIST::FUNCTION: +X509_STORE_set_verify_cb 4410 1_1_0d EXIST::FUNCTION: +OCSP_request_sign 4411 1_1_0d EXIST::FUNCTION:OCSP +i2d_PKCS7_DIGEST 4412 1_1_0d EXIST::FUNCTION: +IPAddressOrRange_free 4413 1_1_0d EXIST::FUNCTION:RFC3779 +PKCS7_ENCRYPT_new 4414 1_1_0d EXIST::FUNCTION: +ASN1_STRING_copy 4415 1_1_0d EXIST::FUNCTION: +PEM_read_bio_PAILLIER_PUBKEY 4416 1_1_0d EXIST::FUNCTION:PAILLIER +CMS_EncryptedData_decrypt 4417 1_1_0d EXIST::FUNCTION:CMS +DSA_meth_set_flags 4418 1_1_0d EXIST::FUNCTION:DSA +i2d_PKCS7_bio_stream 4419 1_1_0d EXIST::FUNCTION: +DH_security_bits 4420 1_1_0d EXIST::FUNCTION:DH +MD4_Final 4421 1_1_0d EXIST::FUNCTION:MD4 +ASYNC_unblock_pause 4422 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kekri_get0_id 4423 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_CTX_get_error 4424 1_1_0d EXIST::FUNCTION: +BN_GFP2_add 4425 1_1_0d EXIST::FUNCTION: +DSA_meth_get_bn_mod_exp 4426 1_1_0d EXIST::FUNCTION:DSA +X509_NAME_ENTRY_create_by_txt 4427 1_1_0d EXIST::FUNCTION: +PKCS8_encrypt 4428 1_1_0d EXIST::FUNCTION: +OCSP_resp_get0_certs 4429 1_1_0d EXIST::FUNCTION:OCSP +SM9_compute_share_key_B 4430 1_1_0d EXIST::FUNCTION:SM9 +BN_GF2m_mod_exp 4431 1_1_0d EXIST::FUNCTION:EC2M +TS_TST_INFO_get_ext 4432 1_1_0d EXIST::FUNCTION:TS +X509_REQ_add1_attr_by_OBJ 4433 1_1_0d EXIST::FUNCTION: +BN_gcd 4434 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_get0 4435 1_1_0d EXIST::FUNCTION:EC +EC_GROUP_new 4436 1_1_0d EXIST::FUNCTION:EC +PKCS7_SIGN_ENVELOPE_free 4437 1_1_0d EXIST::FUNCTION: +d2i_X509_CRL_INFO 4438 1_1_0d EXIST::FUNCTION: +X509_STORE_get_check_issued 4439 1_1_0d EXIST::FUNCTION: +TS_CONF_set_ess_cert_id_chain 4440 1_1_0d EXIST::FUNCTION:TS +PEM_write_DSA_PUBKEY 4441 1_1_0d EXIST::FUNCTION:DSA,STDIO +EVP_chacha20_poly1305 4442 1_1_0d EXIST::FUNCTION:CHACHA,POLY1305 +SOF_GetCertInfo 4443 1_1_0d EXIST::FUNCTION: +i2d_DHparams 4444 1_1_0d EXIST::FUNCTION:DH +d2i_PKCS12 4445 1_1_0d EXIST::FUNCTION: +OCSP_resp_get0_id 4446 1_1_0d EXIST::FUNCTION:OCSP +SRP_get_default_gN 4447 1_1_0d EXIST::FUNCTION:SRP +X509_http_nbio 4448 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_derive_set_peer 4449 1_1_0d EXIST::FUNCTION: +BN_mod_mul_reciprocal 4450 1_1_0d EXIST::FUNCTION: +SDF_CloseDevice 4451 1_1_0d EXIST::FUNCTION: +X509_INFO_new 4452 1_1_0d EXIST::FUNCTION: +SHA512_Init 4453 1_1_0d EXIST:!VMSVAX:FUNCTION: +OCSP_REQUEST_print 4454 1_1_0d EXIST::FUNCTION:OCSP +EC_KEY_precompute_mult 4455 1_1_0d EXIST::FUNCTION:EC +CMS_digest_create 4456 1_1_0d EXIST::FUNCTION:CMS +PKCS12_AUTHSAFES_it 4457 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_AUTHSAFES_it 4457 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_write_X509_REQ_NEW 4458 1_1_0d EXIST::FUNCTION:STDIO +OpenSSL_version 4459 1_1_0d EXIST::FUNCTION: +EC_GROUP_get0_seed 4460 1_1_0d EXIST::FUNCTION:EC +EVP_PKEY_asn1_free 4461 1_1_0d EXIST::FUNCTION: +ASN1_PRINTABLE_it 4462 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_PRINTABLE_it 4462 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OCSP_RESPID_set_by_key 4463 1_1_0d EXIST::FUNCTION:OCSP +DSO_bind_func 4464 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_by_alias 4465 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_decrypt 4466 1_1_0d EXIST::FUNCTION: +X509_CRL_set_version 4467 1_1_0d EXIST::FUNCTION: +DSA_print_fp 4468 1_1_0d EXIST::FUNCTION:DSA,STDIO +EVP_PKEY_decrypt_init 4469 1_1_0d EXIST::FUNCTION: +BN_BLINDING_convert 4470 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get0_current_issuer 4471 1_1_0d EXIST::FUNCTION: +BN_GENCB_set_old 4472 1_1_0d EXIST::FUNCTION: +speck_set_encrypt_key16 4473 1_1_0d EXIST::FUNCTION:SPECK +OCSP_REQUEST_new 4474 1_1_0d EXIST::FUNCTION:OCSP +RSA_OAEP_PARAMS_free 4475 1_1_0d EXIST::FUNCTION:RSA +BN_mpi2bn 4476 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_encrypt 4477 1_1_0d EXIST::FUNCTION: +EVP_DecodeBlock 4478 1_1_0d EXIST::FUNCTION: +ENGINE_set_flags 4479 1_1_0d EXIST::FUNCTION:ENGINE +DSA_OpenSSL 4480 1_1_0d EXIST::FUNCTION:DSA +CPK_MASTER_SECRET_free 4481 1_1_0d EXIST::FUNCTION:CPK +ASN1_UTCTIME_set_string 4482 1_1_0d EXIST::FUNCTION: +BB1IBE_extract_private_key 4483 1_1_0d EXIST::FUNCTION:BB1IBE +EVP_CIPHER_CTX_buf_noconst 4484 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_serial_cb 4485 1_1_0d EXIST::FUNCTION:TS +X509_NAME_hash_old 4486 1_1_0d EXIST::FUNCTION: +EVP_MD_size 4487 1_1_0d EXIST::FUNCTION: +PEM_write_bio_ECPKParameters 4488 1_1_0d EXIST::FUNCTION:EC +sm3_update 4489 1_1_0d EXIST::FUNCTION:SM3 +BIO_number_written 4490 1_1_0d EXIST::FUNCTION: +CMS_add1_signer 4491 1_1_0d EXIST::FUNCTION:CMS +BN_nist_mod_256 4492 1_1_0d EXIST::FUNCTION: +DSA_do_verify 4493 1_1_0d EXIST::FUNCTION:DSA +BIO_set_ex_data 4494 1_1_0d EXIST::FUNCTION: +X509_check_purpose 4495 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_add 4496 1_1_0d EXIST::FUNCTION: +BN_mod_exp_mont_consttime 4497 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_add_alias 4498 1_1_0d EXIST::FUNCTION: +DSA_meth_set0_app_data 4499 1_1_0d EXIST::FUNCTION:DSA +PKCS7_add0_attrib_signing_time 4500 1_1_0d EXIST::FUNCTION: +EC_GROUP_set_generator 4501 1_1_0d EXIST::FUNCTION:EC +EVP_enc_null 4502 1_1_0d EXIST::FUNCTION: +d2i_SM9Signature 4503 1_1_0d EXIST::FUNCTION:SM9 +X509_NAME_ENTRY_create_by_NID 4504 1_1_0d EXIST::FUNCTION: +EC_GROUP_new_type1curve 4505 1_1_0d EXIST::FUNCTION: +X509_set_serialNumber 4506 1_1_0d EXIST::FUNCTION: +ASN1_TIME_new 4507 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_cleanup 4508 1_1_0d EXIST::FUNCTION: +DSA_set_flags 4509 1_1_0d EXIST::FUNCTION:DSA +EVP_aes_192_gcm 4510 1_1_0d EXIST::FUNCTION: +SM9_KEY_new 4511 1_1_0d EXIST::FUNCTION:SM9 +PEM_write_bio_SM9PrivateKey 4512 1_1_0d EXIST::FUNCTION:SM9 +SXNETID_new 4513 1_1_0d EXIST::FUNCTION: +UI_destroy_method 4514 1_1_0d EXIST::FUNCTION:UI +X509_get_default_cert_file_env 4515 1_1_0d EXIST::FUNCTION: +SKF_Mac 4516 1_1_0d EXIST::FUNCTION:SKF +OPENSSL_memcmp 4517 1_1_0d EXIST::FUNCTION: +OCSP_RESPONSE_free 4518 1_1_0d EXIST::FUNCTION:OCSP +IDEA_cfb64_encrypt 4519 1_1_0d EXIST::FUNCTION:IDEA +PAILLIER_size 4520 1_1_0d EXIST::FUNCTION:PAILLIER +OCSP_SINGLERESP_add_ext 4521 1_1_0d EXIST::FUNCTION:OCSP +DSAparams_print 4522 1_1_0d EXIST::FUNCTION:DSA +EVP_get_cipherbysgd 4523 1_1_0d EXIST::FUNCTION:GMAPI +RSA_get_ex_data 4524 1_1_0d EXIST::FUNCTION:RSA +EVP_aes_256_ofb 4525 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyPair_RSA 4526 1_1_0d EXIST::FUNCTION: +d2i_PKCS8_bio 4527 1_1_0d EXIST::FUNCTION: +d2i_X509 4528 1_1_0d EXIST::FUNCTION: +BB1MasterSecret_free 4529 1_1_0d EXIST::FUNCTION:BB1IBE +FFX_compute_luhn 4530 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_dup 4531 1_1_0d EXIST::FUNCTION:TS +PKCS7_add_certificate 4532 1_1_0d EXIST::FUNCTION: +EC_POINT_set_to_infinity 4533 1_1_0d EXIST::FUNCTION:EC +ASN1_BIT_STRING_check 4534 1_1_0d EXIST::FUNCTION: +CRYPTO_nistcts128_decrypt_block 4535 1_1_0d EXIST::FUNCTION: +BN_bn2dec 4536 1_1_0d EXIST::FUNCTION: +EVP_EncryptFinal 4537 1_1_0d EXIST::FUNCTION: +ECPKParameters_print 4538 1_1_0d EXIST::FUNCTION:EC +NETSCAPE_SPKAC_it 4539 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NETSCAPE_SPKAC_it 4539 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_set_default_method 4540 1_1_0d EXIST::FUNCTION:EC +EDIPARTYNAME_it 4541 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +EDIPARTYNAME_it 4541 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SAF_EccVerifySign 4542 1_1_0d EXIST::FUNCTION: +X509_get_ext 4543 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_cleanup 4544 1_1_0d EXIST::FUNCTION:OCB +EVP_PKEY_encrypt_init 4545 1_1_0d EXIST::FUNCTION: +RIPEMD160 4546 1_1_0d EXIST::FUNCTION:RMD160 +ASN1_STRING_TABLE_add 4547 1_1_0d EXIST::FUNCTION: +CONF_imodule_get_usr_data 4548 1_1_0d EXIST::FUNCTION: +EC_KEY_dup 4549 1_1_0d EXIST::FUNCTION:EC +ASN1_ENUMERATED_new 4550 1_1_0d EXIST::FUNCTION: +PKCS5_PBE_keyivgen 4551 1_1_0d EXIST::FUNCTION: +COMP_get_name 4552 1_1_0d EXIST::FUNCTION:COMP +EVP_PKEY_get1_PAILLIER 4553 1_1_0d EXIST::FUNCTION:PAILLIER +BIO_get_ex_data 4554 1_1_0d EXIST::FUNCTION: +EVP_sms4_ecb 4555 1_1_0d EXIST::FUNCTION:SMS4 +ASN1_STRING_get_default_mask 4556 1_1_0d EXIST::FUNCTION: +SAF_GetExtTypeInfo 4557 1_1_0d EXIST::FUNCTION: +i2d_TS_RESP_bio 4558 1_1_0d EXIST::FUNCTION:TS +EVP_set_pw_prompt 4559 1_1_0d EXIST::FUNCTION:UI +d2i_ECCCipher_bio 4560 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +EVP_PKEY_security_bits 4561 1_1_0d EXIST::FUNCTION: +PEM_write_PKCS8_PRIV_KEY_INFO 4562 1_1_0d EXIST::FUNCTION:STDIO +ECIES_CIPHERTEXT_VALUE_get_ECCCipher 4563 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF +RSA_meth_get_init 4564 1_1_0d EXIST::FUNCTION:RSA +PKCS7_ENC_CONTENT_free 4565 1_1_0d EXIST::FUNCTION: +X509_STORE_new 4566 1_1_0d EXIST::FUNCTION: +SDF_PrintDeviceInfo 4567 1_1_0d EXIST::FUNCTION:SDF +SCT_set1_signature 4568 1_1_0d EXIST::FUNCTION:CT +d2i_BASIC_CONSTRAINTS 4569 1_1_0d EXIST::FUNCTION: +X509at_get_attr_by_NID 4570 1_1_0d EXIST::FUNCTION: +X509_STORE_get_verify_cb 4571 1_1_0d EXIST::FUNCTION: +UI_dup_input_boolean 4572 1_1_0d EXIST::FUNCTION:UI +PEM_read_bio_PaillierPublicKey 4573 1_1_0d EXIST::FUNCTION:PAILLIER +X509v3_get_ext 4574 1_1_0d EXIST::FUNCTION: +X509_REQ_print 4575 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_extract_private_key 4576 1_1_0d EXIST::FUNCTION:CPK +TS_RESP_CTX_get_request 4577 1_1_0d EXIST::FUNCTION:TS +X509_get_default_cert_file 4578 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithIPK_RSA 4579 1_1_0d EXIST::FUNCTION: +X509_CINF_it 4580 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CINF_it 4580 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_GROUP_check 4581 1_1_0d EXIST::FUNCTION:EC +SCT_LIST_validate 4582 1_1_0d EXIST::FUNCTION:CT +BIO_ADDR_family 4583 1_1_0d EXIST::FUNCTION:SOCK +BN_BLINDING_new 4584 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_value 4585 1_1_0d EXIST::FUNCTION: +d2i_PKCS8_PRIV_KEY_INFO 4586 1_1_0d EXIST::FUNCTION: +i2d_PrivateKey 4587 1_1_0d EXIST::FUNCTION: +ASN1_item_dup 4588 1_1_0d EXIST::FUNCTION: +i2d_CMS_ContentInfo 4589 1_1_0d EXIST::FUNCTION:CMS +BIO_read 4590 1_1_0d EXIST::FUNCTION: +i2d_GENERAL_NAME 4591 1_1_0d EXIST::FUNCTION: +CTLOG_get0_log_id 4592 1_1_0d EXIST::FUNCTION:CT +d2i_SM9_MASTER_PUBKEY 4593 1_1_0d EXIST::FUNCTION:SM9 +X509_set1_notAfter 4594 1_1_0d EXIST::FUNCTION: +RAND_event 4595 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 +i2d_ASIdentifierChoice 4596 1_1_0d EXIST::FUNCTION:RFC3779 +ASN1_object_size 4597 1_1_0d EXIST::FUNCTION: +ASN1_SCTX_get_item 4598 1_1_0d EXIST::FUNCTION: +X509at_add1_attr_by_NID 4599 1_1_0d EXIST::FUNCTION: +PKCS12_pack_authsafes 4600 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_result_size 4601 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_delete_ext 4602 1_1_0d EXIST::FUNCTION:OCSP +EC_POINT_point2bn 4603 1_1_0d EXIST::FUNCTION:EC +X509_ALGOR_set_md 4604 1_1_0d EXIST::FUNCTION: +SM2_compute_share_key 4605 1_1_0d EXIST::FUNCTION:SM2 +EVP_aes_192_cbc 4606 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get_app_data 4607 1_1_0d EXIST::FUNCTION: +d2i_SM9_PUBKEY 4608 1_1_0d EXIST::FUNCTION:SM9 +DH_check_params 4609 1_1_0d EXIST::FUNCTION:DH +sms4_ecb_encrypt 4610 1_1_0d EXIST::FUNCTION:SMS4 +EVP_des_cfb1 4611 1_1_0d EXIST::FUNCTION:DES +RSA_clear_flags 4612 1_1_0d EXIST::FUNCTION:RSA +EVP_EncryptInit 4613 1_1_0d EXIST::FUNCTION: +EC_GROUP_is_type1curve 4614 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_print 4615 1_1_0d EXIST::FUNCTION: +DES_string_to_2keys 4616 1_1_0d EXIST::FUNCTION:DES +ASN1_i2d_bio 4617 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_doall 4618 1_1_0d EXIST::FUNCTION: +PROXY_CERT_INFO_EXTENSION_it 4619 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PROXY_CERT_INFO_EXTENSION_it 4619 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EXTENDED_KEY_USAGE_new 4620 1_1_0d EXIST::FUNCTION: +EVP_aes_256_cfb8 4621 1_1_0d EXIST::FUNCTION: +SKF_ChangePIN 4622 1_1_0d EXIST::FUNCTION:SKF +d2i_OCSP_ONEREQ 4623 1_1_0d EXIST::FUNCTION:OCSP +d2i_ECCCIPHERBLOB_bio 4624 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +EVP_aes_128_cfb1 4625 1_1_0d EXIST::FUNCTION: +CPK_PUBLIC_PARAMS_new 4626 1_1_0d EXIST::FUNCTION:CPK +EVP_DigestSignInit 4627 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_app_datasize 4628 1_1_0d EXIST::FUNCTION: +EVP_aes_192_wrap_pad 4629 1_1_0d EXIST::FUNCTION: +ASYNC_block_pause 4630 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_verify_recover 4631 1_1_0d EXIST::FUNCTION: +CRYPTO_strdup 4632 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_get 4633 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_write_lock 4634 1_1_0d EXIST::FUNCTION: +d2i_OCSP_CERTID 4635 1_1_0d EXIST::FUNCTION:OCSP +BN_exp 4636 1_1_0d EXIST::FUNCTION: +X509_get0_trust_objects 4637 1_1_0d EXIST::FUNCTION: +EC_KEY_set_method 4638 1_1_0d EXIST::FUNCTION:EC +PKCS7_ENVELOPE_free 4639 1_1_0d EXIST::FUNCTION: +ASN1_add_oid_module 4640 1_1_0d EXIST::FUNCTION: +EVP_aes_128_ocb 4641 1_1_0d EXIST::FUNCTION:OCB +SKF_PrintECCPublicKey 4642 1_1_0d EXIST::FUNCTION:SKF +DES_is_weak_key 4643 1_1_0d EXIST::FUNCTION:DES +OCSP_RESPONSE_new 4644 1_1_0d EXIST::FUNCTION:OCSP +BN_get0_nist_prime_256 4645 1_1_0d EXIST::FUNCTION: +X509_issuer_name_hash 4646 1_1_0d EXIST::FUNCTION: +EVP_PKEY_verify_recover 4647 1_1_0d EXIST::FUNCTION: +ESS_CERT_ID_free 4648 1_1_0d EXIST::FUNCTION:TS +DSA_meth_set_keygen 4649 1_1_0d EXIST::FUNCTION:DSA +UI_get_result_maxsize 4650 1_1_0d EXIST::FUNCTION:UI +CMAC_CTX_cleanup 4651 1_1_0d EXIST::FUNCTION:CMAC +RC2_cfb64_encrypt 4652 1_1_0d EXIST::FUNCTION:RC2 +EXTENDED_KEY_USAGE_free 4653 1_1_0d EXIST::FUNCTION: +MDC2_Init 4654 1_1_0d EXIST::FUNCTION:MDC2 +X509_STORE_CTX_get0_cert 4655 1_1_0d EXIST::FUNCTION: +ERR_print_errors 4656 1_1_0d EXIST::FUNCTION: +AES_cfb128_encrypt 4657 1_1_0d EXIST::FUNCTION: +BIO_meth_set_read 4658 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_exts 4659 1_1_0d EXIST::FUNCTION:TS +OPENSSL_sk_deep_copy 4660 1_1_0d EXIST::FUNCTION: +ENGINE_remove 4661 1_1_0d EXIST::FUNCTION:ENGINE +DH_meth_get_flags 4662 1_1_0d EXIST::FUNCTION:DH +AUTHORITY_INFO_ACCESS_new 4663 1_1_0d EXIST::FUNCTION: +d2i_DSAPrivateKey_fp 4664 1_1_0d EXIST::FUNCTION:DSA,STDIO +d2i_DSA_PUBKEY_bio 4665 1_1_0d EXIST::FUNCTION:DSA +X509_STORE_CTX_get_ex_data 4666 1_1_0d EXIST::FUNCTION: +PKCS7_RECIP_INFO_free 4667 1_1_0d EXIST::FUNCTION: +BN_mod_add 4668 1_1_0d EXIST::FUNCTION: +X509V3_get_value_bool 4669 1_1_0d EXIST::FUNCTION: +X509_CRL_check_suiteb 4670 1_1_0d EXIST::FUNCTION: +i2d_DISPLAYTEXT 4671 1_1_0d EXIST::FUNCTION: +Camellia_decrypt 4672 1_1_0d EXIST::FUNCTION:CAMELLIA +X509_CERT_AUX_new 4673 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_it 4674 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:ECIES +ECIES_CIPHERTEXT_VALUE_it 4674 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:ECIES +ECIES_encrypt 4675 1_1_0d EXIST::FUNCTION:ECIES +DH_meth_dup 4676 1_1_0d EXIST::FUNCTION:DH +BN_zero_ex 4677 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_new 4678 1_1_0d EXIST::FUNCTION: +EVP_DecryptUpdate 4679 1_1_0d EXIST::FUNCTION: +i2d_ECCCipher_bio 4680 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +HMAC_CTX_free 4681 1_1_0d EXIST::FUNCTION: +d2i_ISSUING_DIST_POINT 4682 1_1_0d EXIST::FUNCTION: +X509_NAME_cmp 4683 1_1_0d EXIST::FUNCTION: +BN_dec2bn 4684 1_1_0d EXIST::FUNCTION: +SM9_compute_share_key_A 4685 1_1_0d EXIST::FUNCTION:SM9 +EC_KEY_print_fp 4686 1_1_0d EXIST::FUNCTION:EC,STDIO +OCSP_BASICRESP_get_ext_by_critical 4687 1_1_0d EXIST::FUNCTION:OCSP +CMS_encrypt 4688 1_1_0d EXIST::FUNCTION:CMS +ASN1_BIT_STRING_set_bit 4689 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_free 4690 1_1_0d EXIST::FUNCTION:TS +CRYPTO_ccm128_encrypt_ccm64 4691 1_1_0d EXIST::FUNCTION: +SRP_Calc_B 4692 1_1_0d EXIST::FUNCTION:SRP +RSAPublicKey_dup 4693 1_1_0d EXIST::FUNCTION:RSA +RSA_meth_get_keygen 4694 1_1_0d EXIST::FUNCTION:RSA +PKCS12_init 4695 1_1_0d EXIST::FUNCTION: +SM9_generate_master_secret 4696 1_1_0d EXIST::FUNCTION:SM9 +BIO_next 4697 1_1_0d EXIST::FUNCTION: +SOF_GetSignMethod 4698 1_1_0d EXIST::FUNCTION: +ASN1_STRING_type_new 4699 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_get_ext_by_OBJ 4700 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_meth_set_verify 4701 1_1_0d EXIST::FUNCTION: +EVP_aes_128_cbc_hmac_sha1 4702 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_ciphers 4703 1_1_0d EXIST::FUNCTION:ENGINE +CPK_MASTER_SECRET_get_name 4704 1_1_0d EXIST::FUNCTION:CPK +ASN1_STRING_to_UTF8 4705 1_1_0d EXIST::FUNCTION: +X509_REVOKED_new 4706 1_1_0d EXIST::FUNCTION: +BIO_free_all 4707 1_1_0d EXIST::FUNCTION: +i2d_X509_REQ_INFO 4708 1_1_0d EXIST::FUNCTION: +BN_bn2hex 4709 1_1_0d EXIST::FUNCTION: +RC2_cbc_encrypt 4710 1_1_0d EXIST::FUNCTION:RC2 +SRP_VBASE_free 4711 1_1_0d EXIST::FUNCTION:SRP +PEM_read_ECPrivateKey 4712 1_1_0d EXIST::FUNCTION:EC,STDIO +OCSP_RESPBYTES_free 4713 1_1_0d EXIST::FUNCTION:OCSP +ENGINE_set_default_pkey_asn1_meths 4714 1_1_0d EXIST::FUNCTION:ENGINE +PKCS12_add_key 4715 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_get_octetstring 4716 1_1_0d EXIST::FUNCTION: +PKCS5_v2_scrypt_keyivgen 4717 1_1_0d EXIST::FUNCTION:SCRYPT +SMIME_read_ASN1 4718 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_free 4719 1_1_0d EXIST::FUNCTION: +RSA_set0_factors 4720 1_1_0d EXIST::FUNCTION:RSA +PKCS7_SIGNER_INFO_free 4721 1_1_0d EXIST::FUNCTION: +SM2_compute_message_digest 4722 1_1_0d EXIST::FUNCTION:SM2 +i2d_TS_TST_INFO_fp 4723 1_1_0d EXIST::FUNCTION:STDIO,TS +X509V3_EXT_add_conf 4724 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNER_INFO_set 4725 1_1_0d EXIST::FUNCTION: +BN_GFP2_add_bn 4726 1_1_0d EXIST::FUNCTION: +CAST_decrypt 4727 1_1_0d EXIST::FUNCTION:CAST +X509_policy_check 4728 1_1_0d EXIST::FUNCTION: +TLS_FEATURE_free 4729 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_new 4730 1_1_0d EXIST::FUNCTION: +X509V3_EXT_d2i 4731 1_1_0d EXIST::FUNCTION: +BIO_meth_get_destroy 4732 1_1_0d EXIST::FUNCTION: +i2d_PKCS12_fp 4733 1_1_0d EXIST::FUNCTION:STDIO +EC_POINT_method_of 4734 1_1_0d EXIST::FUNCTION:EC +d2i_RSA_PUBKEY_fp 4735 1_1_0d EXIST::FUNCTION:RSA,STDIO +PEM_read_bio_SM9_PUBKEY 4736 1_1_0d EXIST::FUNCTION:SM9 +CT_POLICY_EVAL_CTX_set1_issuer 4737 1_1_0d EXIST::FUNCTION:CT +X509_subject_name_hash 4738 1_1_0d EXIST::FUNCTION: +X509_REQ_verify 4739 1_1_0d EXIST::FUNCTION: +ERR_set_mark 4740 1_1_0d EXIST::FUNCTION: +i2d_EDIPARTYNAME 4741 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_set_ECCCIPHERBLOB 4742 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 +SCT_get0_signature 4743 1_1_0d EXIST::FUNCTION:CT +X509_NAME_ENTRY_it 4744 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_NAME_ENTRY_it 4744 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CONF_parse_list 4745 1_1_0d EXIST::FUNCTION: +PKCS7_verify 4746 1_1_0d EXIST::FUNCTION: +RSA_get_default_method 4747 1_1_0d EXIST::FUNCTION:RSA +BN_mod_mul 4748 1_1_0d EXIST::FUNCTION: +d2i_EC_PUBKEY 4749 1_1_0d EXIST::FUNCTION:EC +OCSP_RESPBYTES_it 4750 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPBYTES_it 4750 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +EVP_sm3 4751 1_1_0d EXIST::FUNCTION:SM3 +EC_KEY_print 4752 1_1_0d EXIST::FUNCTION:EC +EVP_CIPHER_meth_get_do_cipher 4753 1_1_0d EXIST::FUNCTION: +BIO_dgram_sctp_msg_waiting 4754 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +d2i_OCSP_REVOKEDINFO 4755 1_1_0d EXIST::FUNCTION:OCSP +d2i_ECDSA_SIG 4756 1_1_0d EXIST::FUNCTION:EC +SAF_GenRsaKeyPair 4757 1_1_0d EXIST::FUNCTION: +X509_CRL_sort 4758 1_1_0d EXIST::FUNCTION: +SKF_CloseApplication 4759 1_1_0d EXIST::FUNCTION:SKF +OCSP_REQUEST_get_ext_by_critical 4760 1_1_0d EXIST::FUNCTION:OCSP +ASN1_PRINTABLESTRING_new 4761 1_1_0d EXIST::FUNCTION: +AES_encrypt 4762 1_1_0d EXIST::FUNCTION: +SHA224_Update 4763 1_1_0d EXIST::FUNCTION: +RSA_PSS_PARAMS_it 4764 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSA_PSS_PARAMS_it 4764 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +TS_ACCURACY_dup 4765 1_1_0d EXIST::FUNCTION:TS +SAF_Base64_EncodeUpdate 4766 1_1_0d EXIST::FUNCTION: +RSA_meth_set_priv_enc 4767 1_1_0d EXIST::FUNCTION:RSA +X509_REQ_get0_pubkey 4768 1_1_0d EXIST::FUNCTION: +AES_ecb_encrypt 4769 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_nid 4770 1_1_0d EXIST::FUNCTION: +ESS_SIGNING_CERT_free 4771 1_1_0d EXIST::FUNCTION:TS +PEM_write_DSAparams 4772 1_1_0d EXIST::FUNCTION:DSA,STDIO +DSO_up_ref 4773 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_set_str_flags 4774 1_1_0d EXIST::FUNCTION: +X509_get_ext_d2i 4775 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ext_by_critical 4776 1_1_0d EXIST::FUNCTION:TS +EC_GROUP_get_seed_len 4777 1_1_0d EXIST::FUNCTION:EC +d2i_ECIESParameters 4778 1_1_0d EXIST::FUNCTION:ECIES +ASN1_ENUMERATED_free 4779 1_1_0d EXIST::FUNCTION: +BB1IBE_setup 4780 1_1_0d EXIST::FUNCTION:BB1IBE +X509_NAME_new 4781 1_1_0d EXIST::FUNCTION: +TS_REQ_set_cert_req 4782 1_1_0d EXIST::FUNCTION:TS +EVP_CIPHER_CTX_nid 4783 1_1_0d EXIST::FUNCTION: +SDF_GetPrivateKeyAccessRight 4784 1_1_0d EXIST::FUNCTION: +CONF_set_nconf 4785 1_1_0d EXIST::FUNCTION: +RSA_padding_check_PKCS1_type_2 4786 1_1_0d EXIST::FUNCTION:RSA +X509_REQ_add1_attr 4787 1_1_0d EXIST::FUNCTION: +RSA_new_from_RSAPRIVATEKEYBLOB 4788 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +CRYPTO_ocb128_tag 4789 1_1_0d EXIST::FUNCTION:OCB +DSA_sign_setup 4790 1_1_0d EXIST::FUNCTION:DSA +DIST_POINT_it 4791 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DIST_POINT_it 4791 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_PKCS12_fp 4792 1_1_0d EXIST::FUNCTION:STDIO +RC2_encrypt 4793 1_1_0d EXIST::FUNCTION:RC2 +d2i_ECPrivateKey 4794 1_1_0d EXIST::FUNCTION:EC +SAF_GetEccPublicKey 4795 1_1_0d EXIST::FUNCTION: +d2i_X509_SIG 4796 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_add1_header 4797 1_1_0d EXIST::FUNCTION:OCSP +TS_REQ_set_msg_imprint 4798 1_1_0d EXIST::FUNCTION:TS +EC_get_builtin_curves 4799 1_1_0d EXIST::FUNCTION:EC +BFIBE_setup 4800 1_1_0d EXIST::FUNCTION:BFIBE +BN_nist_mod_192 4801 1_1_0d EXIST::FUNCTION: +BFCiphertextBlock_new 4802 1_1_0d EXIST::FUNCTION:BFIBE +PKCS7_sign_add_signer 4803 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_check_issued 4804 1_1_0d EXIST::FUNCTION: +PEM_read_PAILLIER_PUBKEY 4805 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +PKCS7_get_attribute 4806 1_1_0d EXIST::FUNCTION: +EVP_rc5_32_12_16_ofb 4807 1_1_0d EXIST::FUNCTION:RC5 +X509_CRL_get0_lastUpdate 4808 1_1_0d EXIST::FUNCTION: +RSA_check_key 4809 1_1_0d EXIST::FUNCTION:RSA +EC_POINT_is_on_curve 4810 1_1_0d EXIST::FUNCTION:EC +X509_REVOKED_add_ext 4811 1_1_0d EXIST::FUNCTION: +OCSP_CRLID_new 4812 1_1_0d EXIST::FUNCTION:OCSP +ECIES_CIPHERTEXT_VALUE_get_ECCCIPHERBLOB 4813 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF +OCSP_cert_to_id 4814 1_1_0d EXIST::FUNCTION:OCSP +X509_SIG_new 4815 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_clock_precision_digits 4816 1_1_0d EXIST::FUNCTION:TS +SOF_GetTimeStampInfo 4817 1_1_0d EXIST::FUNCTION: +ASN1_str2mask 4818 1_1_0d EXIST::FUNCTION: +EVP_aes_256_xts 4819 1_1_0d EXIST::FUNCTION: +POLICY_MAPPING_free 4820 1_1_0d EXIST::FUNCTION: +i2d_SM9PrivateKey 4821 1_1_0d EXIST::FUNCTION:SM9 +OPENSSL_uni2utf8 4822 1_1_0d EXIST::FUNCTION: +X509_TRUST_get0 4823 1_1_0d EXIST::FUNCTION: +BN_get0_nist_prime_384 4824 1_1_0d EXIST::FUNCTION: +d2i_EC_PUBKEY_fp 4825 1_1_0d EXIST::FUNCTION:EC,STDIO +EC_KEY_get_ex_data 4826 1_1_0d EXIST::FUNCTION:EC +OCSP_request_is_signed 4827 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_get1_SM9_MASTER 4828 1_1_0d EXIST::FUNCTION:SM9 +sms4_ctr128_encrypt 4829 1_1_0d EXIST::FUNCTION:SMS4 +d2i_X509_ALGORS 4830 1_1_0d EXIST::FUNCTION: +i2d_RSA_PSS_PARAMS 4831 1_1_0d EXIST::FUNCTION:RSA diff --git a/util/libssl.num b/util/libssl.num index 3e1dbbeb..2189e746 100644 --- a/util/libssl.num +++ b/util/libssl.num @@ -1,411 +1,411 @@ -SSL_CONF_cmd_argv 1 1_1_0d EXIST::FUNCTION: -SSL_set1_param 2 1_1_0d EXIST::FUNCTION: -SSL_get_psk_identity 3 1_1_0d EXIST::FUNCTION:PSK -SSL_dane_enable 4 1_1_0d EXIST::FUNCTION: -SSL_ctrl 5 1_1_0d EXIST::FUNCTION: -SSL_SESSION_new 6 1_1_0d EXIST::FUNCTION: -SSL_set_rfd 7 1_1_0d EXIST::FUNCTION:SOCK -SSL_CTX_use_RSAPrivateKey_ASN1 8 1_1_0d EXIST::FUNCTION:RSA -SSL_CONF_cmd 9 1_1_0d EXIST::FUNCTION: -SSL_CTX_load_verify_locations 10 1_1_0d EXIST::FUNCTION: -BIO_ssl_shutdown 11 1_1_0d EXIST::FUNCTION: -SSL_get_current_compression 12 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_certificate 13 1_1_0d EXIST::FUNCTION: -SSL_select_next_proto 14 1_1_0d EXIST::FUNCTION: -SSL_do_handshake 15 1_1_0d EXIST::FUNCTION: -SSL_set_not_resumable_session_callback 16 1_1_0d EXIST::FUNCTION: -SSL_set_SSL_CTX 17 1_1_0d EXIST::FUNCTION: -SSL_renegotiate_abbreviated 18 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cookie_generate_cb 19 1_1_0d EXIST::FUNCTION: -SSL_get_cipher_list 20 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_ctlog_list_file 21 1_1_0d EXIST::FUNCTION:CT -DTLS_server_method 22 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_username 23 1_1_0d EXIST::FUNCTION:SRP -SSL_SESSION_set_ex_data 24 1_1_0d EXIST::FUNCTION: -SSL_get0_dane 25 1_1_0d EXIST::FUNCTION: -SSL_has_pending 26 1_1_0d EXIST::FUNCTION: -SSL_renegotiate 27 1_1_0d EXIST::FUNCTION: -SSL_CTX_add_server_custom_ext 28 1_1_0d EXIST::FUNCTION: -SSLv3_client_method 29 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD -SSL_clear_options 30 1_1_0d EXIST::FUNCTION: -TLS_client_method 31 1_1_0d EXIST::FUNCTION: -SSL_CTX_set1_param 32 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_client_CA_list 33 1_1_0d EXIST::FUNCTION: -SSL_SESSION_has_ticket 34 1_1_0d EXIST::FUNCTION: -DTLSv1_server_method 35 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD -SSL_CTX_set_default_verify_paths 36 1_1_0d EXIST::FUNCTION: -SSL_connect 37 1_1_0d EXIST::FUNCTION: -SSL_get_finished 38 1_1_0d EXIST::FUNCTION: -GMTLS_client_method 39 1_1_0d EXIST::FUNCTION:GMTLS -SSL_get_rfd 40 1_1_0d EXIST::FUNCTION: -SSL_free 41 1_1_0d EXIST::FUNCTION: -SSL_is_dtls 42 1_1_0d EXIST::FUNCTION: -DTLSv1_client_method 43 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD -SSL_CTX_remove_session 44 1_1_0d EXIST::FUNCTION: -SSL_set_cipher_list 45 1_1_0d EXIST::FUNCTION: -SSL_get_shared_sigalgs 46 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_ciphers 47 1_1_0d EXIST::FUNCTION: -SSL_get_security_callback 48 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_session_id_context 49 1_1_0d EXIST::FUNCTION: -SSL_get_srtp_profiles 50 1_1_0d EXIST::FUNCTION:SRTP -SSL_SESSION_set1_id 51 1_1_0d EXIST::FUNCTION: -SSL_extension_supported 52 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_description 53 1_1_0d EXIST::FUNCTION: -SSL_dup 54 1_1_0d EXIST::FUNCTION: -SSL_set_hostflags 55 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_set_get_cb 56 1_1_0d EXIST::FUNCTION: -SSL_CTX_set0_security_ex_data 57 1_1_0d EXIST::FUNCTION: -SSL_get_peer_certificate 58 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cookie_verify_cb 59 1_1_0d EXIST::FUNCTION: -SSL_add1_host 60 1_1_0d EXIST::FUNCTION: -SSL_set_client_CA_list 61 1_1_0d EXIST::FUNCTION: -TLS_method 62 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get0_ticket 63 1_1_0d EXIST::FUNCTION: -SSL_get_server_random 64 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_ssl_method 65 1_1_0d EXIST::FUNCTION: -SSL_set_ssl_method 66 1_1_0d EXIST::FUNCTION: -TLSv1_method 67 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD -SSL_get0_param 68 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_client_pwd_callback 69 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_use_certificate_file 70 1_1_0d EXIST::FUNCTION: -TLSv1_2_server_method 71 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD -BIO_new_buffer_ssl_connect 72 1_1_0d EXIST::FUNCTION: -SSL_get0_peername 73 1_1_0d EXIST::FUNCTION: -SSL_CTX_up_ref 74 1_1_0d EXIST::FUNCTION: -SSL_alert_desc_string_long 75 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_set_remove_cb 76 1_1_0d EXIST::FUNCTION: -TLSv1_2_client_method 77 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD -SSL_load_client_CA_file 78 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_verify_callback 79 1_1_0d EXIST::FUNCTION: -SRP_Calc_A_param 80 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_set_quiet_shutdown 81 1_1_0d EXIST::FUNCTION: -SSL_trace 82 1_1_0d EXIST::FUNCTION:SSL_TRACE -SSL_get_certificate 83 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_set_new_cb 84 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_master_key 85 1_1_0d EXIST::FUNCTION: -SSL_use_RSAPrivateKey 86 1_1_0d EXIST::FUNCTION:RSA -GMTLS_server_method 87 1_1_0d EXIST::FUNCTION:GMTLS -SSL_CTX_set_ex_data 88 1_1_0d EXIST::FUNCTION: -SSL_set_wfd 89 1_1_0d EXIST::FUNCTION:SOCK -SSL_check_chain 90 1_1_0d EXIST::FUNCTION: -SSL_set_tmp_dh_callback 91 1_1_0d EXIST::FUNCTION:DH -SSL_set_options 92 1_1_0d EXIST::FUNCTION: -SSL_set_security_callback 93 1_1_0d EXIST::FUNCTION: -SSL_CTX_SRP_CTX_init 94 1_1_0d EXIST::FUNCTION:SRP -SSL_waiting_for_async 95 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_is_aead 96 1_1_0d EXIST::FUNCTION: -SSL_get_options 97 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_verify_param_callback 98 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_set_default_verify_dir 99 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_timeout 100 1_1_0d EXIST::FUNCTION: -SSL_rstate_string_long 101 1_1_0d EXIST::FUNCTION: -BIO_f_ssl 102 1_1_0d EXIST::FUNCTION: -OPENSSL_init_ssl 103 1_1_0d EXIST::FUNCTION: -SSL_CTX_new 104 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_kx_nid 105 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_auth_nid 106 1_1_0d EXIST::FUNCTION: -SSL_set_session_ticket_ext 107 1_1_0d EXIST::FUNCTION: -SSL_callback_ctrl 108 1_1_0d EXIST::FUNCTION: -SSL_state_string_long 109 1_1_0d EXIST::FUNCTION: -SSL_add_dir_cert_subjects_to_stack 110 1_1_0d EXIST::FUNCTION: -DTLS_method 111 1_1_0d EXIST::FUNCTION: -SSL_get0_dane_tlsa 112 1_1_0d EXIST::FUNCTION: -SSL_get_shutdown 113 1_1_0d EXIST::FUNCTION: -SSL_pending 114 1_1_0d EXIST::FUNCTION: -SSL_CTX_ct_is_enabled 115 1_1_0d EXIST::FUNCTION:CT -SSL_client_version 116 1_1_0d EXIST::FUNCTION: -SSL_CTX_add_session 117 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_client_CA_list 118 1_1_0d EXIST::FUNCTION: -TLS_server_method 119 1_1_0d EXIST::FUNCTION: -PEM_read_SSL_SESSION 120 1_1_0d EXIST::FUNCTION:STDIO -SSL_SESSION_print_keylog 121 1_1_0d EXIST::FUNCTION: -SSL_session_reused 122 1_1_0d EXIST::FUNCTION: -SSL_get_SSL_CTX 123 1_1_0d EXIST::FUNCTION: -SSL_CTX_add_client_CA 124 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_client_cert_engine 125 1_1_0d EXIST::FUNCTION:ENGINE -SSL_use_certificate_ASN1 126 1_1_0d EXIST::FUNCTION: -SSLv3_server_method 127 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD -SSL_config 128 1_1_0d EXIST::FUNCTION: -SSL_set0_security_ex_data 129 1_1_0d EXIST::FUNCTION: -SSL_set_fd 130 1_1_0d EXIST::FUNCTION:SOCK -SSL_use_PrivateKey_file 131 1_1_0d EXIST::FUNCTION: -SSL_use_PrivateKey 132 1_1_0d EXIST::FUNCTION: -SSL_CTX_get0_ctlog_store 133 1_1_0d EXIST::FUNCTION:CT -SSL_CONF_CTX_new 134 1_1_0d EXIST::FUNCTION: -SSL_get_ex_data_X509_STORE_CTX_idx 135 1_1_0d EXIST::FUNCTION: -SSL_new 136 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_quiet_shutdown 137 1_1_0d EXIST::FUNCTION: -SSL_get0_next_proto_negotiated 138 1_1_0d EXIST::FUNCTION:NEXTPROTONEG -SSL_CTX_use_PrivateKey 139 1_1_0d EXIST::FUNCTION: -GMTLS_method 140 1_1_0d EXIST::FUNCTION:GMTLS -SSL_get_wfd 141 1_1_0d EXIST::FUNCTION: -TLSv1_client_method 142 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD -SSL_get_sigalgs 143 1_1_0d EXIST::FUNCTION: -PEM_write_bio_SSL_SESSION 144 1_1_0d EXIST::FUNCTION: -SSL_add_client_CA 145 1_1_0d EXIST::FUNCTION: -SSL_CTX_ctrl 146 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_verify_mode 147 1_1_0d EXIST::FUNCTION: -SSL_get_psk_identity_hint 148 1_1_0d EXIST::FUNCTION:PSK -SSL_CTX_set_cert_store 149 1_1_0d EXIST::FUNCTION: -SSL_get_default_timeout 150 1_1_0d EXIST::FUNCTION: -SSL_get_peer_cert_chain 151 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_generate_session_id 152 1_1_0d EXIST::FUNCTION: -SSL_get_state 153 1_1_0d EXIST::FUNCTION: -TLSv1_2_method 154 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD -SSL_CTX_get0_security_ex_data 155 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_ctlog_list_file 156 1_1_0d EXIST::FUNCTION:CT -BIO_new_ssl 157 1_1_0d EXIST::FUNCTION: -SSL_SESSION_print 158 1_1_0d EXIST::FUNCTION: -SSL_set_connect_state 159 1_1_0d EXIST::FUNCTION: -SSL_get_all_async_fds 160 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_compress_id 161 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_serverinfo 162 1_1_0d EXIST::FUNCTION: -SSL_set_default_passwd_cb 163 1_1_0d EXIST::FUNCTION: -SSL_use_RSAPrivateKey_file 164 1_1_0d EXIST::FUNCTION:RSA -SSL_CTX_set_security_level 165 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_mtype_set 166 1_1_0d EXIST::FUNCTION: -SSL_COMP_set0_compression_methods 167 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_client_cert_cb 168 1_1_0d EXIST::FUNCTION: -SSL_renegotiate_pending 169 1_1_0d EXIST::FUNCTION: -SSL_get_verify_callback 170 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_security_callback 171 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_passwd_cb_userdata 172 1_1_0d EXIST::FUNCTION: -SSL_get_shared_ciphers 173 1_1_0d EXIST::FUNCTION: -d2i_SSL_SESSION 174 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_serverinfo_file 175 1_1_0d EXIST::FUNCTION: -PEM_write_SSL_SESSION 176 1_1_0d EXIST::FUNCTION:STDIO -SSL_get_verify_mode 177 1_1_0d EXIST::FUNCTION: -DTLSv1_method 178 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD -SSL_want 179 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_username_callback 180 1_1_0d EXIST::FUNCTION:SRP -SSL_in_before 181 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_passwd_cb 182 1_1_0d EXIST::FUNCTION: -SSL_get_changed_async_fds 183 1_1_0d EXIST::FUNCTION: -SSL_get1_session 184 1_1_0d EXIST::FUNCTION: -SSL_get_fd 185 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_info_callback 186 1_1_0d EXIST::FUNCTION: -SSL_SESSION_set_time 187 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_PrivateKey_file 188 1_1_0d EXIST::FUNCTION: -SSL_CTX_set0_ctlog_store 189 1_1_0d EXIST::FUNCTION:CT -SSL_set_srp_server_param_pw 190 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_clear_options 191 1_1_0d EXIST::FUNCTION: -SSL_CTX_flush_sessions 192 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_psk_identity_hint 193 1_1_0d EXIST::FUNCTION:PSK -SSL_CTX_get0_certificate 194 1_1_0d EXIST::FUNCTION: -SSL_get_servername_type 195 1_1_0d EXIST::FUNCTION: -SSL_dane_clear_flags 196 1_1_0d EXIST::FUNCTION: -SSL_dane_tlsa_add 197 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_psk_server_callback 198 1_1_0d EXIST::FUNCTION:PSK -SSL_alert_type_string 199 1_1_0d EXIST::FUNCTION: -SSL_set_msg_callback 200 1_1_0d EXIST::FUNCTION: -SSL_get_ciphers 201 1_1_0d EXIST::FUNCTION: -SSL_alert_desc_string 202 1_1_0d EXIST::FUNCTION: -SSL_set_read_ahead 203 1_1_0d EXIST::FUNCTION: -SSL_use_psk_identity_hint 204 1_1_0d EXIST::FUNCTION:PSK -SSL_CTX_config 205 1_1_0d EXIST::FUNCTION: -SSL_COMP_get_name 206 1_1_0d EXIST::FUNCTION: -SSL_set_info_callback 207 1_1_0d EXIST::FUNCTION: -SSL_get_ssl_method 208 1_1_0d EXIST::FUNCTION: -TLSv1_1_server_method 209 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD -SSL_CTX_use_RSAPrivateKey 210 1_1_0d EXIST::FUNCTION:RSA -SSL_set_accept_state 211 1_1_0d EXIST::FUNCTION: -SSL_get_version 212 1_1_0d EXIST::FUNCTION: -SSL_set_cert_cb 213 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_next_protos_advertised_cb 214 1_1_0d EXIST::FUNCTION:NEXTPROTONEG -SSL_set_session_ticket_ext_cb 215 1_1_0d EXIST::FUNCTION: -SSL_set_shutdown 216 1_1_0d EXIST::FUNCTION: -SSL_CTX_enable_ct 217 1_1_0d EXIST::FUNCTION:CT -SSL_set_verify_depth 218 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_digest_nid 219 1_1_0d EXIST::FUNCTION: -SSL_is_init_finished 220 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_options 221 1_1_0d EXIST::FUNCTION: -DTLSv1_2_client_method 222 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD -TLSv1_1_method 223 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD -SSL_get_peer_finished 224 1_1_0d EXIST::FUNCTION: -SSL_dup_CA_list 225 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_verify_depth 226 1_1_0d EXIST::FUNCTION: -SSL_COMP_add_compression_method 227 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_version 228 1_1_0d EXIST::FUNCTION: -SSL_SESSION_set1_id_context 229 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_clear_flags 230 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_next_proto_select_cb 231 1_1_0d EXIST::FUNCTION:NEXTPROTONEG -SSL_set_default_read_buffer_len 232 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_timeout 233 1_1_0d EXIST::FUNCTION: -SSL_dane_set_flags 234 1_1_0d EXIST::FUNCTION: -SSL_test_functions 235 1_1_0d EXIST::FUNCTION:UNIT_TEST -SSL_srp_server_param_with_username 236 1_1_0d EXIST::FUNCTION:SRP -SSL_get_quiet_shutdown 237 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_ex_data 238 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_name 239 1_1_0d EXIST::FUNCTION: -SSL_get0_dane_authority 240 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_password 241 1_1_0d EXIST::FUNCTION:SRP -SSL_CONF_CTX_finish 242 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_certificate_chain_file 243 1_1_0d EXIST::FUNCTION: -i2d_SSL_SESSION 244 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_purpose 245 1_1_0d EXIST::FUNCTION: -DTLSv1_2_server_method 246 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD -SSL_CONF_CTX_set1_prefix 247 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_standard_name 248 1_1_0d EXIST::FUNCTION:SSL_TRACE -SSL_get_current_expansion 249 1_1_0d EXIST::FUNCTION: -SSL_SESSION_print_fp 250 1_1_0d EXIST::FUNCTION:STDIO -SSL_get_verify_result 251 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_set_flags 252 1_1_0d EXIST::FUNCTION: -SSL_get_security_level 253 1_1_0d EXIST::FUNCTION: -SSL_set_purpose 254 1_1_0d EXIST::FUNCTION: -SSL_get0_alpn_selected 255 1_1_0d EXIST::FUNCTION: -SSL_COMP_get_id 256 1_1_0d EXIST::FUNCTION: -SSL_get_privatekey 257 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cipher_list 258 1_1_0d EXIST::FUNCTION: -SSL_add_file_cert_subjects_to_stack 259 1_1_0d EXIST::FUNCTION: -SSL_rstate_string 260 1_1_0d EXIST::FUNCTION: -SSL_set_quiet_shutdown 261 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_ct_validation_callback 262 1_1_0d EXIST::FUNCTION:CT -SSL_get0_security_ex_data 263 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_id 264 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_ex_data 265 1_1_0d EXIST::FUNCTION: -SSL_get0_peer_scts 266 1_1_0d EXIST::FUNCTION:CT -SSL_set_bio 267 1_1_0d EXIST::FUNCTION: -SSL_CTX_callback_ctrl 268 1_1_0d EXIST::FUNCTION: -SSL_COMP_get0_name 269 1_1_0d EXIST::FUNCTION: -SSL_clear 270 1_1_0d EXIST::FUNCTION: -SSL_set_psk_server_callback 271 1_1_0d EXIST::FUNCTION:PSK -BIO_new_ssl_connect 272 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_options 273 1_1_0d EXIST::FUNCTION: -ERR_load_SSL_strings 274 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_clear_flags 275 1_1_0d EXIST::FUNCTION: -SSL_get0_verified_chain 276 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_psk_client_callback 277 1_1_0d EXIST::FUNCTION:PSK -SSL_CTX_sessions 278 1_1_0d EXIST::FUNCTION: -TLSv1_1_client_method 279 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD -SSL_state_string 280 1_1_0d EXIST::FUNCTION: -SSL_get_verify_depth 281 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_client_cert_cb 282 1_1_0d EXIST::FUNCTION: -SSL_get_srp_N 283 1_1_0d EXIST::FUNCTION:SRP -SSL_use_RSAPrivateKey_ASN1 284 1_1_0d EXIST::FUNCTION:RSA -SSL_set_trust 285 1_1_0d EXIST::FUNCTION: -SSL_CONF_cmd_value_type 286 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_trust 287 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_msg_callback 288 1_1_0d EXIST::FUNCTION: -SSL_export_keying_material 289 1_1_0d EXIST::FUNCTION: -SSL_get_session 290 1_1_0d EXIST::FUNCTION: -SSL_get_default_passwd_cb_userdata 291 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_tlsext_use_srtp 292 1_1_0d EXIST::FUNCTION:SRTP -SSL_CTX_get_cert_store 293 1_1_0d EXIST::FUNCTION: -SSL_get_ex_data 294 1_1_0d EXIST::FUNCTION: -SSL_CTX_SRP_CTX_free 295 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_get_default_passwd_cb_userdata 296 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_get_remove_cb 297 1_1_0d EXIST::FUNCTION: -SSLv3_method 298 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD -SSL_set_session 299 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get0_id_context 300 1_1_0d EXIST::FUNCTION: -SSL_shutdown 301 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_time 302 1_1_0d EXIST::FUNCTION: -TLSv1_server_method 303 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD -SSL_set_debug 304 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -SSL_write 305 1_1_0d EXIST::FUNCTION: -SSL_is_gmtls 306 1_1_0d EXIST::FUNCTION: -SSL_set_tlsext_use_srtp 307 1_1_0d EXIST::FUNCTION:SRTP -SSL_set_ct_validation_callback 308 1_1_0d EXIST::FUNCTION:CT -SSL_get_error 309 1_1_0d EXIST::FUNCTION: -SSL_get_selected_srtp_profile 310 1_1_0d EXIST::FUNCTION:SRTP -SSL_CTX_free 311 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_certificate_ASN1 312 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_verify_file 313 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_verify_depth 314 1_1_0d EXIST::FUNCTION: -SSL_set1_host 315 1_1_0d EXIST::FUNCTION: -SSL_enable_ct 316 1_1_0d EXIST::FUNCTION:CT -SSL_ct_is_enabled 317 1_1_0d EXIST::FUNCTION:CT -SSL_CTX_use_PrivateKey_ASN1 318 1_1_0d EXIST::FUNCTION: -SSL_version 319 1_1_0d EXIST::FUNCTION: -SSL_get_client_ciphers 320 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_timeout 321 1_1_0d EXIST::FUNCTION: -SSL_add_ssl_module 322 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_tmp_dh_callback 323 1_1_0d EXIST::FUNCTION:DH -SSL_CTX_set_alpn_protos 324 1_1_0d EXIST::FUNCTION: -SSL_is_server 325 1_1_0d EXIST::FUNCTION: -SSL_CTX_get0_privatekey 326 1_1_0d EXIST::FUNCTION: -SSL_SESSION_up_ref 327 1_1_0d EXIST::FUNCTION: -SSL_get_read_ahead 328 1_1_0d EXIST::FUNCTION: -SSL_CTX_check_private_key 329 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_strength 330 1_1_0d EXIST::FUNCTION:SRP -SSL_SESSION_get0_cipher 331 1_1_0d EXIST::FUNCTION: -SSL_get_client_random 332 1_1_0d EXIST::FUNCTION: -SSL_copy_session_id 333 1_1_0d EXIST::FUNCTION: -PEM_read_bio_SSL_SESSION 334 1_1_0d EXIST::FUNCTION: -SSL_set_alpn_protos 335 1_1_0d EXIST::FUNCTION: -SSL_COMP_get_compression_methods 336 1_1_0d EXIST::FUNCTION: -SSL_set_security_level 337 1_1_0d EXIST::FUNCTION: -DTLSv1_listen 338 1_1_0d EXIST::FUNCTION:SOCK -SSL_SESSION_get_protocol_version 339 1_1_0d EXIST::FUNCTION: -BIO_ssl_copy_session_id 340 1_1_0d EXIST::FUNCTION: -SSL_peek 341 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_bits 342 1_1_0d EXIST::FUNCTION: -SSL_use_certificate 343 1_1_0d EXIST::FUNCTION: -DTLSv1_2_method 344 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD -SSL_use_certificate_file 345 1_1_0d EXIST::FUNCTION: -SSL_get_rbio 346 1_1_0d EXIST::FUNCTION: -SSL_SRP_CTX_free 347 1_1_0d EXIST::FUNCTION:SRP -SSL_get_wbio 348 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_read_buffer_len 349 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_alpn_select_cb 350 1_1_0d EXIST::FUNCTION: -SSL_SESSION_set_timeout 351 1_1_0d EXIST::FUNCTION: -SSL_use_certificate_chain_file 352 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_set_ssl 353 1_1_0d EXIST::FUNCTION: -SSL_set_ex_data 354 1_1_0d EXIST::FUNCTION: -SSL_get_current_cipher 355 1_1_0d EXIST::FUNCTION: -SSL_set_session_secret_cb 356 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_verify 357 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_get_new_cb 358 1_1_0d EXIST::FUNCTION: -SSL_up_ref 359 1_1_0d EXIST::FUNCTION: -SSL_set_default_passwd_cb_userdata 360 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_set_ssl_ctx 361 1_1_0d EXIST::FUNCTION: -SSL_get_srp_g 362 1_1_0d EXIST::FUNCTION:SRP -SSL_read 363 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_id 364 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_set_flags 365 1_1_0d EXIST::FUNCTION: -SSL_set_generate_session_id 366 1_1_0d EXIST::FUNCTION: -SSL_get_default_passwd_cb 367 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_security_level 368 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_cb_arg 369 1_1_0d EXIST::FUNCTION:SRP -SSL_SRP_CTX_init 370 1_1_0d EXIST::FUNCTION:SRP -SSL_set_psk_client_callback 371 1_1_0d EXIST::FUNCTION:PSK -SSL_CTX_sess_get_get_cb 372 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_security_callback 373 1_1_0d EXIST::FUNCTION: -SSL_CTX_has_client_custom_ext 374 1_1_0d EXIST::FUNCTION: -SSL_get_servername 375 1_1_0d EXIST::FUNCTION: -SSL_set_srp_server_param 376 1_1_0d EXIST::FUNCTION:SRP -SSL_get1_supported_ciphers 377 1_1_0d EXIST::FUNCTION: -SSL_accept 378 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_enable 379 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_ssl_version 380 1_1_0d EXIST::FUNCTION: -SSL_set0_wbio 381 1_1_0d EXIST::FUNCTION: -SSL_set0_rbio 382 1_1_0d EXIST::FUNCTION: -SSL_get_srp_userinfo 383 1_1_0d EXIST::FUNCTION:SRP -SSL_certs_clear 384 1_1_0d EXIST::FUNCTION: -SSL_get_srp_username 385 1_1_0d EXIST::FUNCTION:SRP -SSL_get_client_CA_list 386 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_info_callback 387 1_1_0d EXIST::FUNCTION: -SSL_set_session_id_context 388 1_1_0d EXIST::FUNCTION: -SSL_get_info_callback 389 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get0_hostname 390 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get0_peer 391 1_1_0d EXIST::FUNCTION: -SSL_CTX_add_client_custom_ext 392 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cert_cb 393 1_1_0d EXIST::FUNCTION: -DTLS_client_method 394 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cert_verify_callback 395 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_free 396 1_1_0d EXIST::FUNCTION: -SSL_set_verify 397 1_1_0d EXIST::FUNCTION: -SSL_in_init 398 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_find 399 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_cipher_nid 400 1_1_0d EXIST::FUNCTION: -SSL_CTX_get0_param 401 1_1_0d EXIST::FUNCTION: -SSL_check_private_key 402 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_default_passwd_cb 403 1_1_0d EXIST::FUNCTION: -SSL_has_matching_session_id 404 1_1_0d EXIST::FUNCTION: -SSL_set_verify_result 405 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_not_resumable_session_callback 406 1_1_0d EXIST::FUNCTION: -SSL_alert_type_string_long 407 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_ticket_lifetime_hint 408 1_1_0d EXIST::FUNCTION: -SSL_use_PrivateKey_ASN1 409 1_1_0d EXIST::FUNCTION: -SSL_SESSION_free 410 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_RSAPrivateKey_file 411 1_1_0d EXIST::FUNCTION:RSA +SSL_SESSION_get_id 1 1_1_0d EXIST::FUNCTION: +SSL_certs_clear 2 1_1_0d EXIST::FUNCTION: +SSL_set_security_level 3 1_1_0d EXIST::FUNCTION: +SSL_do_handshake 4 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_standard_name 5 1_1_0d EXIST::FUNCTION:SSL_TRACE +SSL_CTX_set_default_ctlog_list_file 6 1_1_0d EXIST::FUNCTION:CT +SSL_COMP_get_id 7 1_1_0d EXIST::FUNCTION: +SSL_set_verify_result 8 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_description 9 1_1_0d EXIST::FUNCTION: +SSL_get_default_passwd_cb_userdata 10 1_1_0d EXIST::FUNCTION: +SSL_config 11 1_1_0d EXIST::FUNCTION: +SSL_CTX_SRP_CTX_free 12 1_1_0d EXIST::FUNCTION:SRP +DTLSv1_server_method 13 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD +SSL_CTX_sess_get_new_cb 14 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_get_remove_cb 15 1_1_0d EXIST::FUNCTION: +SSL_shutdown 16 1_1_0d EXIST::FUNCTION: +SSL_SESSION_print_fp 17 1_1_0d EXIST::FUNCTION:STDIO +SSL_SESSION_has_ticket 18 1_1_0d EXIST::FUNCTION: +SSL_rstate_string 19 1_1_0d EXIST::FUNCTION: +SSL_is_dtls 20 1_1_0d EXIST::FUNCTION: +SSL_client_version 21 1_1_0d EXIST::FUNCTION: +SSL_SESSION_print 22 1_1_0d EXIST::FUNCTION: +SSL_get_SSL_CTX 23 1_1_0d EXIST::FUNCTION: +SSL_get_peer_certificate 24 1_1_0d EXIST::FUNCTION: +TLSv1_1_client_method 25 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD +SSL_CTX_add_client_CA 26 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_client_cert_engine 27 1_1_0d EXIST::FUNCTION:ENGINE +SSL_CTX_get_info_callback 28 1_1_0d EXIST::FUNCTION: +SSL_get_wbio 29 1_1_0d EXIST::FUNCTION: +SSL_write 30 1_1_0d EXIST::FUNCTION: +GMTLS_server_method 31 1_1_0d EXIST::FUNCTION:GMTLS +SSL_CTX_set_not_resumable_session_callback 32 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_timeout 33 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_PrivateKey_file 34 1_1_0d EXIST::FUNCTION: +SSL_CTX_ctrl 35 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_next_protos_advertised_cb 36 1_1_0d EXIST::FUNCTION:NEXTPROTONEG +SSL_SESSION_get_time 37 1_1_0d EXIST::FUNCTION: +SSL_select_next_proto 38 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_strength 39 1_1_0d EXIST::FUNCTION:SRP +SSL_SESSION_get0_hostname 40 1_1_0d EXIST::FUNCTION: +SSL_set0_rbio 41 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_ticket_lifetime_hint 42 1_1_0d EXIST::FUNCTION: +SSL_get_psk_identity 43 1_1_0d EXIST::FUNCTION:PSK +DTLSv1_listen 44 1_1_0d EXIST::FUNCTION:SOCK +SSL_CTX_set_srp_username 45 1_1_0d EXIST::FUNCTION:SRP +SSL_SESSION_up_ref 46 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_client_CA_list 47 1_1_0d EXIST::FUNCTION: +GMTLS_method 48 1_1_0d EXIST::FUNCTION:GMTLS +SSL_CTX_add_session 49 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_passwd_cb_userdata 50 1_1_0d EXIST::FUNCTION: +SSL_set_srp_server_param_pw 51 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_set0_security_ex_data 52 1_1_0d EXIST::FUNCTION: +SSL_CTX_dane_mtype_set 53 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_set_remove_cb 54 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_set_new_cb 55 1_1_0d EXIST::FUNCTION: +SSL_srp_server_param_with_username 56 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_dane_clear_flags 57 1_1_0d EXIST::FUNCTION: +SSL_get0_dane 58 1_1_0d EXIST::FUNCTION: +SSL_get_rbio 59 1_1_0d EXIST::FUNCTION: +SSL_set_security_callback 60 1_1_0d EXIST::FUNCTION: +SSL_set_quiet_shutdown 61 1_1_0d EXIST::FUNCTION: +SSL_get0_verified_chain 62 1_1_0d EXIST::FUNCTION: +SSL_get_ssl_method 63 1_1_0d EXIST::FUNCTION: +SSL_CTX_dane_set_flags 64 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_name 65 1_1_0d EXIST::FUNCTION: +SSL_callback_ctrl 66 1_1_0d EXIST::FUNCTION: +SSL_waiting_for_async 67 1_1_0d EXIST::FUNCTION: +TLSv1_1_method 68 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD +ERR_load_SSL_strings 69 1_1_0d EXIST::FUNCTION: +SSL_get_default_timeout 70 1_1_0d EXIST::FUNCTION: +SSL_CTX_check_private_key 71 1_1_0d EXIST::FUNCTION: +SSL_set_bio 72 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_set_ssl_ctx 73 1_1_0d EXIST::FUNCTION: +SSL_get_servername_type 74 1_1_0d EXIST::FUNCTION: +SSL_SRP_CTX_init 75 1_1_0d EXIST::FUNCTION:SRP +SSL_CONF_CTX_finish 76 1_1_0d EXIST::FUNCTION: +SSL_get_srp_N 77 1_1_0d EXIST::FUNCTION:SRP +TLS_client_method 78 1_1_0d EXIST::FUNCTION: +SSL_set_trust 79 1_1_0d EXIST::FUNCTION: +SSL_get0_alpn_selected 80 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_verify_param_callback 81 1_1_0d EXIST::FUNCTION:SRP +SSL_CIPHER_get_kx_nid 82 1_1_0d EXIST::FUNCTION: +BIO_f_ssl 83 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_trust 84 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cipher_list 85 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_security_callback 86 1_1_0d EXIST::FUNCTION: +TLSv1_client_method 87 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD +SSL_set_psk_server_callback 88 1_1_0d EXIST::FUNCTION:PSK +SSL_CTX_get0_privatekey 89 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_cert_store 90 1_1_0d EXIST::FUNCTION: +SSL_set_srp_server_param 91 1_1_0d EXIST::FUNCTION:SRP +SSL_set_session_ticket_ext 92 1_1_0d EXIST::FUNCTION: +SSL_COMP_get0_name 93 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_serverinfo_file 94 1_1_0d EXIST::FUNCTION: +SSL_load_client_CA_file 95 1_1_0d EXIST::FUNCTION: +DTLS_server_method 96 1_1_0d EXIST::FUNCTION: +SSL_read 97 1_1_0d EXIST::FUNCTION: +SSL_get_shared_sigalgs 98 1_1_0d EXIST::FUNCTION: +SSL_COMP_set0_compression_methods 99 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set1_id_context 100 1_1_0d EXIST::FUNCTION: +SSL_get_finished 101 1_1_0d EXIST::FUNCTION: +GMTLS_client_method 102 1_1_0d EXIST::FUNCTION:GMTLS +SSL_get_peer_finished 103 1_1_0d EXIST::FUNCTION: +SSL_state_string 104 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_certificate_chain_file 105 1_1_0d EXIST::FUNCTION: +SSL_version 106 1_1_0d EXIST::FUNCTION: +TLSv1_2_server_method 107 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD +SSL_CTX_set_purpose 108 1_1_0d EXIST::FUNCTION: +SSL_set_purpose 109 1_1_0d EXIST::FUNCTION: +SSL_get_verify_result 110 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_ex_data 111 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_clear_flags 112 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_new 113 1_1_0d EXIST::FUNCTION: +SSL_set_debug 114 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +SSL_is_server 115 1_1_0d EXIST::FUNCTION: +BIO_new_ssl 116 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_ciphers 117 1_1_0d EXIST::FUNCTION: +SSL_peek 118 1_1_0d EXIST::FUNCTION: +SSL_CTX_SRP_CTX_init 119 1_1_0d EXIST::FUNCTION:SRP +SSL_SRP_CTX_free 120 1_1_0d EXIST::FUNCTION:SRP +SSL_get_client_ciphers 121 1_1_0d EXIST::FUNCTION: +SSL_new 122 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_certificate_ASN1 123 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_ct_validation_callback 124 1_1_0d EXIST::FUNCTION:CT +SSL_COMP_get_name 125 1_1_0d EXIST::FUNCTION: +SSL_SESSION_print_keylog 126 1_1_0d EXIST::FUNCTION: +SSL_set_wfd 127 1_1_0d EXIST::FUNCTION:SOCK +SSL_get_client_CA_list 128 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_alpn_select_cb 129 1_1_0d EXIST::FUNCTION: +SSL_get_current_expansion 130 1_1_0d EXIST::FUNCTION: +SSL_set_not_resumable_session_callback 131 1_1_0d EXIST::FUNCTION: +SSL_enable_ct 132 1_1_0d EXIST::FUNCTION:CT +SSL_get_version 133 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cookie_generate_cb 134 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_timeout 135 1_1_0d EXIST::FUNCTION: +SSL_get_peer_cert_chain 136 1_1_0d EXIST::FUNCTION: +SSL_get_sigalgs 137 1_1_0d EXIST::FUNCTION: +BIO_ssl_copy_session_id 138 1_1_0d EXIST::FUNCTION: +SSL_get_all_async_fds 139 1_1_0d EXIST::FUNCTION: +BIO_new_buffer_ssl_connect 140 1_1_0d EXIST::FUNCTION: +SSL_get_srtp_profiles 141 1_1_0d EXIST::FUNCTION:SRTP +SSL_CTX_set_default_passwd_cb 142 1_1_0d EXIST::FUNCTION: +SSL_set_session_secret_cb 143 1_1_0d EXIST::FUNCTION: +SSL_get_security_level 144 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_client_CA_list 145 1_1_0d EXIST::FUNCTION: +DTLSv1_2_client_method 146 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD +SSL_clear_options 147 1_1_0d EXIST::FUNCTION: +SSL_has_pending 148 1_1_0d EXIST::FUNCTION: +SSL_state_string_long 149 1_1_0d EXIST::FUNCTION: +SSL_SESSION_free 150 1_1_0d EXIST::FUNCTION: +SSL_get_quiet_shutdown 151 1_1_0d EXIST::FUNCTION: +SSL_get_servername 152 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_verify_depth 153 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_security_callback 154 1_1_0d EXIST::FUNCTION: +SSL_alert_desc_string_long 155 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_master_key 156 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_verify 157 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set_timeout 158 1_1_0d EXIST::FUNCTION: +SSL_CTX_callback_ctrl 159 1_1_0d EXIST::FUNCTION: +SSL_CTX_get0_ctlog_store 160 1_1_0d EXIST::FUNCTION:CT +SSL_CONF_CTX_set_flags 161 1_1_0d EXIST::FUNCTION: +SSL_CTX_clear_options 162 1_1_0d EXIST::FUNCTION: +SSL_get_info_callback 163 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_psk_client_callback 164 1_1_0d EXIST::FUNCTION:PSK +SSL_set_options 165 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set_time 166 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_psk_server_callback 167 1_1_0d EXIST::FUNCTION:PSK +SSL_free 168 1_1_0d EXIST::FUNCTION: +SSL_CTX_add_server_custom_ext 169 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_cb_arg 170 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_set_tlsext_use_srtp 171 1_1_0d EXIST::FUNCTION:SRTP +DTLSv1_2_method 172 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD +SSL_set_session_ticket_ext_cb 173 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_client_cert_cb 174 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_cipher_nid 175 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_ssl_version 176 1_1_0d EXIST::FUNCTION: +SSL_get_srp_userinfo 177 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_use_psk_identity_hint 178 1_1_0d EXIST::FUNCTION:PSK +SSL_get_ciphers 179 1_1_0d EXIST::FUNCTION: +TLSv1_2_method 180 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD +DTLSv1_2_server_method 181 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD +SSLv3_method 182 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD +SSL_rstate_string_long 183 1_1_0d EXIST::FUNCTION: +SSL_set_generate_session_id 184 1_1_0d EXIST::FUNCTION: +SSL_set_ssl_method 185 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_is_aead 186 1_1_0d EXIST::FUNCTION: +SSL_get_cipher_list 187 1_1_0d EXIST::FUNCTION: +SSL_CTX_load_verify_locations 188 1_1_0d EXIST::FUNCTION: +SSL_clear 189 1_1_0d EXIST::FUNCTION: +SSL_CTX_has_client_custom_ext 190 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_security_level 191 1_1_0d EXIST::FUNCTION: +SSL_add_ssl_module 192 1_1_0d EXIST::FUNCTION: +SSL_get0_peer_scts 193 1_1_0d EXIST::FUNCTION:CT +SSL_use_RSAPrivateKey 194 1_1_0d EXIST::FUNCTION:RSA +SSL_CIPHER_get_bits 195 1_1_0d EXIST::FUNCTION: +TLSv1_method 196 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD +SSL_CTX_dane_enable 197 1_1_0d EXIST::FUNCTION: +SSL_check_private_key 198 1_1_0d EXIST::FUNCTION: +SSL_set1_param 199 1_1_0d EXIST::FUNCTION: +SSL_add_client_CA 200 1_1_0d EXIST::FUNCTION: +SSL_set_rfd 201 1_1_0d EXIST::FUNCTION:SOCK +SSL_COMP_get_compression_methods 202 1_1_0d EXIST::FUNCTION: +SSL_set_accept_state 203 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cookie_verify_cb 204 1_1_0d EXIST::FUNCTION: +SSL_get_ex_data 205 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_ex_data 206 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_next_proto_select_cb 207 1_1_0d EXIST::FUNCTION:NEXTPROTONEG +d2i_SSL_SESSION 208 1_1_0d EXIST::FUNCTION: +SSL_CTX_remove_session 209 1_1_0d EXIST::FUNCTION: +SSL_get_default_passwd_cb 210 1_1_0d EXIST::FUNCTION: +SSL_get0_dane_tlsa 211 1_1_0d EXIST::FUNCTION: +SSL_get_srp_g 212 1_1_0d EXIST::FUNCTION:SRP +SSL_in_before 213 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_ssl_method 214 1_1_0d EXIST::FUNCTION: +SSL_use_psk_identity_hint 215 1_1_0d EXIST::FUNCTION:PSK +DTLSv1_client_method 216 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD +SSL_CTX_ct_is_enabled 217 1_1_0d EXIST::FUNCTION:CT +SSL_CTX_use_RSAPrivateKey 218 1_1_0d EXIST::FUNCTION:RSA +SSL_trace 219 1_1_0d EXIST::FUNCTION:SSL_TRACE +SSL_set_SSL_CTX 220 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_default_passwd_cb_userdata 221 1_1_0d EXIST::FUNCTION: +SSL_renegotiate_pending 222 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_find 223 1_1_0d EXIST::FUNCTION: +SSL_get_certificate 224 1_1_0d EXIST::FUNCTION: +SSL_renegotiate 225 1_1_0d EXIST::FUNCTION: +SSL_set_psk_client_callback 226 1_1_0d EXIST::FUNCTION:PSK +SSL_set_default_passwd_cb 227 1_1_0d EXIST::FUNCTION: +SSL_set_ex_data 228 1_1_0d EXIST::FUNCTION: +i2d_SSL_SESSION 229 1_1_0d EXIST::FUNCTION: +SSL_SESSION_new 230 1_1_0d EXIST::FUNCTION: +OPENSSL_init_ssl 231 1_1_0d EXIST::FUNCTION: +SSL_get0_param 232 1_1_0d EXIST::FUNCTION: +SSL_get_srp_username 233 1_1_0d EXIST::FUNCTION:SRP +SSL_renegotiate_abbreviated 234 1_1_0d EXIST::FUNCTION: +SSL_get_wfd 235 1_1_0d EXIST::FUNCTION: +SSL_set_default_passwd_cb_userdata 236 1_1_0d EXIST::FUNCTION: +SSL_use_PrivateKey_file 237 1_1_0d EXIST::FUNCTION: +SSL_CTX_add_client_custom_ext 238 1_1_0d EXIST::FUNCTION: +SSL_get_session 239 1_1_0d EXIST::FUNCTION: +SSL_get_security_callback 240 1_1_0d EXIST::FUNCTION: +SSL_set_cert_cb 241 1_1_0d EXIST::FUNCTION: +SSL_get1_supported_ciphers 242 1_1_0d EXIST::FUNCTION: +SSL_dane_tlsa_add 243 1_1_0d EXIST::FUNCTION: +SSL_get_rfd 244 1_1_0d EXIST::FUNCTION: +SSL_CTX_get0_security_ex_data 245 1_1_0d EXIST::FUNCTION: +SSL_get_state 246 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cert_verify_callback 247 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_id 248 1_1_0d EXIST::FUNCTION: +SSL_get_changed_async_fds 249 1_1_0d EXIST::FUNCTION: +SSL_set1_host 250 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_set_get_cb 251 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_set_ssl 252 1_1_0d EXIST::FUNCTION: +SSL_get0_dane_authority 253 1_1_0d EXIST::FUNCTION: +SSL_CTX_free 254 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_verify_mode 255 1_1_0d EXIST::FUNCTION: +DTLS_client_method 256 1_1_0d EXIST::FUNCTION: +BIO_ssl_shutdown 257 1_1_0d EXIST::FUNCTION: +PEM_read_SSL_SESSION 258 1_1_0d EXIST::FUNCTION:STDIO +SSL_set_read_ahead 259 1_1_0d EXIST::FUNCTION: +SSL_CTX_config 260 1_1_0d EXIST::FUNCTION: +SSL_get_privatekey 261 1_1_0d EXIST::FUNCTION: +SSL_get_read_ahead 262 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_default_passwd_cb 263 1_1_0d EXIST::FUNCTION: +SSL_get_verify_callback 264 1_1_0d EXIST::FUNCTION: +SSL_get_verify_depth 265 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_quiet_shutdown 266 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_ctlog_list_file 267 1_1_0d EXIST::FUNCTION:CT +SSL_SESSION_get0_ticket 268 1_1_0d EXIST::FUNCTION: +SSL_use_RSAPrivateKey_file 269 1_1_0d EXIST::FUNCTION:RSA +SSL_CTX_flush_sessions 270 1_1_0d EXIST::FUNCTION: +SSL_is_gmtls 271 1_1_0d EXIST::FUNCTION: +SSL_get1_session 272 1_1_0d EXIST::FUNCTION: +SSL_CTX_up_ref 273 1_1_0d EXIST::FUNCTION: +SSL_set_verify_depth 274 1_1_0d EXIST::FUNCTION: +TLS_server_method 275 1_1_0d EXIST::FUNCTION: +PEM_write_SSL_SESSION 276 1_1_0d EXIST::FUNCTION:STDIO +DTLS_method 277 1_1_0d EXIST::FUNCTION: +SSL_get_shared_ciphers 278 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_info_callback 279 1_1_0d EXIST::FUNCTION: +SSL_dup_CA_list 280 1_1_0d EXIST::FUNCTION: +SSL_set_fd 281 1_1_0d EXIST::FUNCTION:SOCK +SSL_set_cipher_list 282 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set1_id 283 1_1_0d EXIST::FUNCTION: +SSL_set_alpn_protos 284 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_protocol_version 285 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_alpn_protos 286 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_options 287 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SSL_SESSION 288 1_1_0d EXIST::FUNCTION: +SSL_CTX_set0_ctlog_store 289 1_1_0d EXIST::FUNCTION:CT +SSL_SESSION_get_compress_id 290 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cert_cb 291 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set_ex_data 292 1_1_0d EXIST::FUNCTION: +SSL_set_default_read_buffer_len 293 1_1_0d EXIST::FUNCTION: +SSL_set_session 294 1_1_0d EXIST::FUNCTION: +SSLv3_server_method 295 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD +SSL_get_psk_identity_hint 296 1_1_0d EXIST::FUNCTION:PSK +SSL_CTX_set_default_verify_dir 297 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_generate_session_id 298 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_options 299 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_certificate 300 1_1_0d EXIST::FUNCTION: +SSL_add_dir_cert_subjects_to_stack 301 1_1_0d EXIST::FUNCTION: +SSL_dane_enable 302 1_1_0d EXIST::FUNCTION: +SSLv3_client_method 303 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD +SSL_alert_type_string_long 304 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_serverinfo 305 1_1_0d EXIST::FUNCTION: +SSL_get0_next_proto_negotiated 306 1_1_0d EXIST::FUNCTION:NEXTPROTONEG +SSL_CTX_use_certificate_file 307 1_1_0d EXIST::FUNCTION: +SSL_add1_host 308 1_1_0d EXIST::FUNCTION: +SSL_use_PrivateKey 309 1_1_0d EXIST::FUNCTION: +SSL_set_client_CA_list 310 1_1_0d EXIST::FUNCTION: +SSL_set_tmp_dh_callback 311 1_1_0d EXIST::FUNCTION:DH +SSL_CIPHER_get_version 312 1_1_0d EXIST::FUNCTION: +DTLSv1_method 313 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD +SSL_set_shutdown 314 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_password 315 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_set_default_verify_file 316 1_1_0d EXIST::FUNCTION: +SSL_alert_desc_string 317 1_1_0d EXIST::FUNCTION: +SSL_use_certificate_chain_file 318 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get0_cipher 319 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_client_pwd_callback 320 1_1_0d EXIST::FUNCTION:SRP +SSL_set0_security_ex_data 321 1_1_0d EXIST::FUNCTION: +SSL_ct_is_enabled 322 1_1_0d EXIST::FUNCTION:CT +SSL_SESSION_get0_peer 323 1_1_0d EXIST::FUNCTION: +SSL_get_selected_srtp_profile 324 1_1_0d EXIST::FUNCTION:SRTP +SSL_set_connect_state 325 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_tmp_dh_callback 326 1_1_0d EXIST::FUNCTION:DH +SRP_Calc_A_param 327 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_use_RSAPrivateKey_ASN1 328 1_1_0d EXIST::FUNCTION:RSA +SSL_set_info_callback 329 1_1_0d EXIST::FUNCTION: +SSL_get_current_cipher 330 1_1_0d EXIST::FUNCTION: +SSL_set_ct_validation_callback 331 1_1_0d EXIST::FUNCTION:CT +SSL_export_keying_material 332 1_1_0d EXIST::FUNCTION: +TLSv1_2_client_method 333 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD +SSL_get0_security_ex_data 334 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_verify_depth 335 1_1_0d EXIST::FUNCTION: +SSL_use_PrivateKey_ASN1 336 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cert_store 337 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_read_buffer_len 338 1_1_0d EXIST::FUNCTION: +SSL_get_client_random 339 1_1_0d EXIST::FUNCTION: +SSL_set0_wbio 340 1_1_0d EXIST::FUNCTION: +SSL_CTX_sessions 341 1_1_0d EXIST::FUNCTION: +SSL_get_ex_data_X509_STORE_CTX_idx 342 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_get_get_cb 343 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_set1_prefix 344 1_1_0d EXIST::FUNCTION: +SSL_set_msg_callback 345 1_1_0d EXIST::FUNCTION: +SSL_CONF_cmd_value_type 346 1_1_0d EXIST::FUNCTION: +SSL_copy_session_id 347 1_1_0d EXIST::FUNCTION: +SSL_dup 348 1_1_0d EXIST::FUNCTION: +SSL_get_server_random 349 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get0_id_context 350 1_1_0d EXIST::FUNCTION: +SSL_set_hostflags 351 1_1_0d EXIST::FUNCTION: +PEM_write_bio_SSL_SESSION 352 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_PrivateKey 353 1_1_0d EXIST::FUNCTION: +SSL_get0_peername 354 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_timeout 355 1_1_0d EXIST::FUNCTION: +SSL_use_RSAPrivateKey_ASN1 356 1_1_0d EXIST::FUNCTION:RSA +SSL_ctrl 357 1_1_0d EXIST::FUNCTION: +SSL_use_certificate 358 1_1_0d EXIST::FUNCTION: +SSL_check_chain 359 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_PrivateKey_ASN1 360 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_username_callback 361 1_1_0d EXIST::FUNCTION:SRP +SSL_get_fd 362 1_1_0d EXIST::FUNCTION: +SSL_get_current_compression 363 1_1_0d EXIST::FUNCTION: +SSL_add_file_cert_subjects_to_stack 364 1_1_0d EXIST::FUNCTION: +SSL_dane_set_flags 365 1_1_0d EXIST::FUNCTION: +SSL_CTX_get0_certificate 366 1_1_0d EXIST::FUNCTION: +SSL_CTX_new 367 1_1_0d EXIST::FUNCTION: +SSL_CTX_set1_param 368 1_1_0d EXIST::FUNCTION: +SSL_set_verify 369 1_1_0d EXIST::FUNCTION: +SSL_use_certificate_file 370 1_1_0d EXIST::FUNCTION: +SSL_dane_clear_flags 371 1_1_0d EXIST::FUNCTION: +TLS_method 372 1_1_0d EXIST::FUNCTION: +SSL_in_init 373 1_1_0d EXIST::FUNCTION: +SSL_test_functions 374 1_1_0d EXIST::FUNCTION:UNIT_TEST +SSL_get_options 375 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_RSAPrivateKey_file 376 1_1_0d EXIST::FUNCTION:RSA +SSL_CONF_CTX_free 377 1_1_0d EXIST::FUNCTION: +TLSv1_1_server_method 378 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD +SSL_session_reused 379 1_1_0d EXIST::FUNCTION: +SSL_COMP_add_compression_method 380 1_1_0d EXIST::FUNCTION: +SSL_connect 381 1_1_0d EXIST::FUNCTION: +SSL_use_certificate_ASN1 382 1_1_0d EXIST::FUNCTION: +SSL_up_ref 383 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_quiet_shutdown 384 1_1_0d EXIST::FUNCTION: +SSL_CTX_enable_ct 385 1_1_0d EXIST::FUNCTION:CT +SSL_CTX_set_msg_callback 386 1_1_0d EXIST::FUNCTION: +SSL_get_shutdown 387 1_1_0d EXIST::FUNCTION: +SSL_CONF_cmd_argv 388 1_1_0d EXIST::FUNCTION: +SSL_want 389 1_1_0d EXIST::FUNCTION: +SSL_alert_type_string 390 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_client_cert_cb 391 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_verify_paths 392 1_1_0d EXIST::FUNCTION: +SSL_get_verify_mode 393 1_1_0d EXIST::FUNCTION: +SSL_extension_supported 394 1_1_0d EXIST::FUNCTION: +SSL_is_init_finished 395 1_1_0d EXIST::FUNCTION: +SSL_CONF_cmd 396 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_session_id_context 397 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_ex_data 398 1_1_0d EXIST::FUNCTION: +SSL_pending 399 1_1_0d EXIST::FUNCTION: +SSL_set_session_id_context 400 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_verify_callback 401 1_1_0d EXIST::FUNCTION: +SSL_CTX_get0_param 402 1_1_0d EXIST::FUNCTION: +SSL_set_tlsext_use_srtp 403 1_1_0d EXIST::FUNCTION:SRTP +SSL_CIPHER_get_digest_nid 404 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_security_level 405 1_1_0d EXIST::FUNCTION: +SSL_has_matching_session_id 406 1_1_0d EXIST::FUNCTION: +SSL_get_error 407 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_auth_nid 408 1_1_0d EXIST::FUNCTION: +TLSv1_server_method 409 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD +SSL_accept 410 1_1_0d EXIST::FUNCTION: +BIO_new_ssl_connect 411 1_1_0d EXIST::FUNCTION: