diff --git a/.gitignore b/.gitignore index 4326df52..3fa8b07d 100644 --- a/.gitignore +++ b/.gitignore @@ -209,7 +209,6 @@ apps/gmca/.ca # engines /engines/e_skf* /engines/e_sdf* -/engines/e_gmi* /engines/sdf /engines/skf diff --git a/README.md b/README.md index 3e5f3dfa..a4789f3b 100644 --- a/README.md +++ b/README.md @@ -125,8 +125,8 @@ $ gmssl sms4 -d -in README.sms4 ZUC encryption and decryption: ```sh -$ gmssl zuc -in README.md -out README.sms4 -$ gmssl zuc -d -in README.sms4 +$ gmssl zuc -in README.md -out README.zuc +$ gmssl zuc -d -in README.zuc ``` SM2 private key generation: @@ -157,6 +157,13 @@ $ echo "Top Secret" | gmssl sm2utl -encrypt -pubin -inkey ekey.pem -out cipherte $ gmssl sm2utl -decrypt -inkey dkey.pem -in ciphertext.sm2 ``` +Identity-based encryption with SM9 + +``` +$ echo "Message" | gmssl pkeyutl -encrypt -pubin -inkey params.pem -pkeyopt id:Alice -out ciphertext.der +$ gmssl pkeyutl -decrypt -inkey sm9key.pem -in ciphertext.der +``` + Self-signed SM2 certificate generation: ```sh diff --git a/apps/progs.h b/apps/progs.h index 05faf932..cb52b9ec 100644 --- a/apps/progs.h +++ b/apps/progs.h @@ -306,6 +306,9 @@ static FUNCTION functions[] = { #ifndef OPENSSL_NO_SMS4 { FT_cipher, "sms4-cfb", enc_main, enc_options }, #endif +#ifndef OPENSSL_NO_ZUC + { FT_cipher, "zuc", enc_main, enc_options }, +#endif #ifndef OPENSSL_NO_AES { FT_cipher, "aes-128-cbc", enc_main, enc_options }, #endif diff --git a/apps/progs.pl b/apps/progs.pl index 14c47b4d..261e3cb4 100644 --- a/apps/progs.pl +++ b/apps/progs.pl @@ -118,7 +118,7 @@ my %cipher_disabler = ( cast5 => "cast", ); foreach my $cmd ( - "sms4", "sms4-cbc", "sms4-ecb", "sms4-ofb", "sms4-cfb", + "sms4", "sms4-cbc", "sms4-ecb", "sms4-ofb", "sms4-cfb", "zuc", "aes-128-cbc", "aes-128-ecb", "aes-192-cbc", "aes-192-ecb", "aes-256-cbc", "aes-256-ecb", diff --git a/apps/speed.c b/apps/speed.c index 549c3756..b123951e 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -122,6 +122,9 @@ #ifndef OPENSSL_NO_SMS4 # include #endif +#ifndef OPENSSL_NO_ZUC +# include +#endif #ifndef OPENSSL_NO_SM9 # include #endif @@ -145,7 +148,7 @@ #define BUFSIZE (1024*16+1) #define MAX_MISALIGNMENT 63 -#define ALGOR_NUM 32 +#define ALGOR_NUM 33 #define SIZE_NUM 6 #define PRIME_NUM 3 #define RSA_NUM 7 @@ -294,7 +297,7 @@ static const char *names[ALGOR_NUM] = { "camellia-128 cbc", "camellia-192 cbc", "camellia-256 cbc", "evp", "sha256", "sha512", "whirlpool", "aes-128 ige", "aes-192 ige", "aes-256 ige", "ghash", - "sm3", "sms4 cbc" + "sm3", "sms4 cbc", "zuc" }; static double results[ALGOR_NUM][SIZE_NUM]; @@ -479,6 +482,7 @@ OPTIONS speed_options[] = { #define D_GHASH 29 #define D_SM3 30 #define D_CBC_SMS4 31 +#define D_ZUC 32 static OPT_PAIR doit_choices[] = { #ifndef OPENSSL_NO_MD2 {"md2", D_MD2}, @@ -554,6 +558,9 @@ static OPT_PAIR doit_choices[] = { #ifndef OPENSSL_NO_SMS4 {"sms4-cbc", D_CBC_SMS4}, {"sms4", D_CBC_SMS4}, +#endif +#ifndef OPENSSL_NO_ZUC + {"zuc", D_ZUC}, #endif {NULL} }; @@ -1188,10 +1195,11 @@ static int SM2_encrypt_loop(void *args) size_t *sm2cipherlen = &tempargs->cipherlen; int ret, count; for (count = 0; COND(sm2enc_c[testnum][0]); count++) { - ret = SM2_encrypt(NID_sm3, buf, 32, sm2cipher, + *sm2cipherlen = BUFSIZE; + ret = SM2_encrypt(NID_sm3, buf, 32, sm2cipher, sm2cipherlen, sm2[testnum]); if (ret == 0) { - BIO_printf(bio_err, "SM2 sign failure\n"); + BIO_printf(bio_err, "SM2 encrypt failure\n"); ERR_print_errors(bio_err); count = -1; break; @@ -1494,6 +1502,9 @@ int speed_main(int argc, char **argv) #ifndef OPENSSL_NO_SMS4 sms4_key_t sms4_ks; #endif +#ifndef OPENSSL_NO_ZUC + ZUC_KEY zuc_ks; +#endif #ifndef OPENSSL_NO_BF BF_KEY bf_ks; #endif @@ -1985,6 +1996,9 @@ int speed_main(int argc, char **argv) #ifndef OPENSSL_NO_SMS4 sms4_set_encrypt_key(&sms4_ks, key16); #endif +#ifndef OPENSSL_NO_ZUC + ZUC_set_key(&zuc_ks, key16, iv); +#endif #ifndef OPENSSL_NO_RC4 RC4_set_key(&rc4_ks, 16, key16); #endif @@ -2045,6 +2059,7 @@ int speed_main(int argc, char **argv) c[D_GHASH][0] = count; c[D_SM3][0] = count; c[D_CBC_SMS4][0] = count; + c[D_ZUC][0] = count; for (i = 1; i < SIZE_NUM; i++) { long l0, l1; @@ -2086,6 +2101,7 @@ int speed_main(int argc, char **argv) c[D_IGE_192_AES][i] = c[D_IGE_192_AES][i - 1] * l0 / l1; c[D_IGE_256_AES][i] = c[D_IGE_256_AES][i - 1] * l0 / l1; c[D_CBC_SMS4][i] = c[D_CBC_SMS4][i - 1] * l0 / l1; + c[D_ZUC][i] = c[D_ZUC][i - 1] * l0 / l1; } # ifndef OPENSSL_NO_RSA @@ -2588,6 +2604,24 @@ int speed_main(int argc, char **argv) } } #endif +#ifndef OPENSSL_NO_ZUC + if (doit[D_ZUC]) { + if (async_jobs > 0) { + BIO_printf(bio_err, "Async mode is not supported with %s\n", + names[D_ZUC]); + doit[D_ZUC] = 0; + } + for (testnum = 0; testnum < SIZE_NUM && async_init == 0; testnum++) { + print_message(names[D_ZUC], c[D_ZUC][testnum], lengths[testnum]); + Time_F(START); + for (count = 0, run = 1; COND(c[D_ZUC][testnum]); count++) + ZUC_generate_keystream(&zuc_ks, lengths[testnum]/4, + (unsigned int *)loopargs[0].buf); + d = Time_F(STOP); + print_result(D_ZUC, testnum, count, d); + } + } +#endif #ifndef OPENSSL_NO_RC2 if (doit[D_CBC_RC2]) { if (async_jobs > 0) { @@ -3160,6 +3194,7 @@ int speed_main(int argc, char **argv) EC_KEY_precompute_mult(loopargs[i].sm2[testnum], NULL); /* Perform SM2 encryption test */ EC_KEY_generate_key(loopargs[i].sm2[testnum]); + loopargs[i].cipherlen = BUFSIZE; st = SM2_encrypt(NID_sm3, loopargs[i].buf, 32, loopargs[i].buf2, &loopargs[i].cipherlen, loopargs[i].sm2[testnum]); if (st == 0) diff --git a/crypto/bn/bn_sm2p256.c b/crypto/bn/bn_sm2p256.c new file mode 100644 index 00000000..8f0f9ccf --- /dev/null +++ b/crypto/bn/bn_sm2p256.c @@ -0,0 +1,485 @@ +/* ==================================================================== + * Copyright (c) 2014 - 2018 The GmSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the GmSSL Project. + * (http://gmssl.org/)" + * + * 4. The name "GmSSL Project" must not be used to endorse or promote + * products derived from this software without prior written + * permission. For written permission, please contact + * guanzhi1980@gmail.com. + * + * 5. Products derived from this software may not be called "GmSSL" + * nor may "GmSSL" appear in their names without prior written + * permission of the GmSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the GmSSL Project + * (http://gmssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + */ + +/* + * Copyright 2002-2016 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 + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#include "bn_lcl.h" +#include "internal/cryptlib.h" + +#define BN_SM2_256_TOP (256+BN_BITS2-1)/BN_BITS2 + +/* pre-computed tables are "carry-less" values of modulus*(i+1) */ +#if BN_BITS2 == 64 + +/* p, 2p, 3p, 4p, 5p in little-endian */ +static const BN_ULONG _sm2_p_256[][BN_SM2_256_TOP] = { + {0xffffffffffffffffull, 0xffffffff00000000ull, + 0xffffffffffffffffull, 0xfffffffeffffffffull}, + {0xfffffffffffffffeull, 0xfffffffe00000001ull, + 0xffffffffffffffffull, 0xfffffffdffffffffull}, + {0xfffffffffffffffdull, 0xfffffffd00000002ull, + 0xffffffffffffffffull, 0xfffffffcffffffffull}, + {0xfffffffffffffffcull, 0xfffffffc00000003ull, + 0xffffffffffffffffull, 0xfffffffbffffffffull}, + {0xfffffffffffffffbull, 0xfffffffb00000004ull, + 0xffffffffffffffffull, 0xfffffffaffffffffull}, + {0xfffffffffffffffaull, 0xfffffffa00000005ull, + 0xffffffffffffffffull, 0xfffffff9ffffffffull}, + {0xfffffffffffffff9ull, 0xfffffff900000006ull, + 0xffffffffffffffffull, 0xfffffff8ffffffffull}, + {0xfffffffffffffff8ull, 0xfffffff800000007ull, + 0xffffffffffffffffull, 0xfffffff7ffffffffull}, + {0xfffffffffffffff7ull, 0xfffffff700000008ull, + 0xffffffffffffffffull, 0xfffffff6ffffffffull}, + {0xfffffffffffffff6ull, 0xfffffff600000009ull, + 0xffffffffffffffffull, 0xfffffff5ffffffffull}, + {0xfffffffffffffff5ull, 0xfffffff50000000aull, + 0xffffffffffffffffull, 0xfffffff4ffffffffull}, + {0xfffffffffffffff4ull, 0xfffffff40000000bull, + 0xffffffffffffffffull, 0xfffffff3ffffffffull}, + {0xfffffffffffffff3ull, 0xfffffff30000000cull, + 0xffffffffffffffffull, 0xfffffff2ffffffffull} +}; + +/* p^2 in little-endian */ +static const BN_ULONG _sm2_p_256_sqr[] = { + 0x0000000000000001ull, 0x00000001fffffffeull, + 0xfffffffe00000001ull, 0x0000000200000000ull, + 0xfffffffdfffffffeull, 0xfffffffe00000003ull, + 0xffffffffffffffffull, 0xfffffffe00000000ull, +}; + +#elif BN_BITS2 == 32 + +static const BN_ULONG _sm2_p_256[][BN_SM2_256_TOP] = { + {0xffffffff, 0xffffffff, 0x0, 0xffffffff, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffe}, + {0xfffffffe, 0xffffffff, 0x1, 0xfffffffe, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffd}, + {0xfffffffd, 0xffffffff, 0x2, 0xfffffffd, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffc}, + {0xfffffffc, 0xffffffff, 0x3, 0xfffffffc, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffb}, + {0xfffffffb, 0xffffffff, 0x4, 0xfffffffb, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffa}, + {0xfffffffa, 0xffffffff, 0x5, 0xfffffffa, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff9}, + {0xfffffff9, 0xffffffff, 0x6, 0xfffffff9, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff8}, + {0xfffffff8, 0xffffffff, 0x7, 0xfffffff8, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff7}, + {0xfffffff7, 0xffffffff, 0x8, 0xfffffff7, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff6}, + {0xfffffff6, 0xffffffff, 0x9, 0xfffffff6, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff5}, + {0xfffffff5, 0xffffffff, 0xa, 0xfffffff5, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff4}, + {0xfffffff4, 0xffffffff, 0xb, 0xfffffff4, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff3}, + {0xfffffff3, 0xffffffff, 0xc, 0xfffffff3, + 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffff2}, +}; + +static const BN_ULONG _sm2_p_256_sqr[] = { + 0x00000001, 0x00000000, 0xfffffffe, 0x00000001, + 0x00000001, 0xfffffffe, 0x00000000, 0x00000002, + 0xfffffffe, 0xfffffffd, 0x00000003, 0xfffffffe, + 0xffffffff, 0xffffffff, 0x00000000, 0xfffffffe +}; + +#else +# error "unsupported BN_BITS2" +#endif + +static const BIGNUM _bignum_sm2_p_256 = { + (BN_ULONG *)_sm2_p_256[0], + BN_SM2_256_TOP, + BN_SM2_256_TOP, + 0, + BN_FLG_STATIC_DATA +}; + +const BIGNUM *BN_get0_sm2_prime_256(void) +{ + return &_bignum_sm2_p_256; +} + +static void sm2_cp_bn_0(BN_ULONG *dst, const BN_ULONG *src, int top, int max) +{ + int i; + +#ifdef BN_DEBUG + OPENSSL_assert(top <= max); +#endif + for (i = 0; i < top; i++) + dst[i] = src[i]; + for (; i < max; i++) + dst[i] = 0; +} + +static void sm2_cp_bn(BN_ULONG *dst, const BN_ULONG *src, int top) +{ + int i; + + for (i = 0; i < top; i++) + dst[i] = src[i]; +} + +#if BN_BITS2 == 64 +# define bn_cp_64(to, n, from, m) (to)[n] = (m>=0)?((from)[m]):0; +# define bn_64_set_0(to, n) (to)[n] = (BN_ULONG)0; +/* + * two following macros are implemented under assumption that they + * are called in a sequence with *ascending* n, i.e. as they are... + */ +# define bn_cp_32_naked(to, n, from, m) (((n)&1)?(to[(n)/2]|=((m)&1)?(from[(m)/2]&BN_MASK2h):(from[(m)/2]<<32))\ + :(to[(n)/2] =((m)&1)?(from[(m)/2]>>32):(from[(m)/2]&BN_MASK2l))) +# define bn_32_set_0(to, n) (((n)&1)?(to[(n)/2]&=BN_MASK2l):(to[(n)/2]=0)); +# define bn_cp_32(to,n,from,m) ((m)>=0)?bn_cp_32_naked(to,n,from,m):bn_32_set_0(to,n) +# if defined(L_ENDIAN) +# if defined(__arch64__) +# define NIST_INT64 long +# else +# define NIST_INT64 long long +# endif +# endif +#else +# define bn_cp_64(to, n, from, m) \ + { \ + bn_cp_32(to, (n)*2, from, (m)*2); \ + bn_cp_32(to, (n)*2+1, from, (m)*2+1); \ + } +# define bn_64_set_0(to, n) \ + { \ + bn_32_set_0(to, (n)*2); \ + bn_32_set_0(to, (n)*2+1); \ + } +# define bn_cp_32(to, n, from, m) (to)[n] = (m>=0)?((from)[m]):0; +# define bn_32_set_0(to, n) (to)[n] = (BN_ULONG)0; +# if defined(_WIN32) && !defined(__GNUC__) +# define NIST_INT64 __int64 +# elif defined(BN_LLONG) +# define NIST_INT64 long long +# endif +#endif /* BN_BITS2 != 64 */ + + +typedef BN_ULONG (*bn_addsub_f) (BN_ULONG *, const BN_ULONG *, + const BN_ULONG *, int); + +#define sm2_set_256(to, from, a1, a2, a3, a4, a5, a6, a7, a8) \ + { \ + bn_cp_32(to, 0, from, (a8) - 8) \ + bn_cp_32(to, 1, from, (a7) - 8) \ + bn_cp_32(to, 2, from, (a6) - 8) \ + bn_cp_32(to, 3, from, (a5) - 8) \ + bn_cp_32(to, 4, from, (a4) - 8) \ + bn_cp_32(to, 5, from, (a3) - 8) \ + bn_cp_32(to, 6, from, (a2) - 8) \ + bn_cp_32(to, 7, from, (a1) - 8) \ + } + +int BN_sm2_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, + BN_CTX *ctx) +{ + int i, top = a->top; + int carry = 0; + register BN_ULONG *a_d = a->d, *r_d; + union { + BN_ULONG bn[BN_SM2_256_TOP]; + unsigned int ui[BN_SM2_256_TOP * sizeof(BN_ULONG) / + sizeof(unsigned int)]; + } buf; + BN_ULONG c_d[BN_SM2_256_TOP], *res; + PTR_SIZE_INT mask; + union { + bn_addsub_f f; + PTR_SIZE_INT p; + } u; + static const BIGNUM _bignum_sm2_p_256_sqr = { + (BN_ULONG *)_sm2_p_256_sqr, + OSSL_NELEM(_sm2_p_256_sqr), + OSSL_NELEM(_sm2_p_256_sqr), + 0, BN_FLG_STATIC_DATA + }; + + field = &_bignum_sm2_p_256; /* just to make sure */ + + if (BN_is_negative(a) || BN_ucmp(a, &_bignum_sm2_p_256_sqr) >= 0) + return BN_nnmod(r, a, field, ctx); + + i = BN_ucmp(field, a); + if (i == 0) { + BN_zero(r); + return 1; + } else if (i > 0) + return (r == a) ? 1 : (BN_copy(r, a) != NULL); + + if (r != a) { + if (!bn_wexpand(r, BN_SM2_256_TOP)) + return 0; + r_d = r->d; + sm2_cp_bn(r_d, a_d, BN_SM2_256_TOP); + } else + r_d = a_d; + + sm2_cp_bn_0(buf.bn, a_d + BN_SM2_256_TOP, top - BN_SM2_256_TOP, + BN_SM2_256_TOP); + +#if defined(NIST_INT64) + { + NIST_INT64 acc; /* accumulator */ + unsigned int *rp = (unsigned int *)r_d; + const unsigned int *bp = (const unsigned int *)buf.ui; + + acc = rp[0]; + acc += bp[8 - 8]; + acc += bp[9 - 8]; + acc += bp[10 - 8]; + acc += bp[11 - 8]; + acc += bp[12 - 8]; + acc += bp[13 - 8]; + acc += bp[13 - 8]; + acc += bp[14 - 8]; + acc += bp[14 - 8]; + acc += bp[15 - 8]; + acc += bp[15 - 8]; + rp[0] = (unsigned int)acc; + acc >>= 32; + + acc += rp[1]; + acc += bp[9 - 8]; + acc += bp[10 - 8]; + acc += bp[11 - 8]; + acc += bp[12 - 8]; + acc += bp[13 - 8]; + acc += bp[14 - 8]; + acc += bp[14 - 8]; + acc += bp[15 - 8]; + acc += bp[15 - 8]; + rp[1] = (unsigned int)acc; + acc >>= 32; + + acc += rp[2]; + acc -= bp[8 - 8]; + acc -= bp[9 - 8]; + acc -= bp[13 - 8]; + acc -= bp[14 - 8]; + rp[2] = (unsigned int)acc; + acc >>= 32; + + acc += rp[3]; + acc += bp[8 - 8]; + acc += bp[11 - 8]; + acc += bp[12 - 8]; + acc += bp[13 - 8]; + acc += bp[13 - 8]; + acc += bp[14 - 8]; + acc += bp[15 - 8]; + rp[3] = (unsigned int)acc; + acc >>= 32; + + acc += rp[4]; + acc += bp[9 - 8]; + acc += bp[12 - 8]; + acc += bp[13 - 8]; + acc += bp[14 - 8]; + acc += bp[14 - 8]; + acc += bp[15 - 8]; + rp[4] = (unsigned int)acc; + acc >>= 32; + + acc += rp[5]; + acc += bp[10 - 8]; + acc += bp[13 - 8]; + acc += bp[14 - 8]; + acc += bp[15 - 8]; + acc += bp[15 - 8]; + rp[5] = (unsigned int)acc; + acc >>= 32; + + acc += rp[6]; + acc += bp[11 - 8]; + acc += bp[14 - 8]; + acc += bp[15 - 8]; + rp[6] = (unsigned int)acc; + acc >>= 32; + + acc += rp[7]; + acc += bp[8 - 8]; + acc += bp[9 - 8]; + acc += bp[10 - 8]; + acc += bp[11 - 8]; + acc += bp[12 - 8]; + acc += bp[12 - 8]; + acc += bp[13 - 8]; + acc += bp[13 - 8]; + acc += bp[14 - 8]; + acc += bp[14 - 8]; + acc += bp[15 - 8]; + acc += bp[15 - 8]; + acc += bp[15 - 8]; + rp[7] = (unsigned int)acc; + carry = (int)(acc >> 32); + } +#else + { + BN_ULONG t_d[BN_SM2_256_TOP]; + + /* + * + 2(c6 + c7 + c8 + c9) + */ + sm2_set_256(t_d, buf.bn, 12, 0, 15, 14, 13, 0, 14, 13); + + sm2_set_256(c_d, buf.bn, 13, 0, 0, 0, 14, 0, 15, 14); + carry = (int)bn_add_words(t_d, t_d, c_d, BN_SM2_256_TOP); + + sm2_set_256(c_d, buf.bn, 14, 0, 0, 0, 0, 0, 0, 15); + carry += (int)bn_add_words(t_d, c_d, c_d, BN_SM2_256_TOP); + + sm2_set_256(c_d, buf.bn, 15, 0, 0, 0, 0, 0, 0, 0); + carry += (int)bn_add_words(t_d, c_d, c_d, BN_SM2_256_TOP); + + /* left shift */ + { + register BN_ULONG *ap, t, c; + ap = t_d; + c = 0; + for (i = BN_SM2_256_TOP; i != 0; --i) { + t = *ap; + *(ap++) = ((t << 1) | c) & BN_MASK2; + c = (t & BN_TBIT) ? 1 : 0; + } + carry <<= 1; + carry |= c; + } + carry += (int)bn_add_words(r_d, r_d, t_d, BN_SM2_256_TOP); + + /* + * + c1 + c2 + c3 + c4 + c5 + */ + sm2_set_256(t_d, buf.bn, 8, 11, 10, 9, 8, 0, 9, 8); + carry += (int)bn_add_words(r_d, r_d, t_d, BN_SM2_256_TOP); + + sm2_set_256(t_d, buf.bn, 9, 14, 13, 12, 11, 0, 10, 9); + carry += (int)bn_add_words(r_d, r_d, t_d, BN_SM2_256_TOP); + + sm2_set_256(t_d, buf.bn, 10, 15, 14, 13, 12, 0, 11, 10); + carry += (int)bn_add_words(r_d, r_d, t_d, BN_SM2_256_TOP); + + sm2_set_256(t_d, buf.bn, 11, 0, 0, 0, 0, 0, 12, 11); + carry += (int)bn_add_words(r_d, r_d, t_d, BN_SM2_256_TOP); + + sm2_set_256(t_d, buf.bn, 15, 0, 0, 0, 0, 0, 13, 12); + carry += (int)bn_add_words(r_d, r_d, t_d, BN_SM2_256_TOP); + + /* + * - (c10 + c11 + c12 + c13) + */ + sm2_set_256(t_d, buf.bn, 0, 0, 0, 0, 0, 8, 0, 0); + (void)bn_add_words(c_d, c_d, t_d, BN_SM2_256_TOP); + + sm2_set_256(t_d, buf.bn, 0, 0, 0, 0, 0, 9, 0, 0); + (void)bn_add_words(c_d, c_d, t_d, BN_SM2_256_TOP); + + sm2_set_256(t_d, buf.bn, 0, 0, 0, 0, 0,13, 0, 0); + (void)bn_add_words(c_d, c_d, t_d, BN_SM2_256_TOP); + + sm2_set_256(t_d, buf.bn, 0, 0, 0, 0, 0,14, 0, 0); + (void)bn_add_words(c_d, c_d, t_d, BN_SM2_256_TOP); + + carry -= (int)bn_sub_words(r_d, r_d, c_d, BN_SM2_256_TOP); + + } +#endif + /* see BN_nist_mod_224 for explanation */ + u.f = bn_sub_words; + if (carry > 0) + carry = + (int)bn_sub_words(r_d, r_d, _sm2_p_256[carry - 1], + BN_SM2_256_TOP); + else if (carry < 0) { + carry = + (int)bn_add_words(r_d, r_d, _sm2_p_256[-carry - 1], + BN_SM2_256_TOP); + mask = 0 - (PTR_SIZE_INT) carry; + u.p = ((PTR_SIZE_INT) bn_sub_words & mask) | + ((PTR_SIZE_INT) bn_add_words & ~mask); + } else + carry = 1; + + mask = + 0 - (PTR_SIZE_INT) (*u.f) (c_d, r_d, _sm2_p_256[0], BN_SM2_256_TOP); + mask &= 0 - (PTR_SIZE_INT) carry; + res = c_d; + res = (BN_ULONG *)(((PTR_SIZE_INT) res & ~mask) | + ((PTR_SIZE_INT) r_d & mask)); + sm2_cp_bn(r_d, res, BN_SM2_256_TOP); + r->top = BN_SM2_256_TOP; + bn_correct_top(r); + + return 1; +} + +/* I dont think we need this */ +#if 0 +int (*BN_nist_mod_func(const BIGNUM *p)) (BIGNUM *r, const BIGNUM *a, + const BIGNUM *field, BN_CTX *ctx) { + if (BN_ucmp(&_bignum_nist_p_256, p) == 0) + return BN_nist_mod_256; + return 0; +} +#endif diff --git a/crypto/bn/build.info b/crypto/bn/build.info index c608ecce..c0d7bde7 100644 --- a/crypto/bn/build.info +++ b/crypto/bn/build.info @@ -3,7 +3,7 @@ SOURCE[../../libcrypto]=\ bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c \ - {- $target{bn_asm_src} -} \ + {- $target{bn_asm_src} -} bn_sm2p256.c \ bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \ bn_depr.c bn_const.c bn_x931p.c bn_intern.c bn_dh.c bn_srp.c INCLUDE[../../libcrypto]=../../crypto/include diff --git a/crypto/ec/ec_err.c b/crypto/ec/ec_err.c index 3bb1aca5..5fbf5013 100644 --- a/crypto/ec/ec_err.c +++ b/crypto/ec/ec_err.c @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2019 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 @@ -129,6 +129,11 @@ static ERR_STRING_DATA EC_str_functs[] = { "ec_GFp_simple_point_set_affine_coordinates"}, {ERR_FUNC(EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES), "ec_GFp_simple_set_compressed_coordinates"}, + {ERR_FUNC(EC_F_EC_GFP_SM2P256_GROUP_SET_CURVE), + "ec_GFp_sm2p256_group_set_curve"}, + {ERR_FUNC(EC_F_EC_GFP_SM2P256_POINTS_MUL), "ec_GFp_sm2p256_points_mul"}, + {ERR_FUNC(EC_F_EC_GFP_SM2P256_POINT_GET_AFFINE_COORDINATES), + "ec_GFp_sm2p256_point_get_affine_coordinates"}, {ERR_FUNC(EC_F_EC_GROUP_CHECK), "EC_GROUP_check"}, {ERR_FUNC(EC_F_EC_GROUP_CHECK_DISCRIMINANT), "EC_GROUP_check_discriminant"}, @@ -231,6 +236,7 @@ static ERR_STRING_DATA EC_str_functs[] = { {ERR_FUNC(EC_F_PKEY_EC_KEYGEN), "pkey_ec_keygen"}, {ERR_FUNC(EC_F_PKEY_EC_PARAMGEN), "pkey_ec_paramgen"}, {ERR_FUNC(EC_F_PKEY_EC_SIGN), "pkey_ec_sign"}, + {ERR_FUNC(EC_F_SM2P256_PRE_COMP_NEW), "sm2p256_pre_comp_new"}, {ERR_FUNC(EC_F_SM2_COMPUTE_ID_DIGEST), "SM2_compute_id_digest"}, {ERR_FUNC(EC_F_SM2_COMPUTE_MESSAGE_DIGEST), "SM2_compute_message_digest"}, {ERR_FUNC(EC_F_SM2_DO_ENCRYPT), "SM2_do_encrypt"}, diff --git a/crypto/ec/ecp_sm2p256.c b/crypto/ec/ecp_sm2p256.c new file mode 100644 index 00000000..7eff225b --- /dev/null +++ b/crypto/ec/ecp_sm2p256.c @@ -0,0 +1,2507 @@ +/* ==================================================================== + * Copyright (c) 2014 - 2018 The GmSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the GmSSL Project. + * (http://gmssl.org/)" + * + * 4. The name "GmSSL Project" must not be used to endorse or promote + * products derived from this software without prior written + * permission. For written permission, please contact + * guanzhi1980@gmail.com. + * + * 5. Products derived from this software may not be called "GmSSL" + * nor may "GmSSL" appear in their names without prior written + * permission of the GmSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the GmSSL Project + * (http://gmssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + */ +/* + * Copyright 2011-2016 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 + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* Copyright 2011 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * A 64-bit implementation of the NIST P-256 elliptic curve point multiplication + * + * OpenSSL integration was taken from Emilia Kasper's work in ecp_nistp224.c. + * Otherwise based on Emilia's P224 work, which was inspired by my curve25519 + * work which got its smarts from Daniel J. Bernstein's work on the same. + */ + +#include +#ifdef OPENSSL_NO_EC_NISTP_64_GCC_128 +NON_EMPTY_TRANSLATION_UNIT +#else + +# include +# include +# include +# include "ec_lcl.h" + +# if defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) + /* even with gcc, the typedef won't work for 32-bit platforms */ +typedef __uint128_t uint128_t; /* nonstandard; implemented by gcc on 64-bit + * platforms */ +typedef __int128_t int128_t; +# else +# error "Need GCC 3.1 or later to define type uint128_t" +# endif + +typedef uint8_t u8; +typedef uint32_t u32; +typedef uint64_t u64; +typedef int64_t s64; + +/* + * The underlying field. SM2-P256 operates over GF(2^256-2^224-2^96+2^64-1). + * We can serialise an element of this field into 32 bytes. We call this an + * felem_bytearray. + */ + +typedef u8 felem_bytearray[32]; + +/* + * These are the parameters of SM2, taken from GM/T 0003.5-2012. These + * values are big-endian. + */ +static const felem_bytearray sm2p256v1_curve_params[5] = { + {0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, /* p */ + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + {0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, /* a = -3 */ + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC}, + {0x28, 0xE9, 0xFA, 0x9E, 0x9D, 0x9F, 0x5E, 0x34, /* b */ + 0x4D, 0x5A, 0x9E, 0x4B, 0xCF, 0x65, 0x09, 0xA7, + 0xF3, 0x97, 0x89, 0xF5, 0x15, 0xAB, 0x8F, 0x92, + 0xDD, 0xBC, 0xBD, 0x41, 0x4D, 0x94, 0x0E, 0x93}, + {0x32, 0xC4, 0xAE, 0x2C, 0x1F, 0x19, 0x81, 0x19, /* x */ + 0x5F, 0x99, 0x04, 0x46, 0x6A, 0x39, 0xC9, 0x94, + 0x8F, 0xE3, 0x0B, 0xBF, 0xF2, 0x66, 0x0B, 0xE1, + 0x71, 0x5A, 0x45, 0x89, 0x33, 0x4C, 0x74, 0xC7}, + {0xBC, 0x37, 0x36, 0xA2, 0xF4, 0xF6, 0x77, 0x9C, /* y */ + 0x59, 0xBD, 0xCE, 0xE3, 0x6B, 0x69, 0x21, 0x53, + 0xD0, 0xA9, 0x87, 0x7C, 0xC6, 0x2A, 0x47, 0x40, + 0x02, 0xDF, 0x32, 0xE5, 0x21, 0x39, 0xF0, 0xA0} +}; + +/*- + * The representation of field elements. + * ------------------------------------ + * + * We represent field elements with either four 128-bit values, eight 128-bit + * values, or four 64-bit values. The field element represented is: + * v[0]*2^0 + v[1]*2^64 + v[2]*2^128 + v[3]*2^192 (mod p) + * or: + * v[0]*2^0 + v[1]*2^64 + v[2]*2^128 + ... + v[8]*2^512 (mod p) + * + * 128-bit values are called 'limbs'. Since the limbs are spaced only 64 bits + * apart, but are 128-bits wide, the most significant bits of each limb overlap + * with the least significant bits of the next. + * + * A field element with four limbs is an 'felem'. One with eight limbs is a + * 'longfelem' + * + * A field element with four, 64-bit values is called a 'smallfelem'. Small + * values are used as intermediate values before multiplication. + */ + +# define NLIMBS 4 + +typedef uint128_t limb; +typedef limb felem[NLIMBS]; +typedef limb longfelem[NLIMBS * 2]; +typedef u64 smallfelem[NLIMBS]; + +/* This is the value of the prime as four 64-bit words, little-endian. */ +static const u64 kPrime[4] = { + 0xfffffffffffffffful, 0xffffffff00000000ul, + 0xfffffffffffffffful, 0xfffffffefffffffful}; +static const u64 bottom63bits = 0x7ffffffffffffffful; + +/* + * bin32_to_felem takes a little-endian byte array and converts it into felem + * form. This assumes that the CPU is little-endian. + */ +static void bin32_to_felem(felem out, const u8 in[32]) +{ + out[0] = *((u64 *)&in[0]); + out[1] = *((u64 *)&in[8]); + out[2] = *((u64 *)&in[16]); + out[3] = *((u64 *)&in[24]); +} + +/* + * smallfelem_to_bin32 takes a smallfelem and serialises into a little + * endian, 32 byte array. This assumes that the CPU is little-endian. + */ +static void smallfelem_to_bin32(u8 out[32], const smallfelem in) +{ + *((u64 *)&out[0]) = in[0]; + *((u64 *)&out[8]) = in[1]; + *((u64 *)&out[16]) = in[2]; + *((u64 *)&out[24]) = in[3]; +} + +/* To preserve endianness when using BN_bn2bin and BN_bin2bn */ +static void flip_endian(u8 *out, const u8 *in, unsigned len) +{ + unsigned i; + for (i = 0; i < len; ++i) + out[i] = in[len - 1 - i]; +} + +/* BN_to_felem converts an OpenSSL BIGNUM into an felem */ +static int BN_to_felem(felem out, const BIGNUM *bn) +{ + felem_bytearray b_in; + felem_bytearray b_out; + unsigned num_bytes; + + /* BN_bn2bin eats leading zeroes */ + memset(b_out, 0, sizeof(b_out)); + num_bytes = BN_num_bytes(bn); + if (num_bytes > sizeof b_out) { + ECerr(EC_F_BN_TO_FELEM, EC_R_BIGNUM_OUT_OF_RANGE); + return 0; + } + if (BN_is_negative(bn)) { + ECerr(EC_F_BN_TO_FELEM, EC_R_BIGNUM_OUT_OF_RANGE); + return 0; + } + num_bytes = BN_bn2bin(bn, b_in); + flip_endian(b_out, b_in, num_bytes); + bin32_to_felem(out, b_out); + return 1; +} + + +/* felem_to_BN converts an felem into an OpenSSL BIGNUM */ +static BIGNUM *smallfelem_to_BN(BIGNUM *out, const smallfelem in) +{ + felem_bytearray b_in, b_out; + smallfelem_to_bin32(b_in, in); + flip_endian(b_out, b_in, sizeof b_out); + return BN_bin2bn(b_out, sizeof b_out, out); +} + + +/*- + * Field operations + * ---------------- + */ + +static void smallfelem_one(smallfelem out) +{ + out[0] = 1; + out[1] = 0; + out[2] = 0; + out[3] = 0; +} + +static void smallfelem_assign(smallfelem out, const smallfelem in) +{ + out[0] = in[0]; + out[1] = in[1]; + out[2] = in[2]; + out[3] = in[3]; +} + +static void felem_assign(felem out, const felem in) +{ + out[0] = in[0]; + out[1] = in[1]; + out[2] = in[2]; + out[3] = in[3]; +} + +/* felem_sum sets out = out + in. */ +static void felem_sum(felem out, const felem in) +{ + out[0] += in[0]; + out[1] += in[1]; + out[2] += in[2]; + out[3] += in[3]; +} + +/* felem_small_sum sets out = out + in. */ +static void felem_small_sum(felem out, const smallfelem in) +{ + out[0] += in[0]; + out[1] += in[1]; + out[2] += in[2]; + out[3] += in[3]; +} + +/* felem_scalar sets out = out * scalar */ +static void felem_scalar(felem out, const u64 scalar) +{ + out[0] *= scalar; + out[1] *= scalar; + out[2] *= scalar; + out[3] *= scalar; +} + +/* longfelem_scalar sets out = out * scalar */ +static void longfelem_scalar(longfelem out, const u64 scalar) +{ + out[0] *= scalar; + out[1] *= scalar; + out[2] *= scalar; + out[3] *= scalar; + out[4] *= scalar; + out[5] *= scalar; + out[6] *= scalar; + out[7] *= scalar; +} + +# define two105m73m41 (((limb)1) << 105) - (((limb)1) << 73) - (((limb)1) << 41) +# define two105m41 (((limb)1) << 105) - (((limb)1) << 41) +# define two105m73 (((limb)1) << 105) - (((limb)1) << 73) + +/* zero105 is 0 mod p */ +static const felem zero105 = + { two105m41, two105m73, two105m41, two105m73m41 }; + +/*- + * smallfelem_neg sets |out| to |-small| + * On exit: + * out[i] < out[i] + 2^105 + */ +static void smallfelem_neg(felem out, const smallfelem small) +{ + /* In order to prevent underflow, we subtract from 0 mod p. */ + out[0] = zero105[0] - small[0]; + out[1] = zero105[1] - small[1]; + out[2] = zero105[2] - small[2]; + out[3] = zero105[3] - small[3]; +} + +/*- + * felem_diff subtracts |in| from |out| + * On entry: + * in[i] < 2^104 + * On exit: + * out[i] < out[i] + 2^105 + */ +static void felem_diff(felem out, const felem in) +{ + /* + * In order to prevent underflow, we add 0 mod p before subtracting. + */ + out[0] += zero105[0]; + out[1] += zero105[1]; + out[2] += zero105[2]; + out[3] += zero105[3]; + + out[0] -= in[0]; + out[1] -= in[1]; + out[2] -= in[2]; + out[3] -= in[3]; +} + +# define two107m75m43 (((limb)1) << 107) - (((limb)1) << 75) - (((limb)1) << 43) +# define two107m43 (((limb)1) << 107) - (((limb)1) << 43) +# define two107m75 (((limb)1) << 107) - (((limb)1) << 75) + +/* zero107 is 0 mod p */ +static const felem zero107 = + { two107m43, two107m75, two107m43, two107m75m43 }; + +/*- + * An alternative felem_diff for larger inputs |in| + * felem_diff_zero107 subtracts |in| from |out| + * On entry: + * in[i] < 2^106 + * On exit: + * out[i] < out[i] + 2^107 + */ +static void felem_diff_zero107(felem out, const felem in) +{ + /* + * In order to prevent underflow, we add 0 mod p before subtracting. + */ + out[0] += zero107[0]; + out[1] += zero107[1]; + out[2] += zero107[2]; + out[3] += zero107[3]; + + out[0] -= in[0]; + out[1] -= in[1]; + out[2] -= in[2]; + out[3] -= in[3]; +} + +/*- + * longfelem_diff subtracts |in| from |out| + * On entry: + * in[i] < 7*2^67 + * On exit: + * out[i] < out[i] + 2^70 + 2^40 + */ +static void longfelem_diff(longfelem out, const longfelem in) +{ + static const limb two70m39m7m6 = + (((limb) 1) << 70) - (((limb) 1) << 39)- (((limb) 1) << 7) - + (((limb) 1) << 6); + static const limb two70m40p38 = + (((limb) 1) << 70) - (((limb) 1) << 40) + (((limb) 1) << 38); + static const limb two70m38m7 = + (((limb) 1) << 70) - (((limb) 1) << 38) - (((limb) 1) << 7); + static const limb two70m40m7m6 = + (((limb) 1) << 70) - (((limb) 1) << 40) - (((limb) 1) << 7) - + (((limb) 1) << 6); + static const limb two70m6 = (((limb) 1) << 70) - (((limb) 1) << 6); + + /* add 0 mod p to avoid underflow */ + out[0] += two70m39m7m6; + out[1] += two70m40p38; + out[2] += two70m38m7; + out[3] += two70m40m7m6; + out[4] += two70m6; + out[5] += two70m6; + out[6] += two70m6; + out[7] += two70m6; + + out[0] -= in[0]; + out[1] -= in[1]; + out[2] -= in[2]; + out[3] -= in[3]; + out[4] -= in[4]; + out[5] -= in[5]; + out[6] -= in[6]; + out[7] -= in[7]; +} + +# define two64m32m0 (((limb)1) << 64) - (((limb)1) << 32) - 1 +# define two64m0 (((limb)1) << 64) - 1 +# define two64m32 (((limb)1) << 64) - (((limb)1) << 32) + +/* zero64 == p */ +static const felem zero64 = { two64m0, two64m32, two64m0, two64m32m0 }; + +/*- + * felem_shrink converts an felem into a smallfelem. The result isn't quite + * minimal as the value may be greater than p. + * + * On entry: + * in[i] < 2^109 + * On exit: + * out[i] < 2^64 + */ +static void felem_shrink(smallfelem out, const felem in) +{ + felem tmp; + u64 a, b, mask; + s64 high, low; + + static const u64 kPrime3Test = 0x7ffffffefffffffful; + + /* Carry 2->3 */ + tmp[3] = zero64[3] + in[3] + ((u64)(in[2] >> 64)); + /* tmp[3] < 2^110 */ + + tmp[2] = zero64[2] + (u64)in[2]; + tmp[1] = zero64[1] + in[1]; + tmp[0] = zero64[0] + in[0]; + /* tmp[0] < 2**110, tmp[1] < 2^111, tmp[2] < 2**65 */ + + /* + * We perform two partial reductions where we eliminate the high-word of + * tmp[3]. We don't update the other words till the end. + */ + a = tmp[3] >> 64; /* a < 2^46 */ + tmp[3] = (u64)tmp[3]; + tmp[3] += ((limb) a) << 32; + /* tmp[3] < 2^79 */ + + b = a; + a = tmp[3] >> 64; /* a < 2^15 */ + b += a; /* b < 2^46 + 2^15 < 2^47 */ + tmp[3] = (u64)tmp[3]; + tmp[3] += ((limb) a) << 32; + /* tmp[3] < 2^64 + 2^47 */ + + /* + * This adjusts the other two words to complete the two partial + * reductions. + */ + tmp[1] += (((limb) b) << 32); + tmp[1] -= b; + tmp[0] += b; + + /* + * In order to make space in tmp[3] for the carry from 2 -> 3, we + * conditionally subtract kPrime if tmp[3] is large enough. + */ + high = tmp[3] >> 64; + /* As tmp[3] < 2^65, high is either 1 or 0 */ + high <<= 63; + high >>= 63; + /*- + * high is: + * all ones if the high word of tmp[3] is 1 + * all zeros if the high word of tmp[3] if 0 */ + low = tmp[3]; + mask = low >> 63; + /*- + * mask is: + * all ones if the MSB of low is 1 + * all zeros if the MSB of low if 0 */ + low &= bottom63bits; + low -= kPrime3Test; + /* if low was greater than kPrime3Test then the MSB is zero */ + low = ~low; + low >>= 63; + /*- + * low is: + * all ones if low was > kPrime3Test + * all zeros if low was <= kPrime3Test */ + mask = (mask & low) | high; + tmp[0] -= mask & kPrime[0]; + tmp[1] -= mask & kPrime[1]; + tmp[2] -= mask & kPrime[2]; + tmp[3] -= mask & kPrime[3]; + /* tmp[3] < 2**64 - 2**32 + 1 */ + + tmp[1] += ((u64)(tmp[0] >> 64)); + tmp[0] = (u64)tmp[0]; + tmp[2] += ((u64)(tmp[1] >> 64)); + tmp[1] = (u64)tmp[1]; + tmp[3] += ((u64)(tmp[2] >> 64)); + tmp[2] = (u64)tmp[2]; + /* tmp[i] < 2^64 */ + + out[0] = tmp[0]; + out[1] = tmp[1]; + out[2] = tmp[2]; + out[3] = tmp[3]; +} + +/* smallfelem_expand converts a smallfelem to an felem */ +static void smallfelem_expand(felem out, const smallfelem in) +{ + out[0] = in[0]; + out[1] = in[1]; + out[2] = in[2]; + out[3] = in[3]; +} + +/*- + * smallfelem_square sets |out| = |small|^2 + * On entry: + * small[i] < 2^64 + * On exit: + * out[i] < 7 * 2^64 < 2^67 + */ +static void smallfelem_square(longfelem out, const smallfelem small) +{ + limb a; + u64 high, low; + + a = ((uint128_t) small[0]) * small[0]; + low = a; + high = a >> 64; + out[0] = low; + out[1] = high; + + a = ((uint128_t) small[0]) * small[1]; + low = a; + high = a >> 64; + out[1] += low; + out[1] += low; + out[2] = high; + + a = ((uint128_t) small[0]) * small[2]; + low = a; + high = a >> 64; + out[2] += low; + out[2] *= 2; + out[3] = high; + + a = ((uint128_t) small[0]) * small[3]; + low = a; + high = a >> 64; + out[3] += low; + out[4] = high; + + a = ((uint128_t) small[1]) * small[2]; + low = a; + high = a >> 64; + out[3] += low; + out[3] *= 2; + out[4] += high; + + a = ((uint128_t) small[1]) * small[1]; + low = a; + high = a >> 64; + out[2] += low; + out[3] += high; + + a = ((uint128_t) small[1]) * small[3]; + low = a; + high = a >> 64; + out[4] += low; + out[4] *= 2; + out[5] = high; + + a = ((uint128_t) small[2]) * small[3]; + low = a; + high = a >> 64; + out[5] += low; + out[5] *= 2; + out[6] = high; + out[6] += high; + + a = ((uint128_t) small[2]) * small[2]; + low = a; + high = a >> 64; + out[4] += low; + out[5] += high; + + a = ((uint128_t) small[3]) * small[3]; + low = a; + high = a >> 64; + out[6] += low; + out[7] = high; +} + +/*- + * felem_square sets |out| = |in|^2 + * On entry: + * in[i] < 2^109 + * On exit: + * out[i] < 7 * 2^64 < 2^67 + */ +static void felem_square(longfelem out, const felem in) +{ + u64 small[4]; + felem_shrink(small, in); + smallfelem_square(out, small); +} + +/*- + * smallfelem_mul sets |out| = |small1| * |small2| + * On entry: + * small1[i] < 2^64 + * small2[i] < 2^64 + * On exit: + * out[i] < 7 * 2^64 < 2^67 + */ +static void smallfelem_mul(longfelem out, const smallfelem small1, + const smallfelem small2) +{ + limb a; + u64 high, low; + + a = ((uint128_t) small1[0]) * small2[0]; + low = a; + high = a >> 64; + out[0] = low; + out[1] = high; + + a = ((uint128_t) small1[0]) * small2[1]; + low = a; + high = a >> 64; + out[1] += low; + out[2] = high; + + a = ((uint128_t) small1[1]) * small2[0]; + low = a; + high = a >> 64; + out[1] += low; + out[2] += high; + + a = ((uint128_t) small1[0]) * small2[2]; + low = a; + high = a >> 64; + out[2] += low; + out[3] = high; + + a = ((uint128_t) small1[1]) * small2[1]; + low = a; + high = a >> 64; + out[2] += low; + out[3] += high; + + a = ((uint128_t) small1[2]) * small2[0]; + low = a; + high = a >> 64; + out[2] += low; + out[3] += high; + + a = ((uint128_t) small1[0]) * small2[3]; + low = a; + high = a >> 64; + out[3] += low; + out[4] = high; + + a = ((uint128_t) small1[1]) * small2[2]; + low = a; + high = a >> 64; + out[3] += low; + out[4] += high; + + a = ((uint128_t) small1[2]) * small2[1]; + low = a; + high = a >> 64; + out[3] += low; + out[4] += high; + + a = ((uint128_t) small1[3]) * small2[0]; + low = a; + high = a >> 64; + out[3] += low; + out[4] += high; + + a = ((uint128_t) small1[1]) * small2[3]; + low = a; + high = a >> 64; + out[4] += low; + out[5] = high; + + a = ((uint128_t) small1[2]) * small2[2]; + low = a; + high = a >> 64; + out[4] += low; + out[5] += high; + + a = ((uint128_t) small1[3]) * small2[1]; + low = a; + high = a >> 64; + out[4] += low; + out[5] += high; + + a = ((uint128_t) small1[2]) * small2[3]; + low = a; + high = a >> 64; + out[5] += low; + out[6] = high; + + a = ((uint128_t) small1[3]) * small2[2]; + low = a; + high = a >> 64; + out[5] += low; + out[6] += high; + + a = ((uint128_t) small1[3]) * small2[3]; + low = a; + high = a >> 64; + out[6] += low; + out[7] = high; +} + +/*- + * felem_mul sets |out| = |in1| * |in2| + * On entry: + * in1[i] < 2^109 + * in2[i] < 2^109 + * On exit: + * out[i] < 7 * 2^64 < 2^67 + */ +static void felem_mul(longfelem out, const felem in1, const felem in2) +{ + smallfelem small1, small2; + felem_shrink(small1, in1); + felem_shrink(small2, in2); + smallfelem_mul(out, small1, small2); +} + +/*- + * felem_small_mul sets |out| = |small1| * |in2| + * On entry: + * small1[i] < 2^64 + * in2[i] < 2^109 + * On exit: + * out[i] < 7 * 2^64 < 2^67 + */ +static void felem_small_mul(longfelem out, const smallfelem small1, + const felem in2) +{ + smallfelem small2; + felem_shrink(small2, in2); + smallfelem_mul(out, small1, small2); +} + +/*- + * Internal function for the different flavours of felem_reduce. + * felem_reduce_ reduces the higher coefficients in[4]-in[7]. + * On entry: + * out[0] >= in[6] + 2^32*in[6] + in[7] + 2^32*in[7] + * out[1] >= in[7] + 2^32*in[4] + * out[2] >= in[5] + 2^32*in[5] + * out[3] >= in[4] + 2^32*in[5] + 2^32*in[6] + * On exit: + * out[0] <= out[0] + in[4] + 2^32*in[5] + * out[1] <= out[1] + in[5] + 2^33*in[6] + * out[2] <= out[2] + in[7] + 2*in[6] + 2^33*in[7] + * out[3] <= out[3] + 2^32*in[4] + 3*in[7] + */ +static void felem_reduce(felem out, const longfelem in) +{ + uint128_t a, b, c, d; + a = in[6] + in[7]; + b = in[5] + in[7]; + c = in[4] + in[7]; + d = a + b; + + out[3] = in[3] + ((in[4] + in[5] + a * 2) << 32) + in[7]; + out[2] = in[2] + (b << 32) + a + in[7]; + out[1] = in[1] + ((c + in[6]) << 32) - c; + out[0] = in[0] + (d << 32) + d + in[4]; +} + +/* + * subtract_u64 sets *result = *result - v and *carry to one if the + * subtraction underflowed. + */ +static void subtract_u64(u64 *result, u64 *carry, u64 v) +{ + uint128_t r = *result; + r -= v; + *carry = (r >> 64) & 1; + *result = (u64)r; +} + +/* + * felem_contract converts |in| to its unique, minimal representation. On + * entry: in[i] < 2^109 + */ +static void felem_contract(smallfelem out, const felem in) +{ + unsigned i; + u64 all_equal_so_far = 0, result = 0, carry; + + felem_shrink(out, in); + /* small is minimal except that the value might be > p */ + + all_equal_so_far--; + /* + * We are doing a constant time test if out >= kPrime. We need to compare + * each u64, from most-significant to least significant. For each one, if + * all words so far have been equal (m is all ones) then a non-equal + * result is the answer. Otherwise we continue. + */ + for (i = 3; i < 4; i--) { + u64 equal; + uint128_t a = ((uint128_t) kPrime[i]) - out[i]; + /* + * if out[i] > kPrime[i] then a will underflow and the high 64-bits + * will all be set. + */ + result |= all_equal_so_far & ((u64)(a >> 64)); + + /* + * if kPrime[i] == out[i] then |equal| will be all zeros and the + * decrement will make it all ones. + */ + equal = kPrime[i] ^ out[i]; + equal--; + equal &= equal << 32; + equal &= equal << 16; + equal &= equal << 8; + equal &= equal << 4; + equal &= equal << 2; + equal &= equal << 1; + equal = ((s64) equal) >> 63; + + all_equal_so_far &= equal; + } + + /* + * if all_equal_so_far is still all ones then the two values are equal + * and so out >= kPrime is true. + */ + result |= all_equal_so_far; + + /* if out >= kPrime then we subtract kPrime. */ + subtract_u64(&out[0], &carry, result & kPrime[0]); + subtract_u64(&out[1], &carry, carry); + subtract_u64(&out[2], &carry, carry); + subtract_u64(&out[3], &carry, carry); + + subtract_u64(&out[1], &carry, result & kPrime[1]); + subtract_u64(&out[2], &carry, carry); + subtract_u64(&out[3], &carry, carry); + + subtract_u64(&out[2], &carry, result & kPrime[2]); + subtract_u64(&out[3], &carry, carry); + + subtract_u64(&out[3], &carry, result & kPrime[3]); +} + +static void smallfelem_square_contract(smallfelem out, const smallfelem in) +{ + longfelem longtmp; + felem tmp; + + smallfelem_square(longtmp, in); + felem_reduce(tmp, longtmp); + felem_contract(out, tmp); +} + +static void smallfelem_mul_contract(smallfelem out, const smallfelem in1, + const smallfelem in2) +{ + longfelem longtmp; + felem tmp; + + smallfelem_mul(longtmp, in1, in2); + felem_reduce(tmp, longtmp); + felem_contract(out, tmp); +} + +/*- + * felem_is_zero returns a limb with all bits set if |in| == 0 (mod p) and 0 + * otherwise. + * On entry: + * small[i] < 2^64 + */ +static limb smallfelem_is_zero(const smallfelem small) +{ + limb result; + u64 is_p; + + u64 is_zero = small[0] | small[1] | small[2] | small[3]; + is_zero--; + is_zero &= is_zero << 32; + is_zero &= is_zero << 16; + is_zero &= is_zero << 8; + is_zero &= is_zero << 4; + is_zero &= is_zero << 2; + is_zero &= is_zero << 1; + is_zero = ((s64) is_zero) >> 63; + + is_p = (small[0] ^ kPrime[0]) | + (small[1] ^ kPrime[1]) | + (small[2] ^ kPrime[2]) | (small[3] ^ kPrime[3]); + is_p--; + is_p &= is_p << 32; + is_p &= is_p << 16; + is_p &= is_p << 8; + is_p &= is_p << 4; + is_p &= is_p << 2; + is_p &= is_p << 1; + is_p = ((s64) is_p) >> 63; + + is_zero |= is_p; + + result = is_zero; + result |= ((limb) is_zero) << 64; + return result; +} + +static int smallfelem_is_zero_int(const smallfelem small) +{ + return (int)(smallfelem_is_zero(small) & ((limb) 1)); +} + +/*- + * felem_inv calculates |out| = |in|^{-1} + */ +static void felem_inv(felem out, const felem in) +{ + felem ftmp; + felem a1, a2, a3, a4, a5; + longfelem tmp; + unsigned i; + + felem_square(tmp, in); + felem_reduce(a1, tmp); + felem_mul(tmp, a1, in); + felem_reduce(a2, tmp); + felem_square(tmp, a2); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_mul(tmp, ftmp, a2); + felem_reduce(a3, tmp); + felem_square(tmp, a3); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_mul(tmp, ftmp, a3); + felem_reduce(a4, tmp); + felem_square(tmp, a4); + felem_reduce(a5, tmp); + for (i = 1; i < 8; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a5, tmp); + for (i = 0; i < 8; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a5, tmp); + for (i = 0; i < 4; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a5, tmp); + felem_square(tmp, a5); + felem_reduce(a5, tmp); + felem_square(tmp, a5); + felem_reduce(a5, tmp); + felem_mul(tmp, a5, a2); + felem_reduce(a5, tmp); + felem_square(tmp, a5); + felem_reduce(ftmp, tmp); + felem_mul(tmp, ftmp, in); + felem_reduce(a5, tmp); + felem_square(tmp, a5); + felem_reduce(a4, tmp); + felem_mul(tmp, a4, a1); + felem_reduce(a3, tmp); + felem_square(tmp, a4); + felem_reduce(a5, tmp); + for (i = 0; i < 30; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a4, tmp); + felem_square(tmp, a4); + felem_reduce(a4, tmp); + felem_mul(tmp, a4, in); + felem_reduce(a4, tmp); + felem_mul(tmp, a4, a2); + felem_reduce(a3, tmp); + for (i = 0; i < 33; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a2, tmp); + felem_mul(tmp, a2, a3); + felem_reduce(a3, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a2, tmp); + felem_mul(tmp, a2, a3); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a2, tmp); + felem_mul(tmp, a2, a3); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a2, tmp); + felem_mul(tmp, a2, a3); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a2, tmp); + felem_mul(tmp, a2, a3); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a4, a5); + felem_reduce(out, tmp); +} + +#ifdef SM2_USE_INV_SQR +static void felem_inv_sqr(felem out, const felem in) +{ + felem ftmp; + felem a1, a2, a3, a4, a5; + longfelem tmp; + unsigned i; + + felem_square(tmp, in); + felem_reduce(a1, tmp); + felem_mul(tmp, a1, in); + felem_reduce(a2, tmp); + felem_square(tmp, a2); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_mul(tmp, ftmp, a2); + felem_reduce(a3, tmp); + felem_square(tmp, a3); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + felem_mul(tmp, ftmp, a3); + felem_reduce(a4, tmp); + felem_square(tmp, a4); + felem_reduce(a5, tmp); + for (i = 1; i < 8; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a5, tmp); + for (i = 0; i < 8; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a5, tmp); + for (i = 0; i < 4; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a5, tmp); + felem_square(tmp, a5); + felem_reduce(a5, tmp); + felem_square(tmp, a5); + felem_reduce(a5, tmp); + felem_mul(tmp, a5, a2); + felem_reduce(a5, tmp); + felem_square(tmp, a5); + felem_reduce(ftmp, tmp); + felem_mul(tmp, ftmp, in); + felem_reduce(a2, tmp); + felem_mul(tmp, a2, in); + felem_reduce(a4, tmp); + felem_square(tmp, a2); + felem_reduce(a5, tmp); + for (i = 0; i < 30; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a2); + felem_reduce(a3, tmp); + felem_mul(tmp, a3, in); + felem_reduce(a4, tmp); + felem_square(tmp, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a2, tmp); + felem_mul(tmp, a3, a2); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a2, tmp); + felem_mul(tmp, a3, a2); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a2, tmp); + felem_mul(tmp, a3, a2); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a4); + felem_reduce(a2, tmp); + felem_mul(tmp, a3, a2); + felem_reduce(a3, tmp); + felem_mul(tmp, a2, a4); + felem_reduce(a4, tmp); + for (i = 0; i < 32; i++) { + felem_square(tmp, a5); + felem_reduce(a5, tmp); + } + felem_mul(tmp, a5, a3); + felem_reduce(a3, tmp); + felem_square(tmp, a3); + felem_reduce(a3, tmp); + felem_square(tmp, a3); + felem_reduce(out, tmp); +} +#endif + +static void smallfelem_inv_contract(smallfelem out, const smallfelem in) +{ + felem tmp; + + smallfelem_expand(tmp, in); + felem_inv(tmp, tmp); + felem_contract(out, tmp); +} + +/*- + * Group operations + * ---------------- + * + * Building on top of the field operations we have the operations on the + * elliptic curve group itself. Points on the curve are represented in Jacobian + * coordinates + */ + +/*- + * point_double calculates 2*(x_in, y_in, z_in) + * + * The method is taken from: + * http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2001-b + * + * Outputs can equal corresponding inputs, i.e., x_out == x_in is allowed. + * while x_out == y_in is not (maybe this works, but it's not tested). + */ +static void +point_double(felem x_out, felem y_out, felem z_out, + const felem x_in, const felem y_in, const felem z_in) +{ + longfelem tmp, tmp2; + felem delta, gamma, beta, alpha, ftmp, ftmp2; + smallfelem small1, small2; + + felem_assign(ftmp, x_in); + /* ftmp[i] < 2^106 */ + felem_assign(ftmp2, x_in); + /* ftmp2[i] < 2^106 */ + + /* delta = z^2 */ + felem_square(tmp, z_in); + felem_reduce(delta, tmp); + /* delta[i] < 2^101 */ + + /* gamma = y^2 */ + felem_square(tmp, y_in); + felem_reduce(gamma, tmp); + + /* gamma[i] < 2^101 */ + felem_shrink(small1, gamma); + + /* beta = x*gamma */ + felem_small_mul(tmp, small1, x_in); + felem_reduce(beta, tmp); + /* beta[i] < 2^101 */ + + /* alpha = 3*(x-delta)*(x+delta) */ + felem_diff(ftmp, delta); + /* ftmp[i] < 2^105 + 2^106 < 2^107 */ + + felem_sum(ftmp2, delta); + /* ftmp2[i] < 2^105 + 2^106 < 2^107 */ + + felem_scalar(ftmp2, 3); + /* ftmp2[i] < 3 * 2^107 < 2^109 */ + + felem_mul(tmp, ftmp, ftmp2); + felem_reduce(alpha, tmp); + felem_shrink(small2, alpha); + /* alpha[i] < 2^101 */ + + /* x' = alpha^2 - 8*beta */ + smallfelem_square(tmp, small2); + felem_reduce(x_out, tmp); + felem_assign(ftmp, beta); + felem_scalar(ftmp, 8); + /* ftmp[i] < 8 * 2^101 = 2^104 */ + felem_diff(x_out, ftmp); + /* x_out[i] < 2^105 + 2^101 < 2^106 */ + + /* z' = (y + z)^2 - gamma - delta */ + felem_sum(delta, gamma); + /* delta[i] < 2^101 + 2^101 = 2^102 */ + felem_assign(ftmp, y_in); + felem_sum(ftmp, z_in); + /* ftmp[i] < 2^106 + 2^106 = 2^107 */ + felem_square(tmp, ftmp); + felem_reduce(z_out, tmp); + felem_diff(z_out, delta); + /* z_out[i] < 2^105 + 2^101 < 2^106 */ + + /* y' = alpha*(4*beta - x') - 8*gamma^2 */ + felem_scalar(beta, 4); + /* beta[i] < 4 * 2^101 = 2^103 */ + felem_diff_zero107(beta, x_out); + /* beta[i] < 2^107 + 2^103 < 2^108 */ + felem_small_mul(tmp, small2, beta); + /* tmp[i] < 7 * 2^64 < 2^67 */ + smallfelem_square(tmp2, small1); + /* tmp2[i] < 7 * 2^64 */ + longfelem_scalar(tmp2, 8); + /* tmp2[i] < 8 * 7 * 2^64 = 7 * 2^67 */ + + longfelem_diff(tmp, tmp2); + /* tmp[i] < 2^67 + 2^70 + 2^40 < 2^71 */ + felem_reduce(y_out, tmp); + /* y_out[i] < 2^106 */ +} + +/* + * point_double_small is the same as point_double, except that it operates on + * smallfelems + */ +static void +point_double_small(smallfelem x_out, smallfelem y_out, smallfelem z_out, + const smallfelem x_in, const smallfelem y_in, + const smallfelem z_in) +{ + felem felem_x_out, felem_y_out, felem_z_out; + felem felem_x_in, felem_y_in, felem_z_in; + + smallfelem_expand(felem_x_in, x_in); + smallfelem_expand(felem_y_in, y_in); + smallfelem_expand(felem_z_in, z_in); + point_double(felem_x_out, felem_y_out, felem_z_out, + felem_x_in, felem_y_in, felem_z_in); + felem_shrink(x_out, felem_x_out); + felem_shrink(y_out, felem_y_out); + felem_shrink(z_out, felem_z_out); +} + +/* copy_conditional copies in to out iff mask is all ones. */ +static void copy_conditional(felem out, const felem in, limb mask) +{ + unsigned i; + for (i = 0; i < NLIMBS; ++i) { + const limb tmp = mask & (in[i] ^ out[i]); + out[i] ^= tmp; + } +} + +/* copy_small_conditional copies in to out iff mask is all ones. */ +static void copy_small_conditional(felem out, const smallfelem in, limb mask) +{ + unsigned i; + const u64 mask64 = mask; + for (i = 0; i < NLIMBS; ++i) { + out[i] = ((limb) (in[i] & mask64)) | (out[i] & ~mask); + } +} + +/*- + * point_add calculates (x1, y1, z1) + (x2, y2, z2) + * + * The method is taken from: + * http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#addition-add-2007-bl, + * adapted for mixed addition (z2 = 1, or z2 = 0 for the point at infinity). + * + * This function includes a branch for checking whether the two input points + * are equal, (while not equal to the point at infinity). This case never + * happens during single point multiplication, so there is no timing leak for + * ECDH or ECDSA signing. + */ +static void point_add(felem x3, felem y3, felem z3, + const felem x1, const felem y1, const felem z1, + const int mixed, const smallfelem x2, + const smallfelem y2, const smallfelem z2) +{ + felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, ftmp6, x_out, y_out, z_out; + longfelem tmp, tmp2; + smallfelem small1, small2, small3, small4, small5; + limb x_equal, y_equal, z1_is_zero, z2_is_zero; + + + felem_shrink(small3, z1); + + z1_is_zero = smallfelem_is_zero(small3); + z2_is_zero = smallfelem_is_zero(z2); + + /* ftmp = z1z1 = z1**2 */ + smallfelem_square(tmp, small3); + felem_reduce(ftmp, tmp); + /* ftmp[i] < 2^101 */ + felem_shrink(small1, ftmp); + + if (!mixed) { + /* ftmp2 = z2z2 = z2**2 */ + smallfelem_square(tmp, z2); + felem_reduce(ftmp2, tmp); + /* ftmp2[i] < 2^101 */ + felem_shrink(small2, ftmp2); + + felem_shrink(small5, x1); + + /* u1 = ftmp3 = x1*z2z2 */ + smallfelem_mul(tmp, small5, small2); + felem_reduce(ftmp3, tmp); + /* ftmp3[i] < 2^101 */ + + /* ftmp5 = z1 + z2 */ + felem_assign(ftmp5, z1); + felem_small_sum(ftmp5, z2); + /* ftmp5[i] < 2^107 */ + + /* ftmp5 = (z1 + z2)**2 - (z1z1 + z2z2) = 2z1z2 */ + felem_square(tmp, ftmp5); + felem_reduce(ftmp5, tmp); + /* ftmp2 = z2z2 + z1z1 */ + felem_sum(ftmp2, ftmp); + /* ftmp2[i] < 2^101 + 2^101 = 2^102 */ + felem_diff(ftmp5, ftmp2); + /* ftmp5[i] < 2^105 + 2^101 < 2^106 */ + + /* ftmp2 = z2 * z2z2 */ + smallfelem_mul(tmp, small2, z2); + felem_reduce(ftmp2, tmp); + + /* s1 = ftmp2 = y1 * z2**3 */ + felem_mul(tmp, y1, ftmp2); + felem_reduce(ftmp6, tmp); + /* ftmp6[i] < 2^101 */ + } else { + /* + * We'll assume z2 = 1 (special case z2 = 0 is handled later) + */ + + /* u1 = ftmp3 = x1*z2z2 */ + felem_assign(ftmp3, x1); + /* ftmp3[i] < 2^106 */ + + /* ftmp5 = 2z1z2 */ + felem_assign(ftmp5, z1); + felem_scalar(ftmp5, 2); + /* ftmp5[i] < 2*2^106 = 2^107 */ + + /* s1 = ftmp2 = y1 * z2**3 */ + felem_assign(ftmp6, y1); + /* ftmp6[i] < 2^106 */ + } + + /* u2 = x2*z1z1 */ + smallfelem_mul(tmp, x2, small1); + felem_reduce(ftmp4, tmp); + + /* h = ftmp4 = u2 - u1 */ + felem_diff_zero107(ftmp4, ftmp3); + /* ftmp4[i] < 2^107 + 2^101 < 2^108 */ + felem_shrink(small4, ftmp4); + + x_equal = smallfelem_is_zero(small4); + + /* z_out = ftmp5 * h */ + felem_small_mul(tmp, small4, ftmp5); + felem_reduce(z_out, tmp); + /* z_out[i] < 2^101 */ + + /* ftmp = z1 * z1z1 */ + smallfelem_mul(tmp, small1, small3); + felem_reduce(ftmp, tmp); + + /* s2 = tmp = y2 * z1**3 */ + felem_small_mul(tmp, y2, ftmp); + felem_reduce(ftmp5, tmp); + + /* r = ftmp5 = (s2 - s1)*2 */ + felem_diff_zero107(ftmp5, ftmp6); + /* ftmp5[i] < 2^107 + 2^107 = 2^108 */ + felem_scalar(ftmp5, 2); + /* ftmp5[i] < 2^109 */ + felem_shrink(small1, ftmp5); + y_equal = smallfelem_is_zero(small1); + + if (x_equal && y_equal && !z1_is_zero && !z2_is_zero) { + point_double(x3, y3, z3, x1, y1, z1); + return; + } + + /* I = ftmp = (2h)**2 */ + felem_assign(ftmp, ftmp4); + felem_scalar(ftmp, 2); + /* ftmp[i] < 2*2^108 = 2^109 */ + felem_square(tmp, ftmp); + felem_reduce(ftmp, tmp); + + /* J = ftmp2 = h * I */ + felem_mul(tmp, ftmp4, ftmp); + felem_reduce(ftmp2, tmp); + + /* V = ftmp4 = U1 * I */ + felem_mul(tmp, ftmp3, ftmp); + felem_reduce(ftmp4, tmp); + + /* x_out = r**2 - J - 2V */ + smallfelem_square(tmp, small1); + felem_reduce(x_out, tmp); + felem_assign(ftmp3, ftmp4); + felem_scalar(ftmp4, 2); + felem_sum(ftmp4, ftmp2); + /* ftmp4[i] < 2*2^101 + 2^101 < 2^103 */ + felem_diff(x_out, ftmp4); + /* x_out[i] < 2^105 + 2^101 */ + + /* y_out = r(V-x_out) - 2 * s1 * J */ + felem_diff_zero107(ftmp3, x_out); + /* ftmp3[i] < 2^107 + 2^101 < 2^108 */ + felem_small_mul(tmp, small1, ftmp3); + felem_mul(tmp2, ftmp6, ftmp2); + longfelem_scalar(tmp2, 2); + /* tmp2[i] < 2*2^67 = 2^68 */ + longfelem_diff(tmp, tmp2); + /* tmp[i] < 2^67 + 2^70 + 2^40 < 2^71 */ + felem_reduce(y_out, tmp); + /* y_out[i] < 2^106 */ + + copy_small_conditional(x_out, x2, z1_is_zero); + copy_conditional(x_out, x1, z2_is_zero); + copy_small_conditional(y_out, y2, z1_is_zero); + copy_conditional(y_out, y1, z2_is_zero); + copy_small_conditional(z_out, z2, z1_is_zero); + copy_conditional(z_out, z1, z2_is_zero); + felem_assign(x3, x_out); + felem_assign(y3, y_out); + felem_assign(z3, z_out); +} + +/* + * point_add_small is the same as point_add, except that it operates on + * smallfelems + */ +static void point_add_small(smallfelem x3, smallfelem y3, smallfelem z3, + smallfelem x1, smallfelem y1, smallfelem z1, + smallfelem x2, smallfelem y2, smallfelem z2) +{ + felem felem_x3, felem_y3, felem_z3; + felem felem_x1, felem_y1, felem_z1; + smallfelem_expand(felem_x1, x1); + smallfelem_expand(felem_y1, y1); + smallfelem_expand(felem_z1, z1); + point_add(felem_x3, felem_y3, felem_z3, felem_x1, felem_y1, felem_z1, 0, + x2, y2, z2); + felem_shrink(x3, felem_x3); + felem_shrink(y3, felem_y3); + felem_shrink(z3, felem_z3); +} + +/*- + * Base point pre computation + * -------------------------- + * + * Two different sorts of precomputed tables are used in the following code. + * Each contain various points on the curve, where each point is three field + * elements (x, y, z). + * + * For the base point table, z is usually 1 (0 for the point at infinity). + * This table has 2 * 16 elements, starting with the following: + * index | bits | point + * ------+---------+------------------------------ + * 0 | 0 0 0 0 | 0G + * 1 | 0 0 0 1 | 1G + * 2 | 0 0 1 0 | 2^64G + * 3 | 0 0 1 1 | (2^64 + 1)G + * 4 | 0 1 0 0 | 2^128G + * 5 | 0 1 0 1 | (2^128 + 1)G + * 6 | 0 1 1 0 | (2^128 + 2^64)G + * 7 | 0 1 1 1 | (2^128 + 2^64 + 1)G + * 8 | 1 0 0 0 | 2^192G + * 9 | 1 0 0 1 | (2^192 + 1)G + * 10 | 1 0 1 0 | (2^192 + 2^64)G + * 11 | 1 0 1 1 | (2^192 + 2^64 + 1)G + * 12 | 1 1 0 0 | (2^192 + 2^128)G + * 13 | 1 1 0 1 | (2^192 + 2^128 + 1)G + * 14 | 1 1 1 0 | (2^192 + 2^128 + 2^64)G + * 15 | 1 1 1 1 | (2^192 + 2^128 + 2^64 + 1)G + * followed by a copy of this with each element multiplied by 2^32. + * + * The reason for this is so that we can clock bits into four different + * locations when doing simple scalar multiplies against the base point, + * and then another four locations using the second 16 elements. + * + * Tables for other points have table[i] = iG for i in 0 .. 16. */ + +/* gmul is the table of precomputed base points */ +static const smallfelem gmul[2][16][3] = { + {{{0, 0, 0, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}}, + {{0x715a4589334c74c7, 0x8fe30bbff2660be1, 0x5f9904466a39c994, + 0x32c4ae2c1f198119}, + {0x2df32e52139f0a0, 0xd0a9877cc62a4740, 0x59bdcee36b692153, + 0xbc3736a2f4f6779c}, + {1, 0, 0, 0}}, + {{0xe18bd546b5824517, 0x673891d791caa486, 0xba220b99df9f9a14, + 0x95afbd1155c1da54}, + {0x8e4450eb334acdcb, 0xc3c7d1898a53f20d, 0x2eee750f4053017c, + 0xe8a6d82c517388c2}, + {1, 0, 0, 0}}, + {{0xf81c8da9b99fba55, 0x137f6c6149feef6e, 0xcb129aa494da9ad4, + 0x82a0f5407d123db6}, + {0xfdeca00772c4dbc9, 0xa961b58f0cf58373, 0xecacab94e973f9c3, + 0xf12fa4696a22ca3f}, + {1, 0, 0, 0}}, + {{0xeae3d9a9d13a42ed, 0x2b2308f6484e1b38, 0x3db7b24888c21f3a, + 0xb692e5b574d55da9}, + {0xd186469de295e5ab, 0xdb61ac1773438e6d, 0x5a924f85544926f9, + 0xa175051b0f3fb613}, + {1, 0, 0, 0}}, + {{0xa72d084f62c8d58b, 0xe3d6467deaf48fd7, 0x8fe75e5a128a56a7, + 0xc0023fe7ff2b68bd}, + {0x64f67782316815f9, 0xb52b6d9b19a69cd2, 0x5d1ed6fa89cbbade, + 0x796c910ee7f4ccdb}, + {1, 0, 0, 0}}, + {{0x1b2150c1c5f13015, 0xdaaba91b5d952c9b, 0xe8cc24c3f546142, + 0x75a34b243705f260}, + {0x77d195421cef1339, 0x636644aa0c3a0623, 0x4683df176eeb2444, + 0x642ce3bd3535e74d}, + {1, 0, 0, 0}}, + {{0x4a59ac2c6e7ecc08, 0xaf2b71164f191d63, 0x3622a87fb284554f, + 0xd9eb397b441e9cd0}, + {0xa66b8a4893b6a54d, 0x26fb89a40b4a663a, 0xafa87501eedfc9f4, + 0xf3f000bc66f98108}, + {1, 0, 0, 0}}, + {{0xad8bc68ce031d616, 0x16888d8ee4003187, 0x44c0757f3bb8b600, + 0x793fae7af0164245}, + {0x210cd042973f333b, 0x8666ff52dbd25f9, 0x65c5b129f5f7ad5d, + 0xe03d7a8d19b3219a}, + {1, 0, 0, 0}}, + {{0xd68bfbace0e00392, 0x261014f7d3445dc7, 0xd9f46b2714a071ee, + 0x1b200af30810b682}, + {0xd91d8b12ae69bcd, 0x74a08f17bf8cd981, 0xd822913cf0d2b82d, + 0x248b7af0b05bfad2}, + {1, 0, 0, 0}}, + {{0xba119a049e62f2e2, 0xf278e8a34df05ae5, 0xd269f3564eb5d180, + 0x8e74ad0f4f957cb1}, + {0x112ff4dabd76e2dd, 0x91373f20630fdb7f, 0xf43eab474992904c, + 0x55a5ccc7af3b6db4}, + {1, 0, 0, 0}}, + {{0x5ad104a8bdd23de9, 0xf5a9e515eb71c2c1, 0x390542a0ba95c174, + 0x4c55fb20426491bf}, + {0x91525735ef626289, 0xd2ed977f88f09635, 0xfd48731b7a8a8521, + 0x8f89a03b8fdebea}, + {1, 0, 0, 0}}, + {{0x7e8e61ea35eb8e2e, 0x1bb2700db98a762c, 0xd81ea23b7738c17c, + 0xf9def2a46dba26a3}, + {0x183a7912d05e329f, 0x34664a0896ccde0e, 0x56c22652614283bb, + 0x91692899d5ff0513}, + {1, 0, 0, 0}}, + {{0x449d48d8f3bdbe19, 0xab95de03cc8510cb, 0xaef159463f8bfb25, + 0xda72c379dae3ca8b}, + {0xcba9315ce82cc3ea, 0x4e524bac38a58020, 0x36ba2752538e348c, + 0xb170d0da75ed450f}, + {1, 0, 0, 0}}, + {{0x947af0f52b4f8da6, 0x7eda17d917827976, 0x5ba79a0c705853a0, + 0xa5d9873b3fb2ddc7}, + {0xc2a48162a5fd9ce9, 0x80ee8ae526f25f02, 0xf60c8ef6633be6a9, + 0xe2e23f0229a84a35}, + {1, 0, 0, 0}}, + {{0xbc4945bd86bb6afb, 0x237eb711eba46fee, 0x7c1db58b7b86eb33, + 0xd94eb728273b3ac7}, + {0xbe1717e59568d0a4, 0x4a6067cc45f70212, 0x19b32eb5afc2fb17, + 0xbe3c1e7ac3ac9d3c}, + {1, 0, 0, 0}}}, + {{{0, 0, 0, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}}, + {{0x68a88405ae53c1e9, 0x51e46707fd558656, 0x71e834cf86896c10, + 0x3d251b54e10d581f}, + {0x1884d5b0eeb19032, 0xeeaf729853e526fe, 0x5931f6831a8d8c11, + 0x87891d33fb98b4d8}, + {1, 0, 0, 0}}, + {{0x9047673fcac14893, 0xf5df5d83bfb58659, 0xa6230c81642e71a, + 0xef14b33800777791}, + {0xcf1e99afa3386fca, 0x7ace937791313d53, 0x36fe159b6dcd01bb, + 0xc9bc50d02e2b960a}, + {1, 0, 0, 0}}, + {{0x716e5a7ee12e162d, 0xbbf9bb2c62dd5a00, 0xca235ccb4144dd05, + 0xbcb7de0f8f70520e}, + {0x981e8964947cb8eb, 0x53c7102ea04de08d, 0xe9076332afc6a10d, + 0x93d90f776b58c35d}, + {1, 0, 0, 0}}, + {{0x834dbff6678337ee, 0xc607e811fef0785a, 0xaaefc62be30a298b, + 0xeb5ca335326afad3}, + {0x9774fe1384af54a8, 0xca4b6ef5785388b4, 0x1346c82d66f6c642, + 0xedcc0c2aaa2d53ce}, + {1, 0, 0, 0}}, + {{0xb896b3f764b9e6f4, 0x47e4018c736fb3d0, 0xfc2fc86707413920, + 0x1a8526428e1aeae7}, + {0x1386802650e2ae60, 0x7474dedc995384d0, 0x2c4cc396dd43b011, + 0x63b0e9c7141de1b0}, + {1, 0, 0, 0}}, + {{0xeb5fb3b369d17771, 0x1fe07b18933ed257, 0xdfc4c81ce3673912, + 0x913614c66a91a647}, + {0x18aee853c0ba877f, 0x3109c2deceff091, 0x8532307e7e4ee08c, + 0xcef0791a6e6ce0bb}, + {1, 0, 0, 0}}, + {{0xf0e9f5d8057a4a0f, 0xbbf7f8b49f125aa9, 0x51e8fdd6283187c2, + 0xe0997d4759d36298}, + {0x67ec3c5c6f4221c3, 0x3ea275dbc860722f, 0x152d01e23859f5e2, + 0xfb57404312680f44}, + {1, 0, 0, 0}}, + {{0x21ac3df849be2a1f, 0x11006e9fc51d112f, 0x9151aa584775c857, + 0x5159d218ba04a8d9}, + {0x98b7d1a925fd1866, 0x8f4753cafc2ad9d8, 0x8eb91ec1569c05a9, + 0x4abbd1ae27e13f11}, + {1, 0, 0, 0}}, + {{0x616f6644b2c11f4c, 0x251cd7140e540758, 0xf927a40110f02017, + 0x92ff3cc3c1c941b6}, + {0x3249906213f565fe, 0x4633e3ddeb9dbd4e, 0xea9a9d1ec402e6c2, + 0xdc84ce34b14bb7cf}, + {1, 0, 0, 0}}, + {{0xa93e23e5436ff69a, 0x52dcb0a79b63efce, 0x34f6538a9e90cb41, + 0x9cac08f200234bc0}, + {0x6661825b5174a02d, 0x7d4d06de036be57, 0x589d74610ae6bd27, + 0xa296f5577fc91a93}, + {1, 0, 0, 0}}, + {{0x10acefa9d29721d0, 0x8b0f6b8bb5bcd340, 0x921d318c3d86785c, + 0xd6916f3bc16aa378}, + {0x2a0d646a7ad84a0e, 0x7b93256c2fe7e97a, 0x5765e27626479e41, + 0xae9da2272daaced3}, + {1, 0, 0, 0}}, + {{0x56fdc215f7f34ac5, 0xebcb4ff2da3877d3, 0x1eb96792aba6b832, + 0x807ce6bea24741aa}, + {0xff1c10109c721fb4, 0xd187d4bc796353a7, 0x7639ae749af2d303, + 0xaff6d783d56c9286}, + {1, 0, 0, 0}}, + {{0x6002d51b6290dd01, 0xcba3ab0099a836a5, 0x71776611e00d2528, + 0xfaf2cb8c87fce119}, + {0xd445228bdf6882ae, 0xcbbfade17cbce919, 0x837b6335a2eb2453, + 0x11ad7c4b8597f6b6}, + {1, 0, 0, 0}}, + {{0x48de8f368cf2e399, 0x7ae3d25630a74277, 0xdef1a9a6c505323f, + 0xe55f203b4b8d9672}, + {0xc58d8f0d9a1e6e97, 0xe160e6d4b2737a76, 0xd60bd087d47cbdd8, + 0x687d41364d5fef53}, + {1, 0, 0, 0}}, + {{0x83f21bbe056bbf9b, 0x4c2a9d120b4ba5ab, 0xff383d1845b64e4f, + 0x8f13cc8d06dd7867}, + {0xf3a292d8424f0995, 0xfd2546eae7cbe44b, 0x67d14dee6c1e75a3, + 0x53b49e6cc93fb5a8}, + {1, 0, 0, 0}}} +}; + +/* + * select_point selects the |idx|th point from a precomputation table and + * copies it to out. + */ +static void select_point(const u64 idx, unsigned int size, + const smallfelem pre_comp[16][3], smallfelem out[3]) +{ + unsigned j; + u64 *outlimbs = &out[0][0]; + +#ifdef SM2_NO_CONST_TIME + const u64 *inlimbs = (u64 *)&pre_comp[idx][0][0]; + for (j = 0; j < NLIMBS * 3; j++) { + outlimbs[j] = inlimbs[j]; + } +#else + int i; + memset(out, 0, sizeof(*out) * 3); + + for (i = 0; i < size; i++) { + const u64 *inlimbs = (u64 *)&pre_comp[i][0][0]; + u64 mask = i ^ idx; + mask |= mask >> 4; + mask |= mask >> 2; + mask |= mask >> 1; + mask &= 1; + mask--; + for (j = 0; j < NLIMBS * 3; j++) + outlimbs[j] |= inlimbs[j] & mask; + } +#endif +} + +/* get_bit returns the |i|th bit in |in| */ +static char get_bit(const felem_bytearray in, int i) +{ + if ((i < 0) || (i >= 256)) + return 0; + return (in[i >> 3] >> (i & 7)) & 1; +} + +/* + * Interleaved point multiplication using precomputed point multiples: The + * small point multiples 0*P, 1*P, ..., 17*P are in pre_comp[], the scalars + * in scalars[]. If g_scalar is non-NULL, we also add this multiple of the + * generator, using certain (large) precomputed multiples in g_pre_comp. + * Output point (X, Y, Z) is stored in x_out, y_out, z_out + */ +static void batch_mul(felem x_out, felem y_out, felem z_out, + const felem_bytearray scalars[], + const unsigned num_points, const u8 *g_scalar, + const int mixed, const smallfelem pre_comp[][17][3], + const smallfelem g_pre_comp[2][16][3]) +{ + int i, skip; + unsigned num, gen_mul = (g_scalar != NULL); + felem nq[3], ftmp; + smallfelem tmp[3]; + u64 bits; + u8 sign, digit; + + /* set nq to the point at infinity */ + memset(nq, 0, sizeof(nq)); + + + /* + * Loop over all scalars msb-to-lsb, interleaving additions of multiples + * of the generator (two in each of the last 32 rounds) and additions of + * other points multiples (every 5th round). + */ + skip = 1; /* save two point operations in the first + * round */ + for (i = (num_points ? 255 : 31); i >= 0; --i) { + /* double */ + if (!skip) + point_double(nq[0], nq[1], nq[2], nq[0], nq[1], nq[2]); + + /* add multiples of the generator */ + if (gen_mul && (i <= 31)) { + /* first, look 32 bits upwards */ + bits = get_bit(g_scalar, i + 224) << 3; + bits |= get_bit(g_scalar, i + 160) << 2; + bits |= get_bit(g_scalar, i + 96) << 1; + bits |= get_bit(g_scalar, i + 32); + /* select the point to add, in constant time */ + select_point(bits, 16, g_pre_comp[1], tmp); + + if (!skip) { + /* Arg 1 below is for "mixed" */ + point_add(nq[0], nq[1], nq[2], + nq[0], nq[1], nq[2], 1, tmp[0], tmp[1], tmp[2]); + } else { + smallfelem_expand(nq[0], tmp[0]); + smallfelem_expand(nq[1], tmp[1]); + smallfelem_expand(nq[2], tmp[2]); + skip = 0; + } + + /* second, look at the current position */ + bits = get_bit(g_scalar, i + 192) << 3; + bits |= get_bit(g_scalar, i + 128) << 2; + bits |= get_bit(g_scalar, i + 64) << 1; + bits |= get_bit(g_scalar, i); + /* select the point to add, in constant time */ + select_point(bits, 16, g_pre_comp[0], tmp); + /* Arg 1 below is for "mixed" */ + point_add(nq[0], nq[1], nq[2], + nq[0], nq[1], nq[2], 1, tmp[0], tmp[1], tmp[2]); + } + + /* do other additions every 5 doublings */ + if (num_points && (i % 5 == 0)) { + /* loop over all scalars */ + for (num = 0; num < num_points; ++num) { + bits = get_bit(scalars[num], i + 4) << 5; + bits |= get_bit(scalars[num], i + 3) << 4; + bits |= get_bit(scalars[num], i + 2) << 3; + bits |= get_bit(scalars[num], i + 1) << 2; + bits |= get_bit(scalars[num], i) << 1; + bits |= get_bit(scalars[num], i - 1); + ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); + /* + * select the point to add or subtract, in constant time + */ + select_point(digit, 17, pre_comp[num], tmp); + smallfelem_neg(ftmp, tmp[1]); /* (X, -Y, Z) is the negative + * point */ + copy_small_conditional(ftmp, tmp[1], (((limb) sign) - 1)); + felem_contract(tmp[1], ftmp); + + if (!skip) { + point_add(nq[0], nq[1], nq[2], + nq[0], nq[1], nq[2], + mixed, tmp[0], tmp[1], tmp[2]); + } else { + smallfelem_expand(nq[0], tmp[0]); + smallfelem_expand(nq[1], tmp[1]); + smallfelem_expand(nq[2], tmp[2]); + skip = 0; + } + } + } + } + felem_assign(x_out, nq[0]); + felem_assign(y_out, nq[1]); + felem_assign(z_out, nq[2]); +} + +/* Precomputation for the group generator. */ +struct sm2p256_pre_comp_st { + smallfelem g_pre_comp[2][16][3]; + int references; + CRYPTO_RWLOCK *lock; +}; + +const EC_METHOD *EC_GFp_sm2p256_method(void) +{ + static const EC_METHOD ret = { + EC_FLAGS_DEFAULT_OCT, + NID_X9_62_prime_field, + ec_GFp_sm2p256_group_init, + ec_GFp_simple_group_finish, + ec_GFp_simple_group_clear_finish, + ec_GFp_nist_group_copy, + ec_GFp_sm2p256_group_set_curve, + ec_GFp_simple_group_get_curve, + ec_GFp_simple_group_get_degree, + ec_group_simple_order_bits, + ec_GFp_simple_group_check_discriminant, + ec_GFp_simple_point_init, + ec_GFp_simple_point_finish, + ec_GFp_simple_point_clear_finish, + ec_GFp_simple_point_copy, + ec_GFp_simple_point_set_to_infinity, + ec_GFp_simple_set_Jprojective_coordinates_GFp, + ec_GFp_simple_get_Jprojective_coordinates_GFp, + ec_GFp_simple_point_set_affine_coordinates, + ec_GFp_sm2p256_point_get_affine_coordinates, + 0 /* point_set_compressed_coordinates */ , + 0 /* point2oct */ , + 0 /* oct2point */ , + ec_GFp_simple_add, + ec_GFp_simple_dbl, + ec_GFp_simple_invert, + ec_GFp_simple_is_at_infinity, + ec_GFp_simple_is_on_curve, + ec_GFp_simple_cmp, + ec_GFp_simple_make_affine, + ec_GFp_simple_points_make_affine, + ec_GFp_sm2p256_points_mul, + ec_GFp_sm2p256_precompute_mult, + ec_GFp_sm2p256_have_precompute_mult, + ec_GFp_nist_field_mul, + ec_GFp_nist_field_sqr, + 0 /* field_div */ , + 0 /* field_encode */ , + 0 /* field_decode */ , + 0, /* field_set_to_one */ + ec_key_simple_priv2oct, + ec_key_simple_oct2priv, + 0, /* set private */ + ec_key_simple_generate_key, + ec_key_simple_check_key, + ec_key_simple_generate_public_key, + 0, /* keycopy */ + 0, /* keyfinish */ + ecdh_simple_compute_key + }; + return &ret; +} + +/******************************************************************************/ +/* + * FUNCTIONS TO MANAGE PRECOMPUTATION + */ + +static SM2P256_PRE_COMP *sm2p256_pre_comp_new() +{ + SM2P256_PRE_COMP *ret = OPENSSL_zalloc(sizeof(*ret)); + + if (ret == NULL) { + ECerr(EC_F_SM2P256_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE); + return ret; + } + + ret->references = 1; + + ret->lock = CRYPTO_THREAD_lock_new(); + if (ret->lock == NULL) { + ECerr(EC_F_SM2P256_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE); + OPENSSL_free(ret); + return NULL; + } + return ret; +} + +SM2P256_PRE_COMP *EC_sm2p256_pre_comp_dup(SM2P256_PRE_COMP *p) +{ + int i; + if (p != NULL) + CRYPTO_atomic_add(&p->references, 1, &i, p->lock); + return p; +} + +void EC_sm2p256_pre_comp_free(SM2P256_PRE_COMP *pre) +{ + int i; + + if (pre == NULL) + return; + + CRYPTO_atomic_add(&pre->references, -1, &i, pre->lock); + REF_PRINT_COUNT("EC_sm2p256", x); + if (i > 0) + return; + REF_ASSERT_ISNT(i < 0); + + CRYPTO_THREAD_lock_free(pre->lock); + OPENSSL_free(pre); +} + +/******************************************************************************/ +/* + * OPENSSL EC_METHOD FUNCTIONS + */ + +int ec_GFp_sm2p256_group_init(EC_GROUP *group) +{ + int ret; + ret = ec_GFp_simple_group_init(group); + group->a_is_minus3 = 1; + return ret; +} + +int ec_GFp_sm2p256_group_set_curve(EC_GROUP *group, const BIGNUM *p, + const BIGNUM *a, const BIGNUM *b, + BN_CTX *ctx) +{ + int ret = 0; + BN_CTX *new_ctx = NULL; + BIGNUM *curve_p, *curve_a, *curve_b; + + if (ctx == NULL) + if ((ctx = new_ctx = BN_CTX_new()) == NULL) + return 0; + BN_CTX_start(ctx); + if (((curve_p = BN_CTX_get(ctx)) == NULL) || + ((curve_a = BN_CTX_get(ctx)) == NULL) || + ((curve_b = BN_CTX_get(ctx)) == NULL)) + goto err; + BN_bin2bn(sm2p256v1_curve_params[0], sizeof(felem_bytearray), curve_p); + BN_bin2bn(sm2p256v1_curve_params[1], sizeof(felem_bytearray), curve_a); + BN_bin2bn(sm2p256v1_curve_params[2], sizeof(felem_bytearray), curve_b); + if ((BN_cmp(curve_p, p)) || (BN_cmp(curve_a, a)) || (BN_cmp(curve_b, b))) { + ECerr(EC_F_EC_GFP_SM2P256_GROUP_SET_CURVE, + EC_R_WRONG_CURVE_PARAMETERS); + goto err; + } + group->field_mod_func = BN_sm2_mod_256; + ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx); + err: + BN_CTX_end(ctx); + BN_CTX_free(new_ctx); + return ret; +} + +/* + * Takes the Jacobian coordinates (X, Y, Z) of a point and returns (X', Y') = + * (X/Z^2, Y/Z^3) + */ +int ec_GFp_sm2p256_point_get_affine_coordinates(const EC_GROUP *group, + const EC_POINT *point, + BIGNUM *x, BIGNUM *y, + BN_CTX *ctx) +{ + felem z1, z2, x_in, y_in; + smallfelem x_out, y_out; + longfelem tmp; + + if (EC_POINT_is_at_infinity(group, point)) { + ECerr(EC_F_EC_GFP_SM2P256_POINT_GET_AFFINE_COORDINATES, + EC_R_POINT_AT_INFINITY); + return 0; + } + if ((!BN_to_felem(x_in, point->X)) || (!BN_to_felem(y_in, point->Y)) || + (!BN_to_felem(z1, point->Z))) + return 0; + +#ifdef SM2_USE_INV_SQR + /* z2 = z^-2 */ + felem_inv_sqr(z2, z1); + felem_mul(tmp, x_in, z2); +#else + felem_inv(z2, z1); + felem_square(tmp, z2); + felem_reduce(z1, tmp); + felem_mul(tmp, x_in, z1); +#endif + + felem_reduce(x_in, tmp); + felem_contract(x_out, x_in); + if (x != NULL) { + if (!smallfelem_to_BN(x, x_out)) { + ECerr(EC_F_EC_GFP_SM2P256_POINT_GET_AFFINE_COORDINATES, + ERR_R_BN_LIB); + return 0; + } + } + if (y != NULL) { +#ifdef SM2_USE_INV_SQR + felem_square(tmp, z2); + felem_reduce(z2, tmp); + felem_mul(tmp, z1, z2); +#else + felem_mul(tmp, z1, z2); +#endif + felem_reduce(z1, tmp); + felem_mul(tmp, y_in, z1); + felem_reduce(y_in, tmp); + felem_contract(y_out, y_in); + + if (!smallfelem_to_BN(y, y_out)) { + ECerr(EC_F_EC_GFP_SM2P256_POINT_GET_AFFINE_COORDINATES, + ERR_R_BN_LIB); + return 0; + } + } + return 1; +} + +/* points below is of size |num|, and tmp_smallfelems is of size |num+1| */ +static void make_points_affine(size_t num, smallfelem points[][3], + smallfelem tmp_smallfelems[]) +{ + /* + * Runs in constant time, unless an input is the point at infinity (which + * normally shouldn't happen). + */ + ec_GFp_nistp_points_make_affine_internal(num, + points, + sizeof(smallfelem), + tmp_smallfelems, + (void (*)(void *))smallfelem_one, + (int (*)(const void *)) + smallfelem_is_zero_int, + (void (*)(void *, const void *)) + smallfelem_assign, + (void (*)(void *, const void *)) + smallfelem_square_contract, + (void (*) + (void *, const void *, + const void *)) + smallfelem_mul_contract, + (void (*)(void *, const void *)) + smallfelem_inv_contract, + /* nothing to contract */ + (void (*)(void *, const void *)) + smallfelem_assign); +} + +/* + * Computes scalar*generator + \sum scalars[i]*points[i], ignoring NULL + * values Result is stored in r (r can equal one of the inputs). + */ +int ec_GFp_sm2p256_points_mul(const EC_GROUP *group, EC_POINT *r, + const BIGNUM *scalar, size_t num, + const EC_POINT *points[], + const BIGNUM *scalars[], BN_CTX *ctx) +{ + int ret = 0; + int j; + int mixed = 0; + BN_CTX *new_ctx = NULL; + BIGNUM *x, *y, *z, *tmp_scalar; + felem_bytearray g_secret; + felem_bytearray *secrets = NULL; + smallfelem (*pre_comp)[17][3] = NULL; + smallfelem *tmp_smallfelems = NULL; + felem_bytearray tmp; + unsigned i, num_bytes; + int have_pre_comp = 0; + size_t num_points = num; + smallfelem x_in, y_in, z_in; + felem x_out, y_out, z_out; + SM2P256_PRE_COMP *pre = NULL; + const smallfelem(*g_pre_comp)[16][3] = NULL; + EC_POINT *generator = NULL; + const EC_POINT *p = NULL; + const BIGNUM *p_scalar = NULL; + + if (ctx == NULL) + if ((ctx = new_ctx = BN_CTX_new()) == NULL) + return 0; + BN_CTX_start(ctx); + if (((x = BN_CTX_get(ctx)) == NULL) || + ((y = BN_CTX_get(ctx)) == NULL) || + ((z = BN_CTX_get(ctx)) == NULL) || + ((tmp_scalar = BN_CTX_get(ctx)) == NULL)) + goto err; + + if (scalar != NULL) { + pre = group->pre_comp.sm2p256; + if (pre) + /* we have precomputation, try to use it */ + g_pre_comp = (const smallfelem(*)[16][3])pre->g_pre_comp; + else { + /* try to use the standard precomputation */ + g_pre_comp = &gmul[0]; + } + generator = EC_POINT_new(group); + if (generator == NULL) + goto err; + /* get the generator from precomputation */ + if (!smallfelem_to_BN(x, g_pre_comp[0][1][0]) || + !smallfelem_to_BN(y, g_pre_comp[0][1][1]) || + !smallfelem_to_BN(z, g_pre_comp[0][1][2])) { + ECerr(EC_F_EC_GFP_SM2P256_POINTS_MUL, ERR_R_BN_LIB); + goto err; + } + if (!EC_POINT_set_Jprojective_coordinates_GFp(group, + generator, x, y, z, + ctx)) + goto err; + if (0 == EC_POINT_cmp(group, generator, group->generator, ctx)) + /* precomputation matches generator */ + have_pre_comp = 1; + else + /* + * we don't have valid precomputation: treat the generator as a + * random point + */ + num_points++; + } + if (num_points > 0) { + if (num_points >= 3) { + /* + * unless we precompute multiples for just one or two points, + * converting those into affine form is time well spent + */ + mixed = 1; + } + secrets = OPENSSL_malloc(sizeof(*secrets) * num_points); + pre_comp = OPENSSL_malloc(sizeof(*pre_comp) * num_points); + if (mixed) + tmp_smallfelems = + OPENSSL_malloc(sizeof(*tmp_smallfelems) * (num_points * 17 + 1)); + if ((secrets == NULL) || (pre_comp == NULL) + || (mixed && (tmp_smallfelems == NULL))) { + ECerr(EC_F_EC_GFP_SM2P256_POINTS_MUL, ERR_R_MALLOC_FAILURE); + goto err; + } + + /* + * we treat NULL scalars as 0, and NULL points as points at infinity, + * i.e., they contribute nothing to the linear combination + */ + memset(secrets, 0, sizeof(*secrets) * num_points); + memset(pre_comp, 0, sizeof(*pre_comp) * num_points); + for (i = 0; i < num_points; ++i) { + if (i == num) + /* + * we didn't have a valid precomputation, so we pick the + * generator + */ + { + p = EC_GROUP_get0_generator(group); + p_scalar = scalar; + } else + /* the i^th point */ + { + p = points[i]; + p_scalar = scalars[i]; + } + if ((p_scalar != NULL) && (p != NULL)) { + /* reduce scalar to 0 <= scalar < 2^256 */ + if ((BN_num_bits(p_scalar) > 256) + || (BN_is_negative(p_scalar))) { + /* + * this is an unusual input, and we don't guarantee + * constant-timeness + */ + if (!BN_nnmod(tmp_scalar, p_scalar, group->order, ctx)) { + ECerr(EC_F_EC_GFP_SM2P256_POINTS_MUL, ERR_R_BN_LIB); + goto err; + } + num_bytes = BN_bn2bin(tmp_scalar, tmp); + } else + num_bytes = BN_bn2bin(p_scalar, tmp); + flip_endian(secrets[i], tmp, num_bytes); + /* precompute multiples */ + if ((!BN_to_felem(x_out, p->X)) || + (!BN_to_felem(y_out, p->Y)) || + (!BN_to_felem(z_out, p->Z))) + goto err; + felem_shrink(pre_comp[i][1][0], x_out); + felem_shrink(pre_comp[i][1][1], y_out); + felem_shrink(pre_comp[i][1][2], z_out); + for (j = 2; j <= 16; ++j) { + if (j & 1) { + point_add_small(pre_comp[i][j][0], pre_comp[i][j][1], + pre_comp[i][j][2], pre_comp[i][1][0], + pre_comp[i][1][1], pre_comp[i][1][2], + pre_comp[i][j - 1][0], + pre_comp[i][j - 1][1], + pre_comp[i][j - 1][2]); + } else { + point_double_small(pre_comp[i][j][0], + pre_comp[i][j][1], + pre_comp[i][j][2], + pre_comp[i][j / 2][0], + pre_comp[i][j / 2][1], + pre_comp[i][j / 2][2]); + } + } + } + } + if (mixed) + make_points_affine(num_points * 17, pre_comp[0], tmp_smallfelems); + } + + /* the scalar for the generator */ + if ((scalar != NULL) && (have_pre_comp)) { + memset(g_secret, 0, sizeof(g_secret)); + /* reduce scalar to 0 <= scalar < 2^256 */ + if ((BN_num_bits(scalar) > 256) || (BN_is_negative(scalar))) { + /* + * this is an unusual input, and we don't guarantee + * constant-timeness + */ + if (!BN_nnmod(tmp_scalar, scalar, group->order, ctx)) { + ECerr(EC_F_EC_GFP_SM2P256_POINTS_MUL, ERR_R_BN_LIB); + goto err; + } + num_bytes = BN_bn2bin(tmp_scalar, tmp); + } else + num_bytes = BN_bn2bin(scalar, tmp); + flip_endian(g_secret, tmp, num_bytes); + /* do the multiplication with generator precomputation */ + batch_mul(x_out, y_out, z_out, + (const felem_bytearray(*))secrets, num_points, + g_secret, + mixed, (const smallfelem(*)[17][3])pre_comp, g_pre_comp); + } else + /* do the multiplication without generator precomputation */ + batch_mul(x_out, y_out, z_out, + (const felem_bytearray(*))secrets, num_points, + NULL, mixed, (const smallfelem(*)[17][3])pre_comp, NULL); + /* reduce the output to its unique minimal representation */ + felem_contract(x_in, x_out); + felem_contract(y_in, y_out); + felem_contract(z_in, z_out); + if ((!smallfelem_to_BN(x, x_in)) || (!smallfelem_to_BN(y, y_in)) || + (!smallfelem_to_BN(z, z_in))) { + ECerr(EC_F_EC_GFP_SM2P256_POINTS_MUL, ERR_R_BN_LIB); + goto err; + } + ret = EC_POINT_set_Jprojective_coordinates_GFp(group, r, x, y, z, ctx); + + err: + BN_CTX_end(ctx); + EC_POINT_free(generator); + BN_CTX_free(new_ctx); + OPENSSL_free(secrets); + OPENSSL_free(pre_comp); + OPENSSL_free(tmp_smallfelems); + return ret; +} + +int ec_GFp_sm2p256_precompute_mult(EC_GROUP *group, BN_CTX *ctx) +{ + int ret = 0; + SM2P256_PRE_COMP *pre = NULL; + int i, j; + BN_CTX *new_ctx = NULL; + BIGNUM *x, *y; + EC_POINT *generator = NULL; + smallfelem tmp_smallfelems[32]; + felem x_tmp, y_tmp, z_tmp; + + /* throw away old precomputation */ + EC_pre_comp_free(group); + if (ctx == NULL) + if ((ctx = new_ctx = BN_CTX_new()) == NULL) + return 0; + BN_CTX_start(ctx); + if (((x = BN_CTX_get(ctx)) == NULL) || ((y = BN_CTX_get(ctx)) == NULL)) + goto err; + /* get the generator */ + if (group->generator == NULL) + goto err; + generator = EC_POINT_new(group); + if (generator == NULL) + goto err; + BN_bin2bn(sm2p256v1_curve_params[3], sizeof(felem_bytearray), x); + BN_bin2bn(sm2p256v1_curve_params[4], sizeof(felem_bytearray), y); + if (!EC_POINT_set_affine_coordinates_GFp(group, generator, x, y, ctx)) + goto err; + if ((pre = sm2p256_pre_comp_new()) == NULL) + goto err; + /* + * if the generator is the standard one, use built-in precomputation + */ + if (0 == EC_POINT_cmp(group, generator, group->generator, ctx)) { + memcpy(pre->g_pre_comp, gmul, sizeof(pre->g_pre_comp)); + goto done; + } + if ((!BN_to_felem(x_tmp, group->generator->X)) || + (!BN_to_felem(y_tmp, group->generator->Y)) || + (!BN_to_felem(z_tmp, group->generator->Z))) + goto err; + felem_shrink(pre->g_pre_comp[0][1][0], x_tmp); + felem_shrink(pre->g_pre_comp[0][1][1], y_tmp); + felem_shrink(pre->g_pre_comp[0][1][2], z_tmp); + /* + * compute 2^64*G, 2^128*G, 2^192*G for the first table, 2^32*G, 2^96*G, + * 2^160*G, 2^224*G for the second one + */ + for (i = 1; i <= 8; i <<= 1) { + point_double_small(pre->g_pre_comp[1][i][0], pre->g_pre_comp[1][i][1], + pre->g_pre_comp[1][i][2], pre->g_pre_comp[0][i][0], + pre->g_pre_comp[0][i][1], + pre->g_pre_comp[0][i][2]); + for (j = 0; j < 31; ++j) { + point_double_small(pre->g_pre_comp[1][i][0], + pre->g_pre_comp[1][i][1], + pre->g_pre_comp[1][i][2], + pre->g_pre_comp[1][i][0], + pre->g_pre_comp[1][i][1], + pre->g_pre_comp[1][i][2]); + } + if (i == 8) + break; + point_double_small(pre->g_pre_comp[0][2 * i][0], + pre->g_pre_comp[0][2 * i][1], + pre->g_pre_comp[0][2 * i][2], + pre->g_pre_comp[1][i][0], pre->g_pre_comp[1][i][1], + pre->g_pre_comp[1][i][2]); + for (j = 0; j < 31; ++j) { + point_double_small(pre->g_pre_comp[0][2 * i][0], + pre->g_pre_comp[0][2 * i][1], + pre->g_pre_comp[0][2 * i][2], + pre->g_pre_comp[0][2 * i][0], + pre->g_pre_comp[0][2 * i][1], + pre->g_pre_comp[0][2 * i][2]); + } + } + for (i = 0; i < 2; i++) { + /* g_pre_comp[i][0] is the point at infinity */ + memset(pre->g_pre_comp[i][0], 0, sizeof(pre->g_pre_comp[i][0])); + /* the remaining multiples */ + /* 2^64*G + 2^128*G resp. 2^96*G + 2^160*G */ + point_add_small(pre->g_pre_comp[i][6][0], pre->g_pre_comp[i][6][1], + pre->g_pre_comp[i][6][2], pre->g_pre_comp[i][4][0], + pre->g_pre_comp[i][4][1], pre->g_pre_comp[i][4][2], + pre->g_pre_comp[i][2][0], pre->g_pre_comp[i][2][1], + pre->g_pre_comp[i][2][2]); + /* 2^64*G + 2^192*G resp. 2^96*G + 2^224*G */ + point_add_small(pre->g_pre_comp[i][10][0], pre->g_pre_comp[i][10][1], + pre->g_pre_comp[i][10][2], pre->g_pre_comp[i][8][0], + pre->g_pre_comp[i][8][1], pre->g_pre_comp[i][8][2], + pre->g_pre_comp[i][2][0], pre->g_pre_comp[i][2][1], + pre->g_pre_comp[i][2][2]); + /* 2^128*G + 2^192*G resp. 2^160*G + 2^224*G */ + point_add_small(pre->g_pre_comp[i][12][0], pre->g_pre_comp[i][12][1], + pre->g_pre_comp[i][12][2], pre->g_pre_comp[i][8][0], + pre->g_pre_comp[i][8][1], pre->g_pre_comp[i][8][2], + pre->g_pre_comp[i][4][0], pre->g_pre_comp[i][4][1], + pre->g_pre_comp[i][4][2]); + /* + * 2^64*G + 2^128*G + 2^192*G resp. 2^96*G + 2^160*G + 2^224*G + */ + point_add_small(pre->g_pre_comp[i][14][0], pre->g_pre_comp[i][14][1], + pre->g_pre_comp[i][14][2], pre->g_pre_comp[i][12][0], + pre->g_pre_comp[i][12][1], pre->g_pre_comp[i][12][2], + pre->g_pre_comp[i][2][0], pre->g_pre_comp[i][2][1], + pre->g_pre_comp[i][2][2]); + for (j = 1; j < 8; ++j) { + /* odd multiples: add G resp. 2^32*G */ + point_add_small(pre->g_pre_comp[i][2 * j + 1][0], + pre->g_pre_comp[i][2 * j + 1][1], + pre->g_pre_comp[i][2 * j + 1][2], + pre->g_pre_comp[i][2 * j][0], + pre->g_pre_comp[i][2 * j][1], + pre->g_pre_comp[i][2 * j][2], + pre->g_pre_comp[i][1][0], + pre->g_pre_comp[i][1][1], + pre->g_pre_comp[i][1][2]); + } + } + make_points_affine(31, &(pre->g_pre_comp[0][1]), tmp_smallfelems); + + done: + SETPRECOMP(group, sm2p256, pre); + pre = NULL; + ret = 1; + + err: + BN_CTX_end(ctx); + EC_POINT_free(generator); + BN_CTX_free(new_ctx); + EC_sm2p256_pre_comp_free(pre); + return ret; +} + +int ec_GFp_sm2p256_have_precompute_mult(const EC_GROUP *group) +{ + return HAVEPRECOMP(group, sm2p256); +} +#endif diff --git a/crypto/sm2/sm2_sign.c b/crypto/sm2/sm2_sign.c index 10b50fa0..af74c3af 100644 --- a/crypto/sm2/sm2_sign.c +++ b/crypto/sm2/sm2_sign.c @@ -1,5 +1,5 @@ /* ==================================================================== - * Copyright (c) 2015 - 2016 The GmSSL Project. All rights reserved. + * 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 @@ -57,6 +57,17 @@ #include #include "../ec/ec_lcl.h" +static int sm2_sign_idx = -1; + +static void sm2_sign_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad, + int idx, long argl, void *argp) +{ + BIGNUM *bn = (BIGNUM *)CRYPTO_get_ex_data(ad, sm2_sign_idx); + if (bn) { + BN_clear_free(bn); + CRYPTO_set_ex_data(ad, sm2_sign_idx, NULL); + } +} static int sm2_sign_setup(EC_KEY *ec_key, BN_CTX *ctx_in, BIGNUM **kp, BIGNUM **xp) { @@ -83,6 +94,7 @@ static int sm2_sign_setup(EC_KEY *ec_key, BN_CTX *ctx_in, BIGNUM **kp, BIGNUM ** ctx = ctx_in; } + k = BN_new(); x = BN_new(); order = BN_new(); @@ -101,6 +113,37 @@ static int sm2_sign_setup(EC_KEY *ec_key, BN_CTX *ctx_in, BIGNUM **kp, BIGNUM ** goto end; } + /* do pre compute (1 + d)^-1 */ + if (sm2_sign_idx < 0) { + if ((sm2_sign_idx = EC_KEY_get_ex_new_index(0, NULL, NULL, NULL, + sm2_sign_free)) < 0) { + SM2err(SM2_F_SM2_SIGN_SETUP, ERR_R_EC_LIB); + goto end; + } + } + + if (!EC_KEY_get_ex_data(ec_key, sm2_sign_idx)) { + BIGNUM *d = NULL; + if (!(d = BN_dup(EC_KEY_get0_private_key(ec_key)))) { + SM2err(SM2_F_SM2_SIGN_SETUP, ERR_R_MALLOC_FAILURE); + goto end; + } + if (!BN_add_word(d, 1)) { + SM2err(SM2_F_SM2_SIGN_SETUP, ERR_R_BN_LIB); + BN_clear_free(d); + goto end; + } + if (!BN_mod_inverse(d, d, order, ctx)) { + SM2err(SM2_F_SM2_SIGN_SETUP, ERR_R_BN_LIB); + BN_clear_free(d); + goto end; + } + if (!EC_KEY_set_ex_data(ec_key, sm2_sign_idx, d)) { + SM2err(SM2_F_SM2_SIGN_SETUP, ERR_R_EC_LIB); + goto end; + } + } + do { /* get random k */ do { @@ -156,7 +199,6 @@ end: } BN_free(order); EC_POINT_free(point); - return(ret); } @@ -257,6 +299,7 @@ static ECDSA_SIG *sm2_do_sign(const unsigned char *dgst, int dgstlen, } /* s = ((1 + d)^-1 * (k - rd)) mod n */ +#if 0 if (!BN_one(bn)) { SM2err(SM2_F_SM2_DO_SIGN, ERR_R_BN_LIB); goto end; @@ -283,6 +326,18 @@ static ECDSA_SIG *sm2_do_sign(const unsigned char *dgst, int dgstlen, SM2err(SM2_F_SM2_DO_SIGN, ERR_R_BN_LIB); goto end; } +#else + /* s = d'(k + r) - r mod n */ + if (!BN_mod_mul(ret->s, EC_KEY_get_ex_data(ec_key, sm2_sign_idx), + bn, order, ctx)) { + SM2err(SM2_F_SM2_DO_SIGN, ERR_R_BN_LIB); + goto end; + } + if (!BN_mod_sub(ret->s, ret->s, ret->r, order, ctx)) { + SM2err(SM2_F_SM2_DO_SIGN, ERR_R_BN_LIB); + goto end; + } +#endif /* check s != 0 */ if (BN_is_zero(ret->s)) { @@ -446,6 +501,7 @@ int sm2_do_verify(const unsigned char *dgst, int dgstlen, if (BN_ucmp(t, sig->r) == 0) { ret = 1; } else { + printf("%s %d: %s\n", __FILE__, __LINE__, __FUNCTION__); ret = 0; } diff --git a/include/openssl/ec.h b/include/openssl/ec.h index 4bfc1f88..75a0b90a 100644 --- a/include/openssl/ec.h +++ b/include/openssl/ec.h @@ -1462,6 +1462,9 @@ int ERR_load_EC_strings(void); # define EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES 182 # define EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES 183 # define EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES 184 +# define EC_F_EC_GFP_SM2P256_GROUP_SET_CURVE 280 +# define EC_F_EC_GFP_SM2P256_POINTS_MUL 281 +# define EC_F_EC_GFP_SM2P256_POINT_GET_AFFINE_COORDINATES 282 # define EC_F_EC_GROUP_CHECK 185 # define EC_F_EC_GROUP_CHECK_DISCRIMINANT 186 # define EC_F_EC_GROUP_COPY 187 @@ -1546,6 +1549,7 @@ int ERR_load_EC_strings(void); # define EC_F_PKEY_EC_KEYGEN 265 # define EC_F_PKEY_EC_PARAMGEN 266 # define EC_F_PKEY_EC_SIGN 267 +# define EC_F_SM2P256_PRE_COMP_NEW 283 # define EC_F_SM2_COMPUTE_ID_DIGEST 268 # define EC_F_SM2_COMPUTE_MESSAGE_DIGEST 269 # define EC_F_SM2_DO_ENCRYPT 270 diff --git a/include/openssl/opensslv.h b/include/openssl/opensslv.h index 0dc141f6..a4bde67c 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.3 - OpenSSL 1.1.0d-fips 10 Jan 2019" +# define OPENSSL_VERSION_TEXT "GmSSL 2.4.3 - OpenSSL 1.1.0d-fips 12 Jan 2019" # else -# define OPENSSL_VERSION_TEXT "GmSSL 2.4.3 - OpenSSL 1.1.0d 10 Jan 2019" +# define OPENSSL_VERSION_TEXT "GmSSL 2.4.3 - OpenSSL 1.1.0d 12 Jan 2019" # endif /*- diff --git a/util/libcrypto.num b/util/libcrypto.num index 1097c8f4..dbddce4d 100644 --- a/util/libcrypto.num +++ b/util/libcrypto.num @@ -1,4994 +1,4994 @@ -EVP_aes_192_wrap 1 1_1_0d EXIST::FUNCTION: -POLICY_MAPPING_it 2 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICY_MAPPING_it 2 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SDF_InternalVerify_ECC 3 1_1_0d EXIST::FUNCTION: -DH_set_ex_data 4 1_1_0d EXIST::FUNCTION:DH -BIO_nwrite 5 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_it 6 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NETSCAPE_SPKI_it 6 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_SIG_new 7 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_it 8 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_ATTRIBUTE_it 8 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_SINGLERESP_get_ext_by_NID 9 1_1_0d EXIST::FUNCTION:OCSP -PEM_read_SM9PrivateKey 10 1_1_0d EXIST::FUNCTION:SM9,STDIO -X509_EXTENSION_dup 11 1_1_0d EXIST::FUNCTION: -SKF_ImportECCKeyPair 12 1_1_0d EXIST::FUNCTION:SKF -ERR_load_SKF_strings 13 1_1_0d EXIST::FUNCTION:SKF -EC_GROUP_get_cofactor 14 1_1_0d EXIST::FUNCTION:EC -X509_REQ_print_ex 15 1_1_0d EXIST::FUNCTION: -IPAddressFamily_free 16 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_PKEY_meth_get_paramgen 17 1_1_0d EXIST::FUNCTION: -ECDSA_do_sign_ex 18 1_1_0d EXIST::FUNCTION:EC -EVP_PKEY_CTX_ctrl_str 19 1_1_0d EXIST::FUNCTION: -EC_GFp_simple_method 20 1_1_0d EXIST::FUNCTION:EC -ENGINE_unregister_pkey_meths 21 1_1_0d EXIST::FUNCTION:ENGINE -PKCS12_add_friendlyname_utf8 22 1_1_0d EXIST::FUNCTION: -ASN1_BOOLEAN_it 23 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_BOOLEAN_it 23 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_missing_parameters 24 1_1_0d EXIST::FUNCTION: -PEM_read_bio_SM9_PUBKEY 25 1_1_0d EXIST::FUNCTION:SM9 -UI_method_set_flusher 26 1_1_0d EXIST::FUNCTION:UI -OCSP_SINGLERESP_get_ext_count 27 1_1_0d EXIST::FUNCTION:OCSP -DH_meth_set_bn_mod_exp 28 1_1_0d EXIST::FUNCTION:DH -OCSP_BASICRESP_new 29 1_1_0d EXIST::FUNCTION:OCSP -RAND_event 30 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 -EVP_PKEY_add1_attr_by_NID 31 1_1_0d EXIST::FUNCTION: -KDF_get_x9_63 32 1_1_0d EXIST::FUNCTION: -EVP_des_ede3_cfb64 33 1_1_0d EXIST::FUNCTION:DES -EC_POINT_set_compressed_coordinates_GF2m 34 1_1_0d EXIST::FUNCTION:EC,EC2M -BIO_callback_ctrl 35 1_1_0d EXIST::FUNCTION: -X509V3_EXT_add_list 36 1_1_0d EXIST::FUNCTION: -SMIME_read_ASN1 37 1_1_0d EXIST::FUNCTION: -DH_free 38 1_1_0d EXIST::FUNCTION:DH -X509_NAME_ENTRY_free 39 1_1_0d EXIST::FUNCTION: -TS_CONF_set_signer_digest 40 1_1_0d EXIST::FUNCTION:TS -BIO_closesocket 41 1_1_0d EXIST::FUNCTION:SOCK -EVP_PKEY_CTX_get_keygen_info 42 1_1_0d EXIST::FUNCTION: -SM9PrivateKey_get_gmtls_public_key 43 1_1_0d EXIST::FUNCTION:SM9 -ASN1_add_oid_module 44 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_pentanomial_basis 45 1_1_0d EXIST::FUNCTION:EC,EC2M -SKF_CreateContainer 46 1_1_0d EXIST::FUNCTION:SKF -CMS_get0_RecipientInfos 47 1_1_0d EXIST::FUNCTION:CMS -BN_BLINDING_is_current_thread 48 1_1_0d EXIST::FUNCTION: -BN_BLINDING_convert 49 1_1_0d EXIST::FUNCTION: -Camellia_cfb1_encrypt 50 1_1_0d EXIST::FUNCTION:CAMELLIA -PKCS12_SAFEBAG_create_pkcs8_encrypt 51 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_SM9_MASTER 52 1_1_0d EXIST::FUNCTION:SM9 -X509_EXTENSION_new 53 1_1_0d EXIST::FUNCTION: -PKCS12_get_attr 54 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -EC_POINT_set_to_infinity 55 1_1_0d EXIST::FUNCTION:EC -PEM_write_bio_RSAPrivateKey 56 1_1_0d EXIST::FUNCTION:RSA -SHA224_Update 57 1_1_0d EXIST::FUNCTION: -BIO_ADDR_family 58 1_1_0d EXIST::FUNCTION:SOCK -EVP_CIPHER_meth_set_iv_length 59 1_1_0d EXIST::FUNCTION: -PBKDF2PARAM_new 60 1_1_0d EXIST::FUNCTION: -d2i_PKCS8_PRIV_KEY_INFO_fp 61 1_1_0d EXIST::FUNCTION:STDIO -RSA_meth_get0_name 62 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_get0_DSA 63 1_1_0d EXIST::FUNCTION:DSA -SCT_new_from_base64 64 1_1_0d EXIST::FUNCTION:CT -EVP_EncryptUpdate 65 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_exp 66 1_1_0d EXIST::FUNCTION:EC2M -EC_KEY_get_ECCPRIVATEKEYBLOB 67 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -X509v3_add_ext 68 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_copy 69 1_1_0d EXIST::FUNCTION: -OCSP_RESPBYTES_free 70 1_1_0d EXIST::FUNCTION:OCSP -X509_EXTENSION_set_critical 71 1_1_0d EXIST::FUNCTION: -PKCS7_get0_signers 72 1_1_0d EXIST::FUNCTION: -BN_GFP2_zero 73 1_1_0d EXIST::FUNCTION: -FpPoint_new 74 1_1_0d EXIST::FUNCTION: -BFMasterSecret_free 75 1_1_0d EXIST::FUNCTION:BFIBE -d2i_PKCS8_fp 76 1_1_0d EXIST::FUNCTION:STDIO -TS_REQ_get_ext_d2i 77 1_1_0d EXIST::FUNCTION:TS -SKF_ImportRSAKeyPair 78 1_1_0d EXIST::FUNCTION:SKF -DH_set0_key 79 1_1_0d EXIST::FUNCTION:DH -RSA_set_RSAPRIVATEKEYBLOB 80 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -DES_cfb_encrypt 81 1_1_0d EXIST::FUNCTION:DES -i2d_ECPKParameters 82 1_1_0d EXIST::FUNCTION:EC -TS_RESP_CTX_set_status_info_cond 83 1_1_0d EXIST::FUNCTION:TS -TS_STATUS_INFO_new 84 1_1_0d EXIST::FUNCTION:TS -EC_POINT_cmp_fppoint 85 1_1_0d EXIST::FUNCTION: -CMAC_CTX_cleanup 86 1_1_0d EXIST::FUNCTION:CMAC -X509_policy_tree_get0_user_policies 87 1_1_0d EXIST::FUNCTION: -PEM_write_DHparams 88 1_1_0d EXIST::FUNCTION:DH,STDIO -X509_NAME_ENTRY_create_by_NID 89 1_1_0d EXIST::FUNCTION: -i2d_NOTICEREF 90 1_1_0d EXIST::FUNCTION: -d2i_PBEPARAM 91 1_1_0d EXIST::FUNCTION: -d2i_OCSP_RESPBYTES 92 1_1_0d EXIST::FUNCTION:OCSP -TS_RESP_CTX_get_request 93 1_1_0d EXIST::FUNCTION:TS -DH_generate_key 94 1_1_0d EXIST::FUNCTION:DH -d2i_SM9MasterSecret_bio 95 1_1_0d EXIST::FUNCTION:SM9 -BIO_ADDRINFO_next 96 1_1_0d EXIST::FUNCTION:SOCK -OPENSSL_sk_new_null 97 1_1_0d EXIST::FUNCTION: -i2d_GENERAL_NAMES 98 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_node_stats_bio 99 1_1_0d EXIST::FUNCTION: -ENGINE_get_cmd_defns 100 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_derive 101 1_1_0d EXIST::FUNCTION: -X509v3_asid_canonize 102 1_1_0d EXIST::FUNCTION:RFC3779 -DIRECTORYSTRING_it 103 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DIRECTORYSTRING_it 103 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_name 104 1_1_0d EXIST::FUNCTION:ENGINE -ERR_set_mark 105 1_1_0d EXIST::FUNCTION: -BB1PublicParameters_free 106 1_1_0d EXIST::FUNCTION:BB1IBE -OCSP_cert_to_id 107 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_secure_zalloc 108 1_1_0d EXIST::FUNCTION: -CMS_SignerInfo_get0_pkey_ctx 109 1_1_0d EXIST::FUNCTION:CMS -BN_nist_mod_func 110 1_1_0d EXIST::FUNCTION: -UI_method_set_prompt_constructor 111 1_1_0d EXIST::FUNCTION:UI -i2d_PKCS7_NDEF 112 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_write_lock 113 1_1_0d EXIST::FUNCTION: -BN_rshift 114 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_free 115 1_1_0d EXIST::FUNCTION:EC -DES_options 116 1_1_0d EXIST::FUNCTION:DES -X509_ocspid_print 117 1_1_0d EXIST::FUNCTION: -OCSP_SIGNATURE_it 118 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_SIGNATURE_it 118 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -X509v3_delete_ext 119 1_1_0d EXIST::FUNCTION: -SM9_SignFinal 120 1_1_0d EXIST::FUNCTION:SM9 -TS_TST_INFO_set_serial 121 1_1_0d EXIST::FUNCTION:TS -DIST_POINT_NAME_free 122 1_1_0d EXIST::FUNCTION: -OBJ_NAME_new_index 123 1_1_0d EXIST::FUNCTION: -SAF_Logout 124 1_1_0d EXIST::FUNCTION: -d2i_EDIPARTYNAME 125 1_1_0d EXIST::FUNCTION: -d2i_X509 126 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_set_object 127 1_1_0d EXIST::FUNCTION: -EC_KEY_up_ref 128 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_set_depth 129 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_it 130 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_SAFEBAG_it 130 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DES_decrypt3 131 1_1_0d EXIST::FUNCTION:DES -EVP_aes_192_ctr 132 1_1_0d EXIST::FUNCTION: -OPENSSL_strnlen 133 1_1_0d EXIST::FUNCTION: -ASN1_item_ndef_i2d 134 1_1_0d EXIST::FUNCTION: -BIO_indent 135 1_1_0d EXIST::FUNCTION: -PKCS12_key_gen_utf8 136 1_1_0d EXIST::FUNCTION: -CONF_get_section 137 1_1_0d EXIST::FUNCTION: -RAND_get_rand_method 138 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_get_ext_count 139 1_1_0d EXIST::FUNCTION:OCSP -BN_is_bit_set 140 1_1_0d EXIST::FUNCTION: -RIPEMD160_Update 141 1_1_0d EXIST::FUNCTION:RMD160 -EC_KEY_get_ECCrefPrivateKey 142 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -SAF_GenEccKeyPair 143 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_type1curve_zeta 144 1_1_0d EXIST::FUNCTION: -CMS_unsigned_add1_attr_by_OBJ 145 1_1_0d EXIST::FUNCTION:CMS -CMS_RecipientInfo_ktri_get0_algs 146 1_1_0d EXIST::FUNCTION:CMS -RAND_write_file 147 1_1_0d EXIST::FUNCTION: -BN_mod_mul_reciprocal 148 1_1_0d EXIST::FUNCTION: -BIO_set_flags 149 1_1_0d EXIST::FUNCTION: -NCONF_dump_bio 150 1_1_0d EXIST::FUNCTION: -PEM_read_bio_PUBKEY 151 1_1_0d EXIST::FUNCTION: -v2i_GENERAL_NAME_ex 152 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNED_new 153 1_1_0d EXIST::FUNCTION: -ENGINE_register_all_digests 154 1_1_0d EXIST::FUNCTION:ENGINE -BN_MONT_CTX_set_locked 155 1_1_0d EXIST::FUNCTION: -PAILLIER_encrypt 156 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_PKEY_meth_set_signctx 157 1_1_0d EXIST::FUNCTION: -RSA_padding_check_none 158 1_1_0d EXIST::FUNCTION:RSA -TS_TST_INFO_dup 159 1_1_0d EXIST::FUNCTION:TS -PEM_write_DHxparams 160 1_1_0d EXIST::FUNCTION:DH,STDIO -X509_time_adj 161 1_1_0d EXIST::FUNCTION: -ENGINE_set_init_function 162 1_1_0d EXIST::FUNCTION:ENGINE -EC_KEY_METHOD_type 163 1_1_0d EXIST::FUNCTION:SM2 -BB1PrivateKeyBlock_free 164 1_1_0d EXIST::FUNCTION:BB1IBE -PKCS12_BAGS_free 165 1_1_0d EXIST::FUNCTION: -PKCS12_free 166 1_1_0d EXIST::FUNCTION: -X509_get0_extensions 167 1_1_0d EXIST::FUNCTION: -SAF_GenerateKeyWithEPK 168 1_1_0d EXIST::FUNCTION: -ERR_load_CRYPTO_strings 169 1_1_0d EXIST:!VMS:FUNCTION: -ERR_load_CRYPTOlib_strings 169 1_1_0d EXIST:VMS:FUNCTION: -ASN1_PRINTABLE_it 170 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_PRINTABLE_it 170 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RSA_padding_add_PKCS1_OAEP 171 1_1_0d EXIST::FUNCTION:RSA -d2i_DIRECTORYSTRING 172 1_1_0d EXIST::FUNCTION: -d2i_NETSCAPE_CERT_SEQUENCE 173 1_1_0d EXIST::FUNCTION: -i2d_TS_ACCURACY 174 1_1_0d EXIST::FUNCTION:TS -ECIES_do_decrypt 175 1_1_0d EXIST::FUNCTION:ECIES -PKCS12_pack_p7data 176 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_print 177 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_it 178 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK -CPK_PUBLIC_PARAMS_it 178 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK -X509_STORE_set_check_crl 179 1_1_0d EXIST::FUNCTION: -PKCS12_key_gen_asc 180 1_1_0d EXIST::FUNCTION: -TS_REQ_free 181 1_1_0d EXIST::FUNCTION:TS -SKF_NewEnvelopedKey 182 1_1_0d EXIST::FUNCTION:SKF -i2d_TS_RESP 183 1_1_0d EXIST::FUNCTION:TS -X509_NAME_dup 184 1_1_0d EXIST::FUNCTION: -ASN1_STRING_set_default_mask_asc 185 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_get_name 186 1_1_0d EXIST::FUNCTION:CPK -DH_up_ref 187 1_1_0d EXIST::FUNCTION:DH -SRP_VBASE_get_by_user 188 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SRP -SKF_GetAlgorName 189 1_1_0d EXIST::FUNCTION:SKF -HMAC_CTX_reset 190 1_1_0d EXIST::FUNCTION: -SKF_DevAuth 191 1_1_0d EXIST::FUNCTION:SKF -IPAddressChoice_it 192 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressChoice_it 192 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -TS_REQ_add_ext 193 1_1_0d EXIST::FUNCTION:TS -ERR_peek_last_error 194 1_1_0d EXIST::FUNCTION: -OCSP_basic_add1_nonce 195 1_1_0d EXIST::FUNCTION:OCSP -ENGINE_get_default_DSA 196 1_1_0d EXIST::FUNCTION:ENGINE -RSA_meth_set_finish 197 1_1_0d EXIST::FUNCTION:RSA -X509_NAME_ENTRY_set_data 198 1_1_0d EXIST::FUNCTION: -i2d_SM9PublicParameters 199 1_1_0d EXIST::FUNCTION:SM9 -TS_RESP_verify_token 200 1_1_0d EXIST::FUNCTION:TS -EC_KEY_set_default_sm_method 201 1_1_0d EXIST::FUNCTION:SM2 -ERR_load_CPK_strings 202 1_1_0d EXIST::FUNCTION:CPK -GENERAL_NAME_cmp 203 1_1_0d EXIST::FUNCTION: -d2i_DSA_PUBKEY_bio 204 1_1_0d EXIST::FUNCTION:DSA -RSA_get0_crt_params 205 1_1_0d EXIST::FUNCTION:RSA -PEM_read_CMS 206 1_1_0d EXIST::FUNCTION:CMS,STDIO -ERR_load_SOF_strings 207 1_1_0d EXIST::FUNCTION:SOF -i2d_DSA_PUBKEY 208 1_1_0d EXIST::FUNCTION:DSA -EVP_aes_128_ccm 209 1_1_0d EXIST::FUNCTION: -ASYNC_pause_job 210 1_1_0d EXIST::FUNCTION: -X509_get_pubkey_parameters 211 1_1_0d EXIST::FUNCTION: -BN_num_bits_word 212 1_1_0d EXIST::FUNCTION: -EVP_PKEY_keygen 213 1_1_0d EXIST::FUNCTION: -DSA_generate_parameters 214 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DSA -X509_get_pathlen 215 1_1_0d EXIST::FUNCTION: -CRYPTO_clear_realloc 216 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_DH 217 1_1_0d EXIST::FUNCTION:DH -ZUC_set_key 218 1_1_0d EXIST::FUNCTION:ZUC -DH_check 219 1_1_0d EXIST::FUNCTION:DH -X509_PURPOSE_get0_name 220 1_1_0d EXIST::FUNCTION: -ERR_load_RSA_strings 221 1_1_0d EXIST::FUNCTION:RSA -TS_MSG_IMPRINT_get_msg 222 1_1_0d EXIST::FUNCTION:TS -PEM_read_ECPrivateKey 223 1_1_0d EXIST::FUNCTION:EC,STDIO -sms4_set_decrypt_key 224 1_1_0d EXIST::FUNCTION:SMS4 -IPAddressOrRange_new 225 1_1_0d EXIST::FUNCTION:RFC3779 -EC_POINT_point2hex 226 1_1_0d EXIST::FUNCTION:EC -DSA_dup_DH 227 1_1_0d EXIST::FUNCTION:DH,DSA -DIRECTORYSTRING_free 228 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_num_items 229 1_1_0d EXIST::FUNCTION: -i2d_DISPLAYTEXT 230 1_1_0d EXIST::FUNCTION: -X509_get_ext_count 231 1_1_0d EXIST::FUNCTION: -ASN1_get_object 232 1_1_0d EXIST::FUNCTION: -EC_GROUP_cmp 233 1_1_0d EXIST::FUNCTION:EC -ERR_pop_to_mark 234 1_1_0d EXIST::FUNCTION: -X509_alias_set1 235 1_1_0d EXIST::FUNCTION: -SM9_decrypt 236 1_1_0d EXIST::FUNCTION:SM9 -EVP_DecodeInit 237 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_RSA 238 1_1_0d EXIST::FUNCTION:RSA -EVP_aes_128_ctr 239 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_time 240 1_1_0d EXIST::FUNCTION: -SAF_GenerateKeyWithECC 241 1_1_0d EXIST::FUNCTION: -EVP_CipherFinal_ex 242 1_1_0d EXIST::FUNCTION: -i2d_PKCS12 243 1_1_0d EXIST::FUNCTION: -OBJ_length 244 1_1_0d EXIST::FUNCTION: -BIO_nwrite0 245 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_create_by_OBJ 246 1_1_0d EXIST::FUNCTION: -d2i_ECDSA_SIG_fp 247 1_1_0d EXIST::FUNCTION:EC,STDIO -PKCS12_SAFEBAGS_it 248 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_SAFEBAGS_it 248 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CMS_final 249 1_1_0d EXIST::FUNCTION:CMS -SKF_MacInit 250 1_1_0d EXIST::FUNCTION:SKF -EVP_PKEY_CTX_hex2ctrl 251 1_1_0d EXIST::FUNCTION: -TS_RESP_print_bio 252 1_1_0d EXIST::FUNCTION:TS -ENGINE_get_digests 253 1_1_0d EXIST::FUNCTION:ENGINE -X509_CRL_set_default_method 254 1_1_0d EXIST::FUNCTION: -BN_to_montgomery 255 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set0_dane 256 1_1_0d EXIST::FUNCTION: -EVP_PBE_scrypt 257 1_1_0d EXIST::FUNCTION:SCRYPT -EVP_CIPHER_CTX_cipher 258 1_1_0d EXIST::FUNCTION: -UTF8_getc 259 1_1_0d EXIST::FUNCTION: -X509_TRUST_add 260 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_get0_data 261 1_1_0d EXIST::FUNCTION: -PEM_write_bio_SM9_PUBKEY 262 1_1_0d EXIST::FUNCTION:SM9 -EVP_PKEY_set1_SM9 263 1_1_0d EXIST::FUNCTION:SM9 -ECDSA_SIG_set_ECCSIGNATUREBLOB 264 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -CMS_RecipientInfo_set0_password 265 1_1_0d EXIST::FUNCTION:CMS -DSO_flags 266 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_asn1_meth 267 1_1_0d EXIST::FUNCTION:ENGINE -EC_KEY_set_public_key 268 1_1_0d EXIST::FUNCTION:EC -OCSP_CERTSTATUS_it 269 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_CERTSTATUS_it 269 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -EVP_sms4_wrap_pad 270 1_1_0d EXIST::FUNCTION:SMS4 -X509_add1_trust_object 271 1_1_0d EXIST::FUNCTION: -SDF_DestroyKey 272 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_new 273 1_1_0d EXIST::FUNCTION:OCB -X509_check_email 274 1_1_0d EXIST::FUNCTION: -d2i_SM9Signature_bio 275 1_1_0d EXIST::FUNCTION:SM9 -ASN1_UNIVERSALSTRING_to_string 276 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set0_verified_chain 277 1_1_0d EXIST::FUNCTION: -CONF_imodule_get_name 278 1_1_0d EXIST::FUNCTION: -CMS_add1_signer 279 1_1_0d EXIST::FUNCTION:CMS -ASN1_SCTX_get_flags 280 1_1_0d EXIST::FUNCTION: -PEM_read_DHparams 281 1_1_0d EXIST::FUNCTION:DH,STDIO -TS_CONF_load_certs 282 1_1_0d EXIST::FUNCTION:TS -RSA_OAEP_PARAMS_it 283 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSA_OAEP_PARAMS_it 283 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -i2d_PKCS7_DIGEST 284 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_is_sorted 285 1_1_0d EXIST::FUNCTION: -i2d_IPAddressOrRange 286 1_1_0d EXIST::FUNCTION:RFC3779 -CRYPTO_THREAD_init_local 287 1_1_0d EXIST::FUNCTION: -i2a_ASN1_STRING 288 1_1_0d EXIST::FUNCTION: -d2i_ECCSignature 289 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -BB1IBE_decrypt 290 1_1_0d EXIST::FUNCTION:BB1IBE -RSA_meth_set_keygen 291 1_1_0d EXIST::FUNCTION:RSA -BN_set_word 292 1_1_0d EXIST::FUNCTION: -CRYPTO_mem_debug_malloc 293 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -EVP_bf_ofb 294 1_1_0d EXIST::FUNCTION:BF -ASN1_BIT_STRING_set 295 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_curve_GF2m 296 1_1_0d EXIST::FUNCTION:EC,EC2M -ENGINE_set_default_RSA 297 1_1_0d EXIST::FUNCTION:ENGINE -SM9_unwrap_key 298 1_1_0d EXIST::FUNCTION:SM9 -OCSP_basic_add1_status 299 1_1_0d EXIST::FUNCTION:OCSP -EVP_read_pw_string_min 300 1_1_0d EXIST::FUNCTION:UI -d2i_SM9PublicParameters 301 1_1_0d EXIST::FUNCTION:SM9 -CRYPTO_THREAD_read_lock 302 1_1_0d EXIST::FUNCTION: -PKCS7_set0_type_other 303 1_1_0d EXIST::FUNCTION: -PEM_write_RSAPublicKey 304 1_1_0d EXIST::FUNCTION:RSA,STDIO -GENERAL_NAME_set0_value 305 1_1_0d EXIST::FUNCTION: -RAND_query_egd_bytes 306 1_1_0d EXIST::FUNCTION:EGD -CMS_add_standard_smimecap 307 1_1_0d EXIST::FUNCTION:CMS -SKF_WaitForDevEvent 308 1_1_0d EXIST::FUNCTION:SKF -X509_STORE_CTX_set_flags 309 1_1_0d EXIST::FUNCTION: -ENGINE_get_ssl_client_cert_function 310 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_i2d_fp 311 1_1_0d EXIST::FUNCTION:STDIO -SOF_VerifySignedMessageDetach 312 1_1_0d EXIST::FUNCTION: -SCT_free 313 1_1_0d EXIST::FUNCTION:CT -EVP_rc5_32_12_16_cfb64 314 1_1_0d EXIST::FUNCTION:RC5 -BN_GF2m_mod_mul 315 1_1_0d EXIST::FUNCTION:EC2M -OPENSSL_sk_value 316 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cfb128 317 1_1_0d EXIST::FUNCTION: -SKF_PrintECCPrivateKey 318 1_1_0d EXIST::FUNCTION:SKF -X509_REQ_it 319 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_REQ_it 319 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -d2i_X509_CERT_AUX 320 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_add1_ext_i2d 321 1_1_0d EXIST::FUNCTION:OCSP -OCSP_basic_add1_cert 322 1_1_0d EXIST::FUNCTION:OCSP -ASN1_GENERALIZEDTIME_set 323 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_meth 324 1_1_0d EXIST::FUNCTION:ENGINE -X509_STORE_CTX_init 325 1_1_0d EXIST::FUNCTION: -X509_CRL_dup 326 1_1_0d EXIST::FUNCTION: -i2d_ASN1_NULL 327 1_1_0d EXIST::FUNCTION: -SDF_InternalSign_ECC 328 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_decrypt 329 1_1_0d EXIST::FUNCTION: -BN_get0_nist_prime_384 330 1_1_0d EXIST::FUNCTION: -EVP_sha224 331 1_1_0d EXIST::FUNCTION: -OPENSSL_thread_stop 332 1_1_0d EXIST::FUNCTION: -PKCS7_cert_from_signer_info 333 1_1_0d EXIST::FUNCTION: -X509_gmtime_adj 334 1_1_0d EXIST::FUNCTION: -DIST_POINT_free 335 1_1_0d EXIST::FUNCTION: -RC2_encrypt 336 1_1_0d EXIST::FUNCTION:RC2 -SHA256_Final 337 1_1_0d EXIST::FUNCTION: -PEM_dek_info 338 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_verifyctx 339 1_1_0d EXIST::FUNCTION: -BN_bntest_rand 340 1_1_0d EXIST::FUNCTION: -NCONF_WIN32 341 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get_ext 342 1_1_0d EXIST::FUNCTION: -d2i_X509_REQ_INFO 343 1_1_0d EXIST::FUNCTION: -PEM_write_bio_NETSCAPE_CERT_SEQUENCE 344 1_1_0d EXIST::FUNCTION: -BN_get_rfc3526_prime_4096 345 1_1_0d EXIST::FUNCTION: -SM9_signature_size 346 1_1_0d EXIST::FUNCTION:SM9 -OCSP_REQ_CTX_new 347 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_meth_set_verify_recover 348 1_1_0d EXIST::FUNCTION: -CAST_cfb64_encrypt 349 1_1_0d EXIST::FUNCTION:CAST -POLICYQUALINFO_it 350 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICYQUALINFO_it 350 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SMIME_read_CMS 351 1_1_0d EXIST::FUNCTION:CMS -GENERAL_NAME_dup 352 1_1_0d EXIST::FUNCTION: -OCSP_response_status_str 353 1_1_0d EXIST::FUNCTION:OCSP -SKF_GenRSAKeyPair 354 1_1_0d EXIST::FUNCTION:SKF -ENGINE_add 355 1_1_0d EXIST::FUNCTION:ENGINE -X509_chain_up_ref 356 1_1_0d EXIST::FUNCTION: -OCSP_RESPONSE_new 357 1_1_0d EXIST::FUNCTION:OCSP -DES_is_weak_key 358 1_1_0d EXIST::FUNCTION:DES -BN_mod_mul_montgomery 359 1_1_0d EXIST::FUNCTION: -BB1CiphertextBlock_new 360 1_1_0d EXIST::FUNCTION:BB1IBE -X509_STORE_CTX_get_cert_crl 361 1_1_0d EXIST::FUNCTION: -SCT_set_source 362 1_1_0d EXIST::FUNCTION:CT -i2d_X509_NAME_ENTRY 363 1_1_0d EXIST::FUNCTION: -X509_NAME_get_index_by_OBJ 364 1_1_0d EXIST::FUNCTION: -X509_subject_name_cmp 365 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_get_do_cipher 366 1_1_0d EXIST::FUNCTION: -d2i_X509_VAL 367 1_1_0d EXIST::FUNCTION: -d2i_ASN1_NULL 368 1_1_0d EXIST::FUNCTION: -PKCS7_ENC_CONTENT_new 369 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_set_sign 370 1_1_0d EXIST::FUNCTION:EC -BN_bn2solinas 371 1_1_0d EXIST::FUNCTION: -RSA_verify_ASN1_OCTET_STRING 372 1_1_0d EXIST::FUNCTION:RSA -BN_CTX_get 373 1_1_0d EXIST::FUNCTION: -DES_fcrypt 374 1_1_0d EXIST::FUNCTION:DES -BIO_new_mem_buf 375 1_1_0d EXIST::FUNCTION: -DSA_sign 376 1_1_0d EXIST::FUNCTION:DSA -X509_NAME_ENTRY_create_by_OBJ 377 1_1_0d EXIST::FUNCTION: -PEM_write_PKCS8PrivateKey 378 1_1_0d EXIST::FUNCTION:STDIO -PKCS12_it 379 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_it 379 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_CRL_INFO_free 380 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_free 381 1_1_0d EXIST::FUNCTION:OCSP -PKCS12_decrypt_skey 382 1_1_0d EXIST::FUNCTION: -PEM_write_bio_CMS 383 1_1_0d EXIST::FUNCTION:CMS -d2i_OCSP_CRLID 384 1_1_0d EXIST::FUNCTION:OCSP -BN_GF2m_mod_sqrt 385 1_1_0d EXIST::FUNCTION:EC2M -PAILLIER_decrypt 386 1_1_0d EXIST::FUNCTION:PAILLIER -PEM_bytes_read_bio 387 1_1_0d EXIST::FUNCTION: -i2b_PrivateKey_bio 388 1_1_0d EXIST::FUNCTION:DSA -i2d_CMS_ReceiptRequest 389 1_1_0d EXIST::FUNCTION:CMS -DH_get_2048_224 390 1_1_0d EXIST::FUNCTION:DH -i2d_USERNOTICE 391 1_1_0d EXIST::FUNCTION: -SAF_GetCertificateStateByOCSP 392 1_1_0d EXIST::FUNCTION: -X509_STORE_set_check_policy 393 1_1_0d EXIST::FUNCTION: -EVP_sms4_ctr 394 1_1_0d EXIST::FUNCTION:SMS4 -X509_STORE_get_get_crl 395 1_1_0d EXIST::FUNCTION: -DSA_SIG_set0 396 1_1_0d EXIST::FUNCTION:DSA -X509V3_EXT_CRL_add_conf 397 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_RAND 398 1_1_0d EXIST::FUNCTION:ENGINE -CMS_unsigned_get_attr_by_NID 399 1_1_0d EXIST::FUNCTION:CMS -X509_get0_pubkey 400 1_1_0d EXIST::FUNCTION: -EVP_camellia_192_cfb1 401 1_1_0d EXIST::FUNCTION:CAMELLIA -CMS_signed_delete_attr 402 1_1_0d EXIST::FUNCTION:CMS -i2d_PublicKey 403 1_1_0d EXIST::FUNCTION: -X509_issuer_name_hash 404 1_1_0d EXIST::FUNCTION: -SRP_Verify_A_mod_N 405 1_1_0d EXIST::FUNCTION:SRP -MD5_Init 406 1_1_0d EXIST::FUNCTION:MD5 -OCSP_REQ_CTX_nbio_d2i 407 1_1_0d EXIST::FUNCTION:OCSP -EVP_MD_meth_get_ctrl 408 1_1_0d EXIST::FUNCTION: -OBJ_new_nid 409 1_1_0d EXIST::FUNCTION: -EC_curve_nist2nid 410 1_1_0d EXIST::FUNCTION:EC -X509_trusted 411 1_1_0d EXIST::FUNCTION: -X509_policy_level_get0_node 412 1_1_0d EXIST::FUNCTION: -d2i_ACCESS_DESCRIPTION 413 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_meth_engine 414 1_1_0d EXIST::FUNCTION:ENGINE -NAME_CONSTRAINTS_free 415 1_1_0d EXIST::FUNCTION: -SAF_EccVerifySign 416 1_1_0d EXIST::FUNCTION: -BIO_set_callback 417 1_1_0d EXIST::FUNCTION: -X509at_add1_attr_by_OBJ 418 1_1_0d EXIST::FUNCTION: -ENGINE_add_conf_module 419 1_1_0d EXIST::FUNCTION:ENGINE -SOF_GetInfoFromSignedMessage 420 1_1_0d EXIST::FUNCTION: -OPENSSL_cleanse 421 1_1_0d EXIST::FUNCTION: -serpent_encrypt 422 1_1_0d EXIST::FUNCTION:SERPENT -TS_VERIFY_CTX_add_flags 423 1_1_0d EXIST::FUNCTION:TS -ASN1_NULL_free 424 1_1_0d EXIST::FUNCTION: -EVP_sha512 425 1_1_0d EXIST:!VMSVAX:FUNCTION: -CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE 426 1_1_0d EXIST::FUNCTION:CT -d2i_X509_SIG 427 1_1_0d EXIST::FUNCTION: -EVP_des_ede3 428 1_1_0d EXIST::FUNCTION:DES -BIO_dump_indent_cb 429 1_1_0d EXIST::FUNCTION: -OCSP_CERTSTATUS_free 430 1_1_0d EXIST::FUNCTION:OCSP -EC_GROUP_order_bits 431 1_1_0d EXIST::FUNCTION:EC -EVP_CIPHER_CTX_set_cipher_data 432 1_1_0d EXIST::FUNCTION: -BIO_get_new_index 433 1_1_0d EXIST::FUNCTION: -RAND_set_rand_engine 434 1_1_0d EXIST::FUNCTION:ENGINE -i2d_CMS_ContentInfo 435 1_1_0d EXIST::FUNCTION:CMS -DSA_sign_setup 436 1_1_0d EXIST::FUNCTION:DSA -X509_PURPOSE_set 437 1_1_0d EXIST::FUNCTION: -BIO_get_accept_socket 438 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -i2d_BB1PublicParameters 439 1_1_0d EXIST::FUNCTION:BB1IBE -RC2_ecb_encrypt 440 1_1_0d EXIST::FUNCTION:RC2 -PEM_write_bio_PrivateKey_traditional 441 1_1_0d EXIST::FUNCTION: -SM2_KAP_prepare 442 1_1_0d EXIST::FUNCTION:SM2 -CMS_SignerInfo_get0_md_ctx 443 1_1_0d EXIST::FUNCTION:CMS -ASIdentifiers_free 444 1_1_0d EXIST::FUNCTION:RFC3779 -ENGINE_set_ctrl_function 445 1_1_0d EXIST::FUNCTION:ENGINE -EVP_CIPHER_CTX_key_length 446 1_1_0d EXIST::FUNCTION: -PKCS7_sign_add_signer 447 1_1_0d EXIST::FUNCTION: -OBJ_NAME_add 448 1_1_0d EXIST::FUNCTION: -X509_REQ_INFO_it 449 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_REQ_INFO_it 449 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_POLICY_NODE_print 450 1_1_0d EXIST::FUNCTION: -CRYPTO_set_ex_data 451 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_keygen 452 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_set_data 453 1_1_0d EXIST::FUNCTION:TS -BN_mod_sub 454 1_1_0d EXIST::FUNCTION: -PEM_write_PKCS8 455 1_1_0d EXIST::FUNCTION:STDIO -EVP_EncodeFinal 456 1_1_0d EXIST::FUNCTION: -CPK_MASTER_SECRET_create 457 1_1_0d EXIST::FUNCTION:CPK -EC_GROUP_set_seed 458 1_1_0d EXIST::FUNCTION:EC -ASN1_STRING_print_ex_fp 459 1_1_0d EXIST::FUNCTION:STDIO -EVP_seed_ofb 460 1_1_0d EXIST::FUNCTION:SEED -SOF_SignData 461 1_1_0d EXIST::FUNCTION: -i2d_SM2CiphertextValue_bio 462 1_1_0d EXIST::FUNCTION:SM2 -OCSP_BASICRESP_add_ext 463 1_1_0d EXIST::FUNCTION:OCSP -ENGINE_unregister_ciphers 464 1_1_0d EXIST::FUNCTION:ENGINE -RSA_free 465 1_1_0d EXIST::FUNCTION:RSA -SHA256 466 1_1_0d EXIST::FUNCTION: -X509_STORE_set_cert_crl 467 1_1_0d EXIST::FUNCTION: -PKCS7_add_crl 468 1_1_0d EXIST::FUNCTION: -IPAddressFamily_it 469 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressFamily_it 469 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -PEM_read_bio_SM9PublicKey 470 1_1_0d EXIST::FUNCTION:SM9 -ASN1_OBJECT_it 471 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_OBJECT_it 471 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -d2i_TS_MSG_IMPRINT_bio 472 1_1_0d EXIST::FUNCTION:TS -TS_CONF_set_policies 473 1_1_0d EXIST::FUNCTION:TS -ASN1_item_free 474 1_1_0d EXIST::FUNCTION: -ENGINE_get_prev 475 1_1_0d EXIST::FUNCTION:ENGINE -X509_STORE_set_flags 476 1_1_0d EXIST::FUNCTION: -i2d_SM9PrivateKey_bio 477 1_1_0d EXIST::FUNCTION:SM9 -ASN1_NULL_new 478 1_1_0d EXIST::FUNCTION: -TS_ASN1_INTEGER_print_bio 479 1_1_0d EXIST::FUNCTION:TS -SEED_cbc_encrypt 480 1_1_0d EXIST::FUNCTION:SEED -i2v_GENERAL_NAME 481 1_1_0d EXIST::FUNCTION: -i2d_ASN1_bio_stream 482 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_delete_ptr 483 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_add 484 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set1_name 485 1_1_0d EXIST::FUNCTION: -EC_POINT_set_affine_coordinates_GF2m 486 1_1_0d EXIST::FUNCTION:EC,EC2M -EVP_rc2_40_cbc 487 1_1_0d EXIST::FUNCTION:RC2 -EC_POINT_cmp 488 1_1_0d EXIST::FUNCTION:EC -i2d_X509_VAL 489 1_1_0d EXIST::FUNCTION: -TS_RESP_get_token 490 1_1_0d EXIST::FUNCTION:TS -CPK_MASTER_SECRET_new 491 1_1_0d EXIST::FUNCTION:CPK -i2d_OCSP_BASICRESP 492 1_1_0d EXIST::FUNCTION:OCSP -X509_VERIFY_PARAM_set_depth 493 1_1_0d EXIST::FUNCTION: -UI_OpenSSL 494 1_1_0d EXIST::FUNCTION:UI -X509at_get_attr_count 495 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_new 496 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_time 497 1_1_0d EXIST::FUNCTION:TS -i2d_DHparams 498 1_1_0d EXIST::FUNCTION:DH -PKCS7_add_signature 499 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_SIGNED 500 1_1_0d EXIST::FUNCTION: -RC5_32_ofb64_encrypt 501 1_1_0d EXIST::FUNCTION:RC5 -EVP_des_ede_cbc 502 1_1_0d EXIST::FUNCTION:DES -SHA1_Init 503 1_1_0d EXIST::FUNCTION: -DH_meth_get_finish 504 1_1_0d EXIST::FUNCTION:DH -ASYNC_start_job 505 1_1_0d EXIST::FUNCTION: -POLICY_CONSTRAINTS_free 506 1_1_0d EXIST::FUNCTION: -UI_method_get_opener 507 1_1_0d EXIST::FUNCTION:UI -SAF_ChangePin 508 1_1_0d EXIST::FUNCTION: -PROXY_POLICY_free 509 1_1_0d EXIST::FUNCTION: -X509_get_default_private_dir 510 1_1_0d EXIST::FUNCTION: -ASN1_STRING_set_default_mask 511 1_1_0d EXIST::FUNCTION: -X509V3_EXT_print 512 1_1_0d EXIST::FUNCTION: -SKF_GetDevInfo 513 1_1_0d EXIST::FUNCTION:SKF -SKF_UnblockPIN 514 1_1_0d EXIST::FUNCTION:SKF -d2i_SM9_MASTER_PUBKEY 515 1_1_0d EXIST::FUNCTION:SM9 -EVP_PKEY_keygen_init 516 1_1_0d EXIST::FUNCTION: -SCT_get_timestamp 517 1_1_0d EXIST::FUNCTION:CT -BFPrivateKeyBlock_it 518 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFPrivateKeyBlock_it 518 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -EVP_Digest 519 1_1_0d EXIST::FUNCTION: -a2i_IPADDRESS_NC 520 1_1_0d EXIST::FUNCTION: -CRYPTO_cfb128_1_encrypt 521 1_1_0d EXIST::FUNCTION: -ASN1_ANY_it 522 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_ANY_it 522 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_get_ciphernames 523 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_new 524 1_1_0d EXIST::FUNCTION: -ENGINE_remove 525 1_1_0d EXIST::FUNCTION:ENGINE -BN_new 526 1_1_0d EXIST::FUNCTION: -ENGINE_set_default 527 1_1_0d EXIST::FUNCTION:ENGINE -TS_VERIFY_CTX_free 528 1_1_0d EXIST::FUNCTION:TS -DH_meth_set_generate_params 529 1_1_0d EXIST::FUNCTION:DH -BN_BLINDING_set_current_thread 530 1_1_0d EXIST::FUNCTION: -ENGINE_set_name 531 1_1_0d EXIST::FUNCTION:ENGINE -TS_OBJ_print_bio 532 1_1_0d EXIST::FUNCTION:TS -i2d_X509_CRL_bio 533 1_1_0d EXIST::FUNCTION: -PEM_write_DSAparams 534 1_1_0d EXIST::FUNCTION:DSA,STDIO -PKCS7_SIGNER_INFO_free 535 1_1_0d EXIST::FUNCTION: -EC_GROUP_new_type1curve 536 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_print 537 1_1_0d EXIST::FUNCTION:CPK -X509_STORE_get_check_policy 538 1_1_0d EXIST::FUNCTION: -UI_get_default_method 539 1_1_0d EXIST::FUNCTION:UI -SKF_LockDev 540 1_1_0d EXIST::FUNCTION:SKF -SM2_do_decrypt 541 1_1_0d EXIST::FUNCTION:SM2 -X509_NAME_ENTRY_dup 542 1_1_0d EXIST::FUNCTION: -HMAC 543 1_1_0d EXIST::FUNCTION: -TS_CONF_set_clock_precision_digits 544 1_1_0d EXIST::FUNCTION:TS -ASN1_SEQUENCE_it 545 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_SEQUENCE_it 545 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -d2i_RSA_PUBKEY_bio 546 1_1_0d EXIST::FUNCTION:RSA -PKCS12_pbe_crypt 547 1_1_0d EXIST::FUNCTION: -d2i_POLICYQUALINFO 548 1_1_0d EXIST::FUNCTION: -SOF_GetSignMethod 549 1_1_0d EXIST::FUNCTION: -PKCS7_add_attribute 550 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_by_critical 551 1_1_0d EXIST::FUNCTION:OCSP -DH_set_length 552 1_1_0d EXIST::FUNCTION:DH -PEM_read_bio_RSA_PUBKEY 553 1_1_0d EXIST::FUNCTION:RSA -ASN1_item_i2d_fp 554 1_1_0d EXIST::FUNCTION:STDIO -EC_KEY_METHOD_set_encrypt 555 1_1_0d EXIST::FUNCTION:SM2 -ASN1_BMPSTRING_new 556 1_1_0d EXIST::FUNCTION: -CMS_signed_get_attr 557 1_1_0d EXIST::FUNCTION:CMS -RAND_pseudo_bytes 558 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -DSA_get_method 559 1_1_0d EXIST::FUNCTION:DSA -X509_signature_print 560 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_set0_key 561 1_1_0d EXIST::FUNCTION:CMS -CMS_digest_create 562 1_1_0d EXIST::FUNCTION:CMS -EC_KEY_new_from_ECCPUBLICKEYBLOB 563 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -ASN1_PCTX_set_flags 564 1_1_0d EXIST::FUNCTION: -TXT_DB_read 565 1_1_0d EXIST::FUNCTION: -PKCS12_add_cert 566 1_1_0d EXIST::FUNCTION: -RSA_meth_set_verify 567 1_1_0d EXIST::FUNCTION:RSA -BN_GENCB_set 568 1_1_0d EXIST::FUNCTION: -ASN1_STRING_type_new 569 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_get_sgd 570 1_1_0d EXIST::FUNCTION:GMAPI -EVP_PKEY_meth_get_cleanup 571 1_1_0d EXIST::FUNCTION: -EVP_MD_size 572 1_1_0d EXIST::FUNCTION: -i2d_EDIPARTYNAME 573 1_1_0d EXIST::FUNCTION: -ASN1_STRING_get_default_mask 574 1_1_0d EXIST::FUNCTION: -ENGINE_get_DSA 575 1_1_0d EXIST::FUNCTION:ENGINE -X509v3_get_ext_by_NID 576 1_1_0d EXIST::FUNCTION: -UI_method_set_writer 577 1_1_0d EXIST::FUNCTION:UI -EVP_CipherUpdate 578 1_1_0d EXIST::FUNCTION: -EVP_camellia_256_cfb8 579 1_1_0d EXIST::FUNCTION:CAMELLIA -CMS_EncryptedData_encrypt 580 1_1_0d EXIST::FUNCTION:CMS -i2d_OCSP_RESPID 581 1_1_0d EXIST::FUNCTION:OCSP -ECPKPARAMETERS_free 582 1_1_0d EXIST::FUNCTION:EC -EC_POINT_is_at_infinity 583 1_1_0d EXIST::FUNCTION:EC -CMS_SignerInfo_sign 584 1_1_0d EXIST::FUNCTION:CMS -X509V3_add1_i2d 585 1_1_0d EXIST::FUNCTION: -OCSP_REQINFO_free 586 1_1_0d EXIST::FUNCTION:OCSP -PKCS12_unpack_p7data 587 1_1_0d EXIST::FUNCTION: -RC2_decrypt 588 1_1_0d EXIST::FUNCTION:RC2 -EVP_PKEY_get0 589 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_buf_noconst 590 1_1_0d EXIST::FUNCTION: -OCSP_RESPBYTES_it 591 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPBYTES_it 591 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -BIO_hex_string 592 1_1_0d EXIST::FUNCTION: -X509V3_string_free 593 1_1_0d EXIST::FUNCTION: -BN_sub_word 594 1_1_0d EXIST::FUNCTION: -ASN1_PRINTABLE_type 595 1_1_0d EXIST::FUNCTION: -RSA_padding_check_PKCS1_type_1 596 1_1_0d EXIST::FUNCTION:RSA -BN_div 597 1_1_0d EXIST::FUNCTION: -ASN1_TIME_set_string 598 1_1_0d EXIST::FUNCTION: -i2o_ECPublicKey 599 1_1_0d EXIST::FUNCTION:EC -NETSCAPE_SPKI_print 600 1_1_0d EXIST::FUNCTION: -SHA512 601 1_1_0d EXIST:!VMSVAX:FUNCTION: -X509_STORE_CTX_get_cleanup 602 1_1_0d EXIST::FUNCTION: -ENGINE_setup_bsd_cryptodev 603 1_1_0d EXIST:__FreeBSD__:FUNCTION:DEPRECATEDIN_1_1_0,ENGINE -i2d_BB1MasterSecret 604 1_1_0d EXIST::FUNCTION:BB1IBE -DH_meth_set_flags 605 1_1_0d EXIST::FUNCTION:DH -PKCS7_get_attribute 606 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_cleanup 607 1_1_0d EXIST::FUNCTION: -EVP_PKEY_delete_attr 608 1_1_0d EXIST::FUNCTION: -PKCS12_init 609 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_pop_free 610 1_1_0d EXIST::FUNCTION: -ASIdentifiers_new 611 1_1_0d EXIST::FUNCTION:RFC3779 -RSA_size 612 1_1_0d EXIST::FUNCTION:RSA -X509_get_default_cert_file_env 613 1_1_0d EXIST::FUNCTION: -SRP_Calc_B 614 1_1_0d EXIST::FUNCTION:SRP -ECIES_decrypt 615 1_1_0d EXIST::FUNCTION:ECIES -BN_X931_generate_prime_ex 616 1_1_0d EXIST::FUNCTION: -X509_STORE_get_verify 617 1_1_0d EXIST::FUNCTION: -i2d_CRL_DIST_POINTS 618 1_1_0d EXIST::FUNCTION: -BIO_free_all 619 1_1_0d EXIST::FUNCTION: -i2d_EC_PUBKEY_fp 620 1_1_0d EXIST::FUNCTION:EC,STDIO -ECDSA_SIG_new 621 1_1_0d EXIST::FUNCTION:EC -i2d_PROXY_CERT_INFO_EXTENSION 622 1_1_0d EXIST::FUNCTION: -i2d_OCSP_RESPBYTES 623 1_1_0d EXIST::FUNCTION:OCSP -AES_set_encrypt_key 624 1_1_0d EXIST::FUNCTION: -d2i_PROXY_CERT_INFO_EXTENSION 625 1_1_0d EXIST::FUNCTION: -BN_BLINDING_unlock 626 1_1_0d EXIST::FUNCTION: -EC_GROUP_free 627 1_1_0d EXIST::FUNCTION:EC -CMS_RecipientInfo_encrypt 628 1_1_0d EXIST::FUNCTION:CMS -X509V3_add_value_uchar 629 1_1_0d EXIST::FUNCTION: -EC_KEY_print 630 1_1_0d EXIST::FUNCTION:EC -d2i_RSA_OAEP_PARAMS 631 1_1_0d EXIST::FUNCTION:RSA -SM9PrivateKey_get_public_key 632 1_1_0d EXIST::FUNCTION:SM9 -CRYPTO_zalloc 633 1_1_0d EXIST::FUNCTION: -RSA_meth_get0_app_data 634 1_1_0d EXIST::FUNCTION:RSA -EVP_CIPHER_meth_set_cleanup 635 1_1_0d EXIST::FUNCTION: -ECDSA_size 636 1_1_0d EXIST::FUNCTION:EC -BB1IBE_do_decrypt 637 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_MD_CTX_copy_ex 638 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_nbio 639 1_1_0d EXIST::FUNCTION:OCSP -EVP_camellia_256_ctr 640 1_1_0d EXIST::FUNCTION:CAMELLIA -OCSP_id_cmp 641 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_CTX_set_cb 642 1_1_0d EXIST::FUNCTION: -TS_CONF_set_accuracy 643 1_1_0d EXIST::FUNCTION:TS -SAF_SymmEncrypt 644 1_1_0d EXIST::FUNCTION: -SKF_GetFileInfo 645 1_1_0d EXIST::FUNCTION:SKF -BN_BLINDING_lock 646 1_1_0d EXIST::FUNCTION: -PEM_write_PAILLIER_PUBKEY 647 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO -i2d_OCSP_SERVICELOC 648 1_1_0d EXIST::FUNCTION:OCSP -BIO_ADDR_new 649 1_1_0d EXIST::FUNCTION:SOCK -i2d_ASN1_PRINTABLE 650 1_1_0d EXIST::FUNCTION: -OCSP_cert_id_new 651 1_1_0d EXIST::FUNCTION:OCSP -ISSUING_DIST_POINT_free 652 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_get_app_data 653 1_1_0d EXIST::FUNCTION: -ASN1_TIME_adj 654 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_signer_key 655 1_1_0d EXIST::FUNCTION:TS -EVP_PKEY_get_attr_by_OBJ 656 1_1_0d EXIST::FUNCTION: -OCSP_RESPDATA_it 657 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPDATA_it 657 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -EVP_CIPHER_CTX_set_key_length 658 1_1_0d EXIST::FUNCTION: -EVP_PKEY_print_private 659 1_1_0d EXIST::FUNCTION: -ERR_unload_strings 660 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_b64_decode 661 1_1_0d EXIST::FUNCTION: -BFPublicParameters_new 662 1_1_0d EXIST::FUNCTION:BFIBE -CPK_MASTER_SECRET_print 663 1_1_0d EXIST::FUNCTION:CPK -RC4_set_key 664 1_1_0d EXIST::FUNCTION:RC4 -MD2_Init 665 1_1_0d EXIST::FUNCTION:MD2 -TS_RESP_verify_signature 666 1_1_0d EXIST::FUNCTION:TS -EVP_CIPHER_set_asn1_iv 667 1_1_0d EXIST::FUNCTION: -X509_REQ_INFO_free 668 1_1_0d EXIST::FUNCTION: -BN_mod_lshift_quick 669 1_1_0d EXIST::FUNCTION: -EC_POINT_free 670 1_1_0d EXIST::FUNCTION:EC -SCT_set1_signature 671 1_1_0d EXIST::FUNCTION:CT -i2d_BB1CiphertextBlock 672 1_1_0d EXIST::FUNCTION:BB1IBE -DH_check_pub_key 673 1_1_0d EXIST::FUNCTION:DH -CMS_RecipientEncryptedKey_get0_id 674 1_1_0d EXIST::FUNCTION:CMS -BIO_asn1_get_prefix 675 1_1_0d EXIST::FUNCTION: -ECDSA_sign_setup 676 1_1_0d EXIST::FUNCTION:EC -DES_string_to_key 677 1_1_0d EXIST::FUNCTION:DES -sm3_init 678 1_1_0d EXIST::FUNCTION:SM3 -BFIBE_extract_private_key 679 1_1_0d EXIST::FUNCTION:BFIBE -OCSP_REQ_CTX_http 680 1_1_0d EXIST::FUNCTION:OCSP -SAF_RsaSign 681 1_1_0d EXIST::FUNCTION: -SKF_DecryptInit 682 1_1_0d EXIST::FUNCTION:SKF -SM2CiphertextValue_it 683 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM2 -SM2CiphertextValue_it 683 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM2 -d2i_ASN1_OCTET_STRING 684 1_1_0d EXIST::FUNCTION: -SKF_UnlockDev 685 1_1_0d EXIST::FUNCTION:SKF -EVP_PKEY_get_attr_by_NID 686 1_1_0d EXIST::FUNCTION: -EC_POINT_get_Jprojective_coordinates_GFp 687 1_1_0d EXIST::FUNCTION:EC -X509_STORE_get_get_issuer 688 1_1_0d EXIST::FUNCTION: -a2i_ASN1_STRING 689 1_1_0d EXIST::FUNCTION: -sms4_ecb_encrypt 690 1_1_0d EXIST::FUNCTION:SMS4 -MD5 691 1_1_0d EXIST::FUNCTION:MD5 -X509_ALGOR_cmp 692 1_1_0d EXIST::FUNCTION: -X509_REQ_print_fp 693 1_1_0d EXIST::FUNCTION:STDIO -CONF_load_bio 694 1_1_0d EXIST::FUNCTION: -OCSP_CRLID_it 695 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_CRLID_it 695 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -CBIGNUM_it 696 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -CBIGNUM_it 696 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RSA_meth_set_pub_dec 697 1_1_0d EXIST::FUNCTION:RSA -ENGINE_set_DSA 698 1_1_0d EXIST::FUNCTION:ENGINE -BUF_MEM_new 699 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_set_msg 700 1_1_0d EXIST::FUNCTION:TS -OCSP_BASICRESP_get_ext_by_OBJ 701 1_1_0d EXIST::FUNCTION:OCSP -OCSP_archive_cutoff_new 702 1_1_0d EXIST::FUNCTION:OCSP -ASN1_OBJECT_create 703 1_1_0d EXIST::FUNCTION: -X509_OBJECT_free 704 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_iv_length 705 1_1_0d EXIST::FUNCTION: -d2i_TS_RESP_bio 706 1_1_0d EXIST::FUNCTION:TS -IDEA_cfb64_encrypt 707 1_1_0d EXIST::FUNCTION:IDEA -EVP_PKEY_meth_get_signctx 708 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_decrypt_ctr32 1 1_1_0d EXIST::FUNCTION: +EC_POINT_point2oct 2 1_1_0d EXIST::FUNCTION:EC +i2d_OCSP_SERVICELOC 3 1_1_0d EXIST::FUNCTION:OCSP +FFX_encrypt 4 1_1_0d EXIST::FUNCTION: +i2d_PBE2PARAM 5 1_1_0d EXIST::FUNCTION: +s2i_ASN1_IA5STRING 6 1_1_0d EXIST::FUNCTION: +OBJ_NAME_add 7 1_1_0d EXIST::FUNCTION: +i2d_PKCS12_SAFEBAG 8 1_1_0d EXIST::FUNCTION: +CRYPTO_secure_allocated 9 1_1_0d EXIST::FUNCTION: +sms4_set_decrypt_key 10 1_1_0d EXIST::FUNCTION:SMS4 +EC_KEY_METHOD_get_init 11 1_1_0d EXIST::FUNCTION:EC +d2i_PrivateKey 12 1_1_0d EXIST::FUNCTION: +speck_encrypt32 13 1_1_0d EXIST::FUNCTION:SPECK +OCSP_CERTID_new 14 1_1_0d EXIST::FUNCTION:OCSP +SXNET_get_id_ulong 15 1_1_0d EXIST::FUNCTION: +EVP_PKEY_decrypt_old 16 1_1_0d EXIST::FUNCTION: +EVP_aes_256_gcm 17 1_1_0d EXIST::FUNCTION: +SKF_GetDevStateName 18 1_1_0d EXIST::FUNCTION:SKF +SDF_FreeECCCipher 19 1_1_0d EXIST::FUNCTION:SDF +DES_encrypt3 20 1_1_0d EXIST::FUNCTION:DES +EC_GROUP_get0_generator 21 1_1_0d EXIST::FUNCTION:EC +SAF_Base64_DecodeUpdate 22 1_1_0d EXIST::FUNCTION: +SDF_InternalSign_ECC 23 1_1_0d EXIST::FUNCTION: +BN_GFP2_free 24 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_inv 25 1_1_0d EXIST::FUNCTION:EC2M +i2d_USERNOTICE 26 1_1_0d EXIST::FUNCTION: +X509_get0_extensions 27 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_get0_otherName 28 1_1_0d EXIST::FUNCTION: +EVP_SealInit 29 1_1_0d EXIST::FUNCTION:RSA +PKCS7_ENC_CONTENT_it 30 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ENC_CONTENT_it 30 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OCSP_cert_id_new 31 1_1_0d EXIST::FUNCTION:OCSP +BN_GF2m_mod_inv_arr 32 1_1_0d EXIST::FUNCTION:EC2M +DH_set_default_method 33 1_1_0d EXIST::FUNCTION:DH +PEM_ASN1_read_bio 34 1_1_0d EXIST::FUNCTION: +X509_ALGOR_get0 35 1_1_0d EXIST::FUNCTION: +SCT_set_log_entry_type 36 1_1_0d EXIST::FUNCTION:CT +X509_NAME_add_entry_by_NID 37 1_1_0d EXIST::FUNCTION: +UI_set_default_method 38 1_1_0d EXIST::FUNCTION:UI +ERR_load_DSA_strings 39 1_1_0d EXIST::FUNCTION:DSA +BN_GFP2_add 40 1_1_0d EXIST::FUNCTION: +RAND_file_name 41 1_1_0d EXIST::FUNCTION: +TS_CONF_set_crypto_device 42 1_1_0d EXIST::FUNCTION:ENGINE,TS +SM2_do_encrypt 43 1_1_0d EXIST::FUNCTION:SM2 +X509_STORE_CTX_set0_trusted_stack 44 1_1_0d EXIST::FUNCTION: +TS_RESP_verify_token 45 1_1_0d EXIST::FUNCTION:TS +TS_MSG_IMPRINT_set_algo 46 1_1_0d EXIST::FUNCTION:TS +ENGINE_set_RAND 47 1_1_0d EXIST::FUNCTION:ENGINE +SM2_verify 48 1_1_0d EXIST::FUNCTION:SM2 +PEM_write_bio_PAILLIER_PUBKEY 49 1_1_0d EXIST::FUNCTION:PAILLIER +TS_MSG_IMPRINT_get_msg 50 1_1_0d EXIST::FUNCTION:TS +SCT_get_validation_status 51 1_1_0d EXIST::FUNCTION:CT +SM9_wrap_key 52 1_1_0d EXIST::FUNCTION:SM9 +TS_STATUS_INFO_set_status 53 1_1_0d EXIST::FUNCTION:TS +PAILLIER_encrypt 54 1_1_0d EXIST::FUNCTION:PAILLIER +X509_get0_pubkey_bitstr 55 1_1_0d EXIST::FUNCTION: +DSAparams_dup 56 1_1_0d EXIST::FUNCTION:DSA +EVP_MD_meth_set_copy 57 1_1_0d EXIST::FUNCTION: +d2i_NOTICEREF 58 1_1_0d EXIST::FUNCTION: +i2d_PKCS8PrivateKey_fp 59 1_1_0d EXIST::FUNCTION:STDIO +PEM_read_ECPrivateKey 60 1_1_0d EXIST::FUNCTION:EC,STDIO +ASN1_item_unpack 61 1_1_0d EXIST::FUNCTION: +DSA_verify 62 1_1_0d EXIST::FUNCTION:DSA +i2d_BB1CiphertextBlock 63 1_1_0d EXIST::FUNCTION:BB1IBE +X509_load_crl_file 64 1_1_0d EXIST::FUNCTION: +SM9_VerifyInit 65 1_1_0d EXIST::FUNCTION:SM9 +X509_get_ext_d2i 66 1_1_0d EXIST::FUNCTION: +ASN1_TIME_adj 67 1_1_0d EXIST::FUNCTION: +X509_CRL_free 68 1_1_0d EXIST::FUNCTION: +EC_KEY_dup 69 1_1_0d EXIST::FUNCTION:EC +PKCS7_final 70 1_1_0d EXIST::FUNCTION: +SOF_VerifySignedData 71 1_1_0d EXIST::FUNCTION: +AES_decrypt 72 1_1_0d EXIST::FUNCTION: +OCSP_resp_count 73 1_1_0d EXIST::FUNCTION:OCSP +PBKDF2PARAM_it 74 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PBKDF2PARAM_it 74 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ENGINE_get_pkey_meths 75 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_TIME_to_generalizedtime 76 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_depth 77 1_1_0d EXIST::FUNCTION: +TS_RESP_get_tst_info 78 1_1_0d EXIST::FUNCTION:TS +RSA_meth_dup 79 1_1_0d EXIST::FUNCTION:RSA +EVP_PBE_alg_add 80 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_aad 81 1_1_0d EXIST::FUNCTION: +EC_POINT_set_Jprojective_coordinates_GFp 82 1_1_0d EXIST::FUNCTION:EC +EVP_PKEY_asn1_set_item 83 1_1_0d EXIST::FUNCTION: +BN_is_prime 84 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +EC_GFp_nistp256_method 85 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 +BN_CTX_start 86 1_1_0d EXIST::FUNCTION: +X509_STORE_new 87 1_1_0d EXIST::FUNCTION: +SM9Ciphertext_free 88 1_1_0d EXIST::FUNCTION:SM9 +BN_from_montgomery 89 1_1_0d EXIST::FUNCTION: +serpent_decrypt 90 1_1_0d EXIST::FUNCTION:SERPENT +DH_set0_key 91 1_1_0d EXIST::FUNCTION:DH +RSA_meth_set_keygen 92 1_1_0d EXIST::FUNCTION:RSA +SOF_CreateTimeStampResponse 93 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_current_cert 94 1_1_0d EXIST::FUNCTION: +i2b_PublicKey_bio 95 1_1_0d EXIST::FUNCTION:DSA +PEM_read_SM9PublicParameters 96 1_1_0d EXIST::FUNCTION:SM9,STDIO +RSA_flags 97 1_1_0d EXIST::FUNCTION:RSA +PKCS7_ENVELOPE_free 98 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_RECIP_INFO 99 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_set_int64 100 1_1_0d EXIST::FUNCTION: +PEM_read_RSAPrivateKey 101 1_1_0d EXIST::FUNCTION:RSA,STDIO +EVP_MD_meth_set_cleanup 102 1_1_0d EXIST::FUNCTION: +speck_set_decrypt_key16 103 1_1_0d EXIST::FUNCTION:SPECK +RSA_check_key 104 1_1_0d EXIST::FUNCTION:RSA +UI_get_ex_data 105 1_1_0d EXIST::FUNCTION:UI +WHIRLPOOL_Init 106 1_1_0d EXIST::FUNCTION:WHIRLPOOL +speck_decrypt32 107 1_1_0d EXIST::FUNCTION:SPECK +IPAddressRange_free 108 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_aes_128_cbc_hmac_sha256 109 1_1_0d EXIST::FUNCTION: +d2i_ESS_SIGNING_CERT 110 1_1_0d EXIST::FUNCTION:TS +PKCS8_get_attr 111 1_1_0d EXIST::FUNCTION: +X509_policy_check 112 1_1_0d EXIST::FUNCTION: +PEM_write 113 1_1_0d EXIST::FUNCTION:STDIO +i2d_X509_CRL_bio 114 1_1_0d EXIST::FUNCTION: +ECPKParameters_print 115 1_1_0d EXIST::FUNCTION:EC +PEM_read_bio_NETSCAPE_CERT_SEQUENCE 116 1_1_0d EXIST::FUNCTION: +BIO_meth_free 117 1_1_0d EXIST::FUNCTION: +SAF_Login 118 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_free 119 1_1_0d EXIST::FUNCTION: +MD4_Final 120 1_1_0d EXIST::FUNCTION:MD4 +BN_clear 121 1_1_0d EXIST::FUNCTION: +EVP_sms4_ofb 122 1_1_0d EXIST::FUNCTION:SMS4 +X509_INFO_free 123 1_1_0d EXIST::FUNCTION: +EC_POINT_get_affine_coordinates_GFp 124 1_1_0d EXIST::FUNCTION:EC +ASN1_item_dup 125 1_1_0d EXIST::FUNCTION: +X509V3_EXT_i2d 126 1_1_0d EXIST::FUNCTION: +X509_REQ_check_private_key 127 1_1_0d EXIST::FUNCTION: +EC_GFp_nistp224_method 128 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 +ERR_load_KDF_strings 129 1_1_0d EXIST::FUNCTION: +USERNOTICE_free 130 1_1_0d EXIST::FUNCTION: +EVP_DecryptFinal_ex 131 1_1_0d EXIST::FUNCTION: +X509_CRL_add0_revoked 132 1_1_0d EXIST::FUNCTION: +SAF_EnumKeyContainerInfo 133 1_1_0d EXIST::FUNCTION: +SM9_ciphertext_size 134 1_1_0d EXIST::FUNCTION:SM9 +i2d_PKCS12_MAC_DATA 135 1_1_0d EXIST::FUNCTION: +DSA_get_default_method 136 1_1_0d EXIST::FUNCTION:DSA +PKCS12_PBE_keyivgen 137 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_copy 138 1_1_0d EXIST::FUNCTION: +X509_get_default_cert_area 139 1_1_0d EXIST::FUNCTION: +OCSP_resp_get0_signature 140 1_1_0d EXIST::FUNCTION:OCSP +TS_VERIFY_CTX_free 141 1_1_0d EXIST::FUNCTION:TS +i2d_ASN1_TYPE 142 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_nid 143 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_sqr 144 1_1_0d EXIST::FUNCTION:EC2M +TS_TST_INFO_set_policy_id 145 1_1_0d EXIST::FUNCTION:TS +SDF_PrintECCCipher 146 1_1_0d EXIST::FUNCTION:SDF +X509_load_cert_file 147 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_set 148 1_1_0d EXIST::FUNCTION: +BIO_meth_set_destroy 149 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_app_datasize 150 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_extension_cb 151 1_1_0d EXIST::FUNCTION:TS +CMS_SignerInfo_get0_signer_id 152 1_1_0d EXIST::FUNCTION:CMS +NETSCAPE_CERT_SEQUENCE_new 153 1_1_0d EXIST::FUNCTION: +ENGINE_get_pkey_meth_engine 154 1_1_0d EXIST::FUNCTION:ENGINE +X509_LOOKUP_ctrl 155 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_create 156 1_1_0d EXIST::FUNCTION:CPK +OCSP_sendreq_bio 157 1_1_0d EXIST::FUNCTION:OCSP +X509_CRL_add1_ext_i2d 158 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_cfb128 159 1_1_0d EXIST::FUNCTION:CAMELLIA +CONF_get1_default_config_file 160 1_1_0d EXIST::FUNCTION: +OCSP_request_onereq_get0 161 1_1_0d EXIST::FUNCTION:OCSP +BN_BLINDING_update 162 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_tag 163 1_1_0d EXIST::FUNCTION: +BIO_asn1_set_suffix 164 1_1_0d EXIST::FUNCTION: +MD2_Update 165 1_1_0d EXIST::FUNCTION:MD2 +RSA_meth_get0_name 166 1_1_0d EXIST::FUNCTION:RSA +EVP_MD_meth_get_cleanup 167 1_1_0d EXIST::FUNCTION: +ENGINE_get_load_pubkey_function 168 1_1_0d EXIST::FUNCTION:ENGINE +PEM_write_bio_DSA_PUBKEY 169 1_1_0d EXIST::FUNCTION:DSA +CERTIFICATEPOLICIES_new 170 1_1_0d EXIST::FUNCTION: +PROXY_POLICY_it 171 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PROXY_POLICY_it 171 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ENGINE_get_destroy_function 172 1_1_0d EXIST::FUNCTION:ENGINE +CONF_modules_finish 173 1_1_0d EXIST::FUNCTION: +BIO_nwrite 174 1_1_0d EXIST::FUNCTION: +SKF_Transmit 175 1_1_0d EXIST::FUNCTION:SKF +i2d_BFMasterSecret 176 1_1_0d EXIST::FUNCTION:BFIBE +X509_STORE_CTX_cleanup 177 1_1_0d EXIST::FUNCTION: +EC_POINT_hex2point 178 1_1_0d EXIST::FUNCTION:EC +BF_cfb64_encrypt 179 1_1_0d EXIST::FUNCTION:BF +EVP_desx_cbc 180 1_1_0d EXIST::FUNCTION:DES +PKCS8_pkey_get0_attrs 181 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_DSA 182 1_1_0d EXIST::FUNCTION:ENGINE +BIO_ADDRINFO_address 183 1_1_0d EXIST::FUNCTION:SOCK +BN_mod_lshift_quick 184 1_1_0d EXIST::FUNCTION: +DH_set0_pqg 185 1_1_0d EXIST::FUNCTION:DH +SCT_set0_extensions 186 1_1_0d EXIST::FUNCTION:CT +SRP_VBASE_free 187 1_1_0d EXIST::FUNCTION:SRP +RSA_padding_add_PKCS1_OAEP_mgf1 188 1_1_0d EXIST::FUNCTION:RSA +CONF_dump_bio 189 1_1_0d EXIST::FUNCTION: +X509_STORE_set_default_paths 190 1_1_0d EXIST::FUNCTION: +BN_MONT_CTX_set_locked 191 1_1_0d EXIST::FUNCTION: +ENGINE_set_flags 192 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_set_default_ciphers 193 1_1_0d EXIST::FUNCTION:ENGINE +BB1PrivateKeyBlock_it 194 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1PrivateKeyBlock_it 194 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +X509_ATTRIBUTE_create 195 1_1_0d EXIST::FUNCTION: +PKCS12_AUTHSAFES_it 196 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_AUTHSAFES_it 196 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_CIPHER_CTX_set_flags 197 1_1_0d EXIST::FUNCTION: +DH_KDF_X9_42 198 1_1_0d EXIST::FUNCTION:CMS,DH +EVP_aes_192_ccm 199 1_1_0d EXIST::FUNCTION: +TS_REQ_get_ext_by_OBJ 200 1_1_0d EXIST::FUNCTION:TS +SDF_CreateFile 201 1_1_0d EXIST::FUNCTION: +SKF_ChangePIN 202 1_1_0d EXIST::FUNCTION:SKF +BF_options 203 1_1_0d EXIST::FUNCTION:BF +EVP_PKEY_asn1_set_param 204 1_1_0d EXIST::FUNCTION: +ERR_load_FFX_strings 205 1_1_0d EXIST::FUNCTION: +CMS_unsigned_add1_attr_by_OBJ 206 1_1_0d EXIST::FUNCTION:CMS +TS_ACCURACY_get_seconds 207 1_1_0d EXIST::FUNCTION:TS +X509_reject_clear 208 1_1_0d EXIST::FUNCTION: +EVP_aes_256_cbc_hmac_sha1 209 1_1_0d EXIST::FUNCTION: +EC_KEY_clear_flags 210 1_1_0d EXIST::FUNCTION:EC +X509_ALGOR_free 211 1_1_0d EXIST::FUNCTION: +d2i_ECPrivateKey_bio 212 1_1_0d EXIST::FUNCTION:EC +SDF_ImportKey 213 1_1_0d EXIST::FUNCTION:SDF +SKF_DeleteFile 214 1_1_0d EXIST::FUNCTION:SKF +ASN1_OCTET_STRING_cmp 215 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_shift 216 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_RSA 217 1_1_0d EXIST::FUNCTION:ENGINE +OPENSSL_LH_insert 218 1_1_0d EXIST::FUNCTION: +BN_clear_bit 219 1_1_0d EXIST::FUNCTION: +i2d_PKCS8_bio 220 1_1_0d EXIST::FUNCTION: +X509_REQ_print 221 1_1_0d EXIST::FUNCTION: +X509_CRL_set_meth_data 222 1_1_0d EXIST::FUNCTION: +SRP_create_verifier_BN 223 1_1_0d EXIST::FUNCTION:SRP +AUTHORITY_KEYID_it 224 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +AUTHORITY_KEYID_it 224 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PKCS7_RECIP_INFO_set 225 1_1_0d EXIST::FUNCTION: +DIRECTORYSTRING_new 226 1_1_0d EXIST::FUNCTION: +EVP_OpenInit 227 1_1_0d EXIST::FUNCTION:RSA +GENERAL_NAME_free 228 1_1_0d EXIST::FUNCTION: +i2d_CPK_PUBLIC_PARAMS_bio 229 1_1_0d EXIST::FUNCTION:CPK +CMS_add0_crl 230 1_1_0d EXIST::FUNCTION:CMS +BN_CTX_secure_new 231 1_1_0d EXIST::FUNCTION: +TXT_DB_insert 232 1_1_0d EXIST::FUNCTION: +BIO_dump_indent_cb 233 1_1_0d EXIST::FUNCTION: +BIO_ADDR_rawport 234 1_1_0d EXIST::FUNCTION:SOCK +X509_REVOKED_get_ext_by_critical 235 1_1_0d EXIST::FUNCTION: +ASN1_STRING_TABLE_add 236 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_cfb1 237 1_1_0d EXIST::FUNCTION:CAMELLIA +SMIME_write_PKCS7 238 1_1_0d EXIST::FUNCTION: +SOF_VerifyTimeStamp 239 1_1_0d EXIST::FUNCTION: +X509_CRL_cmp 240 1_1_0d EXIST::FUNCTION: +ENGINE_set_cmd_defns 241 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_CTX_hex2ctrl 242 1_1_0d EXIST::FUNCTION: +i2d_BFPrivateKeyBlock 243 1_1_0d EXIST::FUNCTION:BFIBE +RSA_padding_add_X931 244 1_1_0d EXIST::FUNCTION:RSA +DSA_meth_get_keygen 245 1_1_0d EXIST::FUNCTION:DSA +DSA_meth_get_sign 246 1_1_0d EXIST::FUNCTION:DSA +X509_STORE_CTX_get_ex_data 247 1_1_0d EXIST::FUNCTION: +COMP_CTX_free 248 1_1_0d EXIST::FUNCTION:COMP +EC_GFp_nist_method 249 1_1_0d EXIST::FUNCTION:EC +OCSP_request_add1_nonce 250 1_1_0d EXIST::FUNCTION:OCSP +OCSP_CERTSTATUS_free 251 1_1_0d EXIST::FUNCTION:OCSP +ASN1_STRING_print 252 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_decrypt 253 1_1_0d EXIST::FUNCTION: +i2d_X509_REQ 254 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_type 255 1_1_0d EXIST::FUNCTION:SM2 +SAF_HashFinal 256 1_1_0d EXIST::FUNCTION: +BN_bn2dec 257 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_release 258 1_1_0d EXIST::FUNCTION: +ERR_get_error_line_data 259 1_1_0d EXIST::FUNCTION: +SDF_WriteFile 260 1_1_0d EXIST::FUNCTION: +EVP_PKEY_encrypt_init 261 1_1_0d EXIST::FUNCTION: +BN_GFP2_is_zero 262 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_it 263 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM2 +SM2CiphertextValue_it 263 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM2 +DES_ede3_ofb64_encrypt 264 1_1_0d EXIST::FUNCTION:DES +ERR_print_errors 265 1_1_0d EXIST::FUNCTION: +CMS_dataInit 266 1_1_0d EXIST::FUNCTION:CMS +X509_REQ_get_signature_nid 267 1_1_0d EXIST::FUNCTION: +d2i_ECCSignature 268 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +i2d_DSA_SIG 269 1_1_0d EXIST::FUNCTION:DSA +SAF_GetCaCertificateCount 270 1_1_0d EXIST::FUNCTION: +SM9_extract_private_key 271 1_1_0d EXIST::FUNCTION:SM9 +CMS_final 272 1_1_0d EXIST::FUNCTION:CMS +BN_X931_generate_prime_ex 273 1_1_0d EXIST::FUNCTION: +d2i_X509_EXTENSIONS 274 1_1_0d EXIST::FUNCTION: +EVP_PKEY_delete_attr 275 1_1_0d EXIST::FUNCTION: +X509_NAME_hash_old 276 1_1_0d EXIST::FUNCTION: +OBJ_new_nid 277 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_add1_ext_i2d 278 1_1_0d EXIST::FUNCTION:OCSP +ERR_load_BFIBE_strings 279 1_1_0d EXIST::FUNCTION:BFIBE +_shadow_DES_check_key 280 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DES +_shadow_DES_check_key 280 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DES +SM2_compute_share_key 281 1_1_0d EXIST::FUNCTION:SM2 +d2i_ASN1_OBJECT 282 1_1_0d EXIST::FUNCTION: +X509_get_key_usage 283 1_1_0d EXIST::FUNCTION: +X509_NAME_cmp 284 1_1_0d EXIST::FUNCTION: +X509_get_ex_data 285 1_1_0d EXIST::FUNCTION: +OCSP_RESPDATA_free 286 1_1_0d EXIST::FUNCTION:OCSP +EVP_des_ede_cfb64 287 1_1_0d EXIST::FUNCTION:DES +EVP_MD_meth_set_result_size 288 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_print 289 1_1_0d EXIST::FUNCTION:OCSP +X509_ATTRIBUTE_set1_object 290 1_1_0d EXIST::FUNCTION: +ASN1_PRINTABLESTRING_new 291 1_1_0d EXIST::FUNCTION: +ASN1_NULL_it 292 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_NULL_it 292 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_ASN1_PRINTABLESTRING 293 1_1_0d EXIST::FUNCTION: +BN_generate_prime_ex 294 1_1_0d EXIST::FUNCTION: +d2i_RSA_PUBKEY_bio 295 1_1_0d EXIST::FUNCTION:RSA +TS_CONF_set_ess_cert_id_chain 296 1_1_0d EXIST::FUNCTION:TS +OCSP_ONEREQ_add_ext 297 1_1_0d EXIST::FUNCTION:OCSP +BIO_number_read 298 1_1_0d EXIST::FUNCTION: +SKF_CancelWaitForDevEvent 299 1_1_0d EXIST::FUNCTION:SKF +EVP_aes_256_ocb 300 1_1_0d EXIST::FUNCTION:OCB +SCT_new 301 1_1_0d EXIST::FUNCTION:CT +EC_KEY_get_ECCrefPrivateKey 302 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +i2d_X509_EXTENSIONS 303 1_1_0d EXIST::FUNCTION: +DSA_get0_engine 304 1_1_0d EXIST::FUNCTION:DSA +CRYPTO_cfb128_1_encrypt 305 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get_ext_count 306 1_1_0d EXIST::FUNCTION: +SM9_generate_key_exchange 307 1_1_0d EXIST::FUNCTION:SM9 +SKF_CreateApplication 308 1_1_0d EXIST::FUNCTION:SKF +d2i_ECIES_CIPHERTEXT_VALUE 309 1_1_0d EXIST::FUNCTION:ECIES +DH_meth_set_compute_key 310 1_1_0d EXIST::FUNCTION:DH +RSA_size 311 1_1_0d EXIST::FUNCTION:RSA +MDC2 312 1_1_0d EXIST::FUNCTION:MDC2 +SOF_GetDeviceInfo 313 1_1_0d EXIST::FUNCTION: +ASN1_STRING_length 314 1_1_0d EXIST::FUNCTION: +SOF_SignDataXML 315 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_get_ECCSIGNATUREBLOB 316 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +SHA256 317 1_1_0d EXIST::FUNCTION: +TS_RESP_set_tst_info 318 1_1_0d EXIST::FUNCTION:TS +DSA_sign 319 1_1_0d EXIST::FUNCTION:DSA +ASN1_item_ex_i2d 320 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_pkey_asn1_meths 321 1_1_0d EXIST::FUNCTION:ENGINE +BN_BLINDING_new 322 1_1_0d EXIST::FUNCTION: +d2i_PUBKEY_fp 323 1_1_0d EXIST::FUNCTION:STDIO +SOF_DelCertTrustList 324 1_1_0d EXIST::FUNCTION: +OBJ_ln2nid 325 1_1_0d EXIST::FUNCTION: +RSA_padding_add_PKCS1_OAEP 326 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_CTX_set0_crls 327 1_1_0d EXIST::FUNCTION: +d2i_X509_bio 328 1_1_0d EXIST::FUNCTION: +RSA_verify_PKCS1_PSS 329 1_1_0d EXIST::FUNCTION:RSA +d2i_RSAPublicKey 330 1_1_0d EXIST::FUNCTION:RSA +TS_REQ_get_exts 331 1_1_0d EXIST::FUNCTION:TS +BN_pseudo_rand_range 332 1_1_0d EXIST::FUNCTION: +PKCS7_new 333 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_set 334 1_1_0d EXIST::FUNCTION: +d2i_DSA_SIG 335 1_1_0d EXIST::FUNCTION:DSA +EVP_DecryptInit_ex 336 1_1_0d EXIST::FUNCTION: +CMS_compress 337 1_1_0d EXIST::FUNCTION:CMS +BIO_sock_info 338 1_1_0d EXIST::FUNCTION:SOCK +i2d_PKCS8PrivateKey_nid_bio 339 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_key_length 340 1_1_0d EXIST::FUNCTION: +CONF_imodule_set_usr_data 341 1_1_0d EXIST::FUNCTION: +DIST_POINT_set_dpname 342 1_1_0d EXIST::FUNCTION: +X509_REVOKED_free 343 1_1_0d EXIST::FUNCTION: +X509_CRL_digest 344 1_1_0d EXIST::FUNCTION: +EVP_get_digestbyname 345 1_1_0d EXIST::FUNCTION: +ASN1_item_free 346 1_1_0d EXIST::FUNCTION: +X509V3_EXT_d2i 347 1_1_0d EXIST::FUNCTION: +EXTENDED_KEY_USAGE_new 348 1_1_0d EXIST::FUNCTION: +EC_POINT_set_to_infinity 349 1_1_0d EXIST::FUNCTION:EC +X509_REQ_digest 350 1_1_0d EXIST::FUNCTION: +ASN1_ENUMERATED_get 351 1_1_0d EXIST::FUNCTION: +BN_print_fp 352 1_1_0d EXIST::FUNCTION:STDIO +ECIES_CIPHERTEXT_VALUE_get_ECCCIPHERBLOB 353 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF +ERR_load_OBJ_strings 354 1_1_0d EXIST::FUNCTION: +OCSP_id_cmp 355 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_secure_malloc_initialized 356 1_1_0d EXIST::FUNCTION: +ASN1_item_ndef_i2d 357 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_count 358 1_1_0d EXIST::FUNCTION: +PAILLIER_security_bits 359 1_1_0d EXIST::FUNCTION:PAILLIER +NETSCAPE_SPKI_free 360 1_1_0d EXIST::FUNCTION: +CMAC_CTX_get0_cipher_ctx 361 1_1_0d EXIST::FUNCTION:CMAC +ERR_load_RAND_strings 362 1_1_0d EXIST::FUNCTION: +X509V3_extensions_print 363 1_1_0d EXIST::FUNCTION: +BIO_closesocket 364 1_1_0d EXIST::FUNCTION:SOCK +BN_consttime_swap 365 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_set_cmp_func 366 1_1_0d EXIST::FUNCTION: +PEM_read_bio_X509_AUX 367 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_verify 368 1_1_0d EXIST::FUNCTION: +BIO_get_retry_reason 369 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PrivateKey 370 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_get_encrypt 371 1_1_0d EXIST::FUNCTION:SM2 +OPENSSL_issetugid 372 1_1_0d EXIST::FUNCTION: +X509_REQ_get_extensions 373 1_1_0d EXIST::FUNCTION: +RSA_set_default_method 374 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_CTX_get_current_cert 375 1_1_0d EXIST::FUNCTION: +EDIPARTYNAME_new 376 1_1_0d EXIST::FUNCTION: +OPENSSL_cleanse 377 1_1_0d EXIST::FUNCTION: +X509_get_signature_type 378 1_1_0d EXIST::FUNCTION: +SAF_ImportEncedKey 379 1_1_0d EXIST::FUNCTION: +i2d_X509_CRL_fp 380 1_1_0d EXIST::FUNCTION:STDIO +X509_chain_check_suiteb 381 1_1_0d EXIST::FUNCTION: +BN_mod_sub 382 1_1_0d EXIST::FUNCTION: +d2i_OCSP_RESPONSE 383 1_1_0d EXIST::FUNCTION:OCSP +DH_set_flags 384 1_1_0d EXIST::FUNCTION:DH +ERR_load_SM2_strings 385 1_1_0d EXIST::FUNCTION:SM2 +SAF_GetCertFromLdap 386 1_1_0d EXIST::FUNCTION: +BN_nist_mod_224 387 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_cleanup 388 1_1_0d EXIST::FUNCTION:OCB +EVP_PKEY_asn1_copy 389 1_1_0d EXIST::FUNCTION: +PKCS8_PRIV_KEY_INFO_it 390 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS8_PRIV_KEY_INFO_it 390 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +RSA_get_method 391 1_1_0d EXIST::FUNCTION:RSA +X509_CRL_get_signature_nid 392 1_1_0d EXIST::FUNCTION: +EVP_get_digestnames 393 1_1_0d EXIST::FUNCTION: +EVP_PKEY_print_params 394 1_1_0d EXIST::FUNCTION: +TS_REQ_get_msg_imprint 395 1_1_0d EXIST::FUNCTION:TS +BN_mul 396 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_PAILLIER 397 1_1_0d EXIST::FUNCTION:PAILLIER +ASN1_item_d2i_fp 398 1_1_0d EXIST::FUNCTION:STDIO +BB1IBE_encrypt 399 1_1_0d EXIST::FUNCTION:BB1IBE +ISSUING_DIST_POINT_free 400 1_1_0d EXIST::FUNCTION: +d2i_ASN1_GENERALSTRING 401 1_1_0d EXIST::FUNCTION: +BN_is_negative 402 1_1_0d EXIST::FUNCTION: +DES_quad_cksum 403 1_1_0d EXIST::FUNCTION:DES +BIO_s_secmem 404 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_new 405 1_1_0d EXIST::FUNCTION:OCSP +ASN1_STRING_TABLE_cleanup 406 1_1_0d EXIST::FUNCTION: +X509_get_issuer_name 407 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_set_uint64 408 1_1_0d EXIST::FUNCTION: +EVP_PKEY_keygen 409 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_type1curve_eta 410 1_1_0d EXIST::FUNCTION: +SAF_Hash 411 1_1_0d EXIST::FUNCTION: +BIO_get_shutdown 412 1_1_0d EXIST::FUNCTION: +X509_chain_up_ref 413 1_1_0d EXIST::FUNCTION: +CMS_data_create 414 1_1_0d EXIST::FUNCTION:CMS +OCSP_crlID_new 415 1_1_0d EXIST:!VMS:FUNCTION:OCSP +OCSP_crlID2_new 415 1_1_0d EXIST:VMS:FUNCTION:OCSP +sms4_ofb128_encrypt 416 1_1_0d EXIST::FUNCTION:SMS4 +EVP_PKEY_get_attr_by_NID 417 1_1_0d EXIST::FUNCTION: +SM2_do_sign 418 1_1_0d EXIST::FUNCTION:SM2 +CMS_RecipientInfo_kari_get0_alg 419 1_1_0d EXIST::FUNCTION:CMS +EVP_PKCS82PKEY 420 1_1_0d EXIST::FUNCTION: +TS_CONF_set_signer_key 421 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_get_attr 422 1_1_0d EXIST::FUNCTION: +RSA_PKCS1_OpenSSL 423 1_1_0d EXIST::FUNCTION:RSA +MD2 424 1_1_0d EXIST::FUNCTION:MD2 +SDF_HashFinal 425 1_1_0d EXIST::FUNCTION: +IPAddressOrRange_free 426 1_1_0d EXIST::FUNCTION:RFC3779 +OPENSSL_sk_set 427 1_1_0d EXIST::FUNCTION: +speck_set_encrypt_key64 428 1_1_0d EXIST::FUNCTION:SPECK +BIO_f_zlib 429 1_1_0d EXIST:ZLIB:FUNCTION:COMP +b2i_PublicKey 430 1_1_0d EXIST::FUNCTION:DSA +b2i_PrivateKey_bio 431 1_1_0d EXIST::FUNCTION:DSA +EC_KEY_oct2key 432 1_1_0d EXIST::FUNCTION:EC +X509_PURPOSE_cleanup 433 1_1_0d EXIST::FUNCTION: +OCSP_response_status 434 1_1_0d EXIST::FUNCTION:OCSP +OCSP_SINGLERESP_add1_ext_i2d 435 1_1_0d EXIST::FUNCTION:OCSP +PEM_write_DSAPrivateKey 436 1_1_0d EXIST::FUNCTION:DSA,STDIO +GENERAL_SUBTREE_new 437 1_1_0d EXIST::FUNCTION: +BIO_ctrl_wpending 438 1_1_0d EXIST::FUNCTION: +CONF_load 439 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_key_length 440 1_1_0d EXIST::FUNCTION: +X509_OBJECT_get_type 441 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_cmp 442 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_ctrl 443 1_1_0d EXIST::FUNCTION: +EC_GROUP_get0_seed 444 1_1_0d EXIST::FUNCTION:EC +SCT_get0_log_id 445 1_1_0d EXIST::FUNCTION:CT +ENGINE_register_pkey_meths 446 1_1_0d EXIST::FUNCTION:ENGINE +ASYNC_WAIT_CTX_get_all_fds 447 1_1_0d EXIST::FUNCTION: +ENGINE_add 448 1_1_0d EXIST::FUNCTION:ENGINE +EVP_des_ede3_ecb 449 1_1_0d EXIST::FUNCTION:DES +ENGINE_get_first 450 1_1_0d EXIST::FUNCTION:ENGINE +speck_set_decrypt_key64 451 1_1_0d EXIST::FUNCTION:SPECK +RC2_decrypt 452 1_1_0d EXIST::FUNCTION:RC2 +ASN1_SCTX_get_app_data 453 1_1_0d EXIST::FUNCTION: +HMAC_Update 454 1_1_0d EXIST::FUNCTION: +WHIRLPOOL_Update 455 1_1_0d EXIST::FUNCTION:WHIRLPOOL +PKCS7_cert_from_signer_info 456 1_1_0d EXIST::FUNCTION: +EVP_MD_flags 457 1_1_0d EXIST::FUNCTION: +DSA_SIG_free 458 1_1_0d EXIST::FUNCTION:DSA +BIO_dump_fp 459 1_1_0d EXIST::FUNCTION:STDIO +ASN1_ENUMERATED_new 460 1_1_0d EXIST::FUNCTION: +i2d_ECPrivateKey 461 1_1_0d EXIST::FUNCTION:EC +BIO_dgram_is_sctp 462 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +i2d_GENERAL_NAME 463 1_1_0d EXIST::FUNCTION: +EVP_idea_cbc 464 1_1_0d EXIST::FUNCTION:IDEA +X509_STORE_CTX_get_get_crl 465 1_1_0d EXIST::FUNCTION: +X509V3_get_value_int 466 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_verify_content 467 1_1_0d EXIST::FUNCTION:CMS +X509V3_NAME_from_section 468 1_1_0d EXIST::FUNCTION: +X509V3_add_value_bool 469 1_1_0d EXIST::FUNCTION: +SOF_Login 470 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_cert_crl 471 1_1_0d EXIST::FUNCTION: +BIO_new_NDEF 472 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_order 473 1_1_0d EXIST::FUNCTION:EC +i2d_PKCS7_DIGEST 474 1_1_0d EXIST::FUNCTION: +SKF_DecryptInit 475 1_1_0d EXIST::FUNCTION:SKF +SKF_RSASignData 476 1_1_0d EXIST::FUNCTION:SKF +ESS_ISSUER_SERIAL_dup 477 1_1_0d EXIST::FUNCTION:TS +X509_VERIFY_PARAM_get_auth_level 478 1_1_0d EXIST::FUNCTION: +i2s_ASN1_ENUMERATED 479 1_1_0d EXIST::FUNCTION: +DISPLAYTEXT_free 480 1_1_0d EXIST::FUNCTION: +ASN1_verify 481 1_1_0d EXIST::FUNCTION: +EVP_bf_cfb64 482 1_1_0d EXIST::FUNCTION:BF +d2i_RSA_PSS_PARAMS 483 1_1_0d EXIST::FUNCTION:RSA +CMS_get1_crls 484 1_1_0d EXIST::FUNCTION:CMS +d2i_DSA_PUBKEY_fp 485 1_1_0d EXIST::FUNCTION:DSA,STDIO +EVP_aes_192_wrap 486 1_1_0d EXIST::FUNCTION: +d2i_PKCS12_fp 487 1_1_0d EXIST::FUNCTION:STDIO +RSA_set_ex_data 488 1_1_0d EXIST::FUNCTION:RSA +BIO_ADDRINFO_free 489 1_1_0d EXIST::FUNCTION:SOCK +NOTICEREF_it 490 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NOTICEREF_it 490 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_POINT_copy 491 1_1_0d EXIST::FUNCTION:EC +PKCS12_SAFEBAG_get0_pkcs8 492 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_free 493 1_1_0d EXIST::FUNCTION:EC +PEM_ASN1_write 494 1_1_0d EXIST::FUNCTION:STDIO +ASIdentifierChoice_free 495 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_DigestVerifyInit 496 1_1_0d EXIST::FUNCTION: +BIO_fd_non_fatal_error 497 1_1_0d EXIST::FUNCTION: +PKCS7_get_signer_info 498 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_add_flags 499 1_1_0d EXIST::FUNCTION:TS +DES_set_odd_parity 500 1_1_0d EXIST::FUNCTION:DES +EC_GROUP_get_ecparameters 501 1_1_0d EXIST::FUNCTION:EC +OPENSSL_LH_stats 502 1_1_0d EXIST::FUNCTION:STDIO +i2d_ASN1_UNIVERSALSTRING 503 1_1_0d EXIST::FUNCTION: +i2d_PKCS12_BAGS 504 1_1_0d EXIST::FUNCTION: +NCONF_new 505 1_1_0d EXIST::FUNCTION: +BIO_nread0 506 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTS_set_certs 507 1_1_0d EXIST::FUNCTION:TS +DES_ecb3_encrypt 508 1_1_0d EXIST::FUNCTION:DES +DES_set_key_unchecked 509 1_1_0d EXIST::FUNCTION:DES +ASN1_TYPE_set_octetstring 510 1_1_0d EXIST::FUNCTION: +d2i_ASN1_UINTEGER 511 1_1_0d EXIST::FUNCTION: +BN_BLINDING_is_current_thread 512 1_1_0d EXIST::FUNCTION: +TS_REQ_to_TS_VERIFY_CTX 513 1_1_0d EXIST::FUNCTION:TS +o2i_SCT_LIST 514 1_1_0d EXIST::FUNCTION:CT +X509_STORE_get_check_issued 515 1_1_0d EXIST::FUNCTION: +PKEY_USAGE_PERIOD_free 516 1_1_0d EXIST::FUNCTION: +PKCS12_pack_authsafes 517 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_copy_ex 518 1_1_0d EXIST::FUNCTION: +ASRange_new 519 1_1_0d EXIST::FUNCTION:RFC3779 +X509_CRL_sort 520 1_1_0d EXIST::FUNCTION: +BN_to_montgomery 521 1_1_0d EXIST::FUNCTION: +PAILLIER_decrypt 522 1_1_0d EXIST::FUNCTION:PAILLIER +PEM_write_bio_X509 523 1_1_0d EXIST::FUNCTION: +EC_KEY_copy 524 1_1_0d EXIST::FUNCTION:EC +i2d_PKCS12 525 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNER_INFO_new 526 1_1_0d EXIST::FUNCTION: +BN_GFP2_div_bn 527 1_1_0d EXIST::FUNCTION: +i2d_PUBKEY_bio 528 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_get_ext_by_critical 529 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_strdup 530 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_init 531 1_1_0d EXIST::FUNCTION: +RSA_verify 532 1_1_0d EXIST::FUNCTION:RSA +OTHERNAME_new 533 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_free 534 1_1_0d EXIST::FUNCTION: +i2a_ASN1_STRING 535 1_1_0d EXIST::FUNCTION: +PEM_write_bio_X509_AUX 536 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_free 537 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get0_info 538 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_sign 539 1_1_0d EXIST::FUNCTION: +b2i_PrivateKey 540 1_1_0d EXIST::FUNCTION:DSA +CONF_set_nconf 541 1_1_0d EXIST::FUNCTION: +i2d_RSA_PUBKEY 542 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_up_ref 543 1_1_0d EXIST::FUNCTION: +RSA_get_RSAPUBLICKEYBLOB 544 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +PKCS8_pkey_get0 545 1_1_0d EXIST::FUNCTION: +i2d_SXNET 546 1_1_0d EXIST::FUNCTION: +ASN1_TIME_free 547 1_1_0d EXIST::FUNCTION: +BN_GENCB_new 548 1_1_0d EXIST::FUNCTION: +SKF_OpenApplication 549 1_1_0d EXIST::FUNCTION:SKF +X509_VERIFY_PARAM_set_depth 550 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_tls_encodedpoint 551 1_1_0d EXIST::FUNCTION: +X509_NAME_get_entry 552 1_1_0d EXIST::FUNCTION: +TS_ext_print_bio 553 1_1_0d EXIST::FUNCTION:TS +EVP_MD_meth_get_update 554 1_1_0d EXIST::FUNCTION: +PEM_read_SM9PrivateKey 555 1_1_0d EXIST::FUNCTION:SM9,STDIO +i2d_TS_RESP 556 1_1_0d EXIST::FUNCTION:TS +BN_mod_exp_recp 557 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_cbc 558 1_1_0d EXIST::FUNCTION:CAMELLIA +BN_get_params 559 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +PEM_read_PKCS7 560 1_1_0d EXIST::FUNCTION:STDIO +X509_STORE_CTX_get_verify 561 1_1_0d EXIST::FUNCTION: +d2i_ECPKParameters 562 1_1_0d EXIST::FUNCTION:EC +EVP_sms4_xts 563 1_1_0d EXIST::FUNCTION:SMS4 +OPENSSL_sk_sort 564 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_set0_value 565 1_1_0d EXIST::FUNCTION: +ECIES_PARAMS_init_with_type 566 1_1_0d EXIST::FUNCTION:ECIES +SCT_set_source 567 1_1_0d EXIST::FUNCTION:CT +X509_REQ_set_subject_name 568 1_1_0d EXIST::FUNCTION: +DSA_generate_parameters_ex 569 1_1_0d EXIST::FUNCTION:DSA +BN_swap 570 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_paramgen 571 1_1_0d EXIST::FUNCTION: +BF_decrypt 572 1_1_0d EXIST::FUNCTION:BF +PKCS7_SIGNED_new 573 1_1_0d EXIST::FUNCTION: +BN_gcd 574 1_1_0d EXIST::FUNCTION: +SOF_VerifySignedFile 575 1_1_0d EXIST::FUNCTION: +SOF_GetPinRetryCount 576 1_1_0d EXIST::FUNCTION: +SKF_EnumApplication 577 1_1_0d EXIST::FUNCTION:SKF +SEED_encrypt 578 1_1_0d EXIST::FUNCTION:SEED +EVP_SignFinal 579 1_1_0d EXIST::FUNCTION: +EVP_add_digest 580 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_get_data 581 1_1_0d EXIST::FUNCTION: +ENGINE_register_EC 582 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_INTEGER_get_uint64 583 1_1_0d EXIST::FUNCTION: +DIST_POINT_NAME_new 584 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_original_iv 585 1_1_0d EXIST::FUNCTION: +SOF_ValidateCert 586 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set0 587 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set_purpose 588 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_mont_data 589 1_1_0d EXIST::FUNCTION:EC +IDEA_ecb_encrypt 590 1_1_0d EXIST::FUNCTION:IDEA +BN_BLINDING_create_param 591 1_1_0d EXIST::FUNCTION: +i2d_AUTHORITY_KEYID 592 1_1_0d EXIST::FUNCTION: +ASN1_STRING_get0_data 593 1_1_0d EXIST::FUNCTION: +SKF_DeleteApplication 594 1_1_0d EXIST::FUNCTION:SKF +i2a_ASN1_OBJECT 595 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_pack_sequence 596 1_1_0d EXIST::FUNCTION: +SHA1 597 1_1_0d EXIST::FUNCTION: +CMS_ContentInfo_new 598 1_1_0d EXIST::FUNCTION:CMS +OCSP_REQ_CTX_i2d 599 1_1_0d EXIST::FUNCTION:OCSP +BN_GF2m_arr2poly 600 1_1_0d EXIST::FUNCTION:EC2M +CONF_imodule_set_flags 601 1_1_0d EXIST::FUNCTION: +OCSP_resp_get0_produced_at 602 1_1_0d EXIST::FUNCTION:OCSP +ASN1_item_new 603 1_1_0d EXIST::FUNCTION: +i2d_EC_PUBKEY_fp 604 1_1_0d EXIST::FUNCTION:EC,STDIO +SKF_ExtRSAPubKeyOperation 605 1_1_0d EXIST::FUNCTION:SKF +X509_verify_cert 606 1_1_0d EXIST::FUNCTION: +CMS_add0_RevocationInfoChoice 607 1_1_0d EXIST::FUNCTION:CMS +BN_set_flags 608 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_tsa 609 1_1_0d EXIST::FUNCTION:TS +X509_EXTENSION_new 610 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_delete_ext 611 1_1_0d EXIST::FUNCTION:OCSP +ASN1_generate_v3 612 1_1_0d EXIST::FUNCTION: +DSA_meth_set_mod_exp 613 1_1_0d EXIST::FUNCTION:DSA +TS_REQ_get_version 614 1_1_0d EXIST::FUNCTION:TS +X509_REQ_print_ex 615 1_1_0d EXIST::FUNCTION: +X509_NAME_add_entry_by_txt 616 1_1_0d EXIST::FUNCTION: +RSA_meth_get_pub_dec 617 1_1_0d EXIST::FUNCTION:RSA +OCSP_SINGLERESP_get_ext 618 1_1_0d EXIST::FUNCTION:OCSP +PEM_write_bio_PKCS8PrivateKey 619 1_1_0d EXIST::FUNCTION: +OBJ_NAME_cleanup 620 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_unshift 621 1_1_0d EXIST::FUNCTION: +EVP_PKEY_derive_set_peer 622 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_get0_text 623 1_1_0d EXIST::FUNCTION:TS +PEM_read_bio_ECPKParameters 624 1_1_0d EXIST::FUNCTION:EC +CPK_PUBLIC_PARAMS_new 625 1_1_0d EXIST::FUNCTION:CPK +EVP_PKEY_meth_get_derive 626 1_1_0d EXIST::FUNCTION: +SM9PrivateKey_get_gmtls_public_key 627 1_1_0d EXIST::FUNCTION:SM9 +RSA_get_ex_data 628 1_1_0d EXIST::FUNCTION:RSA +BN_GFP2_mul_bn 629 1_1_0d EXIST::FUNCTION: +PEM_read_PrivateKey 630 1_1_0d EXIST::FUNCTION:STDIO +ECIES_do_decrypt 631 1_1_0d EXIST::FUNCTION:ECIES +BN_GENCB_free 632 1_1_0d EXIST::FUNCTION: +SM9_MASTER_KEY_print 633 1_1_0d EXIST::FUNCTION:SM9 +SM2_encrypt 634 1_1_0d EXIST::FUNCTION:SM2 +DH_meth_set_finish 635 1_1_0d EXIST::FUNCTION:DH +X509_INFO_new 636 1_1_0d EXIST::FUNCTION: +X509_get0_notBefore 637 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_get_ext_count 638 1_1_0d EXIST::FUNCTION:OCSP +SOF_GetInfoFromSignedMessage 639 1_1_0d EXIST::FUNCTION: +SCT_get_log_entry_type 640 1_1_0d EXIST::FUNCTION:CT +X509V3_EXT_conf 641 1_1_0d EXIST::FUNCTION: +ENGINE_get_flags 642 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_set_destroy_function 643 1_1_0d EXIST::FUNCTION:ENGINE +X509_set1_notBefore 644 1_1_0d EXIST::FUNCTION: +SCT_set1_log_id 645 1_1_0d EXIST::FUNCTION:CT +PKCS12_verify_mac 646 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_dup 647 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_ecb 648 1_1_0d EXIST::FUNCTION:CAMELLIA +BN_div_word 649 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_dup 650 1_1_0d EXIST::FUNCTION:TS +HMAC_size 651 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNER_INFO_it 652 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_SIGNER_INFO_it 652 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +NETSCAPE_SPKI_it 653 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NETSCAPE_SPKI_it 653 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_STRING_get_default_mask 654 1_1_0d EXIST::FUNCTION: +EVP_EncryptFinal_ex 655 1_1_0d EXIST::FUNCTION: +X509_TRUST_get_count 656 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_flags 657 1_1_0d EXIST::FUNCTION: +SAF_RsaSign 658 1_1_0d EXIST::FUNCTION: +EVP_PKEY_security_bits 659 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_new 660 1_1_0d EXIST::FUNCTION:OCSP +EVP_aes_128_ecb 661 1_1_0d EXIST::FUNCTION: +ENGINE_set_pkey_asn1_meths 662 1_1_0d EXIST::FUNCTION:ENGINE +CRYPTO_secure_free 663 1_1_0d EXIST::FUNCTION: +SKF_ECCDecrypt 664 1_1_0d EXIST::FUNCTION:SKF +speck_set_encrypt_key32 665 1_1_0d EXIST::FUNCTION:SPECK +X509V3_add_value 666 1_1_0d EXIST::FUNCTION: +ASN1_ENUMERATED_set_int64 667 1_1_0d EXIST::FUNCTION: +X509_NAME_delete_entry 668 1_1_0d EXIST::FUNCTION: +i2d_EXTENDED_KEY_USAGE 669 1_1_0d EXIST::FUNCTION: +SAF_GenEccKeyPair 670 1_1_0d EXIST::FUNCTION: +EVP_sms4_ecb 671 1_1_0d EXIST::FUNCTION:SMS4 +ASYNC_WAIT_CTX_get_fd 672 1_1_0d EXIST::FUNCTION: +DH_set_ex_data 673 1_1_0d EXIST::FUNCTION:DH +SAF_GenerateKeyWithEPK 674 1_1_0d EXIST::FUNCTION: +CMS_decrypt 675 1_1_0d EXIST::FUNCTION:CMS +SMIME_read_ASN1 676 1_1_0d EXIST::FUNCTION: +OPENSSL_isservice 677 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_decrypt 678 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_new 679 1_1_0d EXIST::FUNCTION:OCB +PKCS12_SAFEBAG_new 680 1_1_0d EXIST::FUNCTION: +PKCS7_sign 681 1_1_0d EXIST::FUNCTION: +DES_ofb_encrypt 682 1_1_0d EXIST::FUNCTION:DES +DES_ede3_cbc_encrypt 683 1_1_0d EXIST::FUNCTION:DES +BB1IBE_decrypt 684 1_1_0d EXIST::FUNCTION:BB1IBE +X509_PUBKEY_set 685 1_1_0d EXIST::FUNCTION: +PKCS12_MAC_DATA_it 686 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_MAC_DATA_it 686 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_SCT_LIST 687 1_1_0d EXIST::FUNCTION:CT +EVP_CipherInit_ex 688 1_1_0d EXIST::FUNCTION: +EVP_sms4_ocb 689 1_1_0d EXIST::FUNCTION:SMS4 +OBJ_nid2obj 690 1_1_0d EXIST::FUNCTION: +X509_get_subject_name 691 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_status_info_cond 692 1_1_0d EXIST::FUNCTION:TS +ASN1_GENERALIZEDTIME_set_string 693 1_1_0d EXIST::FUNCTION: +d2i_X509_CRL 694 1_1_0d EXIST::FUNCTION: +d2i_ASN1_VISIBLESTRING 695 1_1_0d EXIST::FUNCTION: +RSA_padding_add_PKCS1_PSS_mgf1 696 1_1_0d EXIST::FUNCTION:RSA +BN_zero_ex 697 1_1_0d EXIST::FUNCTION: +OCSP_resp_get0_id 698 1_1_0d EXIST::FUNCTION:OCSP +ASN1_TIME_it 699 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_TIME_it 699 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SAF_RsaVerifySign 700 1_1_0d EXIST::FUNCTION: +EVP_DigestVerifyFinal 701 1_1_0d EXIST::FUNCTION: +i2d_PKCS8_PRIV_KEY_INFO 702 1_1_0d EXIST::FUNCTION: +MDC2_Update 703 1_1_0d EXIST::FUNCTION:MDC2 +EVP_md2 704 1_1_0d EXIST::FUNCTION:MD2 +OBJ_sigid_free 705 1_1_0d EXIST::FUNCTION: +BIO_ctrl_reset_read_request 706 1_1_0d EXIST::FUNCTION: +GENERAL_NAMES_it 707 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +GENERAL_NAMES_it 707 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_IA5STRING_it 708 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_IA5STRING_it 708 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: ENGINE_set_pkey_meths 709 1_1_0d EXIST::FUNCTION:ENGINE -BN_uadd 710 1_1_0d EXIST::FUNCTION: -X509V3_add_standard_extensions 711 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_RAND 712 1_1_0d EXIST::FUNCTION:ENGINE -PKCS12_SAFEBAG_get1_cert 713 1_1_0d EXIST::FUNCTION: -BN_GFP2_add 714 1_1_0d EXIST::FUNCTION: -CMS_add_simple_smimecap 715 1_1_0d EXIST::FUNCTION:CMS -OCSP_SINGLERESP_get_ext_by_OBJ 716 1_1_0d EXIST::FUNCTION:OCSP -SCT_LIST_validate 717 1_1_0d EXIST::FUNCTION:CT -ECIES_CIPHERTEXT_VALUE_get_ECCCipher 718 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF -ASN1_ENUMERATED_it 719 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_ENUMERATED_it 719 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CMS_RecipientInfo_kekri_id_cmp 720 1_1_0d EXIST::FUNCTION:CMS -d2i_TS_REQ_bio 721 1_1_0d EXIST::FUNCTION:TS -i2d_PKCS12_SAFEBAG 722 1_1_0d EXIST::FUNCTION: -DH_meth_get_bn_mod_exp 723 1_1_0d EXIST::FUNCTION:DH -ASN1_UTCTIME_set_string 724 1_1_0d EXIST::FUNCTION: -CMS_encrypt 725 1_1_0d EXIST::FUNCTION:CMS -CRYPTO_memcmp 726 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_free 727 1_1_0d EXIST::FUNCTION: -OPENSSL_utf82uni 728 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_test_flags 729 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_it 730 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:ECIES -ECIES_CIPHERTEXT_VALUE_it 730 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:ECIES -BN_GF2m_arr2poly 731 1_1_0d EXIST::FUNCTION:EC2M -EVP_PKEY_get1_tls_encodedpoint 732 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_delete_ext 733 1_1_0d EXIST::FUNCTION:OCSP -X509_check_ip_asc 734 1_1_0d EXIST::FUNCTION: -EVP_EncodeInit 735 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_SIGN_ENVELOPE 736 1_1_0d EXIST::FUNCTION: -X509_REQ_get0_pubkey 737 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_get0_attrs 738 1_1_0d EXIST::FUNCTION: -DH_get0_pqg 739 1_1_0d EXIST::FUNCTION:DH -EVP_PKEY_add1_attr 740 1_1_0d EXIST::FUNCTION: -SOF_VerifySignedDataXML 741 1_1_0d EXIST::FUNCTION: -i2d_BASIC_CONSTRAINTS 742 1_1_0d EXIST::FUNCTION: -BIO_lookup 743 1_1_0d EXIST::FUNCTION:SOCK -PKCS12_item_pack_safebag 744 1_1_0d EXIST::FUNCTION: -CRYPTO_ctr128_encrypt 745 1_1_0d EXIST::FUNCTION: -BN_print 746 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_new 747 1_1_0d EXIST::FUNCTION: -BN_is_word 748 1_1_0d EXIST::FUNCTION: -EVP_sms4_ecb 749 1_1_0d EXIST::FUNCTION:SMS4 -d2i_PKCS7_ENCRYPT 750 1_1_0d EXIST::FUNCTION: -RSA_get_ex_data 751 1_1_0d EXIST::FUNCTION:RSA -DES_set_key_checked 752 1_1_0d EXIST::FUNCTION:DES -EC_KEY_METHOD_set_compute_key 753 1_1_0d EXIST::FUNCTION:EC -d2i_PKCS7_SIGN_ENVELOPE 754 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_count 755 1_1_0d EXIST::FUNCTION:OCSP -TS_RESP_CTX_set_clock_precision_digits 756 1_1_0d EXIST::FUNCTION:TS -RSA_padding_check_SSLv23 757 1_1_0d EXIST::FUNCTION:RSA -X509_VERIFY_PARAM_set_auth_level 758 1_1_0d EXIST::FUNCTION: -SKF_Decrypt 759 1_1_0d EXIST::FUNCTION:SKF -SM9PublicParameters_it 760 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9PublicParameters_it 760 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -EVP_DecryptFinal 761 1_1_0d EXIST::FUNCTION: -RSA_check_key 762 1_1_0d EXIST::FUNCTION:RSA -RSA_public_encrypt 763 1_1_0d EXIST::FUNCTION:RSA -PEM_read_EC_PUBKEY 764 1_1_0d EXIST::FUNCTION:EC,STDIO -SM2CiphertextValue_new_from_ECCCIPHERBLOB 765 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 -ASN1_GENERALSTRING_free 766 1_1_0d EXIST::FUNCTION: -OPENSSL_load_builtin_modules 767 1_1_0d EXIST::FUNCTION: -CRYPTO_secure_malloc_initialized 768 1_1_0d EXIST::FUNCTION: -EVP_rc2_cfb64 769 1_1_0d EXIST::FUNCTION:RC2 -SM2_compute_share_key 770 1_1_0d EXIST::FUNCTION:SM2 -AES_encrypt 771 1_1_0d EXIST::FUNCTION: -X509_CRL_INFO_it 772 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CRL_INFO_it 772 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_memdup 773 1_1_0d EXIST::FUNCTION: -PBKDF2PARAM_free 774 1_1_0d EXIST::FUNCTION: -d2i_TS_TST_INFO 775 1_1_0d EXIST::FUNCTION:TS -DSAparams_print 776 1_1_0d EXIST::FUNCTION:DSA -X509_CINF_free 777 1_1_0d EXIST::FUNCTION: -BN_mod_lshift1 778 1_1_0d EXIST::FUNCTION: -BIO_up_ref 779 1_1_0d EXIST::FUNCTION: -X509_sign_ctx 780 1_1_0d EXIST::FUNCTION: -i2d_re_X509_tbs 781 1_1_0d EXIST::FUNCTION: -ENGINE_ctrl_cmd 782 1_1_0d EXIST::FUNCTION:ENGINE -PEM_write_bio_ECPKParameters 783 1_1_0d EXIST::FUNCTION:EC -BIO_find_type 784 1_1_0d EXIST::FUNCTION: -EC_GFp_nistp521_method 785 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 -ASN1_SEQUENCE_ANY_it 786 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_SEQUENCE_ANY_it 786 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SAF_DestroySymmAlgoObj 787 1_1_0d EXIST::FUNCTION: -BN_GENCB_new 788 1_1_0d EXIST::FUNCTION: -i2d_DSAPrivateKey_bio 789 1_1_0d EXIST::FUNCTION:DSA -CTLOG_STORE_load_default_file 790 1_1_0d EXIST::FUNCTION:CT -PKCS7_set_attributes 791 1_1_0d EXIST::FUNCTION: -EC_POINT_get_affine_coordinates_GF2m 792 1_1_0d EXIST::FUNCTION:EC,EC2M -BIO_fd_non_fatal_error 793 1_1_0d EXIST::FUNCTION: -ECParameters_print 794 1_1_0d EXIST::FUNCTION:EC -EVP_PKEY_meth_set_decrypt 795 1_1_0d EXIST::FUNCTION: -EVP_EncryptInit 796 1_1_0d EXIST::FUNCTION: -CMS_ReceiptRequest_new 797 1_1_0d EXIST::FUNCTION:CMS -DH_meth_new 798 1_1_0d EXIST::FUNCTION:DH -EVP_PKEY_CTX_new_id 799 1_1_0d EXIST::FUNCTION: -SRP_Calc_x 800 1_1_0d EXIST::FUNCTION:SRP -X509V3_add_value 801 1_1_0d EXIST::FUNCTION: -PEM_write_bio_DSAPrivateKey 802 1_1_0d EXIST::FUNCTION:DSA -CMS_unsigned_get0_data_by_OBJ 803 1_1_0d EXIST::FUNCTION:CMS -BN_GFP2_div 804 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set1 805 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_cfb1 806 1_1_0d EXIST::FUNCTION:CAMELLIA -ERR_load_PEM_strings 807 1_1_0d EXIST::FUNCTION: -OCSP_RESPBYTES_new 808 1_1_0d EXIST::FUNCTION:OCSP -ASN1_INTEGER_set_int64 809 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_set_keygen 810 1_1_0d EXIST::FUNCTION:EC -i2d_TS_REQ 811 1_1_0d EXIST::FUNCTION:TS -SAF_Finalize 812 1_1_0d EXIST::FUNCTION: -i2d_PKCS8PrivateKeyInfo_fp 813 1_1_0d EXIST::FUNCTION:STDIO -CMS_signed_add1_attr 814 1_1_0d EXIST::FUNCTION:CMS -ENGINE_register_all_pkey_asn1_meths 815 1_1_0d EXIST::FUNCTION:ENGINE -DSA_meth_set_sign 816 1_1_0d EXIST::FUNCTION:DSA -d2i_DSA_PUBKEY 817 1_1_0d EXIST::FUNCTION:DSA -OCSP_resp_get0 818 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_nistcts128_encrypt_block 819 1_1_0d EXIST::FUNCTION: -d2i_PKCS8_bio 820 1_1_0d EXIST::FUNCTION: -EC_KEY_oct2key 821 1_1_0d EXIST::FUNCTION:EC -X509_dup 822 1_1_0d EXIST::FUNCTION: -X509v3_addr_inherits 823 1_1_0d EXIST::FUNCTION:RFC3779 -d2i_DHxparams 824 1_1_0d EXIST::FUNCTION:DH -X509_ATTRIBUTE_new 825 1_1_0d EXIST::FUNCTION: -ASN1_PRINTABLESTRING_it 826 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_PRINTABLESTRING_it 826 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RSA_PSS_PARAMS_it 827 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSA_PSS_PARAMS_it 827 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -SDF_GenerateKeyWithEPK_ECC 828 1_1_0d EXIST::FUNCTION: -BN_MONT_CTX_new 829 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_dup 830 1_1_0d EXIST::FUNCTION:TS -i2d_ECDSA_SIG 831 1_1_0d EXIST::FUNCTION:EC -X509_CRL_sign_ctx 832 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_bio 833 1_1_0d EXIST::FUNCTION: -i2d_PKCS8PrivateKeyInfo_bio 834 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_it 835 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPID_it 835 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -EVP_PKEY_new 836 1_1_0d EXIST::FUNCTION: -SXNET_add_id_ulong 837 1_1_0d EXIST::FUNCTION: -CMS_ContentInfo_it 838 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS -CMS_ContentInfo_it 838 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS -i2a_ASN1_ENUMERATED 839 1_1_0d EXIST::FUNCTION: -SKF_ECCDecrypt 840 1_1_0d EXIST::FUNCTION:SKF -CRYPTO_secure_actual_size 841 1_1_0d EXIST::FUNCTION: -PBEPARAM_it 842 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PBEPARAM_it 842 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_enc_null 843 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyWithECC 844 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_get_tst_info 845 1_1_0d EXIST::FUNCTION:TS -ESS_ISSUER_SERIAL_new 846 1_1_0d EXIST::FUNCTION:TS -CMS_SignedData_init 847 1_1_0d EXIST::FUNCTION:CMS -DSA_meth_get_finish 848 1_1_0d EXIST::FUNCTION:DSA -EVP_sms4_xts 849 1_1_0d EXIST::FUNCTION:SMS4 -i2d_PKCS8_PRIV_KEY_INFO_bio 850 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_clear_flags 851 1_1_0d EXIST::FUNCTION: -PEM_read_bio_X509_CRL 852 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_add_ext 853 1_1_0d EXIST::FUNCTION:OCSP -TS_TST_INFO_set_version 854 1_1_0d EXIST::FUNCTION:TS -a2i_GENERAL_NAME 855 1_1_0d EXIST::FUNCTION: -i2v_ASN1_BIT_STRING 856 1_1_0d EXIST::FUNCTION: -PKCS7_ISSUER_AND_SERIAL_free 857 1_1_0d EXIST::FUNCTION: -i2d_X509_ATTRIBUTE 858 1_1_0d EXIST::FUNCTION: -UI_UTIL_read_pw 859 1_1_0d EXIST::FUNCTION:UI -EVP_PKEY_set_type_str 860 1_1_0d EXIST::FUNCTION: -SRP_Calc_u 861 1_1_0d EXIST::FUNCTION:SRP -ENGINE_ctrl 862 1_1_0d EXIST::FUNCTION:ENGINE -PKCS12_BAGS_it 863 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_BAGS_it 863 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_PKCS12_MAC_DATA 864 1_1_0d EXIST::FUNCTION: -UI_get_result_minsize 865 1_1_0d EXIST::FUNCTION:UI -CONF_dump_fp 866 1_1_0d EXIST::FUNCTION:STDIO -ASN1_item_ex_free 867 1_1_0d EXIST::FUNCTION: -OPENSSL_die 868 1_1_0d EXIST::FUNCTION: -EC_KEY_precompute_mult 869 1_1_0d EXIST::FUNCTION:EC -EC_KEY_METHOD_get_init 870 1_1_0d EXIST::FUNCTION:EC -WHIRLPOOL_Init 871 1_1_0d EXIST::FUNCTION:WHIRLPOOL -UI_dup_verify_string 872 1_1_0d EXIST::FUNCTION:UI -SHA512_Transform 873 1_1_0d EXIST:!VMSVAX:FUNCTION: -SAF_HashUpdate 874 1_1_0d EXIST::FUNCTION: -i2d_RSA_PUBKEY 875 1_1_0d EXIST::FUNCTION:RSA -PEM_write_bio_PKCS7_stream 876 1_1_0d EXIST::FUNCTION: -SM2_do_verify 877 1_1_0d EXIST::FUNCTION:SM2 -SAF_EnumCertificatesFree 878 1_1_0d EXIST::FUNCTION: -BN_MONT_CTX_set 879 1_1_0d EXIST::FUNCTION: -X509_get0_uids 880 1_1_0d EXIST::FUNCTION: -i2b_PublicKey_bio 881 1_1_0d EXIST::FUNCTION:DSA -OCSP_ONEREQ_add_ext 882 1_1_0d EXIST::FUNCTION:OCSP -X509_STORE_CTX_get_check_issued 883 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_decrypt 884 1_1_0d EXIST::FUNCTION:CMS -PKCS7_ENC_CONTENT_free 885 1_1_0d EXIST::FUNCTION: -X509_NAME_add_entry_by_txt 886 1_1_0d EXIST::FUNCTION: -TS_REQ_get_ext_by_OBJ 887 1_1_0d EXIST::FUNCTION:TS -X509_LOOKUP_shutdown 888 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_result_size 889 1_1_0d EXIST::FUNCTION: -ECDSA_sign_ex 890 1_1_0d EXIST::FUNCTION:EC -DSO_load 891 1_1_0d EXIST::FUNCTION: -ECPARAMETERS_free 892 1_1_0d EXIST::FUNCTION:EC -i2d_SM9MasterSecret_fp 893 1_1_0d EXIST::FUNCTION:SM9,STDIO -TS_CONF_set_ordering 894 1_1_0d EXIST::FUNCTION:TS -ASN1_PRINTABLE_free 895 1_1_0d EXIST::FUNCTION: -PEM_write_bio_SM9PublicKey 896 1_1_0d EXIST::FUNCTION:SM9 -BUF_MEM_grow 897 1_1_0d EXIST::FUNCTION: -RC2_set_key 898 1_1_0d EXIST::FUNCTION:RC2 -SAF_Pkcs7_EncodeEnvelopedData 899 1_1_0d EXIST::FUNCTION: -BN_dec2bn 900 1_1_0d EXIST::FUNCTION: -EVP_PKCS82PKEY 901 1_1_0d EXIST::FUNCTION: -ASN1_item_ex_d2i 902 1_1_0d EXIST::FUNCTION: -EVP_DecryptInit_ex 903 1_1_0d EXIST::FUNCTION: -OPENSSL_memcmp 904 1_1_0d EXIST::FUNCTION: -X509_REQ_verify 905 1_1_0d EXIST::FUNCTION: -FIPS_mode 906 1_1_0d EXIST::FUNCTION: -SRP_VBASE_free 907 1_1_0d EXIST::FUNCTION:SRP -SAF_GenerateAgreementDataAdnKeyWithECC 908 1_1_0d EXIST::FUNCTION: -X509_get_proxy_pathlen 909 1_1_0d EXIST::FUNCTION: -IPAddressRange_it 910 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressRange_it 910 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -CMS_SignerInfo_verify_content 911 1_1_0d EXIST::FUNCTION:CMS -X509_STORE_lock 912 1_1_0d EXIST::FUNCTION: -RSA_padding_add_PKCS1_type_1 913 1_1_0d EXIST::FUNCTION:RSA -PEM_X509_INFO_read_bio 914 1_1_0d EXIST::FUNCTION: -ERR_load_RAND_strings 915 1_1_0d EXIST::FUNCTION: -X509V3_set_ctx 916 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_app_datasize 917 1_1_0d EXIST::FUNCTION: -BN_to_ASN1_INTEGER 918 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_sqr 919 1_1_0d EXIST::FUNCTION:EC2M -PEM_write_PKCS8_PRIV_KEY_INFO 920 1_1_0d EXIST::FUNCTION:STDIO -X509_print_ex 921 1_1_0d EXIST::FUNCTION: -EC_GFp_nist_method 922 1_1_0d EXIST::FUNCTION:EC -PEM_read_bio_X509_REQ 923 1_1_0d EXIST::FUNCTION: -CMAC_Update 924 1_1_0d EXIST::FUNCTION:CMAC -X509_REQ_free 925 1_1_0d EXIST::FUNCTION: -PEM_write_SM9_PUBKEY 926 1_1_0d EXIST::FUNCTION:SM9,STDIO -BIO_sock_init 927 1_1_0d EXIST::FUNCTION:SOCK -i2d_PaillierPrivateKey 928 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_MD_get_sgd 929 1_1_0d EXIST::FUNCTION:GMAPI -X509_policy_node_get0_parent 930 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_add0 931 1_1_0d EXIST::FUNCTION: -i2d_ECCSIGNATUREBLOB 932 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -ESS_SIGNING_CERT_dup 933 1_1_0d EXIST::FUNCTION:TS -SXNET_add_id_asc 934 1_1_0d EXIST::FUNCTION: -X509_CRL_free 935 1_1_0d EXIST::FUNCTION: -ECPKPARAMETERS_it 936 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC -ECPKPARAMETERS_it 936 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC -PKCS12_SAFEBAG_new 937 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_get_app_data 938 1_1_0d EXIST::FUNCTION: -ERR_load_OBJ_strings 939 1_1_0d EXIST::FUNCTION: -OBJ_NAME_do_all 940 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyWithEPK_RSA 941 1_1_0d EXIST::FUNCTION: -EC_KEY_get_ECCPUBLICKEYBLOB 942 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -EC_KEY_get_conv_form 943 1_1_0d EXIST::FUNCTION:EC -SDF_HashUpdate 944 1_1_0d EXIST::FUNCTION: -RSA_meth_set_flags 945 1_1_0d EXIST::FUNCTION:RSA -COMP_CTX_get_method 946 1_1_0d EXIST::FUNCTION:COMP -OCSP_RESPID_set_by_name 947 1_1_0d EXIST::FUNCTION:OCSP -TS_REQ_set_msg_imprint 948 1_1_0d EXIST::FUNCTION:TS -SM9Signature_it 949 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9Signature_it 949 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -ASN1_item_i2d_bio 950 1_1_0d EXIST::FUNCTION: -ASN1_VISIBLESTRING_free 951 1_1_0d EXIST::FUNCTION: -BIO_f_null 952 1_1_0d EXIST::FUNCTION: -PKCS8_PRIV_KEY_INFO_new 953 1_1_0d EXIST::FUNCTION: -X509V3_EXT_CRL_add_nconf 954 1_1_0d EXIST::FUNCTION: -BN_GFP2_mul_bn 955 1_1_0d EXIST::FUNCTION: -DSA_test_flags 956 1_1_0d EXIST::FUNCTION:DSA -ENGINE_set_default_DH 957 1_1_0d EXIST::FUNCTION:ENGINE -OCSP_SINGLERESP_get0_id 958 1_1_0d EXIST::FUNCTION:OCSP -d2i_EC_PUBKEY 959 1_1_0d EXIST::FUNCTION:EC -d2i_PaillierPublicKey 960 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_CIPHER_CTX_iv 961 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_get0_pkey_ctx 962 1_1_0d EXIST::FUNCTION:CMS -UI_method_set_opener 963 1_1_0d EXIST::FUNCTION:UI -CMS_get1_ReceiptRequest 964 1_1_0d EXIST::FUNCTION:CMS -DH_generate_parameters 965 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DH -i2d_PKCS12_BAGS 966 1_1_0d EXIST::FUNCTION: -ECCPRIVATEKEYBLOB_set_private_key 967 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -SOF_CreateTimeStampResponse 968 1_1_0d EXIST::FUNCTION: -DSA_meth_new 969 1_1_0d EXIST::FUNCTION:DSA -PKCS5_v2_PBE_keyivgen 970 1_1_0d EXIST::FUNCTION: -EVP_rc2_ecb 971 1_1_0d EXIST::FUNCTION:RC2 -ENGINE_set_RAND 972 1_1_0d EXIST::FUNCTION:ENGINE -EVP_camellia_128_ecb 973 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_DecodeUpdate 974 1_1_0d EXIST::FUNCTION: -SEED_decrypt 975 1_1_0d EXIST::FUNCTION:SEED -EVP_aes_128_gcm 976 1_1_0d EXIST::FUNCTION: -BN_generate_prime 977 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -ASIdentifiers_it 978 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASIdentifiers_it 978 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -BN_CTX_new 979 1_1_0d EXIST::FUNCTION: -EVP_aes_128_cfb1 980 1_1_0d EXIST::FUNCTION: -i2d_ASN1_TYPE 981 1_1_0d EXIST::FUNCTION: -RSA_meth_set_mod_exp 982 1_1_0d EXIST::FUNCTION:RSA -BN_pseudo_rand_range 983 1_1_0d EXIST::FUNCTION: -RSA_PSS_PARAMS_free 984 1_1_0d EXIST::FUNCTION:RSA -X509_VERIFY_PARAM_get_inh_flags 985 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_get0_peerkey 986 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_set0_othername 987 1_1_0d EXIST::FUNCTION: -i2d_X509_PUBKEY 988 1_1_0d EXIST::FUNCTION: -ASN1_GENERALSTRING_it 989 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_GENERALSTRING_it 989 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASN1_ENUMERATED_new 990 1_1_0d EXIST::FUNCTION: -X509at_get_attr_by_OBJ 991 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_accuracy 992 1_1_0d EXIST::FUNCTION:TS -SKF_MacFinal 993 1_1_0d EXIST::FUNCTION:SKF -ASN1_item_dup 994 1_1_0d EXIST::FUNCTION: -ASN1_BMPSTRING_it 995 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_BMPSTRING_it 995 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_ctrl_function 996 1_1_0d EXIST::FUNCTION:ENGINE -BN_get_rfc3526_prime_8192 997 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_ext_free 998 1_1_0d EXIST::FUNCTION:TS -PKCS12_add_friendlyname_uni 999 1_1_0d EXIST::FUNCTION: -RSA_verify 1000 1_1_0d EXIST::FUNCTION:RSA -X509_get_ext_d2i 1001 1_1_0d EXIST::FUNCTION: -X509_CRL_get0_extensions 1002 1_1_0d EXIST::FUNCTION: -ENGINE_get_static_state 1003 1_1_0d EXIST::FUNCTION:ENGINE -KDF_get_ibcs 1004 1_1_0d EXIST::FUNCTION: -EVP_aes_256_xts 1005 1_1_0d EXIST::FUNCTION: -X509_check_host 1006 1_1_0d EXIST::FUNCTION: -CRYPTO_get_mem_functions 1007 1_1_0d EXIST::FUNCTION: -X509_REQ_get_attr_count 1008 1_1_0d EXIST::FUNCTION: -i2d_PUBKEY_bio 1009 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_set_imprint 1010 1_1_0d EXIST::FUNCTION:TS -OPENSSL_LH_free 1011 1_1_0d EXIST::FUNCTION: -CPK_MASTER_SECRET_extract_public_params 1012 1_1_0d EXIST::FUNCTION:CPK -PKCS7_dataDecode 1013 1_1_0d EXIST::FUNCTION: -BN_GENCB_free 1014 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_validate_private_key 1015 1_1_0d EXIST::FUNCTION:CPK -d2i_RSAPublicKey_fp 1016 1_1_0d EXIST::FUNCTION:RSA,STDIO -X509_REVOKED_get_ext_count 1017 1_1_0d EXIST::FUNCTION: -RC5_32_set_key 1018 1_1_0d EXIST::FUNCTION:RC5 -SAF_Login 1019 1_1_0d EXIST::FUNCTION: -EVP_PKEY_decrypt_old 1020 1_1_0d EXIST::FUNCTION: -RSA_meth_set_sign 1021 1_1_0d EXIST::FUNCTION:RSA -BN_CTX_end 1022 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_cmp 1023 1_1_0d EXIST::FUNCTION: -RSA_padding_check_PKCS1_type_2 1024 1_1_0d EXIST::FUNCTION:RSA -i2d_PKCS8_PRIV_KEY_INFO 1025 1_1_0d EXIST::FUNCTION: -CMS_unsigned_delete_attr 1026 1_1_0d EXIST::FUNCTION:CMS -BFCiphertextBlock_new 1027 1_1_0d EXIST::FUNCTION:BFIBE -i2d_SXNETID 1028 1_1_0d EXIST::FUNCTION: -i2d_DSAPublicKey 1029 1_1_0d EXIST::FUNCTION:DSA -OCSP_BASICRESP_get_ext_count 1030 1_1_0d EXIST::FUNCTION:OCSP -PKCS7_add_certificate 1031 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_add_md 1032 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_get_seed_len 1033 1_1_0d EXIST::FUNCTION:EC -X509_REQ_add1_attr_by_OBJ 1034 1_1_0d EXIST::FUNCTION: -EVP_get_default_digest 1035 1_1_0d EXIST::FUNCTION: -BIO_set_data 1036 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_lock_free 1037 1_1_0d EXIST::FUNCTION: -ENGINE_register_all_ciphers 1038 1_1_0d EXIST::FUNCTION:ENGINE -SAF_VerifyCertificateByCrl 1039 1_1_0d EXIST::FUNCTION: -EVP_DigestSignFinal 1040 1_1_0d EXIST::FUNCTION: -BN_secure_new 1041 1_1_0d EXIST::FUNCTION: -PEM_read 1042 1_1_0d EXIST::FUNCTION:STDIO -speck_set_encrypt_key16 1043 1_1_0d EXIST::FUNCTION:SPECK -SOF_ChangePassWd 1044 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_init 1045 1_1_0d EXIST::FUNCTION: -d2i_DSAPrivateKey 1046 1_1_0d EXIST::FUNCTION:DSA -SCT_get_signature_nid 1047 1_1_0d EXIST::FUNCTION:CT -i2d_PKCS7_fp 1048 1_1_0d EXIST::FUNCTION:STDIO -EVP_MD_CTX_set_md_data 1049 1_1_0d EXIST::FUNCTION: -PKCS5_pbe2_set 1050 1_1_0d EXIST::FUNCTION: -PEM_write_bio_CMS_stream 1051 1_1_0d EXIST::FUNCTION:CMS -X509V3_set_nconf 1052 1_1_0d EXIST::FUNCTION: -X509_REVOKED_it 1053 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_REVOKED_it 1053 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -i2d_SM9PrivateKey_fp 1054 1_1_0d EXIST::FUNCTION:SM9,STDIO -BUF_MEM_grow_clean 1055 1_1_0d EXIST::FUNCTION: -EVP_ENCODE_CTX_new 1056 1_1_0d EXIST::FUNCTION: -X509_to_X509_REQ 1057 1_1_0d EXIST::FUNCTION: -X509_get0_signature 1058 1_1_0d EXIST::FUNCTION: -PKCS12_item_i2d_encrypt 1059 1_1_0d EXIST::FUNCTION: -CMS_sign_receipt 1060 1_1_0d EXIST::FUNCTION:CMS -SOF_VerifySignedData 1061 1_1_0d EXIST::FUNCTION: -X509_STORE_set_ex_data 1062 1_1_0d EXIST::FUNCTION: -SDF_ExternalPublicKeyOperation_RSA 1063 1_1_0d EXIST::FUNCTION: -SOF_ExportUserCert 1064 1_1_0d EXIST::FUNCTION: -EC_KEY_key2buf 1065 1_1_0d EXIST::FUNCTION:EC -EVP_PKEY_set1_SM9_MASTER 1066 1_1_0d EXIST::FUNCTION:SM9 -CRYPTO_mem_leaks_fp 1067 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG,STDIO -X509_REVOKED_get0_serialNumber 1068 1_1_0d EXIST::FUNCTION: -X509_get0_trust_objects 1069 1_1_0d EXIST::FUNCTION: -DH_test_flags 1070 1_1_0d EXIST::FUNCTION:DH -OCSP_REQUEST_add1_ext_i2d 1071 1_1_0d EXIST::FUNCTION:OCSP -IDEA_set_decrypt_key 1072 1_1_0d EXIST::FUNCTION:IDEA -X509_REQ_get_attr_by_OBJ 1073 1_1_0d EXIST::FUNCTION: -UI_dup_input_boolean 1074 1_1_0d EXIST::FUNCTION:UI -X509_CRL_http_nbio 1075 1_1_0d EXIST::FUNCTION:OCSP -OBJ_ln2nid 1076 1_1_0d EXIST::FUNCTION: -CERTIFICATEPOLICIES_free 1077 1_1_0d EXIST::FUNCTION: -ERR_load_ASYNC_strings 1078 1_1_0d EXIST::FUNCTION: -EC_KEY_print_fp 1079 1_1_0d EXIST::FUNCTION:EC,STDIO -X509_CRL_get0_lastUpdate 1080 1_1_0d EXIST::FUNCTION: -DSA_meth_set0_app_data 1081 1_1_0d EXIST::FUNCTION:DSA -ASN1_ENUMERATED_set_int64 1082 1_1_0d EXIST::FUNCTION: -X509_REQ_get_X509_PUBKEY 1083 1_1_0d EXIST::FUNCTION: -OCSP_CERTID_dup 1084 1_1_0d EXIST::FUNCTION:OCSP -SKF_ChangePIN 1085 1_1_0d EXIST::FUNCTION:SKF -DSA_print_fp 1086 1_1_0d EXIST::FUNCTION:DSA,STDIO -PKCS5_pbe2_set_scrypt 1087 1_1_0d EXIST::FUNCTION:SCRYPT -EC_GROUP_get0_seed 1088 1_1_0d EXIST::FUNCTION:EC -X509_get_default_cert_area 1089 1_1_0d EXIST::FUNCTION: -X509_NAME_get_entry 1090 1_1_0d EXIST::FUNCTION: -OCSP_single_get0_status 1091 1_1_0d EXIST::FUNCTION:OCSP -d2i_ASN1_GENERALIZEDTIME 1092 1_1_0d EXIST::FUNCTION: -d2i_PBE2PARAM 1093 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_get_item 1094 1_1_0d EXIST::FUNCTION: -CRYPTO_secure_free 1095 1_1_0d EXIST::FUNCTION: -DES_set_key_unchecked 1096 1_1_0d EXIST::FUNCTION:DES -EVP_CIPHER_meth_get_set_asn1_params 1097 1_1_0d EXIST::FUNCTION: -X509V3_extensions_print 1098 1_1_0d EXIST::FUNCTION: -sm3_hmac_final 1099 1_1_0d EXIST::FUNCTION:SM3 -EC_KEY_new_from_ECCrefPrivateKey 1100 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -AES_cfb8_encrypt 1101 1_1_0d EXIST::FUNCTION: -i2d_ECCCipher 1102 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -CPK_MASTER_SECRET_it 1103 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK -CPK_MASTER_SECRET_it 1103 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK -SAF_SM2_EncodeSignedAndEnvelopedData 1104 1_1_0d EXIST::FUNCTION: -i2d_RSA_OAEP_PARAMS 1105 1_1_0d EXIST::FUNCTION:RSA -RSA_meth_get_verify 1106 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_CTX_str2ctrl 1107 1_1_0d EXIST::FUNCTION: -AES_unwrap_key 1108 1_1_0d EXIST::FUNCTION: -EC_KEY_GmSSL 1109 1_1_0d EXIST::FUNCTION:SM2 -DHparams_it 1110 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DH -DHparams_it 1110 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DH -X509V3_get_section 1111 1_1_0d EXIST::FUNCTION: -EC_KEY_check_key 1112 1_1_0d EXIST::FUNCTION:EC -CRYPTO_ofb128_encrypt 1113 1_1_0d EXIST::FUNCTION: -EVP_sha256 1114 1_1_0d EXIST::FUNCTION: -X509_get_ext 1115 1_1_0d EXIST::FUNCTION: -OCSP_REVOKEDINFO_free 1116 1_1_0d EXIST::FUNCTION:OCSP -X509_STORE_set_verify 1117 1_1_0d EXIST::FUNCTION: -i2d_TS_REQ_fp 1118 1_1_0d EXIST::FUNCTION:STDIO,TS -SKF_GetDevState 1119 1_1_0d EXIST::FUNCTION:SKF -X509at_add1_attr_by_txt 1120 1_1_0d EXIST::FUNCTION: -ERR_load_COMP_strings 1121 1_1_0d EXIST::FUNCTION:COMP -OCSP_SINGLERESP_add_ext 1122 1_1_0d EXIST::FUNCTION:OCSP -SHA512_Init 1123 1_1_0d EXIST:!VMSVAX:FUNCTION: -i2d_X509_CINF 1124 1_1_0d EXIST::FUNCTION: -BIO_new_NDEF 1125 1_1_0d EXIST::FUNCTION: -BIO_set_shutdown 1126 1_1_0d EXIST::FUNCTION: -ECIES_PARAMS_init_with_recommended 1127 1_1_0d EXIST::FUNCTION:ECIES -TS_TST_INFO_get_exts 1128 1_1_0d EXIST::FUNCTION:TS -DH_security_bits 1129 1_1_0d EXIST::FUNCTION:DH -EC_GROUP_get_order 1130 1_1_0d EXIST::FUNCTION:EC -TS_REQ_get_ext_by_critical 1131 1_1_0d EXIST::FUNCTION:TS -ENGINE_finish 1132 1_1_0d EXIST::FUNCTION:ENGINE -X509_REQ_print 1133 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_set_param 1134 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_md_data 1135 1_1_0d EXIST::FUNCTION: -i2o_SCT 1136 1_1_0d EXIST::FUNCTION:CT -d2i_ECIES_CIPHERTEXT_VALUE 1137 1_1_0d EXIST::FUNCTION:ECIES -SM9_SignInit 1138 1_1_0d EXIST::FUNCTION:SM9 -d2i_PKCS12_fp 1139 1_1_0d EXIST::FUNCTION:STDIO -ACCESS_DESCRIPTION_free 1140 1_1_0d EXIST::FUNCTION: -DH_get_1024_160 1141 1_1_0d EXIST::FUNCTION:DH -X509_EXTENSION_create_by_OBJ 1142 1_1_0d EXIST::FUNCTION: -PEM_write_PaillierPublicKey 1143 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO -X509_STORE_CTX_get0_parent_ctx 1144 1_1_0d EXIST::FUNCTION: -EVP_EncryptInit_ex 1145 1_1_0d EXIST::FUNCTION: -EVP_sms4_wrap 1146 1_1_0d EXIST::FUNCTION:SMS4 -SM2_KAP_CTX_init 1147 1_1_0d EXIST::FUNCTION:SM2 -X509_CRL_sign 1148 1_1_0d EXIST::FUNCTION: -CMS_ReceiptRequest_get0_values 1149 1_1_0d EXIST::FUNCTION:CMS -CRYPTO_secure_malloc_init 1150 1_1_0d EXIST::FUNCTION: -SCT_print 1151 1_1_0d EXIST::FUNCTION:CT -DH_check_params 1152 1_1_0d EXIST::FUNCTION:DH -X509_VERIFY_PARAM_get_flags 1153 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_deep_copy 1154 1_1_0d EXIST::FUNCTION: -PKCS12_pack_authsafes 1155 1_1_0d EXIST::FUNCTION: -RSAPublicKey_dup 1156 1_1_0d EXIST::FUNCTION:RSA -RSA_test_flags 1157 1_1_0d EXIST::FUNCTION:RSA -UI_method_set_reader 1158 1_1_0d EXIST::FUNCTION:UI -ERR_load_BFIBE_strings 1159 1_1_0d EXIST::FUNCTION:BFIBE -ENGINE_register_DH 1160 1_1_0d EXIST::FUNCTION:ENGINE -i2d_X509_NAME 1161 1_1_0d EXIST::FUNCTION: -DSA_up_ref 1162 1_1_0d EXIST::FUNCTION:DSA -OCSP_set_max_response_length 1163 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_cbc128_decrypt 1164 1_1_0d EXIST::FUNCTION: -PEM_write_bio_RSAPublicKey 1165 1_1_0d EXIST::FUNCTION:RSA -EVP_des_ede_cfb64 1166 1_1_0d EXIST::FUNCTION:DES -RSA_new_from_RSAPUBLICKEYBLOB 1167 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -serpent_set_encrypt_key 1168 1_1_0d EXIST::FUNCTION:SERPENT -RSA_meth_set_init 1169 1_1_0d EXIST::FUNCTION:RSA -PKCS7_SIGNED_free 1170 1_1_0d EXIST::FUNCTION: -CMS_decrypt 1171 1_1_0d EXIST::FUNCTION:CMS -TS_REQ_get_ext_count 1172 1_1_0d EXIST::FUNCTION:TS -EC_KEY_METHOD_new 1173 1_1_0d EXIST::FUNCTION:EC -FFX_encrypt 1174 1_1_0d EXIST::FUNCTION: -X509_CRL_get_ext_d2i 1175 1_1_0d EXIST::FUNCTION: -SKF_EnumDev 1176 1_1_0d EXIST::FUNCTION:SKF -DIRECTORYSTRING_new 1177 1_1_0d EXIST::FUNCTION: -PEM_read_PKCS7 1178 1_1_0d EXIST::FUNCTION:STDIO -DSA_print 1179 1_1_0d EXIST::FUNCTION:DSA -TS_ACCURACY_new 1180 1_1_0d EXIST::FUNCTION:TS -BIO_meth_get_ctrl 1181 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_do_all 1182 1_1_0d EXIST::FUNCTION: -X509_ALGOR_it 1183 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_ALGOR_it 1183 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_VERIFY_PARAM_set_purpose 1184 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_set1_object 1185 1_1_0d EXIST::FUNCTION: -i2d_ASN1_OCTET_STRING 1186 1_1_0d EXIST::FUNCTION: -PEM_proc_type 1187 1_1_0d EXIST::FUNCTION: -Camellia_ofb128_encrypt 1188 1_1_0d EXIST::FUNCTION:CAMELLIA -SHA1_Final 1189 1_1_0d EXIST::FUNCTION: -EVP_PKEY_print_params 1190 1_1_0d EXIST::FUNCTION: -SOF_GetTimeStampInfo 1191 1_1_0d EXIST::FUNCTION: -EVP_DecryptInit 1192 1_1_0d EXIST::FUNCTION: -d2i_X509_EXTENSIONS 1193 1_1_0d EXIST::FUNCTION: -ASN1_TIME_it 1194 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_TIME_it 1194 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_EXTENSION_get_critical 1195 1_1_0d EXIST::FUNCTION: -X509_get_extended_key_usage 1196 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_reset 1197 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_it 1198 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_EXTENSION_it 1198 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -AUTHORITY_INFO_ACCESS_free 1199 1_1_0d EXIST::FUNCTION: -ASN1_PRINTABLE_new 1200 1_1_0d EXIST::FUNCTION: -EVP_des_cfb8 1201 1_1_0d EXIST::FUNCTION:DES -X509_CRL_INFO_new 1202 1_1_0d EXIST::FUNCTION: -CRYPTO_new_ex_data 1203 1_1_0d EXIST::FUNCTION: -PKCS7_ENC_CONTENT_it 1204 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ENC_CONTENT_it 1204 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_aes_192_ocb 1205 1_1_0d EXIST::FUNCTION:OCB -d2i_DIST_POINT 1206 1_1_0d EXIST::FUNCTION: -BFIBE_do_encrypt 1207 1_1_0d EXIST::FUNCTION:BFIBE -CRYPTO_num_locks 1208 1_1_0d EXIST::FUNCTION: -BIO_sock_info 1209 1_1_0d EXIST::FUNCTION:SOCK -UI_method_get_writer 1210 1_1_0d EXIST::FUNCTION:UI -NETSCAPE_SPKI_b64_encode 1211 1_1_0d EXIST::FUNCTION: -d2i_ECCSIGNATUREBLOB 1212 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -sms4_ctr128_encrypt 1213 1_1_0d EXIST::FUNCTION:SMS4 -i2d_ESS_ISSUER_SERIAL 1214 1_1_0d EXIST::FUNCTION:TS -i2d_NETSCAPE_CERT_SEQUENCE 1215 1_1_0d EXIST::FUNCTION: -BN_cmp 1216 1_1_0d EXIST::FUNCTION: -ASN1_GENERALIZEDTIME_set_string 1217 1_1_0d EXIST::FUNCTION: -PKCS12_verify_mac 1218 1_1_0d EXIST::FUNCTION: -PEM_ASN1_read_bio 1219 1_1_0d EXIST::FUNCTION: -SOF_Login 1220 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_nonce 1221 1_1_0d EXIST::FUNCTION:TS -TS_RESP_CTX_set_signer_digest 1222 1_1_0d EXIST::FUNCTION:TS -d2i_ASN1_TYPE 1223 1_1_0d EXIST::FUNCTION: -X509_NAME_it 1224 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_NAME_it 1224 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_OBJECT_up_ref_count 1225 1_1_0d EXIST::FUNCTION: -SM2_do_sign_ex 1226 1_1_0d EXIST::FUNCTION:SM2 -CRYPTO_nistcts128_decrypt 1227 1_1_0d EXIST::FUNCTION: -ASN1_item_unpack 1228 1_1_0d EXIST::FUNCTION: -ASN1_GENERALSTRING_new 1229 1_1_0d EXIST::FUNCTION: -i2d_PBE2PARAM 1230 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_encrypt 1231 1_1_0d EXIST::FUNCTION: -EC_KEY_copy 1232 1_1_0d EXIST::FUNCTION:EC -DSA_meth_set_bn_mod_exp 1233 1_1_0d EXIST::FUNCTION:DSA -BN_mod_add_quick 1234 1_1_0d EXIST::FUNCTION: -i2d_X509_bio 1235 1_1_0d EXIST::FUNCTION: -X509_CRL_get_nextUpdate 1236 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -EVP_ENCODE_CTX_free 1237 1_1_0d EXIST::FUNCTION: -CMS_add1_recipient_cert 1238 1_1_0d EXIST::FUNCTION:CMS -SKF_NewECCCipher 1239 1_1_0d EXIST::FUNCTION:SKF -PKCS5_PBKDF2_HMAC_SHA1 1240 1_1_0d EXIST::FUNCTION:SHA -X509_find_by_issuer_and_serial 1241 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_get_object 1242 1_1_0d EXIST::FUNCTION: -SKF_GetDevStateName 1243 1_1_0d EXIST::FUNCTION:SKF -ASN1_add_stable_module 1244 1_1_0d EXIST::FUNCTION: -d2i_RSAPrivateKey_bio 1245 1_1_0d EXIST::FUNCTION:RSA -DH_meth_get_generate_params 1246 1_1_0d EXIST::FUNCTION:DH -i2d_X509_REQ_fp 1247 1_1_0d EXIST::FUNCTION:STDIO -SM2_decrypt 1248 1_1_0d EXIST::FUNCTION:SM2 -SM9_verify 1249 1_1_0d EXIST::FUNCTION:SM9 -GENERAL_SUBTREE_new 1250 1_1_0d EXIST::FUNCTION: -ASN1_TIME_diff 1251 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_do_all_sorted 1252 1_1_0d EXIST::FUNCTION: -PKCS7_get_smimecap 1253 1_1_0d EXIST::FUNCTION: -OPENSSL_buf2hexstr 1254 1_1_0d EXIST::FUNCTION: -BIO_ADDR_clear 1255 1_1_0d EXIST::FUNCTION:SOCK -SDF_ExternalEncrypt_ECC 1256 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_table_cleanup 1257 1_1_0d EXIST::FUNCTION: -UI_process 1258 1_1_0d EXIST::FUNCTION:UI -OPENSSL_LH_doall_arg 1259 1_1_0d EXIST::FUNCTION: -BN_MONT_CTX_free 1260 1_1_0d EXIST::FUNCTION: -BIO_dump 1261 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_set_uint64 1262 1_1_0d EXIST::FUNCTION: -SKF_EnumFiles 1263 1_1_0d EXIST::FUNCTION:SKF -RSA_set0_crt_params 1264 1_1_0d EXIST::FUNCTION:RSA -CRYPTO_mem_debug_pop 1265 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -X509_set_proxy_pathlen 1266 1_1_0d EXIST::FUNCTION: -OTP_generate 1267 1_1_0d EXIST::FUNCTION:OTP -TXT_DB_get_by_index 1268 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cbc 1269 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_create_crl 1270 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_new 1271 1_1_0d EXIST::FUNCTION: -DH_meth_set_init 1272 1_1_0d EXIST::FUNCTION:DH -ERR_load_X509V3_strings 1273 1_1_0d EXIST::FUNCTION: -SKF_RSAExportSessionKey 1274 1_1_0d EXIST::FUNCTION:SKF -PKCS12_add_friendlyname_asc 1275 1_1_0d EXIST::FUNCTION: -RSA_meth_get_pub_dec 1276 1_1_0d EXIST::FUNCTION:RSA -OPENSSL_sk_set 1277 1_1_0d EXIST::FUNCTION: -EVP_PKEY2PKCS8 1278 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_new_from_ECCCIPHERBLOB 1279 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF -PKCS12_SAFEBAG_get0_p8inf 1280 1_1_0d EXIST::FUNCTION: -BIO_connect 1281 1_1_0d EXIST::FUNCTION:SOCK -RSAPrivateKey_it 1282 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSAPrivateKey_it 1282 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -X509_set_issuer_name 1283 1_1_0d EXIST::FUNCTION: -X509_policy_tree_get0_level 1284 1_1_0d EXIST::FUNCTION: -TS_REQ_get_cert_req 1285 1_1_0d EXIST::FUNCTION:TS -COMP_get_name 1286 1_1_0d EXIST::FUNCTION:COMP -X509_NAME_hash_old 1287 1_1_0d EXIST::FUNCTION: -i2d_DSAparams 1288 1_1_0d EXIST::FUNCTION:DSA -ASN1_INTEGER_get_int64 1289 1_1_0d EXIST::FUNCTION: -PKCS12_MAC_DATA_free 1290 1_1_0d EXIST::FUNCTION: -BN_exp 1291 1_1_0d EXIST::FUNCTION: -EVP_BytesToKey 1292 1_1_0d EXIST::FUNCTION: -ERR_load_GMAPI_strings 1293 1_1_0d EXIST::FUNCTION:GMAPI -BN_get_rfc2409_prime_1024 1294 1_1_0d EXIST::FUNCTION: -OCSP_crlID_new 1295 1_1_0d EXIST:!VMS:FUNCTION:OCSP -OCSP_crlID2_new 1295 1_1_0d EXIST:VMS:FUNCTION:OCSP -SAF_AddCrl 1296 1_1_0d EXIST::FUNCTION: -d2i_ASN1_GENERALSTRING 1297 1_1_0d EXIST::FUNCTION: -PEM_write_bio_DSAparams 1298 1_1_0d EXIST::FUNCTION:DSA -PKCS12_MAC_DATA_it 1299 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_MAC_DATA_it 1299 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EC_KEY_METHOD_set_init 1300 1_1_0d EXIST::FUNCTION:EC -SAF_SymmDecryptUpdate 1301 1_1_0d EXIST::FUNCTION: -d2i_X509_ATTRIBUTE 1302 1_1_0d EXIST::FUNCTION: -PEM_read_PKCS8_PRIV_KEY_INFO 1303 1_1_0d EXIST::FUNCTION:STDIO -TS_VERIFY_CTX_set_flags 1304 1_1_0d EXIST::FUNCTION:TS -PEM_write_bio_PrivateKey 1305 1_1_0d EXIST::FUNCTION: -PKEY_USAGE_PERIOD_free 1306 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTS_set_certs 1307 1_1_0d EXIST::FUNCTION:TS -OCSP_request_add1_nonce 1308 1_1_0d EXIST::FUNCTION:OCSP -EVP_camellia_256_cfb1 1309 1_1_0d EXIST::FUNCTION:CAMELLIA -PKCS7_add_recipient 1310 1_1_0d EXIST::FUNCTION: -OPENSSL_hexchar2int 1311 1_1_0d EXIST::FUNCTION: -i2d_PUBKEY 1312 1_1_0d EXIST::FUNCTION: -ASRange_free 1313 1_1_0d EXIST::FUNCTION:RFC3779 -ENGINE_set_DH 1314 1_1_0d EXIST::FUNCTION:ENGINE -EC_KEY_generate_key 1315 1_1_0d EXIST::FUNCTION:EC -EVP_PKEY_get0_SM9 1316 1_1_0d EXIST::FUNCTION:SM9 -ENGINE_get_last 1317 1_1_0d EXIST::FUNCTION:ENGINE -BB1IBE_extract_private_key 1318 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_PKEY_derive_set_peer 1319 1_1_0d EXIST::FUNCTION: -d2i_ECCCipher 1320 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -SDF_PrintECCCipher 1321 1_1_0d EXIST::FUNCTION:SDF -d2i_ASN1_PRINTABLE 1322 1_1_0d EXIST::FUNCTION: -EVP_whirlpool 1323 1_1_0d EXIST::FUNCTION:WHIRLPOOL -OCSP_CRLID_free 1324 1_1_0d EXIST::FUNCTION:OCSP -i2d_X509_REVOKED 1325 1_1_0d EXIST::FUNCTION: -DSA_generate_key 1326 1_1_0d EXIST::FUNCTION:DSA -PAILLIER_generate_key 1327 1_1_0d EXIST::FUNCTION:PAILLIER -BB1CiphertextBlock_it 1328 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1CiphertextBlock_it 1328 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -d2i_DIST_POINT_NAME 1329 1_1_0d EXIST::FUNCTION: -d2i_NETSCAPE_SPKAC 1330 1_1_0d EXIST::FUNCTION: -PEM_write_PKCS8PrivateKey_nid 1331 1_1_0d EXIST::FUNCTION:STDIO -ASN1_mbstring_ncopy 1332 1_1_0d EXIST::FUNCTION: -SKF_EncryptFinal 1333 1_1_0d EXIST::FUNCTION:SKF -X509_set_serialNumber 1334 1_1_0d EXIST::FUNCTION: -d2i_GENERAL_NAMES 1335 1_1_0d EXIST::FUNCTION: -BN_get_rfc3526_prime_1536 1336 1_1_0d EXIST::FUNCTION: -BIO_meth_free 1337 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_ctrl 1338 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_get 1339 1_1_0d EXIST::FUNCTION: -X509_CRL_cmp 1340 1_1_0d EXIST::FUNCTION: -SKF_Digest 1341 1_1_0d EXIST::FUNCTION:SKF -d2i_X509_bio 1342 1_1_0d EXIST::FUNCTION: -SKF_PrintECCPublicKey 1343 1_1_0d EXIST::FUNCTION:SKF -PROXY_CERT_INFO_EXTENSION_it 1344 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PROXY_CERT_INFO_EXTENSION_it 1344 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -OCSP_request_verify 1345 1_1_0d EXIST::FUNCTION:OCSP -TS_STATUS_INFO_print_bio 1346 1_1_0d EXIST::FUNCTION:TS -EVP_SealFinal 1347 1_1_0d EXIST::FUNCTION:RSA -POLICYINFO_it 1348 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICYINFO_it 1348 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BIO_meth_set_read 1349 1_1_0d EXIST::FUNCTION: -ASN1_OBJECT_free 1350 1_1_0d EXIST::FUNCTION: -CRYPTO_cts128_decrypt_block 1351 1_1_0d EXIST::FUNCTION: -X509_ALGOR_new 1352 1_1_0d EXIST::FUNCTION: -BN_get_rfc3526_prime_2048 1353 1_1_0d EXIST::FUNCTION: -CMS_signed_add1_attr_by_OBJ 1354 1_1_0d EXIST::FUNCTION:CMS -SAF_CreateHashObj 1355 1_1_0d EXIST::FUNCTION: -BIO_s_file 1356 1_1_0d EXIST::FUNCTION: -ASN1_bn_print 1357 1_1_0d EXIST::FUNCTION: -X509_set_ex_data 1358 1_1_0d EXIST::FUNCTION: -CMS_uncompress 1359 1_1_0d EXIST::FUNCTION:CMS -BN_mod_sub_quick 1360 1_1_0d EXIST::FUNCTION: -X509_digest 1361 1_1_0d EXIST::FUNCTION: -SM9_KEY_new 1362 1_1_0d EXIST::FUNCTION:SM9 -CTLOG_get0_name 1363 1_1_0d EXIST::FUNCTION:CT -EC_POINT_bn2point 1364 1_1_0d EXIST::FUNCTION:EC -X509_LOOKUP_new 1365 1_1_0d EXIST::FUNCTION: -BN_set_flags 1366 1_1_0d EXIST::FUNCTION: -X509_TRUST_cleanup 1367 1_1_0d EXIST::FUNCTION: -EVP_MD_type 1368 1_1_0d EXIST::FUNCTION: -PKCS12_AUTHSAFES_it 1369 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS12_AUTHSAFES_it 1369 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_register_all_complete 1370 1_1_0d EXIST::FUNCTION:ENGINE -PKEY_USAGE_PERIOD_it 1371 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKEY_USAGE_PERIOD_it 1371 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_CIPHER_CTX_get_sgd 1372 1_1_0d EXIST::FUNCTION:GMAPI -CONF_get_string 1373 1_1_0d EXIST::FUNCTION: -TS_REQ_set_version 1374 1_1_0d EXIST::FUNCTION:TS -BN_GFP2_is_zero 1375 1_1_0d EXIST::FUNCTION: -d2i_TS_MSG_IMPRINT_fp 1376 1_1_0d EXIST::FUNCTION:STDIO,TS -SM9Ciphertext_it 1377 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9Ciphertext_it 1377 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -SAF_SymmDecryptFinal 1378 1_1_0d EXIST::FUNCTION: -RSA_OAEP_PARAMS_free 1379 1_1_0d EXIST::FUNCTION:RSA -DH_KDF_X9_42 1380 1_1_0d EXIST::FUNCTION:CMS,DH -EVP_PKEY_id 1381 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_set_by_key 1382 1_1_0d EXIST::FUNCTION:OCSP -EVP_MD_flags 1383 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_string 1384 1_1_0d EXIST::FUNCTION:ENGINE -d2i_ECCCIPHERBLOB 1385 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -b2i_PublicKey 1386 1_1_0d EXIST::FUNCTION:DSA -RSA_get_RSArefPrivateKey 1387 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -i2d_X509_SIG 1388 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyPair_RSA 1389 1_1_0d EXIST::FUNCTION: -ASN1_item_sign_ctx 1390 1_1_0d EXIST::FUNCTION: -BN_mod_word 1391 1_1_0d EXIST::FUNCTION: -BN_nist_mod_521 1392 1_1_0d EXIST::FUNCTION: -BN_ucmp 1393 1_1_0d EXIST::FUNCTION: -CMS_ReceiptRequest_create0 1394 1_1_0d EXIST::FUNCTION:CMS -BIO_asn1_get_suffix 1395 1_1_0d EXIST::FUNCTION: -RSA_meth_get_pub_enc 1396 1_1_0d EXIST::FUNCTION:RSA -s2i_ASN1_IA5STRING 1397 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_ctrl 1398 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_impl_ctx_size 1399 1_1_0d EXIST::FUNCTION: -ASN1_GENERALIZEDTIME_check 1400 1_1_0d EXIST::FUNCTION: -EC_GROUP_new_type1curve_ex 1401 1_1_0d EXIST::FUNCTION: -UI_UTIL_read_pw_string 1402 1_1_0d EXIST::FUNCTION:UI -PKCS12_SAFEBAG_get_nid 1403 1_1_0d EXIST::FUNCTION: -EVP_EncodeUpdate 1404 1_1_0d EXIST::FUNCTION: -SKF_GetContainerType 1405 1_1_0d EXIST::FUNCTION:SKF -CPK_PUBLIC_PARAMS_new 1406 1_1_0d EXIST::FUNCTION:CPK -SKF_PrintRSAPublicKey 1407 1_1_0d EXIST::FUNCTION:SKF -HMAC_Init 1408 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -BN_get_params 1409 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -CMS_dataFinal 1410 1_1_0d EXIST::FUNCTION:CMS -d2i_X509_CRL_INFO 1411 1_1_0d EXIST::FUNCTION: -ENGINE_get_finish_function 1412 1_1_0d EXIST::FUNCTION:ENGINE -ASRange_it 1413 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASRange_it 1413 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -ERR_load_OTP_strings 1414 1_1_0d EXIST::FUNCTION:OTP -UI_free 1415 1_1_0d EXIST::FUNCTION:UI -EVP_PKEY_size 1416 1_1_0d EXIST::FUNCTION: -d2i_ECIESParameters 1417 1_1_0d EXIST::FUNCTION:ECIES -X509_time_adj_ex 1418 1_1_0d EXIST::FUNCTION: -BIO_sock_non_fatal_error 1419 1_1_0d EXIST::FUNCTION:SOCK -ASYNC_WAIT_CTX_get_changed_fds 1420 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_get_ECCSignature 1421 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -i2d_FpPoint 1422 1_1_0d EXIST::FUNCTION: -BN_clear_free 1423 1_1_0d EXIST::FUNCTION: -X509_get1_ocsp 1424 1_1_0d EXIST::FUNCTION: -CMS_get0_SignerInfos 1425 1_1_0d EXIST::FUNCTION:CMS -ASIdOrRange_it 1426 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASIdOrRange_it 1426 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -DH_meth_get_compute_key 1427 1_1_0d EXIST::FUNCTION:DH -OTHERNAME_new 1428 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_free 1429 1_1_0d EXIST::FUNCTION:TS -ASN1_check_infinite_end 1430 1_1_0d EXIST::FUNCTION: -CMS_compress 1431 1_1_0d EXIST::FUNCTION:CMS -SAF_VerifyCertificate 1432 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_new 1433 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_RSA 1434 1_1_0d EXIST::FUNCTION:ENGINE -EC_get_builtin_curves 1435 1_1_0d EXIST::FUNCTION:EC -i2d_ASN1_BMPSTRING 1436 1_1_0d EXIST::FUNCTION: -SKF_PrintECCSignature 1437 1_1_0d EXIST::FUNCTION:SKF -ASN1_OCTET_STRING_new 1438 1_1_0d EXIST::FUNCTION: -SAF_SM2_DecodeEnvelopedData 1439 1_1_0d EXIST::FUNCTION: -sms4_encrypt 1440 1_1_0d EXIST::FUNCTION:SMS4 -EVP_PKEY_CTX_get0_pkey 1441 1_1_0d EXIST::FUNCTION: -CMS_add0_CertificateChoices 1442 1_1_0d EXIST::FUNCTION:CMS -SM9PublicKey_it 1443 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9PublicKey_it 1443 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -RSA_set_RSArefPublicKey 1444 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -IPAddressOrRange_free 1445 1_1_0d EXIST::FUNCTION:RFC3779 -CTLOG_STORE_free 1446 1_1_0d EXIST::FUNCTION:CT -CMS_ReceiptRequest_it 1447 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS -CMS_ReceiptRequest_it 1447 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS -i2d_CMS_bio_stream 1448 1_1_0d EXIST::FUNCTION:CMS -ASN1_TIME_to_generalizedtime 1449 1_1_0d EXIST::FUNCTION: -OPENSSL_atexit 1450 1_1_0d EXIST::FUNCTION: -d2i_PKCS12_MAC_DATA 1451 1_1_0d EXIST::FUNCTION: -BN_GFP2_equ 1452 1_1_0d EXIST::FUNCTION: -BIO_gets 1453 1_1_0d EXIST::FUNCTION: -RSA_null_method 1454 1_1_0d EXIST::FUNCTION:RSA -d2i_RSA_PSS_PARAMS 1455 1_1_0d EXIST::FUNCTION:RSA -OCSP_RESPDATA_free 1456 1_1_0d EXIST::FUNCTION:OCSP -BIO_int_ctrl 1457 1_1_0d EXIST::FUNCTION: -d2i_PUBKEY 1458 1_1_0d EXIST::FUNCTION: -EC_GFp_nistp224_method 1459 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 -BN_get_word 1460 1_1_0d EXIST::FUNCTION: -X509_verify_cert 1461 1_1_0d EXIST::FUNCTION: -BIO_new 1462 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_get_current_id 1463 1_1_0d EXIST::FUNCTION: -TS_STATUS_INFO_get0_status 1464 1_1_0d EXIST::FUNCTION:TS -PEM_write_bio_PKCS8PrivateKey_nid 1465 1_1_0d EXIST::FUNCTION: -DIST_POINT_NAME_it 1466 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DIST_POINT_NAME_it 1466 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SDF_GenerateKeyWithIPK_RSA 1467 1_1_0d EXIST::FUNCTION: -PEM_read_X509_AUX 1468 1_1_0d EXIST::FUNCTION:STDIO -speck_encrypt16 1469 1_1_0d EXIST::FUNCTION:SPECK -ECDSA_verify 1470 1_1_0d EXIST::FUNCTION:EC -BN_init 1471 1_1_0d EXIST::FUNCTION: -CONF_imodule_get_module 1472 1_1_0d EXIST::FUNCTION: -BIO_new_bio_pair 1473 1_1_0d EXIST::FUNCTION: -BIO_ADDRINFO_family 1474 1_1_0d EXIST::FUNCTION:SOCK -BIO_set_ex_data 1475 1_1_0d EXIST::FUNCTION: -TS_ext_print_bio 1476 1_1_0d EXIST::FUNCTION:TS -OCSP_RESPONSE_it 1477 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_RESPONSE_it 1477 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -BIO_number_written 1478 1_1_0d EXIST::FUNCTION: -X509v3_get_ext_by_OBJ 1479 1_1_0d EXIST::FUNCTION: -NCONF_load 1480 1_1_0d EXIST::FUNCTION: -ERR_load_CONF_strings 1481 1_1_0d EXIST::FUNCTION: -BN_mod_lshift1_quick 1482 1_1_0d EXIST::FUNCTION: -OCSP_CERTID_free 1483 1_1_0d EXIST::FUNCTION:OCSP -BN_BLINDING_get_flags 1484 1_1_0d EXIST::FUNCTION: -d2i_TS_STATUS_INFO 1485 1_1_0d EXIST::FUNCTION:TS -d2i_OCSP_RESPONSE 1486 1_1_0d EXIST::FUNCTION:OCSP -i2d_PBEPARAM 1487 1_1_0d EXIST::FUNCTION: -BIO_set_cipher 1488 1_1_0d EXIST::FUNCTION: -X509_REQ_set_subject_name 1489 1_1_0d EXIST::FUNCTION: -SDF_FreeECCCipher 1490 1_1_0d EXIST::FUNCTION:SDF -EVP_CIPHER_key_length 1491 1_1_0d EXIST::FUNCTION: -SXNET_get_id_ulong 1492 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_time 1493 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_create_by_txt 1494 1_1_0d EXIST::FUNCTION: -OTHERNAME_free 1495 1_1_0d EXIST::FUNCTION: -Camellia_cfb8_encrypt 1496 1_1_0d EXIST::FUNCTION:CAMELLIA -sm3_final 1497 1_1_0d EXIST::FUNCTION:SM3 -TS_TST_INFO_get_time 1498 1_1_0d EXIST::FUNCTION:TS -MD2_Final 1499 1_1_0d EXIST::FUNCTION:MD2 -X509_ALGOR_set0 1500 1_1_0d EXIST::FUNCTION: -d2i_PKCS12_SAFEBAG 1501 1_1_0d EXIST::FUNCTION: -d2i_ISSUING_DIST_POINT 1502 1_1_0d EXIST::FUNCTION: -EC_POINT_new 1503 1_1_0d EXIST::FUNCTION:EC -i2o_SCT_LIST 1504 1_1_0d EXIST::FUNCTION:CT -SDF_ReleasePrivateKeyAccessRight 1505 1_1_0d EXIST::FUNCTION: -SCT_get0_signature 1506 1_1_0d EXIST::FUNCTION:CT -SAF_Base64_Decode 1507 1_1_0d EXIST::FUNCTION: -TS_ACCURACY_get_micros 1508 1_1_0d EXIST::FUNCTION:TS -X509V3_EXT_conf 1509 1_1_0d EXIST::FUNCTION: -EVP_PKEY_decrypt 1510 1_1_0d EXIST::FUNCTION: -s2i_ASN1_INTEGER 1511 1_1_0d EXIST::FUNCTION: -d2i_PAILLIER_PUBKEY 1512 1_1_0d EXIST::FUNCTION:PAILLIER -SDF_ImportKeyWithKEK 1513 1_1_0d EXIST::FUNCTION: -TS_REQ_new 1514 1_1_0d EXIST::FUNCTION:TS -i2d_SM9Ciphertext_bio 1515 1_1_0d EXIST::FUNCTION:SM9 -X509_policy_tree_free 1516 1_1_0d EXIST::FUNCTION: -EVP_sms4_cfb8 1517 1_1_0d EXIST::FUNCTION:SMS4 -i2d_TS_TST_INFO_fp 1518 1_1_0d EXIST::FUNCTION:STDIO,TS -ASN1_TIME_check 1519 1_1_0d EXIST::FUNCTION: -X509_ALGORS_it 1520 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_ALGORS_it 1520 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_free 1521 1_1_0d EXIST::FUNCTION: -ENGINE_get_digest 1522 1_1_0d EXIST::FUNCTION:ENGINE -d2i_ECDSA_SIG 1523 1_1_0d EXIST::FUNCTION:EC -DSA_meth_get0_name 1524 1_1_0d EXIST::FUNCTION:DSA -X509V3_EXT_print_fp 1525 1_1_0d EXIST::FUNCTION:STDIO -SDF_PrintRSAPublicKey 1526 1_1_0d EXIST::FUNCTION:SDF -i2d_TS_MSG_IMPRINT_bio 1527 1_1_0d EXIST::FUNCTION:TS -d2i_PKCS8PrivateKey_bio 1528 1_1_0d EXIST::FUNCTION: -ENGINE_get_init_function 1529 1_1_0d EXIST::FUNCTION:ENGINE -X509_get_extension_flags 1530 1_1_0d EXIST::FUNCTION: -BIO_f_nbio_test 1531 1_1_0d EXIST::FUNCTION: -ASN1_STRING_TABLE_get 1532 1_1_0d EXIST::FUNCTION: -SOF_GetCertInfoByOid 1533 1_1_0d EXIST::FUNCTION: -AUTHORITY_KEYID_it 1534 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -AUTHORITY_KEYID_it 1534 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_cbc128_encrypt 1535 1_1_0d EXIST::FUNCTION: -PBE2PARAM_new 1536 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_verify 1537 1_1_0d EXIST::FUNCTION: -PEM_X509_INFO_write_bio 1538 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_encrypt 1539 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_get0_issuer 1540 1_1_0d EXIST::FUNCTION:CT -d2i_SM2CiphertextValue 1541 1_1_0d EXIST::FUNCTION:SM2 -Camellia_ctr128_encrypt 1542 1_1_0d EXIST::FUNCTION:CAMELLIA -BN_get0_nist_prime_521 1543 1_1_0d EXIST::FUNCTION: -i2d_DSA_PUBKEY_bio 1544 1_1_0d EXIST::FUNCTION:DSA -ERR_load_CT_strings 1545 1_1_0d EXIST::FUNCTION:CT -NETSCAPE_CERT_SEQUENCE_new 1546 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_get0 1547 1_1_0d EXIST::FUNCTION: -CRYPTO_set_mem_functions 1548 1_1_0d EXIST::FUNCTION: -RSA_PSS_PARAMS_new 1549 1_1_0d EXIST::FUNCTION:RSA -TS_RESP_set_tst_info 1550 1_1_0d EXIST::FUNCTION:TS -X509_SIG_getm 1551 1_1_0d EXIST::FUNCTION: -d2i_ECPrivateKey_bio 1552 1_1_0d EXIST::FUNCTION:EC -X509_get0_pubkey_bitstr 1553 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_is_zero 1554 1_1_0d EXIST::FUNCTION:SM2 -X509_STORE_set_purpose 1555 1_1_0d EXIST::FUNCTION: -X509_REQ_add1_attr_by_NID 1556 1_1_0d EXIST::FUNCTION: -X509_CRL_get_ext 1557 1_1_0d EXIST::FUNCTION: -d2i_CMS_ContentInfo 1558 1_1_0d EXIST::FUNCTION:CMS -USERNOTICE_it 1559 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -USERNOTICE_it 1559 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -b2i_PublicKey_bio 1560 1_1_0d EXIST::FUNCTION:DSA -SOF_GetDeviceInfo 1561 1_1_0d EXIST::FUNCTION: -EVP_PKEY_copy_parameters 1562 1_1_0d EXIST::FUNCTION: -SKF_EncryptUpdate 1563 1_1_0d EXIST::FUNCTION:SKF -SDF_HashFinal 1564 1_1_0d EXIST::FUNCTION: -X509_sign 1565 1_1_0d EXIST::FUNCTION: -X509v3_addr_is_canonical 1566 1_1_0d EXIST::FUNCTION:RFC3779 -NOTICEREF_free 1567 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_fp 1568 1_1_0d EXIST::FUNCTION:STDIO -OCSP_check_validity 1569 1_1_0d EXIST::FUNCTION:OCSP -SAF_GenRsaKeyPair 1570 1_1_0d EXIST::FUNCTION: -PKCS7_ENCRYPT_new 1571 1_1_0d EXIST::FUNCTION: -Camellia_decrypt 1572 1_1_0d EXIST::FUNCTION:CAMELLIA -DH_size 1573 1_1_0d EXIST::FUNCTION:DH -MD5_Final 1574 1_1_0d EXIST::FUNCTION:MD5 -CONF_imodule_get_usr_data 1575 1_1_0d EXIST::FUNCTION: -i2d_re_X509_CRL_tbs 1576 1_1_0d EXIST::FUNCTION: -RSA_new 1577 1_1_0d EXIST::FUNCTION:RSA -SAF_EccSignFile 1578 1_1_0d EXIST::FUNCTION:SAF -EVP_idea_cbc 1579 1_1_0d EXIST::FUNCTION:IDEA -X509_ALGOR_free 1580 1_1_0d EXIST::FUNCTION: -EVP_seed_ecb 1581 1_1_0d EXIST::FUNCTION:SEED -OCSP_request_set1_name 1582 1_1_0d EXIST::FUNCTION:OCSP -X509_set_version 1583 1_1_0d EXIST::FUNCTION: -EC_KEY_oct2priv 1584 1_1_0d EXIST::FUNCTION:EC -SRP_get_default_gN 1585 1_1_0d EXIST::FUNCTION:SRP -BN_rand_range 1586 1_1_0d EXIST::FUNCTION: -PKCS7_ISSUER_AND_SERIAL_digest 1587 1_1_0d EXIST::FUNCTION: -CERTIFICATEPOLICIES_new 1588 1_1_0d EXIST::FUNCTION: -AES_ofb128_encrypt 1589 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get_attr 1590 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_cert 1591 1_1_0d EXIST::FUNCTION: -TS_REQ_delete_ext 1592 1_1_0d EXIST::FUNCTION:TS -i2d_ACCESS_DESCRIPTION 1593 1_1_0d EXIST::FUNCTION: -d2i_PKEY_USAGE_PERIOD 1594 1_1_0d EXIST::FUNCTION: -i2d_BB1PrivateKeyBlock 1595 1_1_0d EXIST::FUNCTION:BB1IBE -MD4_Update 1596 1_1_0d EXIST::FUNCTION:MD4 -FFX_CTX_free 1597 1_1_0d EXIST::FUNCTION: -UI_method_get_closer 1598 1_1_0d EXIST::FUNCTION:UI -BN_is_prime_fasttest_ex 1599 1_1_0d EXIST::FUNCTION: -ERR_load_DSO_strings 1600 1_1_0d EXIST::FUNCTION: -BIO_s_mem 1601 1_1_0d EXIST::FUNCTION: -ASIdOrRange_new 1602 1_1_0d EXIST::FUNCTION:RFC3779 -RSA_new_from_RSArefPrivateKey 1603 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -DIST_POINT_new 1604 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_current_issuer 1605 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_default 1606 1_1_0d EXIST::FUNCTION: -OCSP_request_is_signed 1607 1_1_0d EXIST::FUNCTION:OCSP -i2d_DSAPrivateKey 1608 1_1_0d EXIST::FUNCTION:DSA -X509_NAME_get_text_by_OBJ 1609 1_1_0d EXIST::FUNCTION: -PEM_get_EVP_CIPHER_INFO 1610 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_set1_req 1611 1_1_0d EXIST::FUNCTION:OCSP -BN_security_bits 1612 1_1_0d EXIST::FUNCTION: -X509_NAME_oneline 1613 1_1_0d EXIST::FUNCTION: -BB1PublicParameters_new 1614 1_1_0d EXIST::FUNCTION:BB1IBE -BIO_vprintf 1615 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_free 1616 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_get_ext 1617 1_1_0d EXIST::FUNCTION:OCSP -ENGINE_set_default_DSA 1618 1_1_0d EXIST::FUNCTION:ENGINE -i2d_SM9Signature 1619 1_1_0d EXIST::FUNCTION:SM9 -X509_REQ_get_signature_nid 1620 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_app_datasize 1621 1_1_0d EXIST::FUNCTION: -SAF_GetCaCertificateCount 1622 1_1_0d EXIST::FUNCTION: -RSA_new_method 1623 1_1_0d EXIST::FUNCTION:RSA -ASN1_STRING_set 1624 1_1_0d EXIST::FUNCTION: -BIO_pop 1625 1_1_0d EXIST::FUNCTION: -PKCS5_v2_scrypt_keyivgen 1626 1_1_0d EXIST::FUNCTION:SCRYPT -RC5_32_encrypt 1627 1_1_0d EXIST::FUNCTION:RC5 -EVP_des_ede3_wrap 1628 1_1_0d EXIST::FUNCTION:DES -SDF_CloseDevice 1629 1_1_0d EXIST::FUNCTION: -BN_mul_word 1630 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_PAILLIER 1631 1_1_0d EXIST::FUNCTION:PAILLIER -i2d_TS_TST_INFO 1632 1_1_0d EXIST::FUNCTION:TS -UI_get_ex_data 1633 1_1_0d EXIST::FUNCTION:UI -BIO_ctrl_wpending 1634 1_1_0d EXIST::FUNCTION: -ASN1_mbstring_copy 1635 1_1_0d EXIST::FUNCTION: -SOF_SignMessageDetach 1636 1_1_0d EXIST::FUNCTION: -AES_set_decrypt_key 1637 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_free 1638 1_1_0d EXIST::FUNCTION: -X509_REQ_get_extensions 1639 1_1_0d EXIST::FUNCTION: -ASN1_STRING_to_UTF8 1640 1_1_0d EXIST::FUNCTION: -PKCS1_MGF1 1641 1_1_0d EXIST::FUNCTION:RSA -PKCS7_ISSUER_AND_SERIAL_it 1642 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ISSUER_AND_SERIAL_it 1642 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DSA_meth_dup 1643 1_1_0d EXIST::FUNCTION:DSA -RSA_meth_get_priv_dec 1644 1_1_0d EXIST::FUNCTION:RSA -i2d_PKCS8PrivateKey_nid_fp 1645 1_1_0d EXIST::FUNCTION:STDIO -EVP_PBE_alg_add_type 1646 1_1_0d EXIST::FUNCTION: -i2d_BFCiphertextBlock 1647 1_1_0d EXIST::FUNCTION:BFIBE -ASN1_STRING_dup 1648 1_1_0d EXIST::FUNCTION: -BIO_clear_flags 1649 1_1_0d EXIST::FUNCTION: -BIO_socket_nbio 1650 1_1_0d EXIST::FUNCTION:SOCK -ENGINE_new 1651 1_1_0d EXIST::FUNCTION:ENGINE -SAF_EnumKeyContainerInfoFree 1652 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_adj 1653 1_1_0d EXIST::FUNCTION: -EVP_PKEY_print_public 1654 1_1_0d EXIST::FUNCTION: -RSA_clear_flags 1655 1_1_0d EXIST::FUNCTION:RSA -X509_STORE_get_cleanup 1656 1_1_0d EXIST::FUNCTION: -UI_method_set_closer 1657 1_1_0d EXIST::FUNCTION:UI -MDC2_Update 1658 1_1_0d EXIST::FUNCTION:MDC2 -BN_add_word 1659 1_1_0d EXIST::FUNCTION: -BIO_nread0 1660 1_1_0d EXIST::FUNCTION: -sm3 1661 1_1_0d EXIST::FUNCTION:SM3 -X509_cmp_current_time 1662 1_1_0d EXIST::FUNCTION: -DSA_meth_set_finish 1663 1_1_0d EXIST::FUNCTION:DSA -EVP_md_null 1664 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_certs 1665 1_1_0d EXIST::FUNCTION:TS -GENERAL_NAMES_free 1666 1_1_0d EXIST::FUNCTION: -X509_CRL_sort 1667 1_1_0d EXIST::FUNCTION: -EVP_camellia_192_ofb 1668 1_1_0d EXIST::FUNCTION:CAMELLIA -X509v3_addr_validate_resource_set 1669 1_1_0d EXIST::FUNCTION:RFC3779 -TS_RESP_CTX_add_flags 1670 1_1_0d EXIST::FUNCTION:TS -BN_mod_exp 1671 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_flags 1672 1_1_0d EXIST::FUNCTION: -TS_ACCURACY_get_seconds 1673 1_1_0d EXIST::FUNCTION:TS -X509_OBJECT_get_type 1674 1_1_0d EXIST::FUNCTION: -BB1PublicParameters_it 1675 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1PublicParameters_it 1675 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -SOF_DelCertTrustList 1676 1_1_0d EXIST::FUNCTION: -RSA_X931_hash_id 1677 1_1_0d EXIST::FUNCTION:RSA -SM9_compute_share_key_A 1678 1_1_0d EXIST::FUNCTION:SM9 -BN_clear_bit 1679 1_1_0d EXIST::FUNCTION: -EVP_camellia_256_ofb 1680 1_1_0d EXIST::FUNCTION:CAMELLIA -ASN1_IA5STRING_it 1681 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_IA5STRING_it 1681 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_bf_ecb 1682 1_1_0d EXIST::FUNCTION:BF -SKF_ExtECCEncrypt 1683 1_1_0d EXIST::FUNCTION:SKF -PEM_do_header 1684 1_1_0d EXIST::FUNCTION: -UI_add_input_string 1685 1_1_0d EXIST::FUNCTION:UI -X509_CRL_get_meth_data 1686 1_1_0d EXIST::FUNCTION: -TS_X509_ALGOR_print_bio 1687 1_1_0d EXIST::FUNCTION:TS -OCSP_crl_reason_str 1688 1_1_0d EXIST::FUNCTION:OCSP -X509_STORE_CTX_get0_untrusted 1689 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_set_oid_flags 1690 1_1_0d EXIST::FUNCTION: -X509at_get0_data_by_OBJ 1691 1_1_0d EXIST::FUNCTION: -X509_NAME_hash 1692 1_1_0d EXIST::FUNCTION: -PKCS7_RECIP_INFO_get0_alg 1693 1_1_0d EXIST::FUNCTION: -SAF_VerifySignByCert 1694 1_1_0d EXIST::FUNCTION: -CONF_load_fp 1695 1_1_0d EXIST::FUNCTION:STDIO -X509_VERIFY_PARAM_set1_ip 1696 1_1_0d EXIST::FUNCTION: -PEM_write_NETSCAPE_CERT_SEQUENCE 1697 1_1_0d EXIST::FUNCTION:STDIO -X509_STORE_get_lookup_crls 1698 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_set_padding 1699 1_1_0d EXIST::FUNCTION: -X509_set_pubkey 1700 1_1_0d EXIST::FUNCTION: -TS_REQ_get_exts 1701 1_1_0d EXIST::FUNCTION:TS -d2i_PKCS8_PRIV_KEY_INFO 1702 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_free 1703 1_1_0d EXIST::FUNCTION:EC -SKF_ExtRSAPriKeyOperation 1704 1_1_0d EXIST::FUNCTION:SKF -SMIME_crlf_copy 1705 1_1_0d EXIST::FUNCTION: -SAF_SymmEncryptFinal 1706 1_1_0d EXIST::FUNCTION: -BN_num_bits 1707 1_1_0d EXIST::FUNCTION: -COMP_get_type 1708 1_1_0d EXIST::FUNCTION:COMP -RSA_padding_check_X931 1709 1_1_0d EXIST::FUNCTION:RSA -PEM_write_bio_PKCS8 1710 1_1_0d EXIST::FUNCTION: -o2i_SCT 1711 1_1_0d EXIST::FUNCTION:CT -EVP_PBE_get 1712 1_1_0d EXIST::FUNCTION: -SOF_SignMessage 1713 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_flags 1714 1_1_0d EXIST::FUNCTION: -X509V3_EXT_REQ_add_nconf 1715 1_1_0d EXIST::FUNCTION: -SCT_get_version 1716 1_1_0d EXIST::FUNCTION:CT -BB1MasterSecret_new 1717 1_1_0d EXIST::FUNCTION:BB1IBE -BIO_new_accept 1718 1_1_0d EXIST::FUNCTION:SOCK -EC_KEY_set_default_method 1719 1_1_0d EXIST::FUNCTION:EC -X509_CRL_get0_nextUpdate 1720 1_1_0d EXIST::FUNCTION: -EC_KEY_get_ex_data 1721 1_1_0d EXIST::FUNCTION:EC -PBE2PARAM_free 1722 1_1_0d EXIST::FUNCTION: -X509_CERT_AUX_it 1723 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CERT_AUX_it 1723 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_CTX_start 1724 1_1_0d EXIST::FUNCTION: -ENGINE_up_ref 1725 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_INTEGER_dup 1726 1_1_0d EXIST::FUNCTION: -SKF_CloseContainer 1727 1_1_0d EXIST::FUNCTION:SKF -SOF_GetXMLSignatureInfo 1728 1_1_0d EXIST::FUNCTION: -CMS_SharedInfo_encode 1729 1_1_0d EXIST::FUNCTION:CMS -i2d_PKCS12_bio 1730 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_set1 1731 1_1_0d EXIST::FUNCTION: -DES_ede3_cfb_encrypt 1732 1_1_0d EXIST::FUNCTION:DES -NAME_CONSTRAINTS_it 1733 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NAME_CONSTRAINTS_it 1733 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BIO_snprintf 1734 1_1_0d EXIST::FUNCTION: -EVP_PKEY_set1_EC_KEY 1735 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_get_ex_data 1736 1_1_0d EXIST::FUNCTION: -ERR_add_error_vdata 1737 1_1_0d EXIST::FUNCTION: -RSA_get_RSAPRIVATEKEYBLOB 1738 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -X509_http_nbio 1739 1_1_0d EXIST::FUNCTION:OCSP -i2d_TS_MSG_IMPRINT_fp 1740 1_1_0d EXIST::FUNCTION:STDIO,TS -CMS_SignerInfo_get0_signature 1741 1_1_0d EXIST::FUNCTION:CMS -UI_get0_result_string 1742 1_1_0d EXIST::FUNCTION:UI -X509_get0_notBefore 1743 1_1_0d EXIST::FUNCTION: -ECIES_PARAMS_get_mac 1744 1_1_0d EXIST::FUNCTION:ECIES -FFX_CTX_new 1745 1_1_0d EXIST::FUNCTION: -X509V3_EXT_get_nid 1746 1_1_0d EXIST::FUNCTION: -EVP_aes_128_wrap 1747 1_1_0d EXIST::FUNCTION: -PKCS7_dataFinal 1748 1_1_0d EXIST::FUNCTION: -ERR_load_OCSP_strings 1749 1_1_0d EXIST::FUNCTION:OCSP -ERR_load_KDF2_strings 1750 1_1_0d EXIST::FUNCTION: -RC5_32_ecb_encrypt 1751 1_1_0d EXIST::FUNCTION:RC5 -SDF_LoadLibrary 1752 1_1_0d EXIST::FUNCTION:SDF -RSA_padding_add_PKCS1_PSS 1753 1_1_0d EXIST::FUNCTION:RSA -BN_pseudo_rand 1754 1_1_0d EXIST::FUNCTION: -TS_RESP_new 1755 1_1_0d EXIST::FUNCTION:TS -BIO_ptr_ctrl 1756 1_1_0d EXIST::FUNCTION: -serpent_set_decrypt_key 1757 1_1_0d EXIST::FUNCTION:SERPENT -X509_get0_serialNumber 1758 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_param_to_asn1 1759 1_1_0d EXIST::FUNCTION: -DSA_meth_set_mod_exp 1760 1_1_0d EXIST::FUNCTION:DSA -X509_supported_extension 1761 1_1_0d EXIST::FUNCTION: -SDF_CreateFile 1762 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_current_cert 1763 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get1_ext_d2i 1764 1_1_0d EXIST::FUNCTION:OCSP -EVP_CIPHER_CTX_original_iv 1765 1_1_0d EXIST::FUNCTION: -ECPKParameters_print 1766 1_1_0d EXIST::FUNCTION:EC -d2i_BFCiphertextBlock 1767 1_1_0d EXIST::FUNCTION:BFIBE -EVP_get_digestnames 1768 1_1_0d EXIST::FUNCTION: -SKF_GenerateKeyWithECC 1769 1_1_0d EXIST::FUNCTION:SKF -OpenSSL_version 1770 1_1_0d EXIST::FUNCTION: -ESS_CERT_ID_dup 1771 1_1_0d EXIST::FUNCTION:TS -CMS_SignerInfo_verify 1772 1_1_0d EXIST::FUNCTION:CMS -SCT_set0_extensions 1773 1_1_0d EXIST::FUNCTION:CT -X509_new 1774 1_1_0d EXIST::FUNCTION: -DSA_meth_free 1775 1_1_0d EXIST::FUNCTION:DSA -EVP_MD_CTX_md 1776 1_1_0d EXIST::FUNCTION: -RSA_get0_engine 1777 1_1_0d EXIST::FUNCTION:RSA -d2i_IPAddressRange 1778 1_1_0d EXIST::FUNCTION:RFC3779 -CMAC_Final 1779 1_1_0d EXIST::FUNCTION:CMAC -SKF_GetErrorString 1780 1_1_0d EXIST::FUNCTION:SKF -CMS_unsigned_add1_attr 1781 1_1_0d EXIST::FUNCTION:CMS -i2d_PKCS7_SIGNER_INFO 1782 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_get_pubkey 1783 1_1_0d EXIST::FUNCTION: -X509V3_get_string 1784 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_div 1785 1_1_0d EXIST::FUNCTION:EC2M -d2i_ASN1_VISIBLESTRING 1786 1_1_0d EXIST::FUNCTION: -OCSP_SERVICELOC_it 1787 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_SERVICELOC_it 1787 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -EC_GROUP_get_asn1_flag 1788 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_cleanup 1789 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_add0 1790 1_1_0d EXIST::FUNCTION: -SAF_CreateSymmKeyObj 1791 1_1_0d EXIST::FUNCTION: -DH_meth_set1_name 1792 1_1_0d EXIST::FUNCTION:DH -TS_CONF_load_cert 1793 1_1_0d EXIST::FUNCTION:TS -SAF_SymmEncryptUpdate 1794 1_1_0d EXIST::FUNCTION: -ERR_get_state 1795 1_1_0d EXIST::FUNCTION: -X509_verify 1796 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_set0_keygen_info 1797 1_1_0d EXIST::FUNCTION: -speck_decrypt32 1798 1_1_0d EXIST::FUNCTION:SPECK -CRYPTO_ocb128_tag 1799 1_1_0d EXIST::FUNCTION:OCB -DH_get_length 1800 1_1_0d EXIST::FUNCTION:DH -CMS_add1_crl 1801 1_1_0d EXIST::FUNCTION:CMS -BIO_get_retry_BIO 1802 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get_default_digest_nid 1803 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_EncodeData 1804 1_1_0d EXIST::FUNCTION: -PEM_read_RSAPrivateKey 1805 1_1_0d EXIST::FUNCTION:RSA,STDIO -TXT_DB_free 1806 1_1_0d EXIST::FUNCTION: -ASN1_str2mask 1807 1_1_0d EXIST::FUNCTION: -EC_GROUP_have_precompute_mult 1808 1_1_0d EXIST::FUNCTION:EC -X509_load_cert_crl_file 1809 1_1_0d EXIST::FUNCTION: -X509_getm_notAfter 1810 1_1_0d EXIST::FUNCTION: -DES_check_key_parity 1811 1_1_0d EXIST::FUNCTION:DES -SDF_WriteFile 1812 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_new 1813 1_1_0d EXIST::FUNCTION:OCSP -SM9_wrap_key 1814 1_1_0d EXIST::FUNCTION:SM9 -OBJ_find_sigid_algs 1815 1_1_0d EXIST::FUNCTION: -BIO_meth_get_puts 1816 1_1_0d EXIST::FUNCTION: -EVP_PKEY_paramgen 1817 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_cfb8 1818 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_DecryptFinal_ex 1819 1_1_0d EXIST::FUNCTION: -X509_STORE_set_lookup_certs 1820 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_DecodeSignedData 1821 1_1_0d EXIST::FUNCTION: -IDEA_ecb_encrypt 1822 1_1_0d EXIST::FUNCTION:IDEA -BN_mod_add 1823 1_1_0d EXIST::FUNCTION: -SKF_ECCVerify 1824 1_1_0d EXIST::FUNCTION:SKF -PKCS7_ENCRYPT_free 1825 1_1_0d EXIST::FUNCTION: -i2d_OCSP_RESPONSE 1826 1_1_0d EXIST::FUNCTION:OCSP -OCSP_REQUEST_print 1827 1_1_0d EXIST::FUNCTION:OCSP -X509_VERIFY_PARAM_move_peername 1828 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_get_ext_by_critical 1829 1_1_0d EXIST::FUNCTION:OCSP -SM9_VerifyFinal 1830 1_1_0d EXIST::FUNCTION:SM9 -ASYNC_WAIT_CTX_set_wait_fd 1831 1_1_0d EXIST::FUNCTION: -DSA_meth_get_init 1832 1_1_0d EXIST::FUNCTION:DSA -OPENSSL_sk_dup 1833 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_free 1834 1_1_0d EXIST::FUNCTION: -ENGINE_set_digests 1835 1_1_0d EXIST::FUNCTION:ENGINE -PEM_read_bio_ECPrivateKey 1836 1_1_0d EXIST::FUNCTION:EC -OPENSSL_LH_stats 1837 1_1_0d EXIST::FUNCTION:STDIO -i2d_NETSCAPE_SPKAC 1838 1_1_0d EXIST::FUNCTION: -speck_encrypt32 1839 1_1_0d EXIST::FUNCTION:SPECK -TS_MSG_IMPRINT_print_bio 1840 1_1_0d EXIST::FUNCTION:TS -i2d_CPK_PUBLIC_PARAMS 1841 1_1_0d EXIST::FUNCTION:CPK -DSA_meth_get_verify 1842 1_1_0d EXIST::FUNCTION:DSA -PEM_def_callback 1843 1_1_0d EXIST::FUNCTION: -CMS_set_detached 1844 1_1_0d EXIST::FUNCTION:CMS -OCSP_resp_get0_produced_at 1845 1_1_0d EXIST::FUNCTION:OCSP -SCT_set_timestamp 1846 1_1_0d EXIST::FUNCTION:CT -SHA1_Transform 1847 1_1_0d EXIST::FUNCTION: -TS_REQ_set_nonce 1848 1_1_0d EXIST::FUNCTION:TS -err_free_strings_int 1849 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_ciphertext_length 1850 1_1_0d EXIST::FUNCTION:ECIES -BIO_meth_set_gets 1851 1_1_0d EXIST::FUNCTION: -POLICY_CONSTRAINTS_it 1852 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICY_CONSTRAINTS_it 1852 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_DigestVerifyFinal 1853 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_get_uint64 1854 1_1_0d EXIST::FUNCTION: -UI_get0_action_string 1855 1_1_0d EXIST::FUNCTION:UI -SM9_KEY_free 1856 1_1_0d EXIST::FUNCTION:SM9 -SDF_ExportEncPublicKey_RSA 1857 1_1_0d EXIST::FUNCTION: -PKCS12_unpack_authsafes 1858 1_1_0d EXIST::FUNCTION: -BN_mask_bits 1859 1_1_0d EXIST::FUNCTION: -OPENSSL_strlcat 1860 1_1_0d EXIST::FUNCTION: -BIO_push 1861 1_1_0d EXIST::FUNCTION: -PEM_read_X509_REQ 1862 1_1_0d EXIST::FUNCTION:STDIO -X509_ATTRIBUTE_count 1863 1_1_0d EXIST::FUNCTION: -X509_CRL_get_lastUpdate 1864 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -SKF_ExtECCSign 1865 1_1_0d EXIST::FUNCTION:SKF -BN_GFP2_exp 1866 1_1_0d EXIST::FUNCTION: -SAF_SM2_EncodeSignedData 1867 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_free 1868 1_1_0d EXIST::FUNCTION: -ASYNC_is_capable 1869 1_1_0d EXIST::FUNCTION: -ASN1_d2i_fp 1870 1_1_0d EXIST::FUNCTION:STDIO -CMS_EnvelopedData_create 1871 1_1_0d EXIST::FUNCTION:CMS -ENGINE_get_destroy_function 1872 1_1_0d EXIST::FUNCTION:ENGINE -GENERAL_NAMES_new 1873 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_ctrl 1874 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_lookup_crls 1875 1_1_0d EXIST::FUNCTION: -SKF_DigestInit 1876 1_1_0d EXIST::FUNCTION:SKF -PKCS12_unpack_p7encdata 1877 1_1_0d EXIST::FUNCTION: -d2i_SM9_PUBKEY 1878 1_1_0d EXIST::FUNCTION:SM9 -X509_VERIFY_PARAM_get0_peername 1879 1_1_0d EXIST::FUNCTION: -RSA_meth_free 1880 1_1_0d EXIST::FUNCTION:RSA -EVP_aes_128_xts 1881 1_1_0d EXIST::FUNCTION: -BN_mod_exp_mont_consttime 1882 1_1_0d EXIST::FUNCTION: -SM2_do_encrypt 1883 1_1_0d EXIST::FUNCTION:SM2 -ASN1_TYPE_get_int_octetstring 1884 1_1_0d EXIST::FUNCTION: -DSA_meth_get_sign 1885 1_1_0d EXIST::FUNCTION:DSA -speck_encrypt64 1886 1_1_0d EXIST::FUNCTION:SPECK -ASN1_STRING_print_ex 1887 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_get0 1888 1_1_0d EXIST::FUNCTION: -sm3_hmac_init 1889 1_1_0d EXIST::FUNCTION:SM3 -CMS_unsigned_get_attr 1890 1_1_0d EXIST::FUNCTION:CMS -PKCS7_SIGNER_INFO_set 1891 1_1_0d EXIST::FUNCTION: -i2d_DIST_POINT_NAME 1892 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_generator 1893 1_1_0d EXIST::FUNCTION:EC -CPK_MASTER_SECRET_free 1894 1_1_0d EXIST::FUNCTION:CPK -DSA_get0_engine 1895 1_1_0d EXIST::FUNCTION:DSA -X509V3_parse_list 1896 1_1_0d EXIST::FUNCTION: -X509_get_issuer_name 1897 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get0 1898 1_1_0d EXIST::FUNCTION: -PKCS7_add1_attrib_digest 1899 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_delete_ext 1900 1_1_0d EXIST::FUNCTION:OCSP -TS_STATUS_INFO_free 1901 1_1_0d EXIST::FUNCTION:TS -DSA_SIG_new 1902 1_1_0d EXIST::FUNCTION:DSA -X509_get0_subject_key_id 1903 1_1_0d EXIST::FUNCTION: -RSA_meth_set_priv_dec 1904 1_1_0d EXIST::FUNCTION:RSA -BN_asc2bn 1905 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_init 1906 1_1_0d EXIST::FUNCTION: -d2i_X509_NAME_ENTRY 1907 1_1_0d EXIST::FUNCTION: -CRL_DIST_POINTS_it 1908 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -CRL_DIST_POINTS_it 1908 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PKCS7_new 1909 1_1_0d EXIST::FUNCTION: -BIO_meth_get_create 1910 1_1_0d EXIST::FUNCTION: -WHIRLPOOL_Update 1911 1_1_0d EXIST::FUNCTION:WHIRLPOOL -SRP_Verify_B_mod_N 1912 1_1_0d EXIST::FUNCTION:SRP -ECIES_PARAMS_init_with_type 1913 1_1_0d EXIST::FUNCTION:ECIES -SDF_GenerateAgreementDataAndKeyWithECC 1914 1_1_0d EXIST::FUNCTION: -CRYPTO_realloc 1915 1_1_0d EXIST::FUNCTION: -X509_CRL_get_ext_by_critical 1916 1_1_0d EXIST::FUNCTION: -ENGINE_get_ex_data 1917 1_1_0d EXIST::FUNCTION:ENGINE -EVP_CIPHER_CTX_iv_length 1918 1_1_0d EXIST::FUNCTION: -OBJ_NAME_do_all_sorted 1919 1_1_0d EXIST::FUNCTION: -PKCS7_DIGEST_free 1920 1_1_0d EXIST::FUNCTION: -DES_encrypt3 1921 1_1_0d EXIST::FUNCTION:DES -d2i_SM2CiphertextValue_bio 1922 1_1_0d EXIST::FUNCTION:SM2 -DES_ofb64_encrypt 1923 1_1_0d EXIST::FUNCTION:DES -X509V3_set_conf_lhash 1924 1_1_0d EXIST::FUNCTION: -EVP_DigestInit 1925 1_1_0d EXIST::FUNCTION: -PEM_write_bio_SM9_MASTER_PUBKEY 1926 1_1_0d EXIST::FUNCTION:SM9 -EC_GROUP_new_from_ecpkparameters 1927 1_1_0d EXIST::FUNCTION:EC -ASN1_STRING_cmp 1928 1_1_0d EXIST::FUNCTION: -GENERAL_SUBTREE_it 1929 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -GENERAL_SUBTREE_it 1929 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_cast5_ecb 1930 1_1_0d EXIST::FUNCTION:CAST -ENGINE_get_EC 1931 1_1_0d EXIST::FUNCTION:ENGINE -OPENSSL_sk_find_ex 1932 1_1_0d EXIST::FUNCTION: -ERR_peek_last_error_line 1933 1_1_0d EXIST::FUNCTION: -X509_get_ext_by_critical 1934 1_1_0d EXIST::FUNCTION: -CRYPTO_clear_free 1935 1_1_0d EXIST::FUNCTION: -ERR_load_BUF_strings 1936 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_clear_flags 1937 1_1_0d EXIST::FUNCTION: -OCSP_resp_get0_signature 1938 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_set_issuer_name 1939 1_1_0d EXIST::FUNCTION: -i2d_X509_ALGORS 1940 1_1_0d EXIST::FUNCTION: -TS_ACCURACY_free 1941 1_1_0d EXIST::FUNCTION:TS -EC_KEY_METHOD_get_sign 1942 1_1_0d EXIST::FUNCTION:EC -EC_POINT_hex2point 1943 1_1_0d EXIST::FUNCTION:EC -CMAC_CTX_free 1944 1_1_0d EXIST::FUNCTION:CMAC -EVP_PKEY_meth_get_derive 1945 1_1_0d EXIST::FUNCTION: -PEM_write_SM9PublicParameters 1946 1_1_0d EXIST::FUNCTION:SM9,STDIO -ASN1_INTEGER_new 1947 1_1_0d EXIST::FUNCTION: -i2d_ECIES_CIPHERTEXT_VALUE 1948 1_1_0d EXIST::FUNCTION:ECIES -BIO_socket_ioctl 1949 1_1_0d EXIST::FUNCTION:SOCK -EC_KEY_set_public_key_affine_coordinates 1950 1_1_0d EXIST::FUNCTION:EC -ECDSA_do_verify 1951 1_1_0d EXIST::FUNCTION:EC -NCONF_default 1952 1_1_0d EXIST::FUNCTION: -b2i_PrivateKey 1953 1_1_0d EXIST::FUNCTION:DSA -IPAddressFamily_new 1954 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_read_bio_PKCS8 1955 1_1_0d EXIST::FUNCTION: -EC_POINT_set_Jprojective_coordinates_GFp 1956 1_1_0d EXIST::FUNCTION:EC -i2d_RSAPrivateKey_fp 1957 1_1_0d EXIST::FUNCTION:RSA,STDIO -i2d_X509_fp 1958 1_1_0d EXIST::FUNCTION:STDIO -PROXY_POLICY_it 1959 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PROXY_POLICY_it 1959 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -sms4_encrypt_8blocks 1960 1_1_0d EXIST::FUNCTION:SMS4 -ENGINE_unregister_EC 1961 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_GENERALIZEDTIME_adj 1962 1_1_0d EXIST::FUNCTION: -SDF_NewECCCipher 1963 1_1_0d EXIST::FUNCTION:SDF -ENGINE_get_pkey_asn1_meth_str 1964 1_1_0d EXIST::FUNCTION:ENGINE -i2d_AUTHORITY_KEYID 1965 1_1_0d EXIST::FUNCTION: -OPENSSL_INIT_new 1966 1_1_0d EXIST::FUNCTION: -SRP_create_verifier_BN 1967 1_1_0d EXIST::FUNCTION:SRP -ENGINE_load_public_key 1968 1_1_0d EXIST::FUNCTION:ENGINE -PEM_write_PaillierPrivateKey 1969 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO -Camellia_cbc_encrypt 1970 1_1_0d EXIST::FUNCTION:CAMELLIA -AES_options 1971 1_1_0d EXIST::FUNCTION: -EVP_aes_256_ofb 1972 1_1_0d EXIST::FUNCTION: -SDF_PrintDeviceInfo 1973 1_1_0d EXIST::FUNCTION:SDF -speck_set_encrypt_key64 1974 1_1_0d EXIST::FUNCTION:SPECK -X509_VERIFY_PARAM_get0 1975 1_1_0d EXIST::FUNCTION: -i2d_PrivateKey 1976 1_1_0d EXIST::FUNCTION: -_shadow_DES_check_key 1977 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DES -_shadow_DES_check_key 1977 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DES -ENGINE_cmd_is_executable 1978 1_1_0d EXIST::FUNCTION:ENGINE -ECIES_CIPHERTEXT_VALUE_set_ECCCIPHERBLOB 1979 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF -X509_keyid_get0 1980 1_1_0d EXIST::FUNCTION: -BFPublicParameters_free 1981 1_1_0d EXIST::FUNCTION:BFIBE -ERR_load_ENGINE_strings 1982 1_1_0d EXIST::FUNCTION:ENGINE -BIO_sock_should_retry 1983 1_1_0d EXIST::FUNCTION:SOCK -CPK_MASTER_SECRET_extract_private_key 1984 1_1_0d EXIST::FUNCTION:CPK -CRYPTO_cfb128_encrypt 1985 1_1_0d EXIST::FUNCTION: -BIO_ctrl_pending 1986 1_1_0d EXIST::FUNCTION: -SOF_CreateTimeStampRequest 1987 1_1_0d EXIST::FUNCTION: -X509_check_trust 1988 1_1_0d EXIST::FUNCTION: -ISSUING_DIST_POINT_new 1989 1_1_0d EXIST::FUNCTION: -EVP_get_pw_prompt 1990 1_1_0d EXIST::FUNCTION:UI -DSA_get_default_method 1991 1_1_0d EXIST::FUNCTION:DSA -TS_RESP_CTX_set_signer_cert 1992 1_1_0d EXIST::FUNCTION:TS -RSA_security_bits 1993 1_1_0d EXIST::FUNCTION:RSA -RSA_verify_PKCS1_PSS 1994 1_1_0d EXIST::FUNCTION:RSA -ENGINE_get_default_RSA 1995 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_add1_attr_by_txt 1996 1_1_0d EXIST::FUNCTION: -d2i_PublicKey 1997 1_1_0d EXIST::FUNCTION: -TS_RESP_free 1998 1_1_0d EXIST::FUNCTION:TS -ERR_load_CMS_strings 1999 1_1_0d EXIST::FUNCTION:CMS -SHA224_Final 2000 1_1_0d EXIST::FUNCTION: -CRYPTO_free_ex_data 2001 1_1_0d EXIST::FUNCTION: -X509_PKEY_new 2002 1_1_0d EXIST::FUNCTION: -EVP_DigestUpdate 2003 1_1_0d EXIST::FUNCTION: -BFMasterSecret_new 2004 1_1_0d EXIST::FUNCTION:BFIBE -OCSP_request_onereq_get0 2005 1_1_0d EXIST::FUNCTION:OCSP -SM2CiphertextValue_set_ECCCipher 2006 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 -EVP_des_ede3_cbc 2007 1_1_0d EXIST::FUNCTION:DES -EVP_DecryptUpdate 2008 1_1_0d EXIST::FUNCTION: -BN_rshift1 2009 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_error 2010 1_1_0d EXIST::FUNCTION: -ERR_load_BB1IBE_strings 2011 1_1_0d EXIST::FUNCTION:BB1IBE -BIO_s_accept 2012 1_1_0d EXIST::FUNCTION:SOCK -EC_KEY_set_ECCrefPublicKey 2013 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -UI_construct_prompt 2014 1_1_0d EXIST::FUNCTION:UI -i2d_ESS_CERT_ID 2015 1_1_0d EXIST::FUNCTION:TS -X509at_get_attr_by_NID 2016 1_1_0d EXIST::FUNCTION: -RIPEMD160 2017 1_1_0d EXIST::FUNCTION:RMD160 -X509_STORE_add_cert 2018 1_1_0d EXIST::FUNCTION: -SDF_HashInit 2019 1_1_0d EXIST::FUNCTION: -BN_RECP_CTX_new 2020 1_1_0d EXIST::FUNCTION: -d2i_DSAPrivateKey_fp 2021 1_1_0d EXIST::FUNCTION:DSA,STDIO -BN_RECP_CTX_free 2022 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_get0_safes 2023 1_1_0d EXIST::FUNCTION: -EC_KEY_get_enc_flags 2024 1_1_0d EXIST::FUNCTION:EC -X509V3_EXT_conf_nid 2025 1_1_0d EXIST::FUNCTION: -TXT_DB_write 2026 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_get0_object 2027 1_1_0d EXIST::FUNCTION: -EC_KEY_set_ECCPRIVATEKEYBLOB 2028 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -DSO_global_lookup 2029 1_1_0d EXIST::FUNCTION: -DH_get0_key 2030 1_1_0d EXIST::FUNCTION:DH -X509_STORE_CTX_get0_policy_tree 2031 1_1_0d EXIST::FUNCTION: -ERR_set_error_data 2032 1_1_0d EXIST::FUNCTION: -X509_VAL_it 2033 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_VAL_it 2033 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_register_all_EC 2034 1_1_0d EXIST::FUNCTION:ENGINE -DSA_meth_get_sign_setup 2035 1_1_0d EXIST::FUNCTION:DSA -ZUC_128eea3_encrypt 2036 1_1_0d EXIST::FUNCTION:ZUC -EVP_PBE_find 2037 1_1_0d EXIST::FUNCTION: -ENGINE_get_cipher_engine 2038 1_1_0d EXIST::FUNCTION:ENGINE -PEM_read_bio_PKCS7 2039 1_1_0d EXIST::FUNCTION: -BN_gfp22bn 2040 1_1_0d EXIST::FUNCTION: -SXNETID_free 2041 1_1_0d EXIST::FUNCTION: -TS_CONF_set_ess_cert_id_chain 2042 1_1_0d EXIST::FUNCTION:TS -RAND_screen 2043 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 -i2d_OCSP_SIGNATURE 2044 1_1_0d EXIST::FUNCTION:OCSP -SAF_GetRootCaCertificate 2045 1_1_0d EXIST::FUNCTION: -CMS_EncryptedData_set1_key 2046 1_1_0d EXIST::FUNCTION:CMS -Camellia_encrypt 2047 1_1_0d EXIST::FUNCTION:CAMELLIA -RSA_meth_set_bn_mod_exp 2048 1_1_0d EXIST::FUNCTION:RSA -ENGINE_init 2049 1_1_0d EXIST::FUNCTION:ENGINE -BN_get0_nist_prime_192 2050 1_1_0d EXIST::FUNCTION: -i2d_IPAddressFamily 2051 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_aes_256_gcm 2052 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNER_INFO_sign 2053 1_1_0d EXIST::FUNCTION: -i2d_SM9_PUBKEY 2054 1_1_0d EXIST::FUNCTION:SM9 -BN_BLINDING_update 2055 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_free 2056 1_1_0d EXIST::FUNCTION:OCSP -EVP_sms4_cfb128 2057 1_1_0d EXIST::FUNCTION:SMS4 -d2i_SCT_LIST 2058 1_1_0d EXIST::FUNCTION:CT -PKCS5_PBE_keyivgen 2059 1_1_0d EXIST::FUNCTION: -IDEA_ofb64_encrypt 2060 1_1_0d EXIST::FUNCTION:IDEA -i2d_IPAddressChoice 2061 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_CIPHER_meth_get_get_asn1_params 2062 1_1_0d EXIST::FUNCTION: -EC_KEY_priv2buf 2063 1_1_0d EXIST::FUNCTION:EC -PKCS7_add_signed_attribute 2064 1_1_0d EXIST::FUNCTION: -i2d_X509_EXTENSIONS 2065 1_1_0d EXIST::FUNCTION: -EVP_sms4_ofb 2066 1_1_0d EXIST::FUNCTION:SMS4 -AES_cfb1_encrypt 2067 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_new 2068 1_1_0d EXIST::FUNCTION: -CRYPTO_secure_malloc_done 2069 1_1_0d EXIST::FUNCTION: -ECIES_encrypt 2070 1_1_0d EXIST::FUNCTION:ECIES -speck_set_encrypt_key32 2071 1_1_0d EXIST::FUNCTION:SPECK -EVP_PKEY_CTX_free 2072 1_1_0d EXIST::FUNCTION: -AES_ige_encrypt 2073 1_1_0d EXIST::FUNCTION: -EVP_ripemd160 2074 1_1_0d EXIST::FUNCTION:RMD160 -i2d_OTHERNAME 2075 1_1_0d EXIST::FUNCTION: -SMIME_read_PKCS7 2076 1_1_0d EXIST::FUNCTION: -PKCS7_RECIP_INFO_new 2077 1_1_0d EXIST::FUNCTION: -EC_POINT_point2oct 2078 1_1_0d EXIST::FUNCTION:EC -ASYNC_get_current_job 2079 1_1_0d EXIST::FUNCTION: -CMS_get0_signers 2080 1_1_0d EXIST::FUNCTION:CMS -i2o_SM2CiphertextValue 2081 1_1_0d EXIST::FUNCTION:SM2 -CTLOG_new 2082 1_1_0d EXIST::FUNCTION:CT -SKF_ExtECCVerify 2083 1_1_0d EXIST::FUNCTION:SKF -PEM_write_bio_DHxparams 2084 1_1_0d EXIST::FUNCTION:DH -SM9MasterSecret_it 2085 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9MasterSecret_it 2085 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -SDF_InternalPrivateKeyOperation_RSA 2086 1_1_0d EXIST::FUNCTION: -SAF_Mac 2087 1_1_0d EXIST::FUNCTION: -BN_is_one 2088 1_1_0d EXIST::FUNCTION: -RSAPrivateKey_dup 2089 1_1_0d EXIST::FUNCTION:RSA -EC_KEY_set_group 2090 1_1_0d EXIST::FUNCTION:EC -i2s_ASN1_INTEGER 2091 1_1_0d EXIST::FUNCTION: -i2d_TS_RESP_fp 2092 1_1_0d EXIST::FUNCTION:STDIO,TS -BASIC_CONSTRAINTS_free 2093 1_1_0d EXIST::FUNCTION: -DH_meth_set0_app_data 2094 1_1_0d EXIST::FUNCTION:DH -ENGINE_get_RSA 2095 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_TYPE_get 2096 1_1_0d EXIST::FUNCTION: -EVP_PKEY_bits 2097 1_1_0d EXIST::FUNCTION: -UI_add_error_string 2098 1_1_0d EXIST::FUNCTION:UI -PEM_write_bio_PaillierPrivateKey 2099 1_1_0d EXIST::FUNCTION:PAILLIER -SM9_setup 2100 1_1_0d EXIST::FUNCTION:SM9 -EVP_MD_CTX_set_flags 2101 1_1_0d EXIST::FUNCTION: -DES_ofb_encrypt 2102 1_1_0d EXIST::FUNCTION:DES -ERR_load_SAF_strings 2103 1_1_0d EXIST::FUNCTION:SAF -BFMasterSecret_it 2104 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFMasterSecret_it 2104 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -ENGINE_set_default_pkey_asn1_meths 2105 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_UTCTIME_print 2106 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_inv_arr 2107 1_1_0d EXIST::FUNCTION:EC2M -PEM_ASN1_read 2108 1_1_0d EXIST::FUNCTION:STDIO -d2i_IPAddressOrRange 2109 1_1_0d EXIST::FUNCTION:RFC3779 -OPENSSL_DIR_read 2110 1_1_0d EXIST::FUNCTION: -ECPKParameters_print_fp 2111 1_1_0d EXIST::FUNCTION:EC,STDIO -CRYPTO_mem_debug_free 2112 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -EVP_PKEY_set1_tls_encodedpoint 2113 1_1_0d EXIST::FUNCTION: -BIO_dump_indent 2114 1_1_0d EXIST::FUNCTION: -BN_GFP2_add_bn 2115 1_1_0d EXIST::FUNCTION: -i2s_ASN1_ENUMERATED 2116 1_1_0d EXIST::FUNCTION: -EVP_OpenFinal 2117 1_1_0d EXIST::FUNCTION:RSA -d2i_ASIdentifierChoice 2118 1_1_0d EXIST::FUNCTION:RFC3779 -BIO_ADDR_rawport 2119 1_1_0d EXIST::FUNCTION:SOCK -SKF_ExportPublicKey 2120 1_1_0d EXIST::FUNCTION:SKF -ASN1_GENERALIZEDTIME_free 2121 1_1_0d EXIST::FUNCTION: -X509_pubkey_digest 2122 1_1_0d EXIST::FUNCTION: -ENGINE_register_digests 2123 1_1_0d EXIST::FUNCTION:ENGINE -i2d_RSA_PSS_PARAMS 2124 1_1_0d EXIST::FUNCTION:RSA -d2i_X509_PUBKEY 2125 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_new 2126 1_1_0d EXIST::FUNCTION:ECIES -i2d_ASIdOrRange 2127 1_1_0d EXIST::FUNCTION:RFC3779 -CONF_imodule_set_flags 2128 1_1_0d EXIST::FUNCTION: -X509_up_ref 2129 1_1_0d EXIST::FUNCTION: -SKF_GenerateAgreementDataAndKeyWithECC 2130 1_1_0d EXIST::FUNCTION:SKF -UTF8_putc 2131 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_trust 2132 1_1_0d EXIST::FUNCTION: -SCT_get_validation_status 2133 1_1_0d EXIST::FUNCTION:CT -SAF_GetCertFromLdap 2134 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_cleanup 2135 1_1_0d EXIST::FUNCTION: -PEM_read_ECPKParameters 2136 1_1_0d EXIST::FUNCTION:EC,STDIO -SAF_GetCaCertificate 2137 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_free 2138 1_1_0d EXIST::FUNCTION:ECIES -PEM_read_PKCS8 2139 1_1_0d EXIST::FUNCTION:STDIO -PEM_write_bio_SM9PublicParameters 2140 1_1_0d EXIST::FUNCTION:SM9 -DSA_do_sign 2141 1_1_0d EXIST::FUNCTION:DSA -EC_KEY_METHOD_set_verify 2142 1_1_0d EXIST::FUNCTION:EC -EVP_aes_128_cfb8 2143 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_free 2144 1_1_0d EXIST::FUNCTION: -PKCS7_set_type 2145 1_1_0d EXIST::FUNCTION: -SOF_GetLastError 2146 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_ordering 2147 1_1_0d EXIST::FUNCTION:TS -TS_ACCURACY_set_micros 2148 1_1_0d EXIST::FUNCTION:TS -UI_get_string_type 2149 1_1_0d EXIST::FUNCTION:UI -SKF_CancelWaitForDevEvent 2150 1_1_0d EXIST::FUNCTION:SKF -PEM_write_bio_Parameters 2151 1_1_0d EXIST::FUNCTION: -i2d_EC_PUBKEY 2152 1_1_0d EXIST::FUNCTION:EC -d2i_SM2CiphertextValue_fp 2153 1_1_0d EXIST::FUNCTION:SM2,STDIO -ERR_load_X509_strings 2154 1_1_0d EXIST::FUNCTION: -ENGINE_register_RAND 2155 1_1_0d EXIST::FUNCTION:ENGINE -i2d_PKCS7_bio 2156 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_free 2157 1_1_0d EXIST::FUNCTION: -ASN1_item_pack 2158 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_copy 2159 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_solve_quad_arr 2160 1_1_0d EXIST::FUNCTION:EC2M -ASN1_SET_ANY_it 2161 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_SET_ANY_it 2161 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_MD_CTX_update_fn 2162 1_1_0d EXIST::FUNCTION: -CRYPTO_secure_malloc 2163 1_1_0d EXIST::FUNCTION: -SAF_RsaVerifySignFile 2164 1_1_0d EXIST::FUNCTION: -ENGINE_load_builtin_engines 2165 1_1_0d EXIST::FUNCTION:ENGINE -BIO_copy_next_retry 2166 1_1_0d EXIST::FUNCTION: -ENGINE_register_EC 2167 1_1_0d EXIST::FUNCTION:ENGINE -d2i_DSAPrivateKey_bio 2168 1_1_0d EXIST::FUNCTION:DSA -TS_TST_INFO_set_tsa 2169 1_1_0d EXIST::FUNCTION:TS -ECIES_CIPHERTEXT_VALUE_new_from_ECCCipher 2170 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF -EC_KEY_METHOD_set_decrypt 2171 1_1_0d EXIST::FUNCTION:SM2 -RAND_file_name 2172 1_1_0d EXIST::FUNCTION: -d2i_ASN1_PRINTABLESTRING 2173 1_1_0d EXIST::FUNCTION: -DSAparams_print_fp 2174 1_1_0d EXIST::FUNCTION:DSA,STDIO -TS_VERIFY_CTX_cleanup 2175 1_1_0d EXIST::FUNCTION:TS -X509_STORE_CTX_get_check_policy 2176 1_1_0d EXIST::FUNCTION: -i2d_PKCS8_bio 2177 1_1_0d EXIST::FUNCTION: -OBJ_sn2nid 2178 1_1_0d EXIST::FUNCTION: -X509_STORE_get_check_crl 2179 1_1_0d EXIST::FUNCTION: -SHA256_Transform 2180 1_1_0d EXIST::FUNCTION: -PEM_read_bio_NETSCAPE_CERT_SEQUENCE 2181 1_1_0d EXIST::FUNCTION: -PEM_read_bio_DSAPrivateKey 2182 1_1_0d EXIST::FUNCTION:DSA -i2d_CPK_MASTER_SECRET_bio 2183 1_1_0d EXIST::FUNCTION:CPK -PEM_write_X509_AUX 2184 1_1_0d EXIST::FUNCTION:STDIO -PKCS12_SAFEBAG_get0_attr 2185 1_1_0d EXIST::FUNCTION: -BIO_nread 2186 1_1_0d EXIST::FUNCTION: -SDF_GenerateAgreementDataWithECC 2187 1_1_0d EXIST::FUNCTION: -X509_REQ_add_extensions_nid 2188 1_1_0d EXIST::FUNCTION: -X509_get_version 2189 1_1_0d EXIST::FUNCTION: -SAF_SymmDecrypt 2190 1_1_0d EXIST::FUNCTION: -PEM_read_bio_PAILLIER_PUBKEY 2191 1_1_0d EXIST::FUNCTION:PAILLIER -i2d_PKCS12_fp 2192 1_1_0d EXIST::FUNCTION:STDIO -ASN1_T61STRING_it 2193 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_T61STRING_it 2193 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ESS_SIGNING_CERT_new 2194 1_1_0d EXIST::FUNCTION:TS -TS_RESP_CTX_set_extension_cb 2195 1_1_0d EXIST::FUNCTION:TS -SCT_LIST_print 2196 1_1_0d EXIST::FUNCTION:CT -EVP_aes_192_ofb 2197 1_1_0d EXIST::FUNCTION: -BN_generate_prime_ex 2198 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_tsa 2199 1_1_0d EXIST::FUNCTION:TS -ENGINE_set_id 2200 1_1_0d EXIST::FUNCTION:ENGINE -EXTENDED_KEY_USAGE_new 2201 1_1_0d EXIST::FUNCTION: -OCSP_RESPONSE_free 2202 1_1_0d EXIST::FUNCTION:OCSP -PBEPARAM_free 2203 1_1_0d EXIST::FUNCTION: -SOF_VerifySignedFile 2204 1_1_0d EXIST::FUNCTION: -d2i_SM9PrivateKey 2205 1_1_0d EXIST::FUNCTION:SM9 -IPAddressChoice_free 2206 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_md5 2207 1_1_0d EXIST::FUNCTION:MD5 -CMS_unsigned_add1_attr_by_NID 2208 1_1_0d EXIST::FUNCTION:CMS -PKCS7_add0_attrib_signing_time 2209 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_store 2210 1_1_0d EXIST::FUNCTION: -X509V3_NAME_from_section 2211 1_1_0d EXIST::FUNCTION: -ASN1_parse 2212 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_reset 2213 1_1_0d EXIST::FUNCTION: -CRYPTO_128_wrap_pad 2214 1_1_0d EXIST::FUNCTION: -PKCS7_print_ctx 2215 1_1_0d EXIST::FUNCTION: -ASN1_UTF8STRING_new 2216 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_retrieve 2217 1_1_0d EXIST::FUNCTION: -X509V3_EXT_val_prn 2218 1_1_0d EXIST::FUNCTION: -POLICYQUALINFO_new 2219 1_1_0d EXIST::FUNCTION: -CONF_set_nconf 2220 1_1_0d EXIST::FUNCTION: -SKF_RSAVerify 2221 1_1_0d EXIST::FUNCTION:SKF -PEM_write_ECPrivateKey 2222 1_1_0d EXIST::FUNCTION:EC,STDIO -EC_KEY_METHOD_get_compute_key 2223 1_1_0d EXIST::FUNCTION:EC -BIO_s_null 2224 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_bio_stream 2225 1_1_0d EXIST::FUNCTION: -EVP_MD_block_size 2226 1_1_0d EXIST::FUNCTION: -X509v3_addr_add_prefix 2227 1_1_0d EXIST::FUNCTION:RFC3779 -v2i_GENERAL_NAME 2228 1_1_0d EXIST::FUNCTION: -X509_REQ_get_extension_nids 2229 1_1_0d EXIST::FUNCTION: -PKCS8_decrypt 2230 1_1_0d EXIST::FUNCTION: -SAF_DestroyHashObj 2231 1_1_0d EXIST::FUNCTION: -ERR_put_error 2232 1_1_0d EXIST::FUNCTION: -X509_REVOKED_new 2233 1_1_0d EXIST::FUNCTION: -BIO_test_flags 2234 1_1_0d EXIST::FUNCTION: -PEM_write_bio_X509_REQ_NEW 2235 1_1_0d EXIST::FUNCTION: -d2i_X509_REQ_bio 2236 1_1_0d EXIST::FUNCTION: -BIO_number_read 2237 1_1_0d EXIST::FUNCTION: -SOF_GenRandom 2238 1_1_0d EXIST::FUNCTION: -BB1IBE_encrypt 2239 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_PKEY_asn1_find_str 2240 1_1_0d EXIST::FUNCTION: -d2i_X509_AUX 2241 1_1_0d EXIST::FUNCTION: -X509_get_signature_type 2242 1_1_0d EXIST::FUNCTION: -UI_add_input_boolean 2243 1_1_0d EXIST::FUNCTION:UI -DSA_set0_key 2244 1_1_0d EXIST::FUNCTION:DSA -X509_policy_tree_level_count 2245 1_1_0d EXIST::FUNCTION: -d2i_RSAPublicKey 2246 1_1_0d EXIST::FUNCTION:RSA -X509_get0_notAfter 2247 1_1_0d EXIST::FUNCTION: -BIO_dump_indent_fp 2248 1_1_0d EXIST::FUNCTION:STDIO -PEM_read_DSAparams 2249 1_1_0d EXIST::FUNCTION:DSA,STDIO -EVP_PKEY_meth_set_copy 2250 1_1_0d EXIST::FUNCTION: -SKF_CreateApplication 2251 1_1_0d EXIST::FUNCTION:SKF -ESS_ISSUER_SERIAL_dup 2252 1_1_0d EXIST::FUNCTION:TS -BIO_new_PKCS7 2253 1_1_0d EXIST::FUNCTION: -PAILLIER_size 2254 1_1_0d EXIST::FUNCTION:PAILLIER -NAME_CONSTRAINTS_check_CN 2255 1_1_0d EXIST::FUNCTION: -IDEA_set_encrypt_key 2256 1_1_0d EXIST::FUNCTION:IDEA -SDF_GenerateRandom 2257 1_1_0d EXIST::FUNCTION: -RSA_meth_get_flags 2258 1_1_0d EXIST::FUNCTION:RSA -EVP_PKEY_CTX_ctrl 2259 1_1_0d EXIST::FUNCTION: -EVP_PKEY_paramgen_init 2260 1_1_0d EXIST::FUNCTION: -X509_REQ_extension_nid 2261 1_1_0d EXIST::FUNCTION: -ASN1_STRING_type 2262 1_1_0d EXIST::FUNCTION: -DSA_clear_flags 2263 1_1_0d EXIST::FUNCTION:DSA -X509_get1_email 2264 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cfb8 2265 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_set_num 2266 1_1_0d EXIST::FUNCTION: -CONF_free 2267 1_1_0d EXIST::FUNCTION: -PEM_read_bio_DSAparams 2268 1_1_0d EXIST::FUNCTION:DSA -EVP_CIPHER_meth_set_do_cipher 2269 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_run_once 2270 1_1_0d EXIST::FUNCTION: -d2i_RSAPrivateKey_fp 2271 1_1_0d EXIST::FUNCTION:RSA,STDIO -OCSP_basic_sign 2272 1_1_0d EXIST::FUNCTION:OCSP -OCSP_ONEREQ_free 2273 1_1_0d EXIST::FUNCTION:OCSP -BN_hex2bn 2274 1_1_0d EXIST::FUNCTION: -RSA_padding_add_PKCS1_OAEP_mgf1 2275 1_1_0d EXIST::FUNCTION:RSA -SDF_DeleteFile 2276 1_1_0d EXIST::FUNCTION: -ASN1_generate_v3 2277 1_1_0d EXIST::FUNCTION: -GENERAL_NAMES_it 2278 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -GENERAL_NAMES_it 2278 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -d2i_SM9Signature 2279 1_1_0d EXIST::FUNCTION:SM9 -X509_NAME_get_text_by_NID 2280 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_update 2281 1_1_0d EXIST::FUNCTION: -EDIPARTYNAME_new 2282 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_get0_otherName 2283 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kari_decrypt 2284 1_1_0d EXIST::FUNCTION:CMS -EVP_PKEY_get0_hmac 2285 1_1_0d EXIST::FUNCTION: -PKCS5_pbe_set 2286 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_new 2287 1_1_0d EXIST::FUNCTION:TS -EVP_aes_192_ccm 2288 1_1_0d EXIST::FUNCTION: -ZUC_128eia3_update 2289 1_1_0d EXIST::FUNCTION:ZUC -OPENSSL_config 2290 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -X509_REVOKED_get_ext_by_NID 2291 1_1_0d EXIST::FUNCTION: -SHA384 2292 1_1_0d EXIST:!VMSVAX:FUNCTION: -CMS_get0_content 2293 1_1_0d EXIST::FUNCTION:CMS -X509_STORE_get_ex_data 2294 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_insert 2295 1_1_0d EXIST::FUNCTION: -ASN1_item_i2d 2296 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_ext_d2i 2297 1_1_0d EXIST::FUNCTION:TS -ERR_load_KDF_strings 2298 1_1_0d EXIST::FUNCTION: -ENGINE_set_ex_data 2299 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_meth_get_decrypt 2300 1_1_0d EXIST::FUNCTION: -CONF_imodule_set_usr_data 2301 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_cmp 2302 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_add_policy 2303 1_1_0d EXIST::FUNCTION:TS -SM2CiphertextValue_get_ECCCipher 2304 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 -OCSP_SINGLERESP_it 2305 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_SINGLERESP_it 2305 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -EC_GROUP_check_discriminant 2306 1_1_0d EXIST::FUNCTION:EC -BN_GF2m_mod 2307 1_1_0d EXIST::FUNCTION:EC2M -RSA_new_from_RSAPRIVATEKEYBLOB 2308 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -BF_cfb64_encrypt 2309 1_1_0d EXIST::FUNCTION:BF -ERR_clear_error 2310 1_1_0d EXIST::FUNCTION: -OCSP_REVOKEDINFO_it 2311 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_REVOKEDINFO_it 2311 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -OCSP_id_issuer_cmp 2312 1_1_0d EXIST::FUNCTION:OCSP -EVP_sm9hash2_sm3 2313 1_1_0d EXIST::FUNCTION:SM3,SM9 -i2d_PKCS8PrivateKey_fp 2314 1_1_0d EXIST::FUNCTION:STDIO -DSA_get0_key 2315 1_1_0d EXIST::FUNCTION:DSA -RSA_verify_PKCS1_PSS_mgf1 2316 1_1_0d EXIST::FUNCTION:RSA -d2i_SXNETID 2317 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_iv_noconst 2318 1_1_0d EXIST::FUNCTION: -CMS_signed_get_attr_by_OBJ 2319 1_1_0d EXIST::FUNCTION:CMS -IPAddressRange_free 2320 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_read_bio_PKCS8_PRIV_KEY_INFO 2321 1_1_0d EXIST::FUNCTION: -OCSP_basic_verify 2322 1_1_0d EXIST::FUNCTION:OCSP -X509_NAME_ENTRY_create_by_txt 2323 1_1_0d EXIST::FUNCTION: -SDF_InternalPublicKeyOperation_RSA 2324 1_1_0d EXIST::FUNCTION: -i2d_SCT_LIST 2325 1_1_0d EXIST::FUNCTION:CT -ENGINE_register_pkey_asn1_meths 2326 1_1_0d EXIST::FUNCTION:ENGINE -DSA_OpenSSL 2327 1_1_0d EXIST::FUNCTION:DSA -ECPARAMETERS_new 2328 1_1_0d EXIST::FUNCTION:EC -EVP_camellia_192_ecb 2329 1_1_0d EXIST::FUNCTION:CAMELLIA -X509v3_addr_add_inherit 2330 1_1_0d EXIST::FUNCTION:RFC3779 -PKCS7_ATTR_SIGN_it 2331 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ATTR_SIGN_it 2331 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -TS_RESP_get_tst_info 2332 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_get_type1curve_eta 2333 1_1_0d EXIST::FUNCTION: -DSA_new_method 2334 1_1_0d EXIST::FUNCTION:DSA -X509_STORE_CTX_set_error_depth 2335 1_1_0d EXIST::FUNCTION: -TXT_DB_insert 2336 1_1_0d EXIST::FUNCTION: -X509_OBJECT_idx_by_subject 2337 1_1_0d EXIST::FUNCTION: -PEM_write_X509_CRL 2338 1_1_0d EXIST::FUNCTION:STDIO -d2i_TS_RESP_fp 2339 1_1_0d EXIST::FUNCTION:STDIO,TS -X509_STORE_CTX_set0_untrusted 2340 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_ext_by_OBJ 2341 1_1_0d EXIST::FUNCTION:TS -RAND_seed 2342 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_set_data 2343 1_1_0d EXIST::FUNCTION: -BN_get_flags 2344 1_1_0d EXIST::FUNCTION: -PKCS7_ATTR_VERIFY_it 2345 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ATTR_VERIFY_it 2345 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SAF_ImportEncedKey 2346 1_1_0d EXIST::FUNCTION: -CRYPTO_128_unwrap 2347 1_1_0d EXIST::FUNCTION: -ASN1_STRING_data 2348 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -TS_TST_INFO_get_ext_by_NID 2349 1_1_0d EXIST::FUNCTION:TS -X509_STORE_CTX_get_obj_by_subject 2350 1_1_0d EXIST::FUNCTION: -PAILLIER_security_bits 2351 1_1_0d EXIST::FUNCTION:PAILLIER -MD2_options 2352 1_1_0d EXIST::FUNCTION:MD2 -DISPLAYTEXT_free 2353 1_1_0d EXIST::FUNCTION: -IPAddressChoice_new 2354 1_1_0d EXIST::FUNCTION:RFC3779 -X509_STORE_CTX_get_lookup_certs 2355 1_1_0d EXIST::FUNCTION: -X509_check_issued 2356 1_1_0d EXIST::FUNCTION: -BIO_meth_get_destroy 2357 1_1_0d EXIST::FUNCTION: -sms4_cbc_encrypt 2358 1_1_0d EXIST::FUNCTION:SMS4 -CMS_add0_RevocationInfoChoice 2359 1_1_0d EXIST::FUNCTION:CMS -X509_STORE_get0_param 2360 1_1_0d EXIST::FUNCTION: -DSA_meth_set1_name 2361 1_1_0d EXIST::FUNCTION:DSA -OCSP_ONEREQ_add1_ext_i2d 2362 1_1_0d EXIST::FUNCTION:OCSP -BIO_new_dgram_sctp 2363 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -i2a_ASN1_OBJECT 2364 1_1_0d EXIST::FUNCTION: -EC_GFp_nistp256_method 2365 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 -d2i_EC_PUBKEY_bio 2366 1_1_0d EXIST::FUNCTION:EC -DSA_meth_set_flags 2367 1_1_0d EXIST::FUNCTION:DSA -X509_CRL_print_fp 2368 1_1_0d EXIST::FUNCTION:STDIO -BUF_reverse 2369 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_accuracy 2370 1_1_0d EXIST::FUNCTION:TS -ASYNC_WAIT_CTX_get_all_fds 2371 1_1_0d EXIST::FUNCTION: -ASN1_TIME_free 2372 1_1_0d EXIST::FUNCTION: -DSO_set_filename 2373 1_1_0d EXIST::FUNCTION: -d2i_ASN1_INTEGER 2374 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kekri_get0_id 2375 1_1_0d EXIST::FUNCTION:CMS -X509_STORE_add_lookup 2376 1_1_0d EXIST::FUNCTION: -DES_encrypt2 2377 1_1_0d EXIST::FUNCTION:DES -PKCS12_SAFEBAG_get_bag_nid 2378 1_1_0d EXIST::FUNCTION: -d2i_ASN1_UINTEGER 2379 1_1_0d EXIST::FUNCTION: -SKF_DecryptUpdate 2380 1_1_0d EXIST::FUNCTION:SKF -EVP_aes_256_wrap 2381 1_1_0d EXIST::FUNCTION: -SM9_sign 2382 1_1_0d EXIST::FUNCTION:SM9 -DH_compute_key 2383 1_1_0d EXIST::FUNCTION:DH -ASN1_VISIBLESTRING_it 2384 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_VISIBLESTRING_it 2384 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EC_POINT_invert 2385 1_1_0d EXIST::FUNCTION:EC -X509_OBJECT_retrieve_match 2386 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set0_crls 2387 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_set_ECCCipher 2388 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF -ASYNC_WAIT_CTX_clear_fd 2389 1_1_0d EXIST::FUNCTION: -X509v3_get_ext 2390 1_1_0d EXIST::FUNCTION: -ASN1_BIT_STRING_name_print 2391 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_test_flags 2392 1_1_0d EXIST::FUNCTION: -SDF_ImportKeyWithISK_RSA 2393 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_free 2394 1_1_0d EXIST::FUNCTION: -PEM_write_bio_PKCS8PrivateKey 2395 1_1_0d EXIST::FUNCTION: -NCONF_free 2396 1_1_0d EXIST::FUNCTION: -DSA_SIG_get0 2397 1_1_0d EXIST::FUNCTION:DSA -DSA_new 2398 1_1_0d EXIST::FUNCTION:DSA -SAF_Base64_Encode 2399 1_1_0d EXIST::FUNCTION: -ENGINE_get_digest_engine 2400 1_1_0d EXIST::FUNCTION:ENGINE -SAF_GetExtTypeInfo 2401 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_new 2402 1_1_0d EXIST::FUNCTION:OCSP -DES_pcbc_encrypt 2403 1_1_0d EXIST::FUNCTION:DES -SOF_GetCertInfo 2404 1_1_0d EXIST::FUNCTION: -SAF_GetEccPublicKey 2405 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_finish 2406 1_1_0d EXIST::FUNCTION:OCB -ENGINE_unregister_DH 2407 1_1_0d EXIST::FUNCTION:ENGINE -OCSP_request_add1_cert 2408 1_1_0d EXIST::FUNCTION:OCSP -SAF_Base64_CreateBase64Obj 2409 1_1_0d EXIST::FUNCTION: -UI_dup_info_string 2410 1_1_0d EXIST::FUNCTION:UI -CRYPTO_ccm128_tag 2411 1_1_0d EXIST::FUNCTION: -X509_CRL_set1_nextUpdate 2412 1_1_0d EXIST::FUNCTION: -MD5_Update 2413 1_1_0d EXIST::FUNCTION:MD5 -ASN1_item_digest 2414 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_asn1_to_param 2415 1_1_0d EXIST::FUNCTION: -PEM_read_bio_SM9PrivateKey 2416 1_1_0d EXIST::FUNCTION:SM9 -CT_POLICY_EVAL_CTX_set1_issuer 2417 1_1_0d EXIST::FUNCTION:CT -CT_POLICY_EVAL_CTX_free 2418 1_1_0d EXIST::FUNCTION:CT -DSA_set_default_method 2419 1_1_0d EXIST::FUNCTION:DSA -CRYPTO_gcm128_setiv 2420 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_verify 2421 1_1_0d EXIST::FUNCTION: -speck_set_decrypt_key16 2422 1_1_0d EXIST::FUNCTION:SPECK -ASYNC_unblock_pause 2423 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_ctrl 2424 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_encrypt_ctr32 2425 1_1_0d EXIST::FUNCTION: -PaillierPublicKey_it 2426 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER -PaillierPublicKey_it 2426 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER -BN_lebin2bn 2427 1_1_0d EXIST::FUNCTION: -sms4_cfb128_encrypt 2428 1_1_0d EXIST::FUNCTION:SMS4 -i2d_ASN1_SET_ANY 2429 1_1_0d EXIST::FUNCTION: -PEM_SignUpdate 2430 1_1_0d EXIST::FUNCTION: -d2i_ECPrivateKey 2431 1_1_0d EXIST::FUNCTION:EC -X509_CRL_get_ext_count 2432 1_1_0d EXIST::FUNCTION: -ASN1_tag2str 2433 1_1_0d EXIST::FUNCTION: -EVP_VerifyFinal 2434 1_1_0d EXIST::FUNCTION: -BN_get0_nist_prime_256 2435 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_DecodeDigestedData 2436 1_1_0d EXIST::FUNCTION: -i2d_TS_MSG_IMPRINT 2437 1_1_0d EXIST::FUNCTION:TS -PKCS7_to_TS_TST_INFO 2438 1_1_0d EXIST::FUNCTION:TS -ASN1_put_object 2439 1_1_0d EXIST::FUNCTION: -ASN1_parse_dump 2440 1_1_0d EXIST::FUNCTION: -SKF_DecryptFinal 2441 1_1_0d EXIST::FUNCTION:SKF -d2i_ASN1_SET_ANY 2442 1_1_0d EXIST::FUNCTION: -UI_add_user_data 2443 1_1_0d EXIST::FUNCTION:UI -BN_mod_lshift 2444 1_1_0d EXIST::FUNCTION: -X509v3_addr_validate_path 2445 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_write_bio_RSA_PUBKEY 2446 1_1_0d EXIST::FUNCTION:RSA -BF_ecb_encrypt 2447 1_1_0d EXIST::FUNCTION:BF -X509_find_by_subject 2448 1_1_0d EXIST::FUNCTION: -PKCS7_dataInit 2449 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_set_ECCSignature 2450 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -PKCS7_sign 2451 1_1_0d EXIST::FUNCTION: -EC_POINT_copy 2452 1_1_0d EXIST::FUNCTION:EC -X509_STORE_set_get_crl 2453 1_1_0d EXIST::FUNCTION: -RSA_blinding_off 2454 1_1_0d EXIST::FUNCTION:RSA -DH_meth_free 2455 1_1_0d EXIST::FUNCTION:DH -UI_get0_output_string 2456 1_1_0d EXIST::FUNCTION:UI -ENGINE_get_pkey_meths 2457 1_1_0d EXIST::FUNCTION:ENGINE -CMS_stream 2458 1_1_0d EXIST::FUNCTION:CMS -TS_REQ_get_ext 2459 1_1_0d EXIST::FUNCTION:TS -d2i_EXTENDED_KEY_USAGE 2460 1_1_0d EXIST::FUNCTION: -ECParameters_print_fp 2461 1_1_0d EXIST::FUNCTION:EC,STDIO -d2i_NOTICEREF 2462 1_1_0d EXIST::FUNCTION: -RSA_meth_dup 2463 1_1_0d EXIST::FUNCTION:RSA -SM2_compute_message_digest 2464 1_1_0d EXIST::FUNCTION:SM2 -X509v3_addr_get_range 2465 1_1_0d EXIST::FUNCTION:RFC3779 -PROXY_CERT_INFO_EXTENSION_free 2466 1_1_0d EXIST::FUNCTION: -Camellia_set_key 2467 1_1_0d EXIST::FUNCTION:CAMELLIA -OPENSSL_LH_node_usage_stats_bio 2468 1_1_0d EXIST::FUNCTION: -SDF_ExportSignPublicKey_RSA 2469 1_1_0d EXIST::FUNCTION: -PROXY_CERT_INFO_EXTENSION_new 2470 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_new 2471 1_1_0d EXIST::FUNCTION: -OCSP_resp_get0_id 2472 1_1_0d EXIST::FUNCTION:OCSP -EVP_des_ede3_ecb 2473 1_1_0d EXIST::FUNCTION:DES -BN_mod_inverse 2474 1_1_0d EXIST::FUNCTION: -X509_NAME_print_ex_fp 2475 1_1_0d EXIST::FUNCTION:STDIO -DSA_verify 2476 1_1_0d EXIST::FUNCTION:DSA -BIO_new_socket 2477 1_1_0d EXIST::FUNCTION:SOCK -OCSP_RESPONSE_print 2478 1_1_0d EXIST::FUNCTION:OCSP -i2d_ASN1_INTEGER 2479 1_1_0d EXIST::FUNCTION: -X509at_add1_attr_by_NID 2480 1_1_0d EXIST::FUNCTION: -d2i_TS_MSG_IMPRINT 2481 1_1_0d EXIST::FUNCTION:TS -SOF_SetEncryptMethod 2482 1_1_0d EXIST::FUNCTION: -BN_bn2mpi 2483 1_1_0d EXIST::FUNCTION: -UI_get_method 2484 1_1_0d EXIST::FUNCTION:UI -X509_policy_level_node_count 2485 1_1_0d EXIST::FUNCTION: -PKCS8_get_attr 2486 1_1_0d EXIST::FUNCTION: -DSA_set_ex_data 2487 1_1_0d EXIST::FUNCTION:DSA -X509_CRL_set_meth_data 2488 1_1_0d EXIST::FUNCTION: -X509V3_EXT_get 2489 1_1_0d EXIST::FUNCTION: -BN_bn2hex 2490 1_1_0d EXIST::FUNCTION: -HMAC_CTX_set_flags 2491 1_1_0d EXIST::FUNCTION: -i2v_GENERAL_NAMES 2492 1_1_0d EXIST::FUNCTION: -DH_compute_key_padded 2493 1_1_0d EXIST::FUNCTION:DH -DH_get_ex_data 2494 1_1_0d EXIST::FUNCTION:DH -PEM_read_DSAPrivateKey 2495 1_1_0d EXIST::FUNCTION:DSA,STDIO -ZUC_128eia3 2496 1_1_0d EXIST::FUNCTION:ZUC -SHA384_Update 2497 1_1_0d EXIST:!VMSVAX:FUNCTION: -AUTHORITY_INFO_ACCESS_it 2498 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -AUTHORITY_INFO_ACCESS_it 2498 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_MD_meth_set_cleanup 2499 1_1_0d EXIST::FUNCTION: -i2d_PKCS8_PRIV_KEY_INFO_fp 2500 1_1_0d EXIST::FUNCTION:STDIO -EC_KEY_new 2501 1_1_0d EXIST::FUNCTION:EC -PKCS12_pack_p7encdata 2502 1_1_0d EXIST::FUNCTION: -X509_get0_tbs_sigalg 2503 1_1_0d EXIST::FUNCTION: -ASN1_STRING_clear_free 2504 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_ISSUER_AND_SERIAL 2505 1_1_0d EXIST::FUNCTION: -OPENSSL_INIT_free 2506 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_free 2507 1_1_0d EXIST::FUNCTION: -i2d_TS_STATUS_INFO 2508 1_1_0d EXIST::FUNCTION:TS -EVP_mdc2 2509 1_1_0d EXIST::FUNCTION:MDC2 -OCSP_REQ_CTX_add1_header 2510 1_1_0d EXIST::FUNCTION:OCSP -SOF_GetPinRetryCount 2511 1_1_0d EXIST::FUNCTION: -ERR_load_PKCS7_strings 2512 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_ENVELOPE 2513 1_1_0d EXIST::FUNCTION: -d2i_PKCS12 2514 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_new 2515 1_1_0d EXIST::FUNCTION: -v2i_ASN1_BIT_STRING 2516 1_1_0d EXIST::FUNCTION: -RSA_sign 2517 1_1_0d EXIST::FUNCTION:RSA -OCSP_accept_responses_new 2518 1_1_0d EXIST::FUNCTION:OCSP -BB1IBE_setup 2519 1_1_0d EXIST::FUNCTION:BB1IBE -SKF_ExtRSAPubKeyOperation 2520 1_1_0d EXIST::FUNCTION:SKF -i2d_OCSP_REQINFO 2521 1_1_0d EXIST::FUNCTION:OCSP -EC_GROUP_clear_free 2522 1_1_0d EXIST::FUNCTION:EC -ENGINE_set_flags 2523 1_1_0d EXIST::FUNCTION:ENGINE -EVP_rc4 2524 1_1_0d EXIST::FUNCTION:RC4 -DSA_meth_set_keygen 2525 1_1_0d EXIST::FUNCTION:DSA -X509V3_EXT_add_nconf 2526 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_ENCRYPT 2527 1_1_0d EXIST::FUNCTION: -SM9_do_sign 2528 1_1_0d EXIST::FUNCTION:SM9 -TS_RESP_CTX_add_failure_info 2529 1_1_0d EXIST::FUNCTION:TS -ASN1_PCTX_set_cert_flags 2530 1_1_0d EXIST::FUNCTION: -i2d_TS_TST_INFO_bio 2531 1_1_0d EXIST::FUNCTION:TS -TS_TST_INFO_get_ext_count 2532 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_get_degree 2533 1_1_0d EXIST::FUNCTION:EC -PKCS12_get0_mac 2534 1_1_0d EXIST::FUNCTION: -BIO_dup_chain 2535 1_1_0d EXIST::FUNCTION: -SAF_GetCertificateInfo 2536 1_1_0d EXIST::FUNCTION: -EC_GFp_mont_method 2537 1_1_0d EXIST::FUNCTION:EC -OCSP_BASICRESP_get1_ext_d2i 2538 1_1_0d EXIST::FUNCTION:OCSP -WHIRLPOOL_BitUpdate 2539 1_1_0d EXIST::FUNCTION:WHIRLPOOL -EVP_blake2s256 2540 1_1_0d EXIST::FUNCTION:BLAKE2 -X509_STORE_CTX_get1_issuer 2541 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_new 2542 1_1_0d EXIST::FUNCTION: -PEM_write_EC_PUBKEY 2543 1_1_0d EXIST::FUNCTION:EC,STDIO -PEM_write_bio_PKCS8_PRIV_KEY_INFO 2544 1_1_0d EXIST::FUNCTION: -BN_nist_mod_384 2545 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_msg_imprint 2546 1_1_0d EXIST::FUNCTION:TS -SM9_VerifyInit 2547 1_1_0d EXIST::FUNCTION:SM9 -RAND_egd 2548 1_1_0d EXIST::FUNCTION:EGD -EVP_sha384 2549 1_1_0d EXIST:!VMSVAX:FUNCTION: -X509_LOOKUP_by_subject 2550 1_1_0d EXIST::FUNCTION: -SM9_ciphertext_size 2551 1_1_0d EXIST::FUNCTION:SM9 -DSO_free 2552 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_delete_ext 2553 1_1_0d EXIST::FUNCTION:OCSP -EVP_des_ede3_ofb 2554 1_1_0d EXIST::FUNCTION:DES -d2i_SXNET 2555 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_by_issuer_serial 2556 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get_sgd 2557 1_1_0d EXIST::FUNCTION:GMAPI -BIO_s_log 2558 1_1_0d EXIST:!WIN32,!macintosh:FUNCTION: -ERR_load_BN_strings 2559 1_1_0d EXIST::FUNCTION: -EC_POINT_point2buf 2560 1_1_0d EXIST::FUNCTION:EC -PEM_read_SM9PublicParameters 2561 1_1_0d EXIST::FUNCTION:SM9,STDIO -BN_bn2binpad 2562 1_1_0d EXIST::FUNCTION: -TS_CONF_set_digests 2563 1_1_0d EXIST::FUNCTION:TS -BN_bin2bn 2564 1_1_0d EXIST::FUNCTION: -BN_is_solinas 2565 1_1_0d EXIST::FUNCTION: -ISSUING_DIST_POINT_it 2566 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ISSUING_DIST_POINT_it 2566 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_register_all_DH 2567 1_1_0d EXIST::FUNCTION:ENGINE -X509_CRL_match 2568 1_1_0d EXIST::FUNCTION: -SXNET_get_id_INTEGER 2569 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_get0_type 2570 1_1_0d EXIST::FUNCTION: -OCSP_resp_count 2571 1_1_0d EXIST::FUNCTION:OCSP -d2i_SM9Signature_fp 2572 1_1_0d EXIST::FUNCTION:SM9,STDIO -X509_VERIFY_PARAM_add0_table 2573 1_1_0d EXIST::FUNCTION: -TXT_DB_create_index 2574 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set0_param 2575 1_1_0d EXIST::FUNCTION: -PEM_write_SM9MasterSecret 2576 1_1_0d EXIST::FUNCTION:SM9,STDIO -i2d_EXTENDED_KEY_USAGE 2577 1_1_0d EXIST::FUNCTION: -d2i_OCSP_BASICRESP 2578 1_1_0d EXIST::FUNCTION:OCSP -SXNETID_it 2579 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -SXNETID_it 2579 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SKF_DeleteContainer 2580 1_1_0d EXIST::FUNCTION:SKF -CTLOG_get0_public_key 2581 1_1_0d EXIST::FUNCTION:CT -BN_kronecker 2582 1_1_0d EXIST::FUNCTION: -EVP_idea_ofb 2583 1_1_0d EXIST::FUNCTION:IDEA -SM9_MASTER_KEY_free 2584 1_1_0d EXIST::FUNCTION:SM9 -SAF_MacFinal 2585 1_1_0d EXIST::FUNCTION: -SAF_SM2_DecodeSignedData 2586 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_current_cert 2587 1_1_0d EXIST::FUNCTION: -ASN1_GENERALIZEDTIME_new 2588 1_1_0d EXIST::FUNCTION: -ENGINE_get_default_DH 2589 1_1_0d EXIST::FUNCTION:ENGINE -BN_BLINDING_invert 2590 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_setiv 2591 1_1_0d EXIST::FUNCTION:OCB -X509_get_subject_name 2592 1_1_0d EXIST::FUNCTION: -ERR_load_PAILLIER_strings 2593 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_set_pw_prompt 2594 1_1_0d EXIST::FUNCTION:UI -EVP_DigestVerifyInit 2595 1_1_0d EXIST::FUNCTION: -BF_set_key 2596 1_1_0d EXIST::FUNCTION:BF -d2i_X509_REVOKED 2597 1_1_0d EXIST::FUNCTION: -SM9_MASTER_KEY_print 2598 1_1_0d EXIST::FUNCTION:SM9 -X509_REQ_set_version 2599 1_1_0d EXIST::FUNCTION: -EVP_rc4_hmac_md5 2600 1_1_0d EXIST::FUNCTION:MD5,RC4 -SAF_DestroyKeyHandle 2601 1_1_0d EXIST::FUNCTION: -EVP_aes_128_cbc_hmac_sha256 2602 1_1_0d EXIST::FUNCTION: -X509_EXTENSION_get_data 2603 1_1_0d EXIST::FUNCTION: -OCSP_sendreq_bio 2604 1_1_0d EXIST::FUNCTION:OCSP -SM9_MASTER_KEY_up_ref 2605 1_1_0d EXIST::FUNCTION:SM9 -d2i_OCSP_CERTID 2606 1_1_0d EXIST::FUNCTION:OCSP -DISPLAYTEXT_it 2607 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DISPLAYTEXT_it 2607 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASN1_PCTX_set_nm_flags 2608 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_point_conversion_form 2609 1_1_0d EXIST::FUNCTION:EC -UI_get_result_maxsize 2610 1_1_0d EXIST::FUNCTION:UI -BN_mod_exp_mont_word 2611 1_1_0d EXIST::FUNCTION: -i2d_ASN1_TIME 2612 1_1_0d EXIST::FUNCTION: -X509_CRL_get_issuer 2613 1_1_0d EXIST::FUNCTION: -SHA384_Init 2614 1_1_0d EXIST:!VMSVAX:FUNCTION: -PEM_write_bio_X509_REQ 2615 1_1_0d EXIST::FUNCTION: -PKCS12_PBE_keyivgen 2616 1_1_0d EXIST::FUNCTION: -CMS_get0_type 2617 1_1_0d EXIST::FUNCTION:CMS -BN_BLINDING_convert_ex 2618 1_1_0d EXIST::FUNCTION: -EC_GROUP_get0_order 2619 1_1_0d EXIST::FUNCTION:EC -d2i_GENERAL_NAME 2620 1_1_0d EXIST::FUNCTION: -SM9_extract_private_key 2621 1_1_0d EXIST::FUNCTION:SM9 -DH_meth_get_flags 2622 1_1_0d EXIST::FUNCTION:DH -X509_ALGOR_set_md 2623 1_1_0d EXIST::FUNCTION: -X509_STORE_new 2624 1_1_0d EXIST::FUNCTION: -CMS_is_detached 2625 1_1_0d EXIST::FUNCTION:CMS -PKCS7_verify 2626 1_1_0d EXIST::FUNCTION: -DSO_get_filename 2627 1_1_0d EXIST::FUNCTION: -ERR_load_SDF_strings 2628 1_1_0d EXIST::FUNCTION:SDF -SKF_UnloadLibrary 2629 1_1_0d EXIST::FUNCTION:SKF -BIO_meth_get_gets 2630 1_1_0d EXIST::FUNCTION: -MD2_Update 2631 1_1_0d EXIST::FUNCTION:MD2 -CMS_RecipientInfo_ktri_cert_cmp 2632 1_1_0d EXIST::FUNCTION:CMS -X509_STORE_CTX_get1_crls 2633 1_1_0d EXIST::FUNCTION: -EVP_PKEY_encrypt 2634 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_cbc 2635 1_1_0d EXIST::FUNCTION:CAMELLIA -i2d_SM2CiphertextValue 2636 1_1_0d EXIST::FUNCTION:SM2 -EVP_des_cfb1 2637 1_1_0d EXIST::FUNCTION:DES -DH_meth_set_generate_key 2638 1_1_0d EXIST::FUNCTION:DH -EC_KEY_priv2oct 2639 1_1_0d EXIST::FUNCTION:EC -OCSP_onereq_get0_id 2640 1_1_0d EXIST::FUNCTION:OCSP -BIO_new_connect 2641 1_1_0d EXIST::FUNCTION:SOCK -CMS_decrypt_set1_key 2642 1_1_0d EXIST::FUNCTION:CMS -EC_KEY_set_private_key 2643 1_1_0d EXIST::FUNCTION:EC -i2d_ECPrivateKey 2644 1_1_0d EXIST::FUNCTION:EC -CMS_signed_get_attr_count 2645 1_1_0d EXIST::FUNCTION:CMS -BN_abs_is_word 2646 1_1_0d EXIST::FUNCTION: -SAF_GetCrlFromLdap 2647 1_1_0d EXIST::FUNCTION: -EVP_aes_128_cbc_hmac_sha1 2648 1_1_0d EXIST::FUNCTION: -X509_STORE_get_lookup_certs 2649 1_1_0d EXIST::FUNCTION: -X509_EXTENSIONS_it 2650 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_EXTENSIONS_it 2650 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_get0_reject_objects 2651 1_1_0d EXIST::FUNCTION: -EVP_PKEY_derive_init 2652 1_1_0d EXIST::FUNCTION: -CMS_data 2653 1_1_0d EXIST::FUNCTION:CMS -EVP_des_ede_ecb 2654 1_1_0d EXIST::FUNCTION:DES -BN_RECP_CTX_set 2655 1_1_0d EXIST::FUNCTION: -BIO_meth_set_create 2656 1_1_0d EXIST::FUNCTION: -RSA_generate_key 2657 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,RSA -X509_SIG_free 2658 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kari_set0_pkey 2659 1_1_0d EXIST::FUNCTION:CMS -ZLONG_it 2660 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ZLONG_it 2660 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -HMAC_CTX_get_md 2661 1_1_0d EXIST::FUNCTION: -X509_TRUST_get_flags 2662 1_1_0d EXIST::FUNCTION: -BN_mod_sqr 2663 1_1_0d EXIST::FUNCTION: -X509_STORE_get0_objects 2664 1_1_0d EXIST::FUNCTION: -d2i_DSAparams 2665 1_1_0d EXIST::FUNCTION:DSA -SKF_MacUpdate 2666 1_1_0d EXIST::FUNCTION:SKF -DH_meth_set_compute_key 2667 1_1_0d EXIST::FUNCTION:DH -BN_is_prime_fasttest 2668 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -i2d_OCSP_RESPDATA 2669 1_1_0d EXIST::FUNCTION:OCSP -EVP_get_cipherbyname 2670 1_1_0d EXIST::FUNCTION: -X509_OBJECT_get0_X509 2671 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_curve_name 2672 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_set_time 2673 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get1_chain 2674 1_1_0d EXIST::FUNCTION: -ERR_lib_error_string 2675 1_1_0d EXIST::FUNCTION: -X509_REQ_set_extension_nids 2676 1_1_0d EXIST::FUNCTION: -HMAC_size 2677 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_current_crl 2678 1_1_0d EXIST::FUNCTION: -BIO_dump_cb 2679 1_1_0d EXIST::FUNCTION: -DES_set_key 2680 1_1_0d EXIST::FUNCTION:DES -SKF_DeleteFile 2681 1_1_0d EXIST::FUNCTION:SKF -ECPARAMETERS_it 2682 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC -ECPARAMETERS_it 2682 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC -EVP_get_cipherbysgd 2683 1_1_0d EXIST::FUNCTION:GMAPI -BN_BLINDING_set_flags 2684 1_1_0d EXIST::FUNCTION: -X509_CRL_it 2685 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CRL_it 2685 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ERR_add_error_data 2686 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_it 2687 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_BASICRESP_it 2687 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -EVP_camellia_192_ctr 2688 1_1_0d EXIST::FUNCTION:CAMELLIA -i2d_SM9PrivateKey 2689 1_1_0d EXIST::FUNCTION:SM9 -SCT_new 2690 1_1_0d EXIST::FUNCTION:CT -EVP_blake2b512 2691 1_1_0d EXIST::FUNCTION:BLAKE2 -ECDSA_SIG_new_from_ECCSIGNATUREBLOB 2692 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -SAF_Pkcs7_DecodeData 2693 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cfb1 2694 1_1_0d EXIST::FUNCTION: -ENGINE_unregister_digests 2695 1_1_0d EXIST::FUNCTION:ENGINE -CMS_RecipientInfo_set0_pkey 2696 1_1_0d EXIST::FUNCTION:CMS -ERR_print_errors_fp 2697 1_1_0d EXIST::FUNCTION:STDIO -CONF_module_add 2698 1_1_0d EXIST::FUNCTION: -BN_div_word 2699 1_1_0d EXIST::FUNCTION: -X509_CRL_add_ext 2700 1_1_0d EXIST::FUNCTION: -RC4_options 2701 1_1_0d EXIST::FUNCTION:RC4 -X509_NAME_new 2702 1_1_0d EXIST::FUNCTION: -OPENSSL_gmtime_adj 2703 1_1_0d EXIST::FUNCTION: -i2d_ECCSignature 2704 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -i2d_PKCS7_ISSUER_AND_SERIAL 2705 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_set_octetstring 2706 1_1_0d EXIST::FUNCTION: -NETSCAPE_CERT_SEQUENCE_it 2707 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NETSCAPE_CERT_SEQUENCE_it 2707 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DH_meth_get0_name 2708 1_1_0d EXIST::FUNCTION:DH -X509_CRL_get0_signature 2709 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get_by_sname 2710 1_1_0d EXIST::FUNCTION: -d2i_PrivateKey_fp 2711 1_1_0d EXIST::FUNCTION:STDIO -OCSP_SINGLERESP_get_ext_by_critical 2712 1_1_0d EXIST::FUNCTION:OCSP -OCSP_request_add0_id 2713 1_1_0d EXIST::FUNCTION:OCSP -SAF_Base64_DecodeFinal 2714 1_1_0d EXIST::FUNCTION: -BN_GFP2_copy 2715 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get0_SM9_MASTER 2716 1_1_0d EXIST::FUNCTION:SM9 -X509_get_serialNumber 2717 1_1_0d EXIST::FUNCTION: -EC_POINT_get_affine_coordinates_GFp 2718 1_1_0d EXIST::FUNCTION:EC -CMS_add0_cert 2719 1_1_0d EXIST::FUNCTION:CMS -TS_REQ_get_nonce 2720 1_1_0d EXIST::FUNCTION:TS -DH_OpenSSL 2721 1_1_0d EXIST::FUNCTION:DH -RAND_OpenSSL 2722 1_1_0d EXIST::FUNCTION: -EVP_des_cbc 2723 1_1_0d EXIST::FUNCTION:DES -SRP_user_pwd_free 2724 1_1_0d EXIST::FUNCTION:SRP -EVP_SealInit 2725 1_1_0d EXIST::FUNCTION:RSA -BASIC_CONSTRAINTS_it 2726 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -BASIC_CONSTRAINTS_it 2726 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SM9_extract_public_parameters 2727 1_1_0d EXIST::FUNCTION:SM9 -SM2CiphertextValue_new_from_ECCCipher 2728 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 -ASN1_INTEGER_set 2729 1_1_0d EXIST::FUNCTION: -OCSP_response_status 2730 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_asn1_set_security_bits 2731 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_set_data 2732 1_1_0d EXIST::FUNCTION: -EC_KEY_set_ex_data 2733 1_1_0d EXIST::FUNCTION:EC -CRYPTO_cts128_decrypt 2734 1_1_0d EXIST::FUNCTION: -X509_STORE_set1_param 2735 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_delete_ext 2736 1_1_0d EXIST::FUNCTION:TS -OCSP_CERTID_it 2737 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_CERTID_it 2737 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -d2i_CPK_MASTER_SECRET_bio 2738 1_1_0d EXIST::FUNCTION:CPK -ASYNC_block_pause 2739 1_1_0d EXIST::FUNCTION: -CONF_modules_load_file 2740 1_1_0d EXIST::FUNCTION: -ESS_CERT_ID_new 2741 1_1_0d EXIST::FUNCTION:TS -ASIdentifierChoice_free 2742 1_1_0d EXIST::FUNCTION:RFC3779 -X509_REVOKED_delete_ext 2743 1_1_0d EXIST::FUNCTION: -RIPEMD160_Transform 2744 1_1_0d EXIST::FUNCTION:RMD160 -TS_CONF_set_serial 2745 1_1_0d EXIST::FUNCTION:TS -BF_encrypt 2746 1_1_0d EXIST::FUNCTION:BF -PEM_read_bio_RSAPrivateKey 2747 1_1_0d EXIST::FUNCTION:RSA -ASN1_item_new 2748 1_1_0d EXIST::FUNCTION: -PKCS12_add_key 2749 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_ext 2750 1_1_0d EXIST::FUNCTION:TS -BIO_s_secmem 2751 1_1_0d EXIST::FUNCTION: -BIO_s_datagram_sctp 2752 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -BIO_dgram_sctp_msg_waiting 2753 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -BN_copy 2754 1_1_0d EXIST::FUNCTION: -d2i_PKCS7 2755 1_1_0d EXIST::FUNCTION: -OCSP_request_onereq_count 2756 1_1_0d EXIST::FUNCTION:OCSP -PKCS12_add_safes 2757 1_1_0d EXIST::FUNCTION: -PAILLIER_up_ref 2758 1_1_0d EXIST::FUNCTION:PAILLIER -AES_wrap_key 2759 1_1_0d EXIST::FUNCTION: -i2d_PrivateKey_bio 2760 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_set_int_octetstring 2761 1_1_0d EXIST::FUNCTION: -i2d_ASIdentifiers 2762 1_1_0d EXIST::FUNCTION:RFC3779 -CONF_parse_list 2763 1_1_0d EXIST::FUNCTION: -i2d_ASN1_PRINTABLESTRING 2764 1_1_0d EXIST::FUNCTION: -RC2_cbc_encrypt 2765 1_1_0d EXIST::FUNCTION:RC2 -d2i_BB1PublicParameters 2766 1_1_0d EXIST::FUNCTION:BB1IBE -DSO_new 2767 1_1_0d EXIST::FUNCTION: -TS_REQ_print_bio 2768 1_1_0d EXIST::FUNCTION:TS -a2i_IPADDRESS 2769 1_1_0d EXIST::FUNCTION: -i2d_BFMasterSecret 2770 1_1_0d EXIST::FUNCTION:BFIBE -OTHERNAME_it 2771 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -OTHERNAME_it 2771 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SHA512_Final 2772 1_1_0d EXIST:!VMSVAX:FUNCTION: -ENGINE_set_load_privkey_function 2773 1_1_0d EXIST::FUNCTION:ENGINE -ENGINE_register_all_DSA 2774 1_1_0d EXIST::FUNCTION:ENGINE -EC_KEY_set_asn1_flag 2775 1_1_0d EXIST::FUNCTION:EC -PKCS7_RECIP_INFO_it 2776 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_RECIP_INFO_it 2776 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EC_GROUP_new_by_curve_name 2777 1_1_0d EXIST::FUNCTION:EC -RC4 2778 1_1_0d EXIST::FUNCTION:RC4 -EC_POINTs_mul 2779 1_1_0d EXIST::FUNCTION:EC -UI_dup_error_string 2780 1_1_0d EXIST::FUNCTION:UI -EVP_bf_cbc 2781 1_1_0d EXIST::FUNCTION:BF -SAF_RsaVerifySign 2782 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_sign 2783 1_1_0d EXIST::FUNCTION: -SKF_Encrypt 2784 1_1_0d EXIST::FUNCTION:SKF -ASN1_BIT_STRING_get_bit 2785 1_1_0d EXIST::FUNCTION: -EVP_add_digest 2786 1_1_0d EXIST::FUNCTION: -BIO_read 2787 1_1_0d EXIST::FUNCTION: -PEM_write_bio_DHparams 2788 1_1_0d EXIST::FUNCTION:DH -RSA_padding_add_none 2789 1_1_0d EXIST::FUNCTION:RSA -sms4_encrypt_16blocks 2790 1_1_0d EXIST::FUNCTION:SMS4 -EVP_zuc 2791 1_1_0d EXIST::FUNCTION:ZUC -ENGINE_unregister_pkey_asn1_meths 2792 1_1_0d EXIST::FUNCTION:ENGINE -SMIME_write_ASN1 2793 1_1_0d EXIST::FUNCTION: -ASN1_BMPSTRING_free 2794 1_1_0d EXIST::FUNCTION: -SDF_PrintECCPublicKey 2795 1_1_0d EXIST::FUNCTION:SDF -PKCS12_BAGS_new 2796 1_1_0d EXIST::FUNCTION: -PEM_write_bio_DSA_PUBKEY 2797 1_1_0d EXIST::FUNCTION:DSA -X509_REQ_add1_attr_by_txt 2798 1_1_0d EXIST::FUNCTION: -PKCS7_set_digest 2799 1_1_0d EXIST::FUNCTION: -CMS_dataInit 2800 1_1_0d EXIST::FUNCTION:CMS -OCSP_ONEREQ_get_ext_by_critical 2801 1_1_0d EXIST::FUNCTION:OCSP -ENGINE_set_EC 2802 1_1_0d EXIST::FUNCTION:ENGINE -EC_KEY_get0_private_key 2803 1_1_0d EXIST::FUNCTION:EC -PKCS12_SAFEBAG_get1_crl 2804 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_RECIP_INFO 2805 1_1_0d EXIST::FUNCTION: -i2d_ECPrivateKey_fp 2806 1_1_0d EXIST::FUNCTION:EC,STDIO -EVP_MD_meth_set_final 2807 1_1_0d EXIST::FUNCTION: -PKCS7_set_cipher 2808 1_1_0d EXIST::FUNCTION: -MDC2 2809 1_1_0d EXIST::FUNCTION:MDC2 -X509V3_get_value_bool 2810 1_1_0d EXIST::FUNCTION: -OCSP_copy_nonce 2811 1_1_0d EXIST::FUNCTION:OCSP -sms4_set_encrypt_key 2812 1_1_0d EXIST::FUNCTION:SMS4 -X509_CRL_get_ext_by_OBJ 2813 1_1_0d EXIST::FUNCTION: -Camellia_ecb_encrypt 2814 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_PKEY_meth_set_init 2815 1_1_0d EXIST::FUNCTION: -SDF_GetPrivateKeyAccessRight 2816 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKAC_new 2817 1_1_0d EXIST::FUNCTION: -X509_NAME_free 2818 1_1_0d EXIST::FUNCTION: -DES_cfb64_encrypt 2819 1_1_0d EXIST::FUNCTION:DES -UI_set_default_method 2820 1_1_0d EXIST::FUNCTION:UI -BN_hash_to_range 2821 1_1_0d EXIST::FUNCTION: -BN_GFP2_one 2822 1_1_0d EXIST::FUNCTION: -i2d_OCSP_CERTID 2823 1_1_0d EXIST::FUNCTION:OCSP -i2d_SM9MasterSecret_bio 2824 1_1_0d EXIST::FUNCTION:SM9 -ASN1_OCTET_STRING_dup 2825 1_1_0d EXIST::FUNCTION: -X509_certificate_type 2826 1_1_0d EXIST::FUNCTION: -EVP_PKEY_verify_recover_init 2827 1_1_0d EXIST::FUNCTION: -CMS_add1_cert 2828 1_1_0d EXIST::FUNCTION:CMS -PKCS12_item_decrypt_d2i 2829 1_1_0d EXIST::FUNCTION: -i2d_ASN1_VISIBLESTRING 2830 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_purpose 2831 1_1_0d EXIST::FUNCTION: -PEM_write_bio_EC_PUBKEY 2832 1_1_0d EXIST::FUNCTION:EC -X509_get_ext_by_NID 2833 1_1_0d EXIST::FUNCTION: -CRYPTO_malloc 2834 1_1_0d EXIST::FUNCTION: -PAILLIER_ciphertext_scalar_mul 2835 1_1_0d EXIST::FUNCTION:PAILLIER -OPENSSL_INIT_set_config_appname 2836 1_1_0d EXIST::FUNCTION:STDIO -i2d_OCSP_CERTSTATUS 2837 1_1_0d EXIST::FUNCTION:OCSP -i2d_AUTHORITY_INFO_ACCESS 2838 1_1_0d EXIST::FUNCTION: -CTLOG_get0_log_id 2839 1_1_0d EXIST::FUNCTION:CT -X509_REVOKED_set_serialNumber 2840 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_compare_id 2841 1_1_0d EXIST::FUNCTION: -BN_is_negative 2842 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_type 2843 1_1_0d EXIST::FUNCTION: -SKF_SetLabel 2844 1_1_0d EXIST::FUNCTION:SKF -X509_LOOKUP_free 2845 1_1_0d EXIST::FUNCTION: -SKF_GenECCKeyPair 2846 1_1_0d EXIST::FUNCTION:SKF -X509_STORE_set_lookup_crls 2847 1_1_0d EXIST::FUNCTION: -d2i_ASN1_SEQUENCE_ANY 2848 1_1_0d EXIST::FUNCTION: -X509_CRL_get_ext_by_NID 2849 1_1_0d EXIST::FUNCTION: -ASN1_STRING_TABLE_add 2850 1_1_0d EXIST::FUNCTION: -i2d_ASN1_ENUMERATED 2851 1_1_0d EXIST::FUNCTION: -RSA_set_ex_data 2852 1_1_0d EXIST::FUNCTION:RSA -d2i_CMS_bio 2853 1_1_0d EXIST::FUNCTION:CMS -BN_nist_mod_192 2854 1_1_0d EXIST::FUNCTION: -SDF_PrintECCPrivateKey 2855 1_1_0d EXIST::FUNCTION:SDF -BIO_listen 2856 1_1_0d EXIST::FUNCTION:SOCK -OCSP_parse_url 2857 1_1_0d EXIST::FUNCTION:OCSP -COMP_CTX_get_type 2858 1_1_0d EXIST::FUNCTION:COMP -i2a_ASN1_INTEGER 2859 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_free 2860 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_up_ref 2861 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_mont_data 2862 1_1_0d EXIST::FUNCTION:EC -BIO_meth_set_puts 2863 1_1_0d EXIST::FUNCTION: -ZUC_generate_keystream 2864 1_1_0d EXIST::FUNCTION:ZUC -i2d_X509_CRL_INFO 2865 1_1_0d EXIST::FUNCTION: -CMS_SignerInfo_set1_signer_cert 2866 1_1_0d EXIST::FUNCTION:CMS -SM2CiphertextValue_new 2867 1_1_0d EXIST::FUNCTION:SM2 -CMS_RecipientInfo_kari_get0_orig_id 2868 1_1_0d EXIST::FUNCTION:CMS -TS_TST_INFO_set_policy_id 2869 1_1_0d EXIST::FUNCTION:TS -EVP_PKEY_asn1_get_count 2870 1_1_0d EXIST::FUNCTION: -d2i_ESS_SIGNING_CERT 2871 1_1_0d EXIST::FUNCTION:TS -EVP_DigestInit_ex 2872 1_1_0d EXIST::FUNCTION: -X509_STORE_load_locations 2873 1_1_0d EXIST::FUNCTION: -i2d_X509_EXTENSION 2874 1_1_0d EXIST::FUNCTION: -CRYPTO_nistcts128_encrypt 2875 1_1_0d EXIST::FUNCTION: -TS_RESP_dup 2876 1_1_0d EXIST::FUNCTION:TS -CERTIFICATEPOLICIES_it 2877 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -CERTIFICATEPOLICIES_it 2877 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_REVOKED_get0_revocationDate 2878 1_1_0d EXIST::FUNCTION: -X509_REQ_get0_signature 2879 1_1_0d EXIST::FUNCTION: -CRYPTO_free_ex_index 2880 1_1_0d EXIST::FUNCTION: -BF_ofb64_encrypt 2881 1_1_0d EXIST::FUNCTION:BF -X509_STORE_set_depth 2882 1_1_0d EXIST::FUNCTION: -CMS_data_create 2883 1_1_0d EXIST::FUNCTION:CMS -OPENSSL_asc2uni 2884 1_1_0d EXIST::FUNCTION: -PKCS7_dataVerify 2885 1_1_0d EXIST::FUNCTION: -ERR_peek_error_line_data 2886 1_1_0d EXIST::FUNCTION: -HMAC_Final 2887 1_1_0d EXIST::FUNCTION: -DES_encrypt1 2888 1_1_0d EXIST::FUNCTION:DES -X509_EXTENSION_create_by_NID 2889 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNER_INFO_it 2890 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_SIGNER_INFO_it 2890 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -LONG_it 2891 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -LONG_it 2891 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_PUBKEY_free 2892 1_1_0d EXIST::FUNCTION: -DSA_meth_get_bn_mod_exp 2893 1_1_0d EXIST::FUNCTION:DSA -d2i_PKCS7_SIGNER_INFO 2894 1_1_0d EXIST::FUNCTION: -EVP_PKEY_up_ref 2895 1_1_0d EXIST::FUNCTION: -PEM_read_bio_SM9_MASTER_PUBKEY 2896 1_1_0d EXIST::FUNCTION:SM9 -X509_CRL_get_version 2897 1_1_0d EXIST::FUNCTION: -OCSP_BASICRESP_free 2898 1_1_0d EXIST::FUNCTION:OCSP -PEM_read_SM9PublicKey 2899 1_1_0d EXIST::FUNCTION:SM9,STDIO -EC_type1curve_tate_ratio 2900 1_1_0d EXIST::FUNCTION: -POLICYINFO_new 2901 1_1_0d EXIST::FUNCTION: -BIO_set_tcp_ndelay 2902 1_1_0d EXIST::FUNCTION:SOCK -d2i_BFMasterSecret 2903 1_1_0d EXIST::FUNCTION:BFIBE -X509V3_EXT_add 2904 1_1_0d EXIST::FUNCTION: -CMS_digest_verify 2905 1_1_0d EXIST::FUNCTION:CMS -ASN1_OCTET_STRING_set 2906 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_sign 2907 1_1_0d EXIST::FUNCTION: -X509V3_add_value_bool 2908 1_1_0d EXIST::FUNCTION: -X509V3_EXT_cleanup 2909 1_1_0d EXIST::FUNCTION: -DSO_METHOD_openssl 2910 1_1_0d EXIST::FUNCTION: -X509_policy_check 2911 1_1_0d EXIST::FUNCTION: -X509_CINF_it 2912 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_CINF_it 2912 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_des_ede3_cfb8 2913 1_1_0d EXIST::FUNCTION:DES -SKF_GenRandom 2914 1_1_0d EXIST::FUNCTION:SKF -SOF_GetErrorString 2915 1_1_0d EXIST::FUNCTION:SOF -SKF_VerifyPIN 2916 1_1_0d EXIST::FUNCTION:SKF -ASN1_UTCTIME_new 2917 1_1_0d EXIST::FUNCTION: -i2d_TS_REQ_bio 2918 1_1_0d EXIST::FUNCTION:TS -OPENSSL_sk_unshift 2919 1_1_0d EXIST::FUNCTION: -serpent_decrypt 2920 1_1_0d EXIST::FUNCTION:SERPENT -GENERAL_NAME_get0_value 2921 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_new 2922 1_1_0d EXIST::FUNCTION:OCSP -d2i_PUBKEY_fp 2923 1_1_0d EXIST::FUNCTION:STDIO -RSAPublicKey_it 2924 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA -RSAPublicKey_it 2924 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA -d2i_PROXY_POLICY 2925 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_set_object 2926 1_1_0d EXIST::FUNCTION: -EC_POINT_mul 2927 1_1_0d EXIST::FUNCTION:EC -RSA_meth_get_priv_enc 2928 1_1_0d EXIST::FUNCTION:RSA -X509_print_fp 2929 1_1_0d EXIST::FUNCTION:STDIO -BN_GF2m_mod_div_arr 2930 1_1_0d EXIST::FUNCTION:EC2M -BIO_ADDRINFO_protocol 2931 1_1_0d EXIST::FUNCTION:SOCK -EVP_PKEY_encrypt_old 2932 1_1_0d EXIST::FUNCTION: -PKCS7_add_recipient_info 2933 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_input_blocksize 2934 1_1_0d EXIST::FUNCTION: -PEM_write_X509_REQ 2935 1_1_0d EXIST::FUNCTION:STDIO -X509at_add1_attr 2936 1_1_0d EXIST::FUNCTION: -DSA_generate_parameters_ex 2937 1_1_0d EXIST::FUNCTION:DSA -PEM_write_bio 2938 1_1_0d EXIST::FUNCTION: -X509_issuer_name_cmp 2939 1_1_0d EXIST::FUNCTION: -BIO_meth_get_read 2940 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_init 2941 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_it 2942 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -GENERAL_NAME_it 2942 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_GF2m_add 2943 1_1_0d EXIST::FUNCTION:EC2M -TS_STATUS_INFO_set_status 2944 1_1_0d EXIST::FUNCTION:TS -i2d_PKCS7 2945 1_1_0d EXIST::FUNCTION: -ERR_peek_error_line 2946 1_1_0d EXIST::FUNCTION: -SAF_MacUpdate 2947 1_1_0d EXIST::FUNCTION: -X509_check_ip 2948 1_1_0d EXIST::FUNCTION: -ASN1_IA5STRING_free 2949 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_copy 2950 1_1_0d EXIST::FUNCTION: -d2i_ASN1_TIME 2951 1_1_0d EXIST::FUNCTION: -PKCS7_set_content 2952 1_1_0d EXIST::FUNCTION: -ASN1_PRINTABLESTRING_free 2953 1_1_0d EXIST::FUNCTION: -SKF_LoadLibrary 2954 1_1_0d EXIST::FUNCTION:SKF -EVP_CIPHER_CTX_get_cipher_data 2955 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get0_extensions 2956 1_1_0d EXIST::FUNCTION: -SM2_encrypt 2957 1_1_0d EXIST::FUNCTION:SM2 -EVP_camellia_192_cfb8 2958 1_1_0d EXIST::FUNCTION:CAMELLIA -CMS_signed_get_attr_by_NID 2959 1_1_0d EXIST::FUNCTION:CMS -X509_TRUST_get0_name 2960 1_1_0d EXIST::FUNCTION: -HMAC_Init_ex 2961 1_1_0d EXIST::FUNCTION: -RC2_ofb64_encrypt 2962 1_1_0d EXIST::FUNCTION:RC2 -PEM_read_SM9MasterSecret 2963 1_1_0d EXIST::FUNCTION:SM9,STDIO -OPENSSL_sk_find 2964 1_1_0d EXIST::FUNCTION: -CRYPTO_ctr128_encrypt_ctr32 2965 1_1_0d EXIST::FUNCTION: -EVP_md5_sha1 2966 1_1_0d EXIST::FUNCTION:MD5 -POLICY_MAPPINGS_it 2967 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -POLICY_MAPPINGS_it 2967 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ERR_print_errors_cb 2968 1_1_0d EXIST::FUNCTION: -a2i_ASN1_INTEGER 2969 1_1_0d EXIST::FUNCTION: -d2i_SM9PublicKey 2970 1_1_0d EXIST::FUNCTION:SM9 -COMP_expand_block 2971 1_1_0d EXIST::FUNCTION:COMP -d2i_PUBKEY_bio 2972 1_1_0d EXIST::FUNCTION: -X509_check_private_key 2973 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_DecodeEnvelopedData 2974 1_1_0d EXIST::FUNCTION: -RSA_OAEP_PARAMS_new 2975 1_1_0d EXIST::FUNCTION:RSA -i2d_ASIdentifierChoice 2976 1_1_0d EXIST::FUNCTION:RFC3779 -s2i_ASN1_OCTET_STRING 2977 1_1_0d EXIST::FUNCTION: -SM9PrivateKey_it 2978 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 -SM9PrivateKey_it 2978 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 -TS_CONF_set_signer_key 2979 1_1_0d EXIST::FUNCTION:TS -SRP_VBASE_new 2980 1_1_0d EXIST::FUNCTION:SRP -X509_get_default_cert_dir 2981 1_1_0d EXIST::FUNCTION: -RC5_32_decrypt 2982 1_1_0d EXIST::FUNCTION:RC5 -i2d_ASN1_SEQUENCE_ANY 2983 1_1_0d EXIST::FUNCTION: -SAF_Pkcs7_EncodeSignedData 2984 1_1_0d EXIST::FUNCTION: -IDEA_encrypt 2985 1_1_0d EXIST::FUNCTION:IDEA -SM9PublicKey_get_gmtls_encoded 2986 1_1_0d EXIST::FUNCTION:SM9 -ECIES_do_encrypt 2987 1_1_0d EXIST::FUNCTION:ECIES -PEM_write_SM9PublicKey 2988 1_1_0d EXIST::FUNCTION:SM9,STDIO -TS_TST_INFO_set_accuracy 2989 1_1_0d EXIST::FUNCTION:TS -X509_REQ_get_attr 2990 1_1_0d EXIST::FUNCTION: -d2i_AUTHORITY_INFO_ACCESS 2991 1_1_0d EXIST::FUNCTION: -CMS_add0_recipient_key 2992 1_1_0d EXIST::FUNCTION:CMS +X509_VAL_new 710 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_block_size 711 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_it 712 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +GENERAL_NAME_it 712 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_PKEY_get_default_digest_nid 713 1_1_0d EXIST::FUNCTION: +ENGINE_get_pkey_meth 714 1_1_0d EXIST::FUNCTION:ENGINE +SRP_VBASE_new 715 1_1_0d EXIST::FUNCTION:SRP +X509v3_addr_validate_path 716 1_1_0d EXIST::FUNCTION:RFC3779 +IPAddressRange_it 717 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressRange_it 717 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +i2d_ASN1_bio_stream 718 1_1_0d EXIST::FUNCTION: +X509at_get_attr_by_NID 719 1_1_0d EXIST::FUNCTION: +i2d_BFPublicParameters 720 1_1_0d EXIST::FUNCTION:BFIBE +d2i_BASIC_CONSTRAINTS 721 1_1_0d EXIST::FUNCTION: +SKF_WaitForDevEvent 722 1_1_0d EXIST::FUNCTION:SKF +BN_nnmod 723 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_complete 724 1_1_0d EXIST::FUNCTION:ENGINE +SM9_extract_public_key 725 1_1_0d EXIST::FUNCTION:SM9 +OCSP_request_onereq_count 726 1_1_0d EXIST::FUNCTION:OCSP +CT_POLICY_EVAL_CTX_get0_log_store 727 1_1_0d EXIST::FUNCTION:CT +BN_add_word 728 1_1_0d EXIST::FUNCTION: +ASN1_STRING_TABLE_get 729 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_curve_GFp 730 1_1_0d EXIST::FUNCTION:EC +EVP_MD_type 731 1_1_0d EXIST::FUNCTION: +ASN1_STRING_free 732 1_1_0d EXIST::FUNCTION: +EVP_aes_128_cfb1 733 1_1_0d EXIST::FUNCTION: +UI_method_set_opener 734 1_1_0d EXIST::FUNCTION:UI +TS_REQ_set_msg_imprint 735 1_1_0d EXIST::FUNCTION:TS +BN_mod_mul 736 1_1_0d EXIST::FUNCTION: +OBJ_NAME_init 737 1_1_0d EXIST::FUNCTION: +BIO_ADDR_free 738 1_1_0d EXIST::FUNCTION:SOCK +d2i_IPAddressChoice 739 1_1_0d EXIST::FUNCTION:RFC3779 +TS_TST_INFO_get_serial 740 1_1_0d EXIST::FUNCTION:TS +BIO_get_callback 741 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_get_final 742 1_1_0d EXIST::FUNCTION: +BIO_s_datagram 743 1_1_0d EXIST::FUNCTION:DGRAM +CMS_add1_recipient_cert 744 1_1_0d EXIST::FUNCTION:CMS +ASN1_TYPE_get 745 1_1_0d EXIST::FUNCTION: +i2d_PROXY_CERT_INFO_EXTENSION 746 1_1_0d EXIST::FUNCTION: +X509_OBJECT_up_ref_count 747 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_new 748 1_1_0d EXIST::FUNCTION:CT +EVP_rc2_cfb64 749 1_1_0d EXIST::FUNCTION:RC2 +ASN1_STRING_type_new 750 1_1_0d EXIST::FUNCTION: +b2i_PublicKey_bio 751 1_1_0d EXIST::FUNCTION:DSA +d2i_SM9PrivateKey_fp 752 1_1_0d EXIST::FUNCTION:SM9,STDIO +i2d_GENERAL_NAMES 753 1_1_0d EXIST::FUNCTION: +CRYPTO_ccm128_decrypt 754 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_set_msg_imprint 755 1_1_0d EXIST::FUNCTION:TS +EVP_CIPHER_CTX_test_flags 756 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_dup 757 1_1_0d EXIST::FUNCTION: +X509_CINF_new 758 1_1_0d EXIST::FUNCTION: +RC5_32_cfb64_encrypt 759 1_1_0d EXIST::FUNCTION:RC5 +BASIC_CONSTRAINTS_new 760 1_1_0d EXIST::FUNCTION: +EVP_PKEY_verify_recover_init 761 1_1_0d EXIST::FUNCTION: +ASN1_STRING_print_ex_fp 762 1_1_0d EXIST::FUNCTION:STDIO +UI_set_ex_data 763 1_1_0d EXIST::FUNCTION:UI +NCONF_free_data 764 1_1_0d EXIST::FUNCTION: +HMAC_Init 765 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +X509_STORE_CTX_get_num_untrusted 766 1_1_0d EXIST::FUNCTION: +SM9_sign 767 1_1_0d EXIST::FUNCTION:SM9 +BN_GENCB_get_arg 768 1_1_0d EXIST::FUNCTION: +PEM_write_bio_SM9_MASTER_PUBKEY 769 1_1_0d EXIST::FUNCTION:SM9 +PKCS8_decrypt 770 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_check 771 1_1_0d EXIST::FUNCTION: +BN_bn2bin 772 1_1_0d EXIST::FUNCTION: +X509_add1_trust_object 773 1_1_0d EXIST::FUNCTION: +EC_POINT_cmp_fppoint 774 1_1_0d EXIST::FUNCTION: +ECDSA_do_sign 775 1_1_0d EXIST::FUNCTION:EC +i2d_SM9PrivateKey_fp 776 1_1_0d EXIST::FUNCTION:SM9,STDIO +SKF_PrintECCPublicKey 777 1_1_0d EXIST::FUNCTION:SKF +SM9PrivateKey_it 778 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9PrivateKey_it 778 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +ASN1_GENERALSTRING_new 779 1_1_0d EXIST::FUNCTION: +i2d_TS_TST_INFO_fp 780 1_1_0d EXIST::FUNCTION:STDIO,TS +PEM_read_bio_PaillierPrivateKey 781 1_1_0d EXIST::FUNCTION:PAILLIER +TS_RESP_CTX_free 782 1_1_0d EXIST::FUNCTION:TS +NAME_CONSTRAINTS_check_CN 783 1_1_0d EXIST::FUNCTION: +DH_get0_key 784 1_1_0d EXIST::FUNCTION:DH +PEM_read_bio_PUBKEY 785 1_1_0d EXIST::FUNCTION: +EVP_DecodeUpdate 786 1_1_0d EXIST::FUNCTION: +X509_CRL_get_meth_data 787 1_1_0d EXIST::FUNCTION: +RSAPublicKey_it 788 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSAPublicKey_it 788 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +ENGINE_get_next 789 1_1_0d EXIST::FUNCTION:ENGINE +DSA_meth_get_bn_mod_exp 790 1_1_0d EXIST::FUNCTION:DSA +DSAparams_print 791 1_1_0d EXIST::FUNCTION:DSA +sms4_cbc_encrypt 792 1_1_0d EXIST::FUNCTION:SMS4 +i2d_PrivateKey_bio 793 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_new 794 1_1_0d EXIST::FUNCTION: +d2i_RSAPublicKey_bio 795 1_1_0d EXIST::FUNCTION:RSA +CRL_DIST_POINTS_free 796 1_1_0d EXIST::FUNCTION: +X509_REQ_verify 797 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_strhash 798 1_1_0d EXIST::FUNCTION: +sms4_set_encrypt_key 799 1_1_0d EXIST::FUNCTION:SMS4 +SOF_SetSignMethod 800 1_1_0d EXIST::FUNCTION: +d2i_ASN1_NULL 801 1_1_0d EXIST::FUNCTION: +BN_sub 802 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_init 803 1_1_0d EXIST::FUNCTION:TS +X509_aux_print 804 1_1_0d EXIST::FUNCTION: +X509_NAME_new 805 1_1_0d EXIST::FUNCTION: +ENGINE_get_cipher 806 1_1_0d EXIST::FUNCTION:ENGINE +DES_cfb64_encrypt 807 1_1_0d EXIST::FUNCTION:DES +X509_STORE_CTX_get_lookup_crls 808 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_SIGNED 809 1_1_0d EXIST::FUNCTION: +ASIdentifiers_new 810 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_rc5_32_12_16_cfb64 811 1_1_0d EXIST::FUNCTION:RC5 +ASIdentifierChoice_new 812 1_1_0d EXIST::FUNCTION:RFC3779 +X509_CRL_get0_nextUpdate 813 1_1_0d EXIST::FUNCTION: +PKCS7_verify 814 1_1_0d EXIST::FUNCTION: +OCSP_RESPBYTES_new 815 1_1_0d EXIST::FUNCTION:OCSP +POLICYQUALINFO_it 816 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICYQUALINFO_it 816 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OPENSSL_sk_push 817 1_1_0d EXIST::FUNCTION: +i2a_ASN1_INTEGER 818 1_1_0d EXIST::FUNCTION: +d2i_DSAPrivateKey_fp 819 1_1_0d EXIST::FUNCTION:DSA,STDIO +SEED_ecb_encrypt 820 1_1_0d EXIST::FUNCTION:SEED +NETSCAPE_SPKI_b64_encode 821 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_iv_length 822 1_1_0d EXIST::FUNCTION: +RAND_set_rand_method 823 1_1_0d EXIST::FUNCTION: +BN_add 824 1_1_0d EXIST::FUNCTION: +d2i_PAILLIER_PUBKEY 825 1_1_0d EXIST::FUNCTION:PAILLIER +BIO_ADDR_rawaddress 826 1_1_0d EXIST::FUNCTION:SOCK +X509_TRUST_set_default 827 1_1_0d EXIST::FUNCTION: +EVP_PBE_CipherInit 828 1_1_0d EXIST::FUNCTION: +PKCS12_unpack_p7encdata 829 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_set0 830 1_1_0d EXIST::FUNCTION:EC +SCT_get0_signature 831 1_1_0d EXIST::FUNCTION:CT +X509_NAME_oneline 832 1_1_0d EXIST::FUNCTION: +TS_CONF_set_clock_precision_digits 833 1_1_0d EXIST::FUNCTION:TS +BIO_listen 834 1_1_0d EXIST::FUNCTION:SOCK +OPENSSL_INIT_set_config_appname 835 1_1_0d EXIST::FUNCTION:STDIO +NAME_CONSTRAINTS_free 836 1_1_0d EXIST::FUNCTION: +sm3_hmac_final 837 1_1_0d EXIST::FUNCTION:SM3 +ERR_load_DH_strings 838 1_1_0d EXIST::FUNCTION:DH +UI_new 839 1_1_0d EXIST::FUNCTION:UI +CTLOG_get0_log_id 840 1_1_0d EXIST::FUNCTION:CT +ENGINE_unregister_DSA 841 1_1_0d EXIST::FUNCTION:ENGINE +SAF_EnumCertificatesFree 842 1_1_0d EXIST::FUNCTION: +DSA_set_ex_data 843 1_1_0d EXIST::FUNCTION:DSA +PEM_write_DSAparams 844 1_1_0d EXIST::FUNCTION:DSA,STDIO +ASN1_parse_dump 845 1_1_0d EXIST::FUNCTION: +SKF_PrintRSAPrivateKey 846 1_1_0d EXIST::FUNCTION:SKF +ENGINE_get_cmd_defns 847 1_1_0d EXIST::FUNCTION:ENGINE +EVP_des_ede_cbc 848 1_1_0d EXIST::FUNCTION:DES +EVP_aes_192_ocb 849 1_1_0d EXIST::FUNCTION:OCB +ASN1_item_ex_d2i 850 1_1_0d EXIST::FUNCTION: +ASN1_item_ex_free 851 1_1_0d EXIST::FUNCTION: +i2d_RSAPublicKey 852 1_1_0d EXIST::FUNCTION:RSA +CPK_MASTER_SECRET_extract_public_params 853 1_1_0d EXIST::FUNCTION:CPK +PEM_write_PKCS8PrivateKey 854 1_1_0d EXIST::FUNCTION:STDIO +d2i_X509_REQ_bio 855 1_1_0d EXIST::FUNCTION: +X509_set_subject_name 856 1_1_0d EXIST::FUNCTION: +EC_KEY_set_conv_form 857 1_1_0d EXIST::FUNCTION:EC +CRYPTO_ccm128_setiv 858 1_1_0d EXIST::FUNCTION: +EVP_PKEY_cmp 859 1_1_0d EXIST::FUNCTION: +i2d_PAILLIER_PUBKEY 860 1_1_0d EXIST::FUNCTION:PAILLIER +OPENSSL_uni2asc 861 1_1_0d EXIST::FUNCTION: +FpPoint_new 862 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_set_compute_key 863 1_1_0d EXIST::FUNCTION:EC +OPENSSL_strlcpy 864 1_1_0d EXIST::FUNCTION: +EVP_bf_ofb 865 1_1_0d EXIST::FUNCTION:BF +OPENSSL_hexchar2int 866 1_1_0d EXIST::FUNCTION: +d2i_ACCESS_DESCRIPTION 867 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_EC_KEY 868 1_1_0d EXIST::FUNCTION:EC +ASN1_get_object 869 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1_name 870 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_get0 871 1_1_0d EXIST::FUNCTION: +RSA_meth_free 872 1_1_0d EXIST::FUNCTION:RSA +UI_add_input_boolean 873 1_1_0d EXIST::FUNCTION:UI +OPENSSL_sk_find_ex 874 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_print_bio 875 1_1_0d EXIST::FUNCTION:TS +RSA_new_from_RSArefPrivateKey 876 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +i2d_PBEPARAM 877 1_1_0d EXIST::FUNCTION: +CAST_cfb64_encrypt 878 1_1_0d EXIST::FUNCTION:CAST +SKF_GetPINInfo 879 1_1_0d EXIST::FUNCTION:SKF +i2d_NETSCAPE_CERT_SEQUENCE 880 1_1_0d EXIST::FUNCTION: +BIO_dump 881 1_1_0d EXIST::FUNCTION: +ZUC_128eea3_encrypt 882 1_1_0d EXIST::FUNCTION:ZUC +TS_ACCURACY_get_millis 883 1_1_0d EXIST::FUNCTION:TS +PKCS12_add_cert 884 1_1_0d EXIST::FUNCTION: +ENGINE_get_RSA 885 1_1_0d EXIST::FUNCTION:ENGINE +EVP_DigestSignFinal 886 1_1_0d EXIST::FUNCTION: +SCT_LIST_free 887 1_1_0d EXIST::FUNCTION:CT +PKCS7_ENCRYPT_new 888 1_1_0d EXIST::FUNCTION: +RSA_new_from_RSArefPublicKey 889 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +PKCS12_SAFEBAGS_it 890 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_SAFEBAGS_it 890 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CPK_MASTER_SECRET_validate_public_params 891 1_1_0d EXIST::FUNCTION:CPK +SKF_DigestInit 892 1_1_0d EXIST::FUNCTION:SKF +BN_is_odd 893 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_ciphertext_length 894 1_1_0d EXIST::FUNCTION:ECIES +OCSP_basic_add1_nonce 895 1_1_0d EXIST::FUNCTION:OCSP +PEM_read_DSAPrivateKey 896 1_1_0d EXIST::FUNCTION:DSA,STDIO +ECParameters_print_fp 897 1_1_0d EXIST::FUNCTION:EC,STDIO +PKCS12_pack_p7data 898 1_1_0d EXIST::FUNCTION: +PKCS7_add1_attrib_digest 899 1_1_0d EXIST::FUNCTION: +SM9Ciphertext_new 900 1_1_0d EXIST::FUNCTION:SM9 +EVP_PBE_scrypt 901 1_1_0d EXIST::FUNCTION:SCRYPT +EC_GROUP_is_type1curve 902 1_1_0d EXIST::FUNCTION: +PBE2PARAM_it 903 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PBE2PARAM_it 903 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_keyid_get0 904 1_1_0d EXIST::FUNCTION: +PKCS12_MAC_DATA_free 905 1_1_0d EXIST::FUNCTION: +X509_TRUST_cleanup 906 1_1_0d EXIST::FUNCTION: +EVP_DecodeInit 907 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_flags 908 1_1_0d EXIST::FUNCTION: +CERTIFICATEPOLICIES_it 909 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +CERTIFICATEPOLICIES_it 909 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_RSAPrivateKey_bio 910 1_1_0d EXIST::FUNCTION:RSA +i2d_PKCS8_PRIV_KEY_INFO_fp 911 1_1_0d EXIST::FUNCTION:STDIO +ENGINE_remove 912 1_1_0d EXIST::FUNCTION:ENGINE +MD5_Init 913 1_1_0d EXIST::FUNCTION:MD5 +d2i_PKCS7_SIGN_ENVELOPE 914 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_msg_imprint 915 1_1_0d EXIST::FUNCTION:TS +EC_KEY_priv2oct 916 1_1_0d EXIST::FUNCTION:EC +BIO_set_cipher 917 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_update 918 1_1_0d EXIST::FUNCTION: +ERR_load_ASN1_strings 919 1_1_0d EXIST::FUNCTION: +HMAC_Final 920 1_1_0d EXIST::FUNCTION: +Camellia_cfb1_encrypt 921 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_PKEY_bits 922 1_1_0d EXIST::FUNCTION: +serpent_set_decrypt_key 923 1_1_0d EXIST::FUNCTION:SERPENT +BN_BLINDING_convert 924 1_1_0d EXIST::FUNCTION: +OPENSSL_init 925 1_1_0d EXIST::FUNCTION: +X509V3_add_value_bool_nf 926 1_1_0d EXIST::FUNCTION: +X509_SIG_new 927 1_1_0d EXIST::FUNCTION: +BIO_dgram_sctp_notification_cb 928 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +SRP_get_default_gN 929 1_1_0d EXIST::FUNCTION:SRP +SKF_DeleteContainer 930 1_1_0d EXIST::FUNCTION:SKF +SDF_GenerateAgreementDataAndKeyWithECC 931 1_1_0d EXIST::FUNCTION: +ASN1_item_pack 932 1_1_0d EXIST::FUNCTION: +X509_set_pubkey 933 1_1_0d EXIST::FUNCTION: +SKF_DevAuth 934 1_1_0d EXIST::FUNCTION:SKF +SAF_EccVerifySignFile 935 1_1_0d EXIST::FUNCTION:SAF +BUF_MEM_grow 936 1_1_0d EXIST::FUNCTION: +EVP_get_cipherbyname 937 1_1_0d EXIST::FUNCTION: +OCSP_SERVICELOC_new 938 1_1_0d EXIST::FUNCTION:OCSP +RIPEMD160_Transform 939 1_1_0d EXIST::FUNCTION:RMD160 +ENGINE_register_all_digests 940 1_1_0d EXIST::FUNCTION:ENGINE +EC_KEY_set_enc_flags 941 1_1_0d EXIST::FUNCTION:EC +BB1MasterSecret_it 942 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1MasterSecret_it 942 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +BN_uadd 943 1_1_0d EXIST::FUNCTION: +X509_subject_name_hash 944 1_1_0d EXIST::FUNCTION: +BF_set_key 945 1_1_0d EXIST::FUNCTION:BF +d2i_OCSP_RESPID 946 1_1_0d EXIST::FUNCTION:OCSP +DHparams_dup 947 1_1_0d EXIST::FUNCTION:DH +CMS_stream 948 1_1_0d EXIST::FUNCTION:CMS +PKCS12_SAFEBAG_free 949 1_1_0d EXIST::FUNCTION: +OCSP_onereq_get0_id 950 1_1_0d EXIST::FUNCTION:OCSP +SKF_UnblockPIN 951 1_1_0d EXIST::FUNCTION:SKF +X509_STORE_CTX_init 952 1_1_0d EXIST::FUNCTION: +ECIES_encrypt 953 1_1_0d EXIST::FUNCTION:ECIES +TS_REQ_set_policy_id 954 1_1_0d EXIST::FUNCTION:TS +EVP_aes_256_cbc_hmac_sha256 955 1_1_0d EXIST::FUNCTION: +X509_REQ_INFO_it 956 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_REQ_INFO_it 956 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_ASIdentifierChoice 957 1_1_0d EXIST::FUNCTION:RFC3779 +OCSP_request_add0_id 958 1_1_0d EXIST::FUNCTION:OCSP +ASN1_STRING_clear_free 959 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_cleanup 960 1_1_0d EXIST::FUNCTION: +PKCS5_PBKDF2_HMAC 961 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_create_pkcs8_encrypt 962 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_set_ECCCipher 963 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 +UI_add_error_string 964 1_1_0d EXIST::FUNCTION:UI +UI_dup_input_string 965 1_1_0d EXIST::FUNCTION:UI +SAF_RsaVerifySignFile 966 1_1_0d EXIST::FUNCTION: +EVP_des_ede3_ofb 967 1_1_0d EXIST::FUNCTION:DES +BN_get_rfc3526_prime_2048 968 1_1_0d EXIST::FUNCTION: +X509_SIG_it 969 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_SIG_it 969 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_PCTX_set_oid_flags 970 1_1_0d EXIST::FUNCTION: +ASN1_OBJECT_free 971 1_1_0d EXIST::FUNCTION: +X509_CRL_INFO_new 972 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_set_ctrl 973 1_1_0d EXIST::FUNCTION: +X509V3_EXT_val_prn 974 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_set_free 975 1_1_0d EXIST::FUNCTION: +OCSP_basic_sign 976 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_strndup 977 1_1_0d EXIST::FUNCTION: +RSA_meth_get_keygen 978 1_1_0d EXIST::FUNCTION:RSA +SM2CiphertextValue_free 979 1_1_0d EXIST::FUNCTION:SM2 +SKF_MacFinal 980 1_1_0d EXIST::FUNCTION:SKF +EVP_MD_CTX_md_data 981 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_lock_free 982 1_1_0d EXIST::FUNCTION: +CRYPTO_secure_malloc_init 983 1_1_0d EXIST::FUNCTION: +ENGINE_load_private_key 984 1_1_0d EXIST::FUNCTION:ENGINE +i2d_ASN1_OCTET_STRING 985 1_1_0d EXIST::FUNCTION: +SOF_DecryptFile 986 1_1_0d EXIST::FUNCTION: +GENERAL_SUBTREE_free 987 1_1_0d EXIST::FUNCTION: +SOF_GetSignMethod 988 1_1_0d EXIST::FUNCTION: +BIO_copy_next_retry 989 1_1_0d EXIST::FUNCTION: +PKCS12_free 990 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_get_ECCCIPHERBLOB 991 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 +i2d_SM9Signature_fp 992 1_1_0d EXIST::FUNCTION:SM9,STDIO +Camellia_ecb_encrypt 993 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_PKEY_new 994 1_1_0d EXIST::FUNCTION: +EC_KEY_check_key 995 1_1_0d EXIST::FUNCTION:EC +X509_VERIFY_PARAM_set_flags 996 1_1_0d EXIST::FUNCTION: +ENGINE_set_default 997 1_1_0d EXIST::FUNCTION:ENGINE +X509_STORE_CTX_get_error 998 1_1_0d EXIST::FUNCTION: +RSA_get0_key 999 1_1_0d EXIST::FUNCTION:RSA +GENERAL_NAME_set0_othername 1000 1_1_0d EXIST::FUNCTION: +ERR_load_BUF_strings 1001 1_1_0d EXIST::FUNCTION: +EVP_VerifyFinal 1002 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_input_blocksize 1003 1_1_0d EXIST::FUNCTION: +SM9_SignFinal 1004 1_1_0d EXIST::FUNCTION:SM9 +OCSP_REQINFO_free 1005 1_1_0d EXIST::FUNCTION:OCSP +SDF_ExternalPublicKeyOperation_RSA 1006 1_1_0d EXIST::FUNCTION: +ASN1_bn_print 1007 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get_nid 1008 1_1_0d EXIST::FUNCTION: +i2d_SM9PublicParameters_fp 1009 1_1_0d EXIST::FUNCTION:SM9,STDIO +X509_check_host 1010 1_1_0d EXIST::FUNCTION: +SAF_DestroySymmAlgoObj 1011 1_1_0d EXIST::FUNCTION: +SKF_ExportPublicKey 1012 1_1_0d EXIST::FUNCTION:SKF +SDF_GenerateKeyWithIPK_ECC 1013 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_free 1014 1_1_0d EXIST::FUNCTION: +o2i_SM2CiphertextValue 1015 1_1_0d EXIST::FUNCTION:SM2 +X509_STORE_CTX_set_default 1016 1_1_0d EXIST::FUNCTION: +SM2_sign_setup 1017 1_1_0d EXIST::FUNCTION:SM2 +UI_get_method 1018 1_1_0d EXIST::FUNCTION:UI +RSA_meth_set0_app_data 1019 1_1_0d EXIST::FUNCTION:RSA +MD4_Init 1020 1_1_0d EXIST::FUNCTION:MD4 +sms4_encrypt_init 1021 1_1_0d EXIST::FUNCTION:SMS4 +i2d_DIST_POINT 1022 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_new 1023 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_128_unwrap 1024 1_1_0d EXIST::FUNCTION: +OTP_generate 1025 1_1_0d EXIST::FUNCTION:OTP +TS_TST_INFO_set_time 1026 1_1_0d EXIST::FUNCTION:TS +d2i_ASN1_BMPSTRING 1027 1_1_0d EXIST::FUNCTION: +RSA_test_flags 1028 1_1_0d EXIST::FUNCTION:RSA +ENGINE_get_default_DH 1029 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_CTX_set_data 1030 1_1_0d EXIST::FUNCTION: +ASN1_item_d2i_bio 1031 1_1_0d EXIST::FUNCTION: +RSA_X931_hash_id 1032 1_1_0d EXIST::FUNCTION:RSA +X509V3_add1_i2d 1033 1_1_0d EXIST::FUNCTION: +PKCS12_add_key 1034 1_1_0d EXIST::FUNCTION: +OPENSSL_init_crypto 1035 1_1_0d EXIST::FUNCTION: +X509_CRL_get0_extensions 1036 1_1_0d EXIST::FUNCTION: +ENGINE_register_ciphers 1037 1_1_0d EXIST::FUNCTION:ENGINE +SAF_Mac 1038 1_1_0d EXIST::FUNCTION: +X509_time_adj_ex 1039 1_1_0d EXIST::FUNCTION: +OCSP_response_get1_basic 1040 1_1_0d EXIST::FUNCTION:OCSP +X509_REQ_get_attr_by_OBJ 1041 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_str_flags 1042 1_1_0d EXIST::FUNCTION: +EVP_camellia_256_ctr 1043 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_PKEY_meth_set_copy 1044 1_1_0d EXIST::FUNCTION: +i2d_PKEY_USAGE_PERIOD 1045 1_1_0d EXIST::FUNCTION: +BN_clear_free 1046 1_1_0d EXIST::FUNCTION: +X509_PKEY_free 1047 1_1_0d EXIST::FUNCTION: +EVP_DigestInit 1048 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get_ext 1049 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_pentanomial_basis 1050 1_1_0d EXIST::FUNCTION:EC,EC2M +AES_ecb_encrypt 1051 1_1_0d EXIST::FUNCTION: +OBJ_add_sigid 1052 1_1_0d EXIST::FUNCTION: +DHparams_it 1053 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:DH +DHparams_it 1053 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:DH +ERR_load_OCSP_strings 1054 1_1_0d EXIST::FUNCTION:OCSP +ASN1_IA5STRING_free 1055 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_get_ECCCipher 1056 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 +SAF_GetRsaPublicKey 1057 1_1_0d EXIST::FUNCTION: +PEM_write_bio_CMS 1058 1_1_0d EXIST::FUNCTION:CMS +SDF_PrintRSAPrivateKey 1059 1_1_0d EXIST::FUNCTION:SDF +RSA_X931_generate_key_ex 1060 1_1_0d EXIST::FUNCTION:RSA +CMS_signed_add1_attr 1061 1_1_0d EXIST::FUNCTION:CMS +OCSP_SERVICELOC_free 1062 1_1_0d EXIST::FUNCTION:OCSP +PKCS7_SIGNER_INFO_set 1063 1_1_0d EXIST::FUNCTION: +CRYPTO_cfb128_encrypt 1064 1_1_0d EXIST::FUNCTION: +BIO_dump_cb 1065 1_1_0d EXIST::FUNCTION: +PEM_write_DSA_PUBKEY 1066 1_1_0d EXIST::FUNCTION:DSA,STDIO +DSO_METHOD_openssl 1067 1_1_0d EXIST::FUNCTION: +PEM_write_PUBKEY 1068 1_1_0d EXIST::FUNCTION:STDIO +X509_VERIFY_PARAM_set1_email 1069 1_1_0d EXIST::FUNCTION: +PKCS12_add_friendlyname_utf8 1070 1_1_0d EXIST::FUNCTION: +d2i_PROXY_POLICY 1071 1_1_0d EXIST::FUNCTION: +ASRange_it 1072 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASRange_it 1072 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +ECDSA_SIG_get0 1073 1_1_0d EXIST::FUNCTION:EC +DSA_OpenSSL 1074 1_1_0d EXIST::FUNCTION:DSA +BIO_pop 1075 1_1_0d EXIST::FUNCTION: +i2d_SM9PublicParameters 1076 1_1_0d EXIST::FUNCTION:SM9 +EVP_PKEY_CTX_set0_keygen_info 1077 1_1_0d EXIST::FUNCTION: +OCSP_REVOKEDINFO_new 1078 1_1_0d EXIST::FUNCTION:OCSP +PEM_write_PAILLIER_PUBKEY 1079 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +OPENSSL_cleanup 1080 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PaillierPublicKey 1081 1_1_0d EXIST::FUNCTION:PAILLIER +PKCS7_set_attributes 1082 1_1_0d EXIST::FUNCTION: +SAF_Base64_Encode 1083 1_1_0d EXIST::FUNCTION: +CMS_SignedData_init 1084 1_1_0d EXIST::FUNCTION:CMS +EC_GROUP_get_basis_type 1085 1_1_0d EXIST::FUNCTION:EC +TS_ACCURACY_set_micros 1086 1_1_0d EXIST::FUNCTION:TS +TS_REQ_set_nonce 1087 1_1_0d EXIST::FUNCTION:TS +X509_REQ_to_X509 1088 1_1_0d EXIST::FUNCTION: +i2d_ASN1_GENERALIZEDTIME 1089 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_ENCRYPT 1090 1_1_0d EXIST::FUNCTION: +DES_ede3_cfb64_encrypt 1091 1_1_0d EXIST::FUNCTION:DES +PROXY_CERT_INFO_EXTENSION_it 1092 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PROXY_CERT_INFO_EXTENSION_it 1092 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_print_fp 1093 1_1_0d EXIST::FUNCTION:STDIO +BIO_f_linebuffer 1094 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_set_private 1095 1_1_0d EXIST::FUNCTION: +DSA_clear_flags 1096 1_1_0d EXIST::FUNCTION:DSA +X509_ALGOR_dup 1097 1_1_0d EXIST::FUNCTION: +SDF_UnloadLibrary 1098 1_1_0d EXIST::FUNCTION:SDF +CERTIFICATEPOLICIES_free 1099 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set0_verified_chain 1100 1_1_0d EXIST::FUNCTION: +WHIRLPOOL 1101 1_1_0d EXIST::FUNCTION:WHIRLPOOL +CTLOG_get0_name 1102 1_1_0d EXIST::FUNCTION:CT +EVP_sha384 1103 1_1_0d EXIST:!VMSVAX:FUNCTION: +CRYPTO_cbc128_decrypt 1104 1_1_0d EXIST::FUNCTION: +X509_set_proxy_flag 1105 1_1_0d EXIST::FUNCTION: +EVP_get_default_digest 1106 1_1_0d EXIST::FUNCTION: +BN_is_zero 1107 1_1_0d EXIST::FUNCTION: +CRYPTO_set_ex_data 1108 1_1_0d EXIST::FUNCTION: +TS_CONF_set_def_policy 1109 1_1_0d EXIST::FUNCTION:TS +X509_REVOKED_set_serialNumber 1110 1_1_0d EXIST::FUNCTION: +SDF_CalculateMAC 1111 1_1_0d EXIST::FUNCTION: +AES_unwrap_key 1112 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_oid_flags 1113 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_get_by_id 1114 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_check 1115 1_1_0d EXIST::FUNCTION: +UI_get0_test_string 1116 1_1_0d EXIST::FUNCTION:UI +X509_CRL_get_ext_d2i 1117 1_1_0d EXIST::FUNCTION: +BN_mod_add 1118 1_1_0d EXIST::FUNCTION: +IDEA_set_decrypt_key 1119 1_1_0d EXIST::FUNCTION:IDEA +BIO_f_asn1 1120 1_1_0d EXIST::FUNCTION: +BN_is_solinas 1121 1_1_0d EXIST::FUNCTION: +RSA_padding_add_none 1122 1_1_0d EXIST::FUNCTION:RSA +SCT_print 1123 1_1_0d EXIST::FUNCTION:CT +EVP_PKEY_set1_RSA 1124 1_1_0d EXIST::FUNCTION:RSA +i2d_TS_REQ_bio 1125 1_1_0d EXIST::FUNCTION:TS +SAF_GetVersion 1126 1_1_0d EXIST::FUNCTION: +IPAddressFamily_free 1127 1_1_0d EXIST::FUNCTION:RFC3779 +EC_GROUP_get_asn1_flag 1128 1_1_0d EXIST::FUNCTION:EC +EC_KEY_set_public_key_affine_coordinates 1129 1_1_0d EXIST::FUNCTION:EC +PEM_write_X509_AUX 1130 1_1_0d EXIST::FUNCTION:STDIO +X509_NAME_it 1131 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_NAME_it 1131 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ISSUING_DIST_POINT_it 1132 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ISSUING_DIST_POINT_it 1132 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_set_ECCrefPrivateKey 1133 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +OPENSSL_sk_new 1134 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_signctx 1135 1_1_0d EXIST::FUNCTION: +X509_policy_node_get0_policy 1136 1_1_0d EXIST::FUNCTION: +BN_new 1137 1_1_0d EXIST::FUNCTION: +CTLOG_STORE_free 1138 1_1_0d EXIST::FUNCTION:CT +SHA256_Update 1139 1_1_0d EXIST::FUNCTION: +PEM_read_bio_CMS 1140 1_1_0d EXIST::FUNCTION:CMS +BIO_method_name 1141 1_1_0d EXIST::FUNCTION: +CMS_add0_recipient_password 1142 1_1_0d EXIST::FUNCTION:CMS +X509_VERIFY_PARAM_add0_policy 1143 1_1_0d EXIST::FUNCTION: +X509_get_extension_flags 1144 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_iv_length 1145 1_1_0d EXIST::FUNCTION: +X509_STORE_get_check_crl 1146 1_1_0d EXIST::FUNCTION: +ASN1_item_ex_new 1147 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_tag 1148 1_1_0d EXIST::FUNCTION:OCB +BN_MONT_CTX_set 1149 1_1_0d EXIST::FUNCTION: +PEM_read_PAILLIER_PUBKEY 1150 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +PKCS8_PRIV_KEY_INFO_new 1151 1_1_0d EXIST::FUNCTION: +X509_CRL_METHOD_new 1152 1_1_0d EXIST::FUNCTION: +SM9_MASTER_KEY_free 1153 1_1_0d EXIST::FUNCTION:SM9 +EVP_sms4_cfb128 1154 1_1_0d EXIST::FUNCTION:SMS4 +ENGINE_setup_bsd_cryptodev 1155 1_1_0d EXIST:__FreeBSD__:FUNCTION:DEPRECATEDIN_1_1_0,ENGINE +SOF_SignData 1156 1_1_0d EXIST::FUNCTION: +CMS_ReceiptRequest_it 1157 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS +CMS_ReceiptRequest_it 1157 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS +CONF_imodule_get_module 1158 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_cleanup_local 1159 1_1_0d EXIST::FUNCTION: +EVP_aes_128_ofb 1160 1_1_0d EXIST::FUNCTION: +PKCS12_get0_mac 1161 1_1_0d EXIST::FUNCTION: +FIPS_mode_set 1162 1_1_0d EXIST::FUNCTION: +BN_copy 1163 1_1_0d EXIST::FUNCTION: +err_free_strings_int 1164 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get0 1165 1_1_0d EXIST::FUNCTION: +ERR_error_string 1166 1_1_0d EXIST::FUNCTION: +ENGINE_new 1167 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_item_d2i 1168 1_1_0d EXIST::FUNCTION: +TS_ASN1_INTEGER_print_bio 1169 1_1_0d EXIST::FUNCTION:TS +SDF_InternalEncrypt_ECC 1170 1_1_0d EXIST::FUNCTION: +DSA_meth_set_init 1171 1_1_0d EXIST::FUNCTION:DSA +EC_GROUP_get_point_conversion_form 1172 1_1_0d EXIST::FUNCTION:EC +PEM_read_bio_DSA_PUBKEY 1173 1_1_0d EXIST::FUNCTION:DSA +EVP_cast5_ofb 1174 1_1_0d EXIST::FUNCTION:CAST +SKF_VerifyPIN 1175 1_1_0d EXIST::FUNCTION:SKF +ERR_load_PKCS7_strings 1176 1_1_0d EXIST::FUNCTION: +IPAddressOrRange_it 1177 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressOrRange_it 1177 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +RSAPrivateKey_dup 1178 1_1_0d EXIST::FUNCTION:RSA +i2d_X509_bio 1179 1_1_0d EXIST::FUNCTION: +EVP_EncryptFinal 1180 1_1_0d EXIST::FUNCTION: +EVP_des_ede3_cfb1 1181 1_1_0d EXIST::FUNCTION:DES +d2i_NETSCAPE_SPKI 1182 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_paramgen 1183 1_1_0d EXIST::FUNCTION: +CMS_signed_get0_data_by_OBJ 1184 1_1_0d EXIST::FUNCTION:CMS +BIO_s_bio 1185 1_1_0d EXIST::FUNCTION: +HMAC_CTX_new 1186 1_1_0d EXIST::FUNCTION: +BN_set_negative 1187 1_1_0d EXIST::FUNCTION: +CMS_verify 1188 1_1_0d EXIST::FUNCTION:CMS +SCT_set_signature_nid 1189 1_1_0d EXIST::FUNCTION:CT +i2d_SM9PublicParameters_bio 1190 1_1_0d EXIST::FUNCTION:SM9 +X509_CRL_get_version 1191 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PrivateKey_traditional 1192 1_1_0d EXIST::FUNCTION: +BN_to_ASN1_ENUMERATED 1193 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_unpack_sequence 1194 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_node_usage_stats 1195 1_1_0d EXIST::FUNCTION:STDIO +PKCS12_SAFEBAG_create0_pkcs8 1196 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_set_msg 1197 1_1_0d EXIST::FUNCTION:TS +d2i_SM9PrivateKey 1198 1_1_0d EXIST::FUNCTION:SM9 +X509_STORE_set_check_issued 1199 1_1_0d EXIST::FUNCTION: +SKF_WriteFile 1200 1_1_0d EXIST::FUNCTION:SKF +BN_ucmp 1201 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set_time 1202 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_find_str 1203 1_1_0d EXIST::FUNCTION: +CONF_module_get_usr_data 1204 1_1_0d EXIST::FUNCTION: +d2i_DSA_PUBKEY_bio 1205 1_1_0d EXIST::FUNCTION:DSA +X509_CRL_set_version 1206 1_1_0d EXIST::FUNCTION: +i2d_ECDSA_SIG_fp 1207 1_1_0d EXIST::FUNCTION:EC,STDIO +MD5_Transform 1208 1_1_0d EXIST::FUNCTION:MD5 +ERR_load_CONF_strings 1209 1_1_0d EXIST::FUNCTION: +BN_exp 1210 1_1_0d EXIST::FUNCTION: +TS_REQ_set_cert_req 1211 1_1_0d EXIST::FUNCTION:TS +DES_cbc_cksum 1212 1_1_0d EXIST::FUNCTION:DES +PKCS7_signatureVerify 1213 1_1_0d EXIST::FUNCTION: +SKF_ECCVerify 1214 1_1_0d EXIST::FUNCTION:SKF +IDEA_set_encrypt_key 1215 1_1_0d EXIST::FUNCTION:IDEA +CBIGNUM_it 1216 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +CBIGNUM_it 1216 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_write_bio_ECPrivateKey 1217 1_1_0d EXIST::FUNCTION:EC +PEM_read_bio_PKCS8_PRIV_KEY_INFO 1218 1_1_0d EXIST::FUNCTION: +X509_STORE_set_ex_data 1219 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_depth 1220 1_1_0d EXIST::FUNCTION: +AES_cfb128_encrypt 1221 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_set_sign 1222 1_1_0d EXIST::FUNCTION:EC +d2i_PKCS8_PRIV_KEY_INFO_fp 1223 1_1_0d EXIST::FUNCTION:STDIO +PEM_write_bio_X509_CRL 1224 1_1_0d EXIST::FUNCTION: +SAF_EccPublicKeyEnc 1225 1_1_0d EXIST::FUNCTION: +RSA_set0_crt_params 1226 1_1_0d EXIST::FUNCTION:RSA +EVP_aes_128_ctr 1227 1_1_0d EXIST::FUNCTION: +CRYPTO_cts128_encrypt_block 1228 1_1_0d EXIST::FUNCTION: +i2d_X509_PUBKEY 1229 1_1_0d EXIST::FUNCTION: +SRP_check_known_gN_param 1230 1_1_0d EXIST::FUNCTION:SRP +EVP_blake2s256 1231 1_1_0d EXIST::FUNCTION:BLAKE2 +ZUC_generate_keyword 1232 1_1_0d EXIST::FUNCTION:ZUC +ENGINE_get_cipher_engine 1233 1_1_0d EXIST::FUNCTION:ENGINE +X509_CERT_AUX_new 1234 1_1_0d EXIST::FUNCTION: +ASN1_OBJECT_create 1235 1_1_0d EXIST::FUNCTION: +PKCS7_sign_add_signer 1236 1_1_0d EXIST::FUNCTION: +CRYPTO_new_ex_data 1237 1_1_0d EXIST::FUNCTION: +EVP_des_cfb8 1238 1_1_0d EXIST::FUNCTION:DES +RC5_32_ofb64_encrypt 1239 1_1_0d EXIST::FUNCTION:RC5 +X509_REVOKED_get0_revocationDate 1240 1_1_0d EXIST::FUNCTION: +PKCS7_ENC_CONTENT_new 1241 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_exp 1242 1_1_0d EXIST::FUNCTION:EC2M +PKCS7_SIGNER_INFO_get0_algs 1243 1_1_0d EXIST::FUNCTION: +EC_KEY_set_ECCPUBLICKEYBLOB 1244 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +SAF_RemoveCaCertificate 1245 1_1_0d EXIST::FUNCTION: +i2d_PKCS12_fp 1246 1_1_0d EXIST::FUNCTION:STDIO +CMS_ReceiptRequest_get0_values 1247 1_1_0d EXIST::FUNCTION:CMS +i2d_X509 1248 1_1_0d EXIST::FUNCTION: +OCSP_CERTID_it 1249 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_CERTID_it 1249 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +EVP_aes_256_xts 1250 1_1_0d EXIST::FUNCTION: +ERR_load_COMP_strings 1251 1_1_0d EXIST::FUNCTION:COMP +EVP_CIPHER_CTX_block_size 1252 1_1_0d EXIST::FUNCTION: +X509at_add1_attr 1253 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_set_version 1254 1_1_0d EXIST::FUNCTION:TS +OCSP_REQUEST_get_ext_by_OBJ 1255 1_1_0d EXIST::FUNCTION:OCSP +DES_ncbc_encrypt 1256 1_1_0d EXIST::FUNCTION:DES +BIO_ADDR_service_string 1257 1_1_0d EXIST::FUNCTION:SOCK +CRYPTO_THREAD_lock_new 1258 1_1_0d EXIST::FUNCTION: +BIO_s_connect 1259 1_1_0d EXIST::FUNCTION:SOCK +X509_getm_notAfter 1260 1_1_0d EXIST::FUNCTION: +X509_CRL_get_ext_count 1261 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_new 1262 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_ctrl 1263 1_1_0d EXIST::FUNCTION: +EC_KEY_get_ECCPRIVATEKEYBLOB 1264 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +X509_VERIFY_PARAM_get0_peername 1265 1_1_0d EXIST::FUNCTION: +PKCS7_DIGEST_free 1266 1_1_0d EXIST::FUNCTION: +BB1PublicParameters_it 1267 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1PublicParameters_it 1267 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +X509V3_EXT_cleanup 1268 1_1_0d EXIST::FUNCTION: +RSA_meth_get_init 1269 1_1_0d EXIST::FUNCTION:RSA +TS_TST_INFO_new 1270 1_1_0d EXIST::FUNCTION:TS +BN_get_rfc2409_prime_1024 1271 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_new 1272 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_solve_quad 1273 1_1_0d EXIST::FUNCTION:EC2M +SAF_SymmDecryptFinal 1274 1_1_0d EXIST::FUNCTION: +OCSP_RESPONSE_print 1275 1_1_0d EXIST::FUNCTION:OCSP +OCSP_SIGNATURE_free 1276 1_1_0d EXIST::FUNCTION:OCSP +X509_OBJECT_get0_X509 1277 1_1_0d EXIST::FUNCTION: +DH_get0_engine 1278 1_1_0d EXIST::FUNCTION:DH +a2i_ASN1_INTEGER 1279 1_1_0d EXIST::FUNCTION: +RAND_add 1280 1_1_0d EXIST::FUNCTION: +UI_method_get_flusher 1281 1_1_0d EXIST::FUNCTION:UI +X509_STORE_get_cert_crl 1282 1_1_0d EXIST::FUNCTION: +MD2_Final 1283 1_1_0d EXIST::FUNCTION:MD2 +AES_options 1284 1_1_0d EXIST::FUNCTION: +i2d_PKCS8PrivateKey_bio 1285 1_1_0d EXIST::FUNCTION: +SAF_AddCaCertificate 1286 1_1_0d EXIST::FUNCTION: +i2d_BB1MasterSecret 1287 1_1_0d EXIST::FUNCTION:BB1IBE +d2i_ASN1_UTF8STRING 1288 1_1_0d EXIST::FUNCTION: +DSA_dup_DH 1289 1_1_0d EXIST::FUNCTION:DH,DSA +DH_meth_get_flags 1290 1_1_0d EXIST::FUNCTION:DH +PKCS7_add_crl 1291 1_1_0d EXIST::FUNCTION: +BN_MONT_CTX_new 1292 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNED_free 1293 1_1_0d EXIST::FUNCTION: +ECIES_PARAMS_get_kdf 1294 1_1_0d EXIST::FUNCTION:ECIES +HMAC_CTX_reset 1295 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_DIGEST 1296 1_1_0d EXIST::FUNCTION: +RSA_null_method 1297 1_1_0d EXIST::FUNCTION:RSA +X509_verify_cert_error_string 1298 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_cleanup 1299 1_1_0d EXIST::FUNCTION: +SDF_PrintECCSignature 1300 1_1_0d EXIST::FUNCTION:SDF +DSA_bits 1301 1_1_0d EXIST::FUNCTION:DSA +UI_method_get_closer 1302 1_1_0d EXIST::FUNCTION:UI +OCSP_REVOKEDINFO_it 1303 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_REVOKEDINFO_it 1303 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +i2d_OCSP_BASICRESP 1304 1_1_0d EXIST::FUNCTION:OCSP +OCSP_response_status_str 1305 1_1_0d EXIST::FUNCTION:OCSP +d2i_RSAPrivateKey 1306 1_1_0d EXIST::FUNCTION:RSA +EC_GROUP_get_curve_GF2m 1307 1_1_0d EXIST::FUNCTION:EC,EC2M +EVP_CIPHER_CTX_set_key_length 1308 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_encrypt 1309 1_1_0d EXIST::FUNCTION:CMS +d2i_BFPrivateKeyBlock 1310 1_1_0d EXIST::FUNCTION:BFIBE +i2d_DIRECTORYSTRING 1311 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_unlock 1312 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_value 1313 1_1_0d EXIST::FUNCTION: +ENGINE_free 1314 1_1_0d EXIST::FUNCTION:ENGINE +d2i_OCSP_RESPBYTES 1315 1_1_0d EXIST::FUNCTION:OCSP +OCSP_check_nonce 1316 1_1_0d EXIST::FUNCTION:OCSP +X509_CRL_set_issuer_name 1317 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_get_ext_count 1318 1_1_0d EXIST::FUNCTION:OCSP +EC_GROUP_have_precompute_mult 1319 1_1_0d EXIST::FUNCTION:EC +ENGINE_set_DH 1320 1_1_0d EXIST::FUNCTION:ENGINE +BN_options 1321 1_1_0d EXIST::FUNCTION: +SDF_HashUpdate 1322 1_1_0d EXIST::FUNCTION: +OCSP_CERTID_dup 1323 1_1_0d EXIST::FUNCTION:OCSP +DSA_test_flags 1324 1_1_0d EXIST::FUNCTION:DSA +OBJ_txt2nid 1325 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_RAND 1326 1_1_0d EXIST::FUNCTION:ENGINE +WHIRLPOOL_BitUpdate 1327 1_1_0d EXIST::FUNCTION:WHIRLPOOL +i2d_OCSP_REQINFO 1328 1_1_0d EXIST::FUNCTION:OCSP +EC_GROUP_set_asn1_flag 1329 1_1_0d EXIST::FUNCTION:EC +PEM_read_PaillierPublicKey 1330 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +d2i_SM9Ciphertext_fp 1331 1_1_0d EXIST::FUNCTION:SM9,STDIO +X509_OBJECT_free 1332 1_1_0d EXIST::FUNCTION: +BN_GF2m_add 1333 1_1_0d EXIST::FUNCTION:EC2M +MD4_Transform 1334 1_1_0d EXIST::FUNCTION:MD4 +SAF_Base64_EncodeUpdate 1335 1_1_0d EXIST::FUNCTION: +AUTHORITY_INFO_ACCESS_it 1336 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +AUTHORITY_INFO_ACCESS_it 1336 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_ECPrivateKey_fp 1337 1_1_0d EXIST::FUNCTION:EC,STDIO +X509v3_get_ext_by_critical 1338 1_1_0d EXIST::FUNCTION: +X509at_get_attr 1339 1_1_0d EXIST::FUNCTION: +EVP_des_ede 1340 1_1_0d EXIST::FUNCTION:DES +TS_TST_INFO_get_ext_by_critical 1341 1_1_0d EXIST::FUNCTION:TS +TS_MSG_IMPRINT_new 1342 1_1_0d EXIST::FUNCTION:TS +X509_check_trust 1343 1_1_0d EXIST::FUNCTION: +ENGINE_get_static_state 1344 1_1_0d EXIST::FUNCTION:ENGINE +SKF_GenExtRSAKey 1345 1_1_0d EXIST::FUNCTION:SKF +BIO_ADDRINFO_family 1346 1_1_0d EXIST::FUNCTION:SOCK +X509_CRL_set_default_method 1347 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_clear_flags 1348 1_1_0d EXIST::FUNCTION: +d2i_TS_REQ_fp 1349 1_1_0d EXIST::FUNCTION:STDIO,TS +d2i_BFMasterSecret 1350 1_1_0d EXIST::FUNCTION:BFIBE +ESS_CERT_ID_free 1351 1_1_0d EXIST::FUNCTION:TS +EC_POINT_set_compressed_coordinates_GF2m 1352 1_1_0d EXIST::FUNCTION:EC,EC2M +EVP_aes_256_cbc 1353 1_1_0d EXIST::FUNCTION: +ASYNC_pause_job 1354 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_SM9_MASTER 1355 1_1_0d EXIST::FUNCTION:SM9 +RSA_meth_set_bn_mod_exp 1356 1_1_0d EXIST::FUNCTION:RSA +EVP_CIPHER_type 1357 1_1_0d EXIST::FUNCTION: +ERR_load_EC_strings 1358 1_1_0d EXIST::FUNCTION:EC +CMS_signed_get_attr_by_NID 1359 1_1_0d EXIST::FUNCTION:CMS +GENERAL_NAME_get0_value 1360 1_1_0d EXIST::FUNCTION: +BN_get_rfc3526_prime_8192 1361 1_1_0d EXIST::FUNCTION: +BN_is_word 1362 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE 1363 1_1_0d EXIST::FUNCTION:CT +OCSP_REQ_CTX_nbio 1364 1_1_0d EXIST::FUNCTION:OCSP +d2i_PKCS8_fp 1365 1_1_0d EXIST::FUNCTION:STDIO +ASN1_BIT_STRING_name_print 1366 1_1_0d EXIST::FUNCTION: +d2i_EC_PUBKEY 1367 1_1_0d EXIST::FUNCTION:EC +CMAC_CTX_free 1368 1_1_0d EXIST::FUNCTION:CMAC +OCSP_BASICRESP_free 1369 1_1_0d EXIST::FUNCTION:OCSP +ENGINE_register_complete 1370 1_1_0d EXIST::FUNCTION:ENGINE +ERR_load_TS_strings 1371 1_1_0d EXIST::FUNCTION:TS +PEM_write_SM9PublicParameters 1372 1_1_0d EXIST::FUNCTION:SM9,STDIO +X509_NAME_ENTRY_free 1373 1_1_0d EXIST::FUNCTION: +SKF_ImportRSAKeyPair 1374 1_1_0d EXIST::FUNCTION:SKF +EC_KEY_METHOD_set_keygen 1375 1_1_0d EXIST::FUNCTION:EC +d2i_TS_TST_INFO 1376 1_1_0d EXIST::FUNCTION:TS +SKF_CloseApplication 1377 1_1_0d EXIST::FUNCTION:SKF +EVP_EncodeFinal 1378 1_1_0d EXIST::FUNCTION: +DH_meth_get_compute_key 1379 1_1_0d EXIST::FUNCTION:DH +PEM_read_bio_PrivateKey 1380 1_1_0d EXIST::FUNCTION: +CRYPTO_atomic_add 1381 1_1_0d EXIST::FUNCTION: +CMS_ContentInfo_free 1382 1_1_0d EXIST::FUNCTION:CMS +CRYPTO_THREAD_compare_id 1383 1_1_0d EXIST::FUNCTION: +d2i_OCSP_REVOKEDINFO 1384 1_1_0d EXIST::FUNCTION:OCSP +LONG_it 1385 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +LONG_it 1385 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CMS_add1_crl 1386 1_1_0d EXIST::FUNCTION:CMS +ENGINE_load_ssl_client_cert 1387 1_1_0d EXIST::FUNCTION:ENGINE +EVP_CIPHER_CTX_ctrl 1388 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKI_verify 1389 1_1_0d EXIST::FUNCTION: +CRYPTO_realloc 1390 1_1_0d EXIST::FUNCTION: +EC_METHOD_get_field_type 1391 1_1_0d EXIST::FUNCTION:EC +DH_get_2048_224 1392 1_1_0d EXIST::FUNCTION:DH +CPK_PUBLIC_PARAMS_print 1393 1_1_0d EXIST::FUNCTION:CPK +OPENSSL_die 1394 1_1_0d EXIST::FUNCTION: +ASN1_item_sign 1395 1_1_0d EXIST::FUNCTION: +RSA_meth_set_finish 1396 1_1_0d EXIST::FUNCTION:RSA +BIO_write 1397 1_1_0d EXIST::FUNCTION: +PEM_write_RSA_PUBKEY 1398 1_1_0d EXIST::FUNCTION:RSA,STDIO +PKCS8_encrypt 1399 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SM9PublicKey 1400 1_1_0d EXIST::FUNCTION:SM9 +EVP_PKEY_asn1_find 1401 1_1_0d EXIST::FUNCTION: +X509_REQ_get_attr_count 1402 1_1_0d EXIST::FUNCTION: +CRYPTO_mem_ctrl 1403 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_verify_recover 1404 1_1_0d EXIST::FUNCTION: +BN_bn2mpi 1405 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_add_failure_info 1406 1_1_0d EXIST::FUNCTION:TS +i2d_ASN1_ENUMERATED 1407 1_1_0d EXIST::FUNCTION: +ASN1_T61STRING_it 1408 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_T61STRING_it 1408 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SDF_GetPrivateKeyAccessRight 1409 1_1_0d EXIST::FUNCTION: +TS_RESP_new 1410 1_1_0d EXIST::FUNCTION:TS +SDF_CloseDevice 1411 1_1_0d EXIST::FUNCTION: +X509_NAME_digest 1412 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_get0_md_ctx 1413 1_1_0d EXIST::FUNCTION:CMS +OCSP_REQUEST_get_ext_count 1414 1_1_0d EXIST::FUNCTION:OCSP +ENGINE_get_init_function 1415 1_1_0d EXIST::FUNCTION:ENGINE +i2d_CERTIFICATEPOLICIES 1416 1_1_0d EXIST::FUNCTION: +CTLOG_new 1417 1_1_0d EXIST::FUNCTION:CT +SAF_EccVerifySignByCert 1418 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_set_down_load 1419 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_set0_key 1420 1_1_0d EXIST::FUNCTION:CMS +ASN1_ANY_it 1421 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_ANY_it 1421 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_des_cfb64 1422 1_1_0d EXIST::FUNCTION:DES +SM9Signature_it 1423 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9Signature_it 1423 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +GENERAL_NAME_print 1424 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_asn1_to_param 1425 1_1_0d EXIST::FUNCTION: +TS_REQ_get_cert_req 1426 1_1_0d EXIST::FUNCTION:TS +EVP_camellia_256_cfb128 1427 1_1_0d EXIST::FUNCTION:CAMELLIA +d2i_SM9PrivateKey_bio 1428 1_1_0d EXIST::FUNCTION:SM9 +SKF_GetContainerType 1429 1_1_0d EXIST::FUNCTION:SKF +DES_pcbc_encrypt 1430 1_1_0d EXIST::FUNCTION:DES +EVP_PKEY_get1_RSA 1431 1_1_0d EXIST::FUNCTION:RSA +DH_meth_set_flags 1432 1_1_0d EXIST::FUNCTION:DH +UI_method_set_closer 1433 1_1_0d EXIST::FUNCTION:UI +ECCPRIVATEKEYBLOB_set_private_key 1434 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +PEM_read_DSA_PUBKEY 1435 1_1_0d EXIST::FUNCTION:DSA,STDIO +PEM_read_PKCS8_PRIV_KEY_INFO 1436 1_1_0d EXIST::FUNCTION:STDIO +CMS_set1_signers_certs 1437 1_1_0d EXIST::FUNCTION:CMS +TS_REQ_get_policy_id 1438 1_1_0d EXIST::FUNCTION:TS +sms4_ecb_encrypt 1439 1_1_0d EXIST::FUNCTION:SMS4 +X509_STORE_get0_objects 1440 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_retrieve 1441 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_purpose 1442 1_1_0d EXIST::FUNCTION: +BN_mpi2bn 1443 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKI_sign 1444 1_1_0d EXIST::FUNCTION: +BN_BLINDING_convert_ex 1445 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get_attr_by_OBJ 1446 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_get0_status 1447 1_1_0d EXIST::FUNCTION:TS +KDF_get_ibcs 1448 1_1_0d EXIST::FUNCTION: +EC_POINT_method_of 1449 1_1_0d EXIST::FUNCTION:EC +i2b_PVK_bio 1450 1_1_0d EXIST::FUNCTION:DSA,RC4 +SKF_GetErrorString 1451 1_1_0d EXIST::FUNCTION:SKF +X509_VERIFY_PARAM_new 1452 1_1_0d EXIST::FUNCTION: +UI_UTIL_read_pw 1453 1_1_0d EXIST::FUNCTION:UI +X509_policy_tree_free 1454 1_1_0d EXIST::FUNCTION: +sm3_hmac_update 1455 1_1_0d EXIST::FUNCTION:SM3 +CMS_RecipientInfo_get0_pkey_ctx 1456 1_1_0d EXIST::FUNCTION:CMS +X509_subject_name_cmp 1457 1_1_0d EXIST::FUNCTION: +DH_test_flags 1458 1_1_0d EXIST::FUNCTION:DH +PEM_read_bio_SM9PublicParameters 1459 1_1_0d EXIST::FUNCTION:SM9 +i2d_SXNETID 1460 1_1_0d EXIST::FUNCTION: +i2d_IPAddressRange 1461 1_1_0d EXIST::FUNCTION:RFC3779 +i2d_SM9MasterSecret_fp 1462 1_1_0d EXIST::FUNCTION:SM9,STDIO +CMS_signed_add1_attr_by_NID 1463 1_1_0d EXIST::FUNCTION:CMS +PKCS7_dup 1464 1_1_0d EXIST::FUNCTION: +BIO_get_ex_data 1465 1_1_0d EXIST::FUNCTION: +PEM_read_CMS 1466 1_1_0d EXIST::FUNCTION:CMS,STDIO +X509_REVOKED_dup 1467 1_1_0d EXIST::FUNCTION: +EC_KEY_get0_public_key 1468 1_1_0d EXIST::FUNCTION:EC +v2i_ASN1_BIT_STRING 1469 1_1_0d EXIST::FUNCTION: +d2i_CPK_MASTER_SECRET_bio 1470 1_1_0d EXIST::FUNCTION:CPK +SAF_GetEccPublicKey 1471 1_1_0d EXIST::FUNCTION: +SAF_SymmDecryptUpdate 1472 1_1_0d EXIST::FUNCTION: +SKF_ImportCertificate 1473 1_1_0d EXIST::FUNCTION:SKF +X509_check_email 1474 1_1_0d EXIST::FUNCTION: +EVP_read_pw_string_min 1475 1_1_0d EXIST::FUNCTION:UI +ERR_load_strings 1476 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_flags 1477 1_1_0d EXIST::FUNCTION: +BFMasterSecret_it 1478 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFMasterSecret_it 1478 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +PKCS12_setup_mac 1479 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_cfb1 1480 1_1_0d EXIST::FUNCTION:CAMELLIA +BN_mod_mul_reciprocal 1481 1_1_0d EXIST::FUNCTION: +SM9Ciphertext_it 1482 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9Ciphertext_it 1482 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +X509_REQ_delete_attr 1483 1_1_0d EXIST::FUNCTION: +SAF_EccSignFile 1484 1_1_0d EXIST::FUNCTION:SAF +EC_GROUP_order_bits 1485 1_1_0d EXIST::FUNCTION:EC +d2i_CRL_DIST_POINTS 1486 1_1_0d EXIST::FUNCTION: +PKCS7_RECIP_INFO_free 1487 1_1_0d EXIST::FUNCTION: +IDEA_encrypt 1488 1_1_0d EXIST::FUNCTION:IDEA +ZUC_128eea3 1489 1_1_0d EXIST::FUNCTION:ZUC +TS_RESP_CTX_new 1490 1_1_0d EXIST::FUNCTION:TS +RSAPublicKey_dup 1491 1_1_0d EXIST::FUNCTION:RSA +IPAddressChoice_it 1492 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressChoice_it 1492 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +SKF_ECCExportSessionKey 1493 1_1_0d EXIST::FUNCTION:SKF +OCSP_request_sign 1494 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_CTX_set_trust 1495 1_1_0d EXIST::FUNCTION: +PEM_read_SM9PublicKey 1496 1_1_0d EXIST::FUNCTION:SM9,STDIO +X509_STORE_get_lookup_certs 1497 1_1_0d EXIST::FUNCTION: +CMAC_resume 1498 1_1_0d EXIST::FUNCTION:CMAC +X509_VERIFY_PARAM_set1_ip_asc 1499 1_1_0d EXIST::FUNCTION: +ENGINE_set_load_ssl_client_cert_function 1500 1_1_0d EXIST::FUNCTION:ENGINE +SAF_GetCertificateInfo 1501 1_1_0d EXIST::FUNCTION: +EVP_PKEY_base_id 1502 1_1_0d EXIST::FUNCTION: +NCONF_default 1503 1_1_0d EXIST::FUNCTION: +X509_sign_ctx 1504 1_1_0d EXIST::FUNCTION: +DES_string_to_key 1505 1_1_0d EXIST::FUNCTION:DES +BIO_get_init 1506 1_1_0d EXIST::FUNCTION: +X509_get0_trust_objects 1507 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_it 1508 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_OCTET_STRING_it 1508 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +POLICYINFO_it 1509 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICYINFO_it 1509 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_PKEY_meth_set_verify 1510 1_1_0d EXIST::FUNCTION: +RSA_verify_PKCS1_PSS_mgf1 1511 1_1_0d EXIST::FUNCTION:RSA +X509_get_ext_by_OBJ 1512 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_get_ext 1513 1_1_0d EXIST::FUNCTION:OCSP +X509v3_get_ext_count 1514 1_1_0d EXIST::FUNCTION: +UI_OpenSSL 1515 1_1_0d EXIST::FUNCTION:UI +SDF_CloseSession 1516 1_1_0d EXIST::FUNCTION: +d2i_EDIPARTYNAME 1517 1_1_0d EXIST::FUNCTION: +EC_GROUP_get0_order 1518 1_1_0d EXIST::FUNCTION:EC +BN_GFP2_new 1519 1_1_0d EXIST::FUNCTION: +RSA_meth_set_pub_enc 1520 1_1_0d EXIST::FUNCTION:RSA +BIO_sock_should_retry 1521 1_1_0d EXIST::FUNCTION:SOCK +OBJ_nid2sn 1522 1_1_0d EXIST::FUNCTION: +i2d_RSAPrivateKey 1523 1_1_0d EXIST::FUNCTION:RSA +i2d_PKCS7 1524 1_1_0d EXIST::FUNCTION: +OCSP_CRLID_free 1525 1_1_0d EXIST::FUNCTION:OCSP +PKCS12_SAFEBAG_it 1526 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_SAFEBAG_it 1526 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SOF_CreateTimeStampRequest 1527 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_bio 1528 1_1_0d EXIST::FUNCTION: +ENGINE_get_digest_engine 1529 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_get_digests 1530 1_1_0d EXIST::FUNCTION:ENGINE +BN_GFP2_div 1531 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_type1curve_zeta 1532 1_1_0d EXIST::FUNCTION: +ASN1_generate_nconf 1533 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_get0_param 1534 1_1_0d EXIST::FUNCTION: +SDF_InternalDecrypt_ECC 1535 1_1_0d EXIST::FUNCTION: +i2d_SCT_LIST 1536 1_1_0d EXIST::FUNCTION:CT +EVP_MD_meth_get_result_size 1537 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_it 1538 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_SINGLERESP_it 1538 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +ECIES_do_encrypt 1539 1_1_0d EXIST::FUNCTION:ECIES +CRYPTO_dup_ex_data 1540 1_1_0d EXIST::FUNCTION: +EC_POINT_point2hex 1541 1_1_0d EXIST::FUNCTION:EC +SOF_SetCertTrustList 1542 1_1_0d EXIST::FUNCTION: +RSA_meth_get_mod_exp 1543 1_1_0d EXIST::FUNCTION:RSA +PKCS12_add_CSPName_asc 1544 1_1_0d EXIST::FUNCTION: +sms4_encrypt_16blocks 1545 1_1_0d EXIST::FUNCTION:SMS4 +ERR_load_BB1IBE_strings 1546 1_1_0d EXIST::FUNCTION:BB1IBE +s2i_ASN1_INTEGER 1547 1_1_0d EXIST::FUNCTION: +a2i_IPADDRESS 1548 1_1_0d EXIST::FUNCTION: +OPENSSL_DIR_read 1549 1_1_0d EXIST::FUNCTION: +OCSP_RESPID_it 1550 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPID_it 1550 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +SKF_GenRSAKeyPair 1551 1_1_0d EXIST::FUNCTION:SKF +EVP_sm3 1552 1_1_0d EXIST::FUNCTION:SM3 +SCT_set0_signature 1553 1_1_0d EXIST::FUNCTION:CT +BN_mod_exp_mont 1554 1_1_0d EXIST::FUNCTION: +i2d_SM9PrivateKey_bio 1555 1_1_0d EXIST::FUNCTION:SM9 +DSA_get0_pqg 1556 1_1_0d EXIST::FUNCTION:DSA +d2i_SM9PublicParameters_bio 1557 1_1_0d EXIST::FUNCTION:SM9 +X509_certificate_type 1558 1_1_0d EXIST::FUNCTION: +X509_STORE_get_cleanup 1559 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_cleanup 1560 1_1_0d EXIST::FUNCTION: +RSA_meth_get_finish 1561 1_1_0d EXIST::FUNCTION:RSA +d2i_SM9_MASTER_PUBKEY 1562 1_1_0d EXIST::FUNCTION:SM9 +OCSP_response_create 1563 1_1_0d EXIST::FUNCTION:OCSP +EVP_get_digestbysgd 1564 1_1_0d EXIST::FUNCTION:GMAPI +ENGINE_set_default_digests 1565 1_1_0d EXIST::FUNCTION:ENGINE +DSA_meth_get_paramgen 1566 1_1_0d EXIST::FUNCTION:DSA +EVP_CIPHER_meth_set_set_asn1_params 1567 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_ISSUER_AND_SERIAL 1568 1_1_0d EXIST::FUNCTION: +CRYPTO_nistcts128_encrypt_block 1569 1_1_0d EXIST::FUNCTION: +ASN1_item_digest 1570 1_1_0d EXIST::FUNCTION: +ASN1_ENUMERATED_it 1571 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_ENUMERATED_it 1571 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_add_alg_module 1572 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_it 1573 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_REQUEST_it 1573 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +d2i_PKCS8PrivateKey_bio 1574 1_1_0d EXIST::FUNCTION: +SDF_DeleteFile 1575 1_1_0d EXIST::FUNCTION: +SDF_ExportEncPublicKey_RSA 1576 1_1_0d EXIST::FUNCTION: +OBJ_create_objects 1577 1_1_0d EXIST::FUNCTION: +RC4 1578 1_1_0d EXIST::FUNCTION:RC4 +d2i_ECCCipher 1579 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +PKCS12_key_gen_uni 1580 1_1_0d EXIST::FUNCTION: +SM9_generate_master_secret 1581 1_1_0d EXIST::FUNCTION:SM9 +X509_REQ_set_extension_nids 1582 1_1_0d EXIST::FUNCTION: +X509_REVOKED_add_ext 1583 1_1_0d EXIST::FUNCTION: +PEM_read_X509_CRL 1584 1_1_0d EXIST::FUNCTION:STDIO +TLS_FEATURE_free 1585 1_1_0d EXIST::FUNCTION: +X509_NAME_get_index_by_NID 1586 1_1_0d EXIST::FUNCTION: +ASN1_VISIBLESTRING_it 1587 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_VISIBLESTRING_it 1587 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +DSA_meth_get0_name 1588 1_1_0d EXIST::FUNCTION:DSA +o2i_ECPublicKey 1589 1_1_0d EXIST::FUNCTION:EC +DSA_free 1590 1_1_0d EXIST::FUNCTION:DSA +BN_GENCB_set 1591 1_1_0d EXIST::FUNCTION: +d2i_DIST_POINT 1592 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_get 1593 1_1_0d EXIST::FUNCTION: +OCSP_check_validity 1594 1_1_0d EXIST::FUNCTION:OCSP +ENGINE_ctrl 1595 1_1_0d EXIST::FUNCTION:ENGINE +BN_mod_sqrt 1596 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_by_subject 1597 1_1_0d EXIST::FUNCTION: +ERR_load_SOF_strings 1598 1_1_0d EXIST::FUNCTION:SOF +BN_GFP2_set_bn 1599 1_1_0d EXIST::FUNCTION: +BN_mod_inverse 1600 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get1_crl 1601 1_1_0d EXIST::FUNCTION: +X509_CRL_delete_ext 1602 1_1_0d EXIST::FUNCTION: +X509_CRL_get_issuer 1603 1_1_0d EXIST::FUNCTION: +SM9_do_verify 1604 1_1_0d EXIST::FUNCTION:SM9 +ASN1_buf_print 1605 1_1_0d EXIST::FUNCTION: +SKF_CloseHandle 1606 1_1_0d EXIST::FUNCTION:SKF +TS_RESP_CTX_get_tst_info 1607 1_1_0d EXIST::FUNCTION:TS +d2i_ASN1_SEQUENCE_ANY 1608 1_1_0d EXIST::FUNCTION: +DSA_meth_set_sign 1609 1_1_0d EXIST::FUNCTION:DSA +CRYPTO_free_ex_index 1610 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_delete_ext 1611 1_1_0d EXIST::FUNCTION:OCSP +BIO_read 1612 1_1_0d EXIST::FUNCTION: +d2i_DIRECTORYSTRING 1613 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_free 1614 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_get_object 1615 1_1_0d EXIST::FUNCTION: +X509_add1_ext_i2d 1616 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_set_nm_flags 1617 1_1_0d EXIST::FUNCTION: +SRP_VBASE_init 1618 1_1_0d EXIST::FUNCTION:SRP +PKCS12_SAFEBAG_get0_attrs 1619 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_set_time 1620 1_1_0d EXIST::FUNCTION:CT +d2i_ASIdOrRange 1621 1_1_0d EXIST::FUNCTION:RFC3779 +X509V3_string_free 1622 1_1_0d EXIST::FUNCTION: +DSA_meth_new 1623 1_1_0d EXIST::FUNCTION:DSA +X509_digest 1624 1_1_0d EXIST::FUNCTION: +X509_issuer_name_hash 1625 1_1_0d EXIST::FUNCTION: +EC_POINT_hash2point 1626 1_1_0d EXIST::FUNCTION: +BN_abs_is_word 1627 1_1_0d EXIST::FUNCTION: +CRYPTO_mem_debug_realloc 1628 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +BIO_sock_init 1629 1_1_0d EXIST::FUNCTION:SOCK +EC_KEY_precompute_mult 1630 1_1_0d EXIST::FUNCTION:EC +ENGINE_unregister_ciphers 1631 1_1_0d EXIST::FUNCTION:ENGINE +i2d_TS_TST_INFO_bio 1632 1_1_0d EXIST::FUNCTION:TS +BB1CiphertextBlock_it 1633 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE +BB1CiphertextBlock_it 1633 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE +OCSP_accept_responses_new 1634 1_1_0d EXIST::FUNCTION:OCSP +OCSP_RESPID_set_by_key 1635 1_1_0d EXIST::FUNCTION:OCSP +EVP_MD_meth_new 1636 1_1_0d EXIST::FUNCTION: +X509V3_add_value_uchar 1637 1_1_0d EXIST::FUNCTION: +PKCS7_set_type 1638 1_1_0d EXIST::FUNCTION: +d2i_PUBKEY_bio 1639 1_1_0d EXIST::FUNCTION: +i2d_SM9Ciphertext_bio 1640 1_1_0d EXIST::FUNCTION:SM9 +d2i_PBE2PARAM 1641 1_1_0d EXIST::FUNCTION: +d2i_X509_ALGORS 1642 1_1_0d EXIST::FUNCTION: +i2d_OTHERNAME 1643 1_1_0d EXIST::FUNCTION: +EC_KEY_set_group 1644 1_1_0d EXIST::FUNCTION:EC +ASN1_NULL_free 1645 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_RSA 1646 1_1_0d EXIST::FUNCTION:ENGINE +BFPublicParameters_free 1647 1_1_0d EXIST::FUNCTION:BFIBE +ASIdentifiers_free 1648 1_1_0d EXIST::FUNCTION:RFC3779 +CRYPTO_cts128_decrypt 1649 1_1_0d EXIST::FUNCTION: +i2d_OCSP_CRLID 1650 1_1_0d EXIST::FUNCTION:OCSP +PEM_read_bio_SM9_PUBKEY 1651 1_1_0d EXIST::FUNCTION:SM9 +PEM_read_bio_PKCS7 1652 1_1_0d EXIST::FUNCTION: +PEM_ASN1_read 1653 1_1_0d EXIST::FUNCTION:STDIO +X509_STORE_CTX_get_by_subject 1654 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_new 1655 1_1_0d EXIST::FUNCTION:TS +SM9_setup 1656 1_1_0d EXIST::FUNCTION:SM9 +ENGINE_register_all_pkey_meths 1657 1_1_0d EXIST::FUNCTION:ENGINE +CPK_MASTER_SECRET_free 1658 1_1_0d EXIST::FUNCTION:CPK +ENGINE_get_default_EC 1659 1_1_0d EXIST::FUNCTION:ENGINE +EC_KEY_new_from_ECCPRIVATEKEYBLOB 1660 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +DES_string_to_2keys 1661 1_1_0d EXIST::FUNCTION:DES +X509_LOOKUP_file 1662 1_1_0d EXIST::FUNCTION: +sm3_hmac 1663 1_1_0d EXIST::FUNCTION:SM3 +EVP_PKEY_encrypt_old 1664 1_1_0d EXIST::FUNCTION: +RSA_X931_derive_ex 1665 1_1_0d EXIST::FUNCTION:RSA +EVP_EncryptInit_ex 1666 1_1_0d EXIST::FUNCTION: +TS_CONF_load_cert 1667 1_1_0d EXIST::FUNCTION:TS +BB1MasterSecret_new 1668 1_1_0d EXIST::FUNCTION:BB1IBE +ASN1_GENERALIZEDTIME_print 1669 1_1_0d EXIST::FUNCTION: +BIO_s_mem 1670 1_1_0d EXIST::FUNCTION: +SCT_free 1671 1_1_0d EXIST::FUNCTION:CT +EVP_PBE_cleanup 1672 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get0_current_issuer 1673 1_1_0d EXIST::FUNCTION: +DSA_meth_get0_app_data 1674 1_1_0d EXIST::FUNCTION:DSA +ENGINE_set_ciphers 1675 1_1_0d EXIST::FUNCTION:ENGINE +i2d_OCSP_RESPBYTES 1676 1_1_0d EXIST::FUNCTION:OCSP +TS_TST_INFO_set_serial 1677 1_1_0d EXIST::FUNCTION:TS +SOF_GetUserList 1678 1_1_0d EXIST::FUNCTION: +d2i_BB1PrivateKeyBlock 1679 1_1_0d EXIST::FUNCTION:BB1IBE +EVP_CIPHER_CTX_set_app_data 1680 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_free 1681 1_1_0d EXIST::FUNCTION: +BN_GFP2_canonical 1682 1_1_0d EXIST::FUNCTION: +X509_get_pubkey_parameters 1683 1_1_0d EXIST::FUNCTION: +PKCS7_ENVELOPE_it 1684 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ENVELOPE_it 1684 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OBJ_NAME_new_index 1685 1_1_0d EXIST::FUNCTION: +d2i_CPK_MASTER_SECRET 1686 1_1_0d EXIST::FUNCTION:CPK +ZLONG_it 1687 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ZLONG_it 1687 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SDF_InternalVerify_ECC 1688 1_1_0d EXIST::FUNCTION: +speck_encrypt16 1689 1_1_0d EXIST::FUNCTION:SPECK +X509_load_cert_crl_file 1690 1_1_0d EXIST::FUNCTION: +d2i_TS_MSG_IMPRINT_fp 1691 1_1_0d EXIST::FUNCTION:STDIO,TS +d2i_USERNOTICE 1692 1_1_0d EXIST::FUNCTION: +DSA_generate_key 1693 1_1_0d EXIST::FUNCTION:DSA +DSA_print 1694 1_1_0d EXIST::FUNCTION:DSA +EVP_PKEY_CTX_set_cb 1695 1_1_0d EXIST::FUNCTION: +EVP_rc4_40 1696 1_1_0d EXIST::FUNCTION:RC4 +SDF_ExportEncPublicKey_ECC 1697 1_1_0d EXIST::FUNCTION: +PKCS12_unpack_p7data 1698 1_1_0d EXIST::FUNCTION: +i2d_SM9Signature 1699 1_1_0d EXIST::FUNCTION:SM9 +RC5_32_cbc_encrypt 1700 1_1_0d EXIST::FUNCTION:RC5 +i2d_ECDSA_SIG 1701 1_1_0d EXIST::FUNCTION:EC +RSA_meth_set_pub_dec 1702 1_1_0d EXIST::FUNCTION:RSA +ENGINE_set_ctrl_function 1703 1_1_0d EXIST::FUNCTION:ENGINE +SKF_ImportSessionKey 1704 1_1_0d EXIST::FUNCTION:SKF +d2i_SM9Ciphertext_bio 1705 1_1_0d EXIST::FUNCTION:SM9 +X509_keyid_set1 1706 1_1_0d EXIST::FUNCTION: +EC_KEY_get_ex_data 1707 1_1_0d EXIST::FUNCTION:EC +X509_NAME_set 1708 1_1_0d EXIST::FUNCTION: +DES_cfb_encrypt 1709 1_1_0d EXIST::FUNCTION:DES +ECIES_CIPHERTEXT_VALUE_new_from_ECCCIPHERBLOB 1710 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF +TS_RESP_CTX_set_certs 1711 1_1_0d EXIST::FUNCTION:TS +SKF_ExportCertificate 1712 1_1_0d EXIST::FUNCTION:SKF +OPENSSL_LH_delete 1713 1_1_0d EXIST::FUNCTION: +TS_REQ_print_bio 1714 1_1_0d EXIST::FUNCTION:TS +X509_STORE_get_get_issuer 1715 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_free 1716 1_1_0d EXIST::FUNCTION:OCSP +X509_CRL_METHOD_free 1717 1_1_0d EXIST::FUNCTION: +PKEY_USAGE_PERIOD_new 1718 1_1_0d EXIST::FUNCTION: +EC_POINT_bn2point 1719 1_1_0d EXIST::FUNCTION:EC +BIO_f_md 1720 1_1_0d EXIST::FUNCTION: +OCSP_RESPID_new 1721 1_1_0d EXIST::FUNCTION:OCSP +RSA_padding_add_PKCS1_type_2 1722 1_1_0d EXIST::FUNCTION:RSA +d2i_TS_MSG_IMPRINT_bio 1723 1_1_0d EXIST::FUNCTION:TS +ENGINE_get_table_flags 1724 1_1_0d EXIST::FUNCTION:ENGINE +ERR_load_GMAPI_strings 1725 1_1_0d EXIST::FUNCTION:GMAPI +ZUC_128eia3 1726 1_1_0d EXIST::FUNCTION:ZUC +BN_BLINDING_set_flags 1727 1_1_0d EXIST::FUNCTION: +BIO_meth_new 1728 1_1_0d EXIST::FUNCTION: +PEM_SignInit 1729 1_1_0d EXIST::FUNCTION: +PKCS7_content_new 1730 1_1_0d EXIST::FUNCTION: +X509V3_add_standard_extensions 1731 1_1_0d EXIST::FUNCTION: +SAF_GetCertificateStateByOCSP 1732 1_1_0d EXIST::FUNCTION: +ERR_load_BN_strings 1733 1_1_0d EXIST::FUNCTION: +ASN1_STRING_data 1734 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +SAF_Base64_EncodeFinal 1735 1_1_0d EXIST::FUNCTION: +X509_get_default_cert_file 1736 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_SM9 1737 1_1_0d EXIST::FUNCTION:SM9 +i2d_BB1PrivateKeyBlock 1738 1_1_0d EXIST::FUNCTION:BB1IBE +OCSP_SINGLERESP_get1_ext_d2i 1739 1_1_0d EXIST::FUNCTION:OCSP +X509_REVOKED_get_ext_by_OBJ 1740 1_1_0d EXIST::FUNCTION: +BIO_sock_error 1741 1_1_0d EXIST::FUNCTION:SOCK +SKF_DigestUpdate 1742 1_1_0d EXIST::FUNCTION:SKF +X509V3_EXT_nconf 1743 1_1_0d EXIST::FUNCTION: +ASN1_SET_ANY_it 1744 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_SET_ANY_it 1744 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_ALGOR_new 1745 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_check_revocation 1746 1_1_0d EXIST::FUNCTION: +DSA_meth_get_mod_exp 1747 1_1_0d EXIST::FUNCTION:DSA +ENGINE_set_DSA 1748 1_1_0d EXIST::FUNCTION:ENGINE +ASRange_free 1749 1_1_0d EXIST::FUNCTION:RFC3779 +SHA384_Init 1750 1_1_0d EXIST:!VMSVAX:FUNCTION: +PEM_write_bio_DSAparams 1751 1_1_0d EXIST::FUNCTION:DSA +ERR_load_SDF_strings 1752 1_1_0d EXIST::FUNCTION:SDF +X509_VERIFY_PARAM_set1_host 1753 1_1_0d EXIST::FUNCTION: +BIO_asn1_get_prefix 1754 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_SIGNER_INFO 1755 1_1_0d EXIST::FUNCTION: +EVP_ENCODE_CTX_num 1756 1_1_0d EXIST::FUNCTION: +EVP_des_ofb 1757 1_1_0d EXIST::FUNCTION:DES +ASN1_GENERALIZEDTIME_free 1758 1_1_0d EXIST::FUNCTION: +ASN1_UTF8STRING_free 1759 1_1_0d EXIST::FUNCTION: +PEM_write_PaillierPrivateKey 1760 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +SDF_PrintECCPublicKey 1761 1_1_0d EXIST::FUNCTION:SDF +BN_lshift1 1762 1_1_0d EXIST::FUNCTION: +FFX_CTX_new 1763 1_1_0d EXIST::FUNCTION: +BIO_new_fd 1764 1_1_0d EXIST::FUNCTION: +i2d_DSA_PUBKEY 1765 1_1_0d EXIST::FUNCTION:DSA +UI_new_method 1766 1_1_0d EXIST::FUNCTION:UI +d2i_CMS_ContentInfo 1767 1_1_0d EXIST::FUNCTION:CMS +EVP_PKEY_meth_get_copy 1768 1_1_0d EXIST::FUNCTION: +i2d_ASN1_NULL 1769 1_1_0d EXIST::FUNCTION: +SOF_GetCertTrustList 1770 1_1_0d EXIST::FUNCTION: +EVP_ENCODE_CTX_new 1771 1_1_0d EXIST::FUNCTION: +UI_get_result_maxsize 1772 1_1_0d EXIST::FUNCTION:UI +PKCS12_newpass 1773 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext_count 1774 1_1_0d EXIST::FUNCTION:OCSP +TS_CONF_set_policies 1775 1_1_0d EXIST::FUNCTION:TS +SAF_Base64_CreateBase64Obj 1776 1_1_0d EXIST::FUNCTION: +DH_check 1777 1_1_0d EXIST::FUNCTION:DH +i2d_CPK_PUBLIC_PARAMS 1778 1_1_0d EXIST::FUNCTION:CPK +d2i_ECCCIPHERBLOB 1779 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +SDF_ImportKeyWithISK_ECC 1780 1_1_0d EXIST::FUNCTION: +MD4_Update 1781 1_1_0d EXIST::FUNCTION:MD4 +PaillierPublicKey_it 1782 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER +PaillierPublicKey_it 1782 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER +EC_KEY_set_ex_data 1783 1_1_0d EXIST::FUNCTION:EC +X509_STORE_CTX_get_obj_by_subject 1784 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_exp_arr 1785 1_1_0d EXIST::FUNCTION:EC2M +d2i_X509_REVOKED 1786 1_1_0d EXIST::FUNCTION: +i2d_SM9PrivateKey 1787 1_1_0d EXIST::FUNCTION:SM9 +SXNET_add_id_INTEGER 1788 1_1_0d EXIST::FUNCTION: +FpPoint_free 1789 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_ctrl 1790 1_1_0d EXIST::FUNCTION: +EC_POINT_dup 1791 1_1_0d EXIST::FUNCTION:EC +ASYNC_WAIT_CTX_new 1792 1_1_0d EXIST::FUNCTION: +DES_cbc_encrypt 1793 1_1_0d EXIST::FUNCTION:DES +TS_TST_INFO_get_ext_d2i 1794 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_add1_attr_by_NID 1795 1_1_0d EXIST::FUNCTION: +EC_curve_nid2nist 1796 1_1_0d EXIST::FUNCTION:EC +d2i_PKCS8PrivateKey_fp 1797 1_1_0d EXIST::FUNCTION:STDIO +EVP_CIPHER_impl_ctx_size 1798 1_1_0d EXIST::FUNCTION: +RSA_security_bits 1799 1_1_0d EXIST::FUNCTION:RSA +X509_check_ca 1800 1_1_0d EXIST::FUNCTION: +ESS_CERT_ID_new 1801 1_1_0d EXIST::FUNCTION:TS +CMS_signed_get_attr_by_OBJ 1802 1_1_0d EXIST::FUNCTION:CMS +ISSUING_DIST_POINT_new 1803 1_1_0d EXIST::FUNCTION: +BN_rshift1 1804 1_1_0d EXIST::FUNCTION: +d2i_OCSP_RESPDATA 1805 1_1_0d EXIST::FUNCTION:OCSP +PKCS7_simple_smimecap 1806 1_1_0d EXIST::FUNCTION: +X509V3_set_ctx 1807 1_1_0d EXIST::FUNCTION: +PKCS7_dataFinal 1808 1_1_0d EXIST::FUNCTION: +X509_CRL_http_nbio 1809 1_1_0d EXIST::FUNCTION:OCSP +X509v3_addr_get_range 1810 1_1_0d EXIST::FUNCTION:RFC3779 +ASN1_UTF8STRING_new 1811 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_str2ctrl 1812 1_1_0d EXIST::FUNCTION: +PKCS12_get_attr_gen 1813 1_1_0d EXIST::FUNCTION: +PEM_read_bio_X509_REQ 1814 1_1_0d EXIST::FUNCTION: +EC_KEY_get0_group 1815 1_1_0d EXIST::FUNCTION:EC +DH_meth_get_generate_key 1816 1_1_0d EXIST::FUNCTION:DH +UI_free 1817 1_1_0d EXIST::FUNCTION:UI +EC_GROUP_set_curve_name 1818 1_1_0d EXIST::FUNCTION:EC +SAF_GetRootCaCertificate 1819 1_1_0d EXIST::FUNCTION: +X509_ALGOR_it 1820 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_ALGOR_it 1820 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CRYPTO_ocb128_aad 1821 1_1_0d EXIST::FUNCTION:OCB +ENGINE_get_prev 1822 1_1_0d EXIST::FUNCTION:ENGINE +d2i_GENERAL_NAMES 1823 1_1_0d EXIST::FUNCTION: +SXNETID_free 1824 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_SIGNER_INFO 1825 1_1_0d EXIST::FUNCTION: +CMS_sign 1826 1_1_0d EXIST::FUNCTION:CMS +SAF_GetCrlFromLdap 1827 1_1_0d EXIST::FUNCTION: +EVP_MD_pkey_type 1828 1_1_0d EXIST::FUNCTION: +EVP_MD_do_all 1829 1_1_0d EXIST::FUNCTION: +PEM_proc_type 1830 1_1_0d EXIST::FUNCTION: +i2d_ASN1_TIME 1831 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_sign 1832 1_1_0d EXIST::FUNCTION:CMS +UI_method_get_writer 1833 1_1_0d EXIST::FUNCTION:UI +X509_set_proxy_pathlen 1834 1_1_0d EXIST::FUNCTION: +BN_CTX_free 1835 1_1_0d EXIST::FUNCTION: +PEM_write_EC_PUBKEY 1836 1_1_0d EXIST::FUNCTION:EC,STDIO +SHA224_Init 1837 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_it 1838 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_ATTRIBUTE_it 1838 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_BASIC_CONSTRAINTS 1839 1_1_0d EXIST::FUNCTION: +PKCS12_item_i2d_encrypt 1840 1_1_0d EXIST::FUNCTION: +DH_meth_set0_app_data 1841 1_1_0d EXIST::FUNCTION:DH +TS_VERIFY_CTX_new 1842 1_1_0d EXIST::FUNCTION:TS +PKCS12_BAGS_free 1843 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get0_untrusted 1844 1_1_0d EXIST::FUNCTION: +X509_policy_tree_get0_user_policies 1845 1_1_0d EXIST::FUNCTION: +PKCS12_init 1846 1_1_0d EXIST::FUNCTION: +d2i_OCSP_REQUEST 1847 1_1_0d EXIST::FUNCTION:OCSP +TXT_DB_write 1848 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_free 1849 1_1_0d EXIST::FUNCTION: +RSA_PSS_PARAMS_new 1850 1_1_0d EXIST::FUNCTION:RSA +PEM_read_bio_RSAPrivateKey 1851 1_1_0d EXIST::FUNCTION:RSA +ESS_CERT_ID_dup 1852 1_1_0d EXIST::FUNCTION:TS +BIO_ADDR_clear 1853 1_1_0d EXIST::FUNCTION:SOCK +TLS_FEATURE_new 1854 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get_data 1855 1_1_0d EXIST::FUNCTION: +POLICYINFO_new 1856 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_set_imprint 1857 1_1_0d EXIST::FUNCTION:TS +FFX_compute_luhn 1858 1_1_0d EXIST::FUNCTION: +BN_nist_mod_192 1859 1_1_0d EXIST::FUNCTION: +EVP_DecodeBlock 1860 1_1_0d EXIST::FUNCTION: +speck_decrypt64 1861 1_1_0d EXIST::FUNCTION:SPECK +ASN1_TIME_new 1862 1_1_0d EXIST::FUNCTION: +BIO_new_bio_pair 1863 1_1_0d EXIST::FUNCTION: +EC_KEY_set_public_key 1864 1_1_0d EXIST::FUNCTION:EC +RSA_meth_get_bn_mod_exp 1865 1_1_0d EXIST::FUNCTION:RSA +EVP_PKEY_meth_set_verifyctx 1866 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_encrypt 1867 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext_by_critical 1868 1_1_0d EXIST::FUNCTION:OCSP +ASN1_PRINTABLE_type 1869 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_set 1870 1_1_0d EXIST::FUNCTION: +DISPLAYTEXT_it 1871 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DISPLAYTEXT_it 1871 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BIO_get_host_ip 1872 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +EVP_md5 1873 1_1_0d EXIST::FUNCTION:MD5 +SAF_DestroyKeyHandle 1874 1_1_0d EXIST::FUNCTION: +DES_decrypt3 1875 1_1_0d EXIST::FUNCTION:DES +ASN1_T61STRING_new 1876 1_1_0d EXIST::FUNCTION: +OBJ_txt2obj 1877 1_1_0d EXIST::FUNCTION: +AES_wrap_key 1878 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1_ip 1879 1_1_0d EXIST::FUNCTION: +EVP_sha512 1880 1_1_0d EXIST:!VMSVAX:FUNCTION: +d2i_OCSP_CERTSTATUS 1881 1_1_0d EXIST::FUNCTION:OCSP +Camellia_ctr128_encrypt 1882 1_1_0d EXIST::FUNCTION:CAMELLIA +EC_KEY_priv2buf 1883 1_1_0d EXIST::FUNCTION:EC +TS_RESP_CTX_set_time_cb 1884 1_1_0d EXIST::FUNCTION:TS +TS_REQ_get_ext_by_NID 1885 1_1_0d EXIST::FUNCTION:TS +UI_method_get_opener 1886 1_1_0d EXIST::FUNCTION:UI +EVP_blake2b512 1887 1_1_0d EXIST::FUNCTION:BLAKE2 +SDF_GenerateKeyWithIPK_RSA 1888 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_ktri_get0_algs 1889 1_1_0d EXIST::FUNCTION:CMS +CRYPTO_128_wrap_pad 1890 1_1_0d EXIST::FUNCTION: +EVP_DecodeFinal 1891 1_1_0d EXIST::FUNCTION: +PEM_read_bio_PKCS8 1892 1_1_0d EXIST::FUNCTION: +SAF_Finalize 1893 1_1_0d EXIST::FUNCTION: +CRYPTO_memdup 1894 1_1_0d EXIST::FUNCTION: +SKF_GenerateAgreementDataAndKeyWithECC 1895 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_get0_DSA 1896 1_1_0d EXIST::FUNCTION:DSA +PKCS5_pbe2_set 1897 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_num_items 1898 1_1_0d EXIST::FUNCTION: +ENGINE_get_id 1899 1_1_0d EXIST::FUNCTION:ENGINE +PKCS8_PRIV_KEY_INFO_free 1900 1_1_0d EXIST::FUNCTION: +EVP_ENCODE_CTX_copy 1901 1_1_0d EXIST::FUNCTION: +PKCS7_dataVerify 1902 1_1_0d EXIST::FUNCTION: +PEM_read_NETSCAPE_CERT_SEQUENCE 1903 1_1_0d EXIST::FUNCTION:STDIO +SAF_Initialize 1904 1_1_0d EXIST::FUNCTION: +CAST_encrypt 1905 1_1_0d EXIST::FUNCTION:CAST +BN_mod_lshift1 1906 1_1_0d EXIST::FUNCTION: +ERR_load_ERR_strings 1907 1_1_0d EXIST::FUNCTION: +EVP_sha224 1908 1_1_0d EXIST::FUNCTION: +X509_time_adj 1909 1_1_0d EXIST::FUNCTION: +EVP_enc_null 1910 1_1_0d EXIST::FUNCTION: +PKCS5_pbe_set 1911 1_1_0d EXIST::FUNCTION: +BIO_test_flags 1912 1_1_0d EXIST::FUNCTION: +i2d_OCSP_SINGLERESP 1913 1_1_0d EXIST::FUNCTION:OCSP +ASN1_tag2str 1914 1_1_0d EXIST::FUNCTION: +EC_GROUP_new_from_ecparameters 1915 1_1_0d EXIST::FUNCTION:EC +ASN1_UTF8STRING_it 1916 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_UTF8STRING_it 1916 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +d2i_SM9MasterSecret_bio 1917 1_1_0d EXIST::FUNCTION:SM9 +ERR_peek_error_line_data 1918 1_1_0d EXIST::FUNCTION: +ENGINE_up_ref 1919 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_CTX_get_cb 1920 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_type 1921 1_1_0d EXIST::FUNCTION:CMS +d2i_TS_RESP_fp 1922 1_1_0d EXIST::FUNCTION:STDIO,TS +DSA_get_ex_data 1923 1_1_0d EXIST::FUNCTION:DSA +CMS_RecipientInfo_kari_get0_ctx 1924 1_1_0d EXIST::FUNCTION:CMS +EVP_rc2_64_cbc 1925 1_1_0d EXIST::FUNCTION:RC2 +CMS_data 1926 1_1_0d EXIST::FUNCTION:CMS +ECDSA_SIG_set_ECCSignature 1927 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +X509_OBJECT_idx_by_subject 1928 1_1_0d EXIST::FUNCTION: +PEM_write_RSAPrivateKey 1929 1_1_0d EXIST::FUNCTION:RSA,STDIO +BN_mod_exp2_mont 1930 1_1_0d EXIST::FUNCTION: +PAILLIER_ciphertext_scalar_mul 1931 1_1_0d EXIST::FUNCTION:PAILLIER +X509_STORE_set_cleanup 1932 1_1_0d EXIST::FUNCTION: +d2i_DSAPrivateKey 1933 1_1_0d EXIST::FUNCTION:DSA +d2i_SM9PublicKey 1934 1_1_0d EXIST::FUNCTION:SM9 +X509_PURPOSE_get0_name 1935 1_1_0d EXIST::FUNCTION: +TS_RESP_verify_signature 1936 1_1_0d EXIST::FUNCTION:TS +PEM_read_RSA_PUBKEY 1937 1_1_0d EXIST::FUNCTION:RSA,STDIO +TS_REQ_get_ext 1938 1_1_0d EXIST::FUNCTION:TS +SHA1_Final 1939 1_1_0d EXIST::FUNCTION: +speck_set_decrypt_key32 1940 1_1_0d EXIST::FUNCTION:SPECK +EC_KEY_METHOD_get_verify 1941 1_1_0d EXIST::FUNCTION:EC +X509_STORE_CTX_get0_param 1942 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_RSA 1943 1_1_0d EXIST::FUNCTION:RSA +PKCS12_pack_p7encdata 1944 1_1_0d EXIST::FUNCTION: +i2d_ASN1_VISIBLESTRING 1945 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_it 1946 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_EXTENSION_it 1946 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +DSA_meth_set_paramgen 1947 1_1_0d EXIST::FUNCTION:DSA +SHA512_Update 1948 1_1_0d EXIST:!VMSVAX:FUNCTION: +EVP_PKEY_copy_parameters 1949 1_1_0d EXIST::FUNCTION: +BN_hash_to_range 1950 1_1_0d EXIST::FUNCTION: +RSA_meth_set_mod_exp 1951 1_1_0d EXIST::FUNCTION:RSA +SAF_SymmEncrypt 1952 1_1_0d EXIST::FUNCTION: +PKCS7_add_recipient 1953 1_1_0d EXIST::FUNCTION: +SOF_SignMessage 1954 1_1_0d EXIST::FUNCTION: +EVP_PKEY_verify_recover 1955 1_1_0d EXIST::FUNCTION: +DSO_bind_func 1956 1_1_0d EXIST::FUNCTION: +HMAC_Init_ex 1957 1_1_0d EXIST::FUNCTION: +BN_GFP2_exp 1958 1_1_0d EXIST::FUNCTION: +SOF_GetCertInfo 1959 1_1_0d EXIST::FUNCTION: +ENGINE_get_name 1960 1_1_0d EXIST::FUNCTION:ENGINE +d2i_BFCiphertextBlock 1961 1_1_0d EXIST::FUNCTION:BFIBE +OCSP_id_get0_info 1962 1_1_0d EXIST::FUNCTION:OCSP +DSA_size 1963 1_1_0d EXIST::FUNCTION:DSA +PKCS7_add_certificate 1964 1_1_0d EXIST::FUNCTION: +EVP_DigestSignInit 1965 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get_sgd 1966 1_1_0d EXIST::FUNCTION:GMAPI +EC_KEY_set_flags 1967 1_1_0d EXIST::FUNCTION:EC +i2s_ASN1_IA5STRING 1968 1_1_0d EXIST::FUNCTION: +d2i_PKCS12 1969 1_1_0d EXIST::FUNCTION: +X509_dup 1970 1_1_0d EXIST::FUNCTION: +MD4 1971 1_1_0d EXIST::FUNCTION:MD4 +SM2_KAP_final_check 1972 1_1_0d EXIST::FUNCTION:SM2 +X509_cmp_time 1973 1_1_0d EXIST::FUNCTION: +SKF_EnumFiles 1974 1_1_0d EXIST::FUNCTION:SKF +PKCS8_add_keyusage 1975 1_1_0d EXIST::FUNCTION: +NAME_CONSTRAINTS_it 1976 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NAME_CONSTRAINTS_it 1976 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ASN1_OBJECT_it 1977 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_OBJECT_it 1977 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_CRL_verify 1978 1_1_0d EXIST::FUNCTION: +SDF_ExternalEncrypt_ECC 1979 1_1_0d EXIST::FUNCTION: +IPAddressChoice_free 1980 1_1_0d EXIST::FUNCTION:RFC3779 +X509_alias_get0 1981 1_1_0d EXIST::FUNCTION: +PKCS5_v2_scrypt_keyivgen 1982 1_1_0d EXIST::FUNCTION:SCRYPT +CMS_RecipientInfo_kari_get0_reks 1983 1_1_0d EXIST::FUNCTION:CMS +ZUC_128eea3_set_key 1984 1_1_0d EXIST::FUNCTION:ZUC +PKCS7_SIGNER_INFO_sign 1985 1_1_0d EXIST::FUNCTION: +EVP_PKEY_print_public 1986 1_1_0d EXIST::FUNCTION: +EVP_cast5_cfb64 1987 1_1_0d EXIST::FUNCTION:CAST +d2i_X509_CRL_fp 1988 1_1_0d EXIST::FUNCTION:STDIO +EVP_CIPHER_CTX_buf_noconst 1989 1_1_0d EXIST::FUNCTION: +EVP_CipherUpdate 1990 1_1_0d EXIST::FUNCTION: +d2i_BB1CiphertextBlock 1991 1_1_0d EXIST::FUNCTION:BB1IBE +X509_REQ_get_attr_by_NID 1992 1_1_0d EXIST::FUNCTION: +i2d_PrivateKey_fp 1993 1_1_0d EXIST::FUNCTION:STDIO +X509_REQ_get_pubkey 1994 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_do_all_sorted 1995 1_1_0d EXIST::FUNCTION: +EVP_PKEY_keygen_init 1996 1_1_0d EXIST::FUNCTION: +PEM_write_bio_RSAPrivateKey 1997 1_1_0d EXIST::FUNCTION:RSA +X509_VERIFY_PARAM_get0_name 1998 1_1_0d EXIST::FUNCTION: +BN_BLINDING_free 1999 1_1_0d EXIST::FUNCTION: +PKCS7_set_signed_attributes 2000 1_1_0d EXIST::FUNCTION: +PROXY_POLICY_new 2001 1_1_0d EXIST::FUNCTION: +OTHERNAME_cmp 2002 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_dup 2003 1_1_0d EXIST::FUNCTION:TS +d2i_ASN1_OCTET_STRING 2004 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set0_untrusted 2005 1_1_0d EXIST::FUNCTION: +EVP_sms4_cfb1 2006 1_1_0d EXIST::FUNCTION:SMS4 +EVP_CIPHER_meth_set_ctrl 2007 1_1_0d EXIST::FUNCTION: +i2a_ACCESS_DESCRIPTION 2008 1_1_0d EXIST::FUNCTION: +EVP_PKEY_sign_init 2009 1_1_0d EXIST::FUNCTION: +SOF_GetTimeStampInfo 2010 1_1_0d EXIST::FUNCTION: +OCSP_request_is_signed 2011 1_1_0d EXIST::FUNCTION:OCSP +EC_KEY_OpenSSL 2012 1_1_0d EXIST::FUNCTION:EC +BIO_dgram_non_fatal_error 2013 1_1_0d EXIST::FUNCTION:DGRAM +d2i_ECIESParameters 2014 1_1_0d EXIST::FUNCTION:ECIES +PEM_read_bio_X509 2015 1_1_0d EXIST::FUNCTION: +OCSP_RESPBYTES_free 2016 1_1_0d EXIST::FUNCTION:OCSP +NETSCAPE_SPKAC_it 2017 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NETSCAPE_SPKAC_it 2017 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_CRL_get_ext_by_OBJ 2018 1_1_0d EXIST::FUNCTION: +OCSP_CERTID_free 2019 1_1_0d EXIST::FUNCTION:OCSP +i2d_ASIdOrRange 2020 1_1_0d EXIST::FUNCTION:RFC3779 +OCSP_BASICRESP_get1_ext_d2i 2021 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_CTX_set_verify_cb 2022 1_1_0d EXIST::FUNCTION: +SRP_user_pwd_free 2023 1_1_0d EXIST::FUNCTION:SRP +BIO_socket_nbio 2024 1_1_0d EXIST::FUNCTION:SOCK +X509_REQ_sign_ctx 2025 1_1_0d EXIST::FUNCTION: +X509_CRL_sign_ctx 2026 1_1_0d EXIST::FUNCTION: +X509_REQ_set_version 2027 1_1_0d EXIST::FUNCTION: +CMS_get0_RecipientInfos 2028 1_1_0d EXIST::FUNCTION:CMS +X509v3_addr_is_canonical 2029 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_aes_192_gcm 2030 1_1_0d EXIST::FUNCTION: +DSA_SIG_new 2031 1_1_0d EXIST::FUNCTION:DSA +RSA_meth_get_priv_enc 2032 1_1_0d EXIST::FUNCTION:RSA +BFPrivateKeyBlock_new 2033 1_1_0d EXIST::FUNCTION:BFIBE +TS_TST_INFO_set_tsa 2034 1_1_0d EXIST::FUNCTION:TS +ASYNC_get_wait_ctx 2035 1_1_0d EXIST::FUNCTION: +Camellia_cfb8_encrypt 2036 1_1_0d EXIST::FUNCTION:CAMELLIA +OCSP_ONEREQ_free 2037 1_1_0d EXIST::FUNCTION:OCSP +i2d_PKCS7_ENCRYPT 2038 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_mul_arr 2039 1_1_0d EXIST::FUNCTION:EC2M +SMIME_read_PKCS7 2040 1_1_0d EXIST::FUNCTION: +DSA_new_method 2041 1_1_0d EXIST::FUNCTION:DSA +DIST_POINT_free 2042 1_1_0d EXIST::FUNCTION: +SOF_DecryptData 2043 1_1_0d EXIST::FUNCTION: +BN_num_bits_word 2044 1_1_0d EXIST::FUNCTION: +CMS_get0_signers 2045 1_1_0d EXIST::FUNCTION:CMS +EVP_PKEY_get0_PAILLIER 2046 1_1_0d EXIST::FUNCTION:PAILLIER +X509_NAME_ENTRY_set 2047 1_1_0d EXIST::FUNCTION: +SM9_verify 2048 1_1_0d EXIST::FUNCTION:SM9 +RC2_cbc_encrypt 2049 1_1_0d EXIST::FUNCTION:RC2 +DSA_SIG_set0 2050 1_1_0d EXIST::FUNCTION:DSA +PEM_write_SM9PublicKey 2051 1_1_0d EXIST::FUNCTION:SM9,STDIO +ASYNC_WAIT_CTX_get_changed_fds 2052 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_add1_ext_i2d 2053 1_1_0d EXIST::FUNCTION:OCSP +BIO_puts 2054 1_1_0d EXIST::FUNCTION: +RC5_32_decrypt 2055 1_1_0d EXIST::FUNCTION:RC5 +BN_get0_nist_prime_521 2056 1_1_0d EXIST::FUNCTION: +d2i_ASRange 2057 1_1_0d EXIST::FUNCTION:RFC3779 +X509_STORE_CTX_set_ex_data 2058 1_1_0d EXIST::FUNCTION: +X509_http_nbio 2059 1_1_0d EXIST::FUNCTION:OCSP +BIO_indent 2060 1_1_0d EXIST::FUNCTION: +BN_CTX_end 2061 1_1_0d EXIST::FUNCTION: +BFIBE_do_encrypt 2062 1_1_0d EXIST::FUNCTION:BFIBE +OCSP_BASICRESP_it 2063 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_BASICRESP_it 2063 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +X509_CRL_get_ext_by_critical 2064 1_1_0d EXIST::FUNCTION: +EC_KEY_get_ECCPUBLICKEYBLOB 2065 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +d2i_PaillierPublicKey 2066 1_1_0d EXIST::FUNCTION:PAILLIER +BN_div_recp 2067 1_1_0d EXIST::FUNCTION: +BN_RECP_CTX_set 2068 1_1_0d EXIST::FUNCTION: +AES_ige_encrypt 2069 1_1_0d EXIST::FUNCTION: +BIO_vsnprintf 2070 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_new 2071 1_1_0d EXIST::FUNCTION: +X509_pubkey_digest 2072 1_1_0d EXIST::FUNCTION: +EC_GROUP_new_type1curve_ex 2073 1_1_0d EXIST::FUNCTION: +CONF_load_bio 2074 1_1_0d EXIST::FUNCTION: +ACCESS_DESCRIPTION_free 2075 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_ktri_get0_signer_id 2076 1_1_0d EXIST::FUNCTION:CMS +EVP_aes_128_cbc 2077 1_1_0d EXIST::FUNCTION: +DSA_set_method 2078 1_1_0d EXIST::FUNCTION:DSA +ECDSA_do_sign_ex 2079 1_1_0d EXIST::FUNCTION:EC +ASN1_GENERALIZEDTIME_set 2080 1_1_0d EXIST::FUNCTION: +CONF_imodule_get_usr_data 2081 1_1_0d EXIST::FUNCTION: +RSA_padding_add_PKCS1_PSS 2082 1_1_0d EXIST::FUNCTION:RSA +BIO_new_socket 2083 1_1_0d EXIST::FUNCTION:SOCK +X509_REQ_add1_attr_by_NID 2084 1_1_0d EXIST::FUNCTION: +OCSP_url_svcloc_new 2085 1_1_0d EXIST::FUNCTION:OCSP +BIO_debug_callback 2086 1_1_0d EXIST::FUNCTION: +ASN1_check_infinite_end 2087 1_1_0d EXIST::FUNCTION: +PEM_read_bio_PAILLIER_PUBKEY 2088 1_1_0d EXIST::FUNCTION:PAILLIER +ASN1_ENUMERATED_set 2089 1_1_0d EXIST::FUNCTION: +PKCS7_set0_type_other 2090 1_1_0d EXIST::FUNCTION: +OBJ_create 2091 1_1_0d EXIST::FUNCTION: +i2d_X509_REVOKED 2092 1_1_0d EXIST::FUNCTION: +BIO_set_ex_data 2093 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_set_object 2094 1_1_0d EXIST::FUNCTION: +X509_check_ip_asc 2095 1_1_0d EXIST::FUNCTION: +DH_meth_get_finish 2096 1_1_0d EXIST::FUNCTION:DH +SAF_GenerateAgreementDataAdnKeyWithECC 2097 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kari_orig_id_cmp 2098 1_1_0d EXIST::FUNCTION:CMS +OCSP_ONEREQ_delete_ext 2099 1_1_0d EXIST::FUNCTION:OCSP +X509_CRL_set1_lastUpdate 2100 1_1_0d EXIST::FUNCTION: +IPAddressOrRange_new 2101 1_1_0d EXIST::FUNCTION:RFC3779 +ENGINE_register_all_EC 2102 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_GENERALSTRING_it 2103 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_GENERALSTRING_it 2103 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +UI_destroy_method 2104 1_1_0d EXIST::FUNCTION:UI +BN_pseudo_rand 2105 1_1_0d EXIST::FUNCTION: +EC_POINT_is_on_curve 2106 1_1_0d EXIST::FUNCTION:EC +RAND_load_file 2107 1_1_0d EXIST::FUNCTION: +EC_KEY_get_conv_form 2108 1_1_0d EXIST::FUNCTION:EC +BIO_clear_flags 2109 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_DH 2110 1_1_0d EXIST::FUNCTION:DH +SKF_GenECCKeyPair 2111 1_1_0d EXIST::FUNCTION:SKF +BFIBE_do_decrypt 2112 1_1_0d EXIST::FUNCTION:BFIBE +X509_REVOKED_delete_ext 2113 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_set_md_data 2114 1_1_0d EXIST::FUNCTION: +d2i_CMS_ReceiptRequest 2115 1_1_0d EXIST::FUNCTION:CMS +d2i_PBKDF2PARAM 2116 1_1_0d EXIST::FUNCTION: +i2d_ASN1_INTEGER 2117 1_1_0d EXIST::FUNCTION: +X509_NAME_get_index_by_OBJ 2118 1_1_0d EXIST::FUNCTION: +RSA_sign_ASN1_OCTET_STRING 2119 1_1_0d EXIST::FUNCTION:RSA +OPENSSL_hexstr2buf 2120 1_1_0d EXIST::FUNCTION: +X509V3_EXT_print 2121 1_1_0d EXIST::FUNCTION: +SM2_do_sign_ex 2122 1_1_0d EXIST::FUNCTION:SM2 +ASN1_T61STRING_free 2123 1_1_0d EXIST::FUNCTION: +i2d_X509_AUX 2124 1_1_0d EXIST::FUNCTION: +MDC2_Init 2125 1_1_0d EXIST::FUNCTION:MDC2 +ASN1_put_eoc 2126 1_1_0d EXIST::FUNCTION: +DES_set_key 2127 1_1_0d EXIST::FUNCTION:DES +ENGINE_load_public_key 2128 1_1_0d EXIST::FUNCTION:ENGINE +RAND_seed 2129 1_1_0d EXIST::FUNCTION: +CRYPTO_set_mem_debug 2130 1_1_0d EXIST::FUNCTION: +X509_ALGOR_set_md 2131 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_DH 2132 1_1_0d EXIST::FUNCTION:ENGINE +i2d_ESS_CERT_ID 2133 1_1_0d EXIST::FUNCTION:TS +BIO_up_ref 2134 1_1_0d EXIST::FUNCTION: +RAND_screen 2135 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 +a2i_ASN1_ENUMERATED 2136 1_1_0d EXIST::FUNCTION: +TS_CONF_set_tsa_name 2137 1_1_0d EXIST::FUNCTION:TS +PEM_read_PKCS8 2138 1_1_0d EXIST::FUNCTION:STDIO +DH_meth_get_init 2139 1_1_0d EXIST::FUNCTION:DH +CMS_ContentInfo_print_ctx 2140 1_1_0d EXIST::FUNCTION:CMS +DSA_set0_key 2141 1_1_0d EXIST::FUNCTION:DSA +EVP_idea_ecb 2142 1_1_0d EXIST::FUNCTION:IDEA +SKF_GetAlgorName 2143 1_1_0d EXIST::FUNCTION:SKF +RSA_get_RSAPRIVATEKEYBLOB 2144 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +ASN1_TYPE_get_octetstring 2145 1_1_0d EXIST::FUNCTION: +DSA_meth_get_init 2146 1_1_0d EXIST::FUNCTION:DSA +AES_set_decrypt_key 2147 1_1_0d EXIST::FUNCTION: +X509v3_addr_subset 2148 1_1_0d EXIST::FUNCTION:RFC3779 +sm3_init 2149 1_1_0d EXIST::FUNCTION:SM3 +FIPS_mode 2150 1_1_0d EXIST::FUNCTION: +ERR_load_SAF_strings 2151 1_1_0d EXIST::FUNCTION:SAF +X509_get0_subject_key_id 2152 1_1_0d EXIST::FUNCTION: +BFPrivateKeyBlock_it 2153 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFPrivateKeyBlock_it 2153 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +speck_set_encrypt_key16 2154 1_1_0d EXIST::FUNCTION:SPECK +X509_get_ext 2155 1_1_0d EXIST::FUNCTION: +RSA_sign 2156 1_1_0d EXIST::FUNCTION:RSA +PEM_write_ECPKParameters 2157 1_1_0d EXIST::FUNCTION:EC,STDIO +EVP_aes_192_wrap_pad 2158 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_encrypting 2159 1_1_0d EXIST::FUNCTION: +BN_hex2bn 2160 1_1_0d EXIST::FUNCTION: +USERNOTICE_it 2161 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +USERNOTICE_it 2161 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +i2d_ECCCIPHERBLOB 2162 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +i2o_ECPublicKey 2163 1_1_0d EXIST::FUNCTION:EC +i2d_PKCS8_PRIV_KEY_INFO_bio 2164 1_1_0d EXIST::FUNCTION: +ERR_load_EVP_strings 2165 1_1_0d EXIST::FUNCTION: +EVP_des_ede3_cbc 2166 1_1_0d EXIST::FUNCTION:DES +SM2CiphertextValue_new_from_ECCCipher 2167 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF,SM2 +d2i_SM9PublicParameters_fp 2168 1_1_0d EXIST::FUNCTION:SM9,STDIO +X509_VERIFY_PARAM_set_inh_flags 2169 1_1_0d EXIST::FUNCTION: +SKF_Mac 2170 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_free 2171 1_1_0d EXIST::FUNCTION: +X509_get1_ocsp 2172 1_1_0d EXIST::FUNCTION: +i2d_SM9Signature_bio 2173 1_1_0d EXIST::FUNCTION:SM9 +TS_RESP_get_token 2174 1_1_0d EXIST::FUNCTION:TS +d2i_PKCS8_bio 2175 1_1_0d EXIST::FUNCTION: +X509_up_ref 2176 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_free 2177 1_1_0d EXIST::FUNCTION:EC +ENGINE_unregister_DH 2178 1_1_0d EXIST::FUNCTION:ENGINE +SKF_CloseContainer 2179 1_1_0d EXIST::FUNCTION:SKF +SAF_Pkcs7_DecodeSignedData 2180 1_1_0d EXIST::FUNCTION: +BIO_set_init 2181 1_1_0d EXIST::FUNCTION: +TS_CONF_set_accuracy 2182 1_1_0d EXIST::FUNCTION:TS +EVP_get_ciphernames 2183 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKAC_new 2184 1_1_0d EXIST::FUNCTION: +OCSP_basic_add1_status 2185 1_1_0d EXIST::FUNCTION:OCSP +TS_RESP_CTX_set_signer_key 2186 1_1_0d EXIST::FUNCTION:TS +CRYPTO_get_mem_functions 2187 1_1_0d EXIST::FUNCTION: +X509V3_get_section 2188 1_1_0d EXIST::FUNCTION: +SKF_GetDevState 2189 1_1_0d EXIST::FUNCTION:SKF +PKCS5_pbkdf2_set 2190 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add_alias 2191 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_do_all 2192 1_1_0d EXIST::FUNCTION: +SAF_Logout 2193 1_1_0d EXIST::FUNCTION: +EVP_cast5_ecb 2194 1_1_0d EXIST::FUNCTION:CAST +SAF_AddTrustedRootCaCertificate 2195 1_1_0d EXIST::FUNCTION: +X509_CRL_print 2196 1_1_0d EXIST::FUNCTION: +SAF_GenerateAgreementDataWithECC 2197 1_1_0d EXIST::FUNCTION: +serpent_set_encrypt_key 2198 1_1_0d EXIST::FUNCTION:SERPENT +SAF_VerifySignByCert 2199 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set_auth_level 2200 1_1_0d EXIST::FUNCTION: +BN_gfp22bn 2201 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_add_ext 2202 1_1_0d EXIST::FUNCTION:TS +ERR_set_error_data 2203 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_doall 2204 1_1_0d EXIST::FUNCTION: +PKCS7_print_ctx 2205 1_1_0d EXIST::FUNCTION: +CMS_get0_type 2206 1_1_0d EXIST::FUNCTION:CMS +RSA_get_RSArefPublicKey 2207 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +i2d_DIST_POINT_NAME 2208 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_get_by_sname 2209 1_1_0d EXIST::FUNCTION: +GENERAL_NAMES_new 2210 1_1_0d EXIST::FUNCTION: +i2d_SM9_MASTER_PUBKEY 2211 1_1_0d EXIST::FUNCTION:SM9 +SMIME_read_CMS 2212 1_1_0d EXIST::FUNCTION:CMS +SAF_SymmEncryptUpdate 2213 1_1_0d EXIST::FUNCTION: +ERR_add_error_data 2214 1_1_0d EXIST::FUNCTION: +DIRECTORYSTRING_free 2215 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_new 2216 1_1_0d EXIST::FUNCTION:ECIES +PEM_write_SM9_PUBKEY 2217 1_1_0d EXIST::FUNCTION:SM9,STDIO +SOF_EncryptFile 2218 1_1_0d EXIST::FUNCTION: +BN_free 2219 1_1_0d EXIST::FUNCTION: +ERR_load_PAILLIER_strings 2220 1_1_0d EXIST::FUNCTION:PAILLIER +CAST_cbc_encrypt 2221 1_1_0d EXIST::FUNCTION:CAST +EVP_add_cipher 2222 1_1_0d EXIST::FUNCTION: +CRYPTO_nistcts128_decrypt_block 2223 1_1_0d EXIST::FUNCTION: +i2d_RSAPrivateKey_fp 2224 1_1_0d EXIST::FUNCTION:RSA,STDIO +X509_check_ip 2225 1_1_0d EXIST::FUNCTION: +PKCS7_add0_attrib_signing_time 2226 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_zero 2227 1_1_0d EXIST::FUNCTION: +PKCS12_add_safes 2228 1_1_0d EXIST::FUNCTION: +X509v3_addr_add_inherit 2229 1_1_0d EXIST::FUNCTION:RFC3779 +i2d_RSA_OAEP_PARAMS 2230 1_1_0d EXIST::FUNCTION:RSA +EVP_des_ede3_cfb8 2231 1_1_0d EXIST::FUNCTION:DES +SAF_EnumKeyContainerInfoFree 2232 1_1_0d EXIST::FUNCTION: +EVP_aes_128_cfb128 2233 1_1_0d EXIST::FUNCTION: +EC_GFp_simple_method 2234 1_1_0d EXIST::FUNCTION:EC +X509_REQ_INFO_new 2235 1_1_0d EXIST::FUNCTION: +EC_KEY_get_ECCrefPublicKey 2236 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +EC_KEY_new 2237 1_1_0d EXIST::FUNCTION:EC +AES_bi_ige_encrypt 2238 1_1_0d EXIST::FUNCTION: +DIRECTORYSTRING_it 2239 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DIRECTORYSTRING_it 2239 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_get_default_private_dir 2240 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_print_bio 2241 1_1_0d EXIST::FUNCTION:TS +OCSP_SINGLERESP_get_ext_by_OBJ 2242 1_1_0d EXIST::FUNCTION:OCSP +ENGINE_set_digests 2243 1_1_0d EXIST::FUNCTION:ENGINE +ECIES_PARAMS_get_enc 2244 1_1_0d EXIST::FUNCTION:ECIES +PEM_write_PKCS8PrivateKey_nid 2245 1_1_0d EXIST::FUNCTION:STDIO +AUTHORITY_KEYID_new 2246 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_new 2247 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_solve_quad_arr 2248 1_1_0d EXIST::FUNCTION:EC2M +X509_STORE_get_get_crl 2249 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0 2250 1_1_0d EXIST::FUNCTION: +SKF_GetFileInfo 2251 1_1_0d EXIST::FUNCTION:SKF +OCSP_REQUEST_get_ext 2252 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_ccm128_aad 2253 1_1_0d EXIST::FUNCTION: +X509_gmtime_adj 2254 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_DH 2255 1_1_0d EXIST::FUNCTION:ENGINE +BN_GFP2_sub 2256 1_1_0d EXIST::FUNCTION: +OCSP_CERTSTATUS_new 2257 1_1_0d EXIST::FUNCTION:OCSP +SAF_Base64_DecodeFinal 2258 1_1_0d EXIST::FUNCTION: +X509_LOOKUP_by_fingerprint 2259 1_1_0d EXIST::FUNCTION: +X509_NAME_entry_count 2260 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_cfb8 2261 1_1_0d EXIST::FUNCTION:CAMELLIA +ASN1_UTCTIME_print 2262 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_setiv 2263 1_1_0d EXIST::FUNCTION: +PBKDF2PARAM_new 2264 1_1_0d EXIST::FUNCTION: +SHA512_Final 2265 1_1_0d EXIST:!VMSVAX:FUNCTION: +ENGINE_get_last 2266 1_1_0d EXIST::FUNCTION:ENGINE +d2i_TS_REQ_bio 2267 1_1_0d EXIST::FUNCTION:TS +CMS_RecipientEncryptedKey_get0_id 2268 1_1_0d EXIST::FUNCTION:CMS +ASN1_TYPE_cmp 2269 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_set_encrypt 2270 1_1_0d EXIST::FUNCTION:SM2 +CMS_ContentInfo_it 2271 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS +CMS_ContentInfo_it 2271 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS +PKCS12_BAGS_it 2272 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_BAGS_it 2272 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +TS_REQ_dup 2273 1_1_0d EXIST::FUNCTION:TS +CRYPTO_cts128_decrypt_block 2274 1_1_0d EXIST::FUNCTION: +i2d_X509_REQ_INFO 2275 1_1_0d EXIST::FUNCTION: +i2d_CMS_bio_stream 2276 1_1_0d EXIST::FUNCTION:CMS +RAND_status 2277 1_1_0d EXIST::FUNCTION: +OBJ_NAME_remove 2278 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_count 2279 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_do_cipher 2280 1_1_0d EXIST::FUNCTION: +SM9PublicParameters_it 2281 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9PublicParameters_it 2281 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +i2d_PKCS7_bio 2282 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_ecpkparameters 2283 1_1_0d EXIST::FUNCTION:EC +X509_REQ_get_subject_name 2284 1_1_0d EXIST::FUNCTION: +ASN1_BMPSTRING_free 2285 1_1_0d EXIST::FUNCTION: +SKF_CreateFile 2286 1_1_0d EXIST::FUNCTION:SKF +PEM_write_X509_REQ_NEW 2287 1_1_0d EXIST::FUNCTION:STDIO +CONF_dump_fp 2288 1_1_0d EXIST::FUNCTION:STDIO +RC2_cfb64_encrypt 2289 1_1_0d EXIST::FUNCTION:RC2 +BIO_set_tcp_ndelay 2290 1_1_0d EXIST::FUNCTION:SOCK +d2i_FpPoint 2291 1_1_0d EXIST::FUNCTION: +X509_SIG_free 2292 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_add_flags 2293 1_1_0d EXIST::FUNCTION:TS +d2i_PKCS7_ISSUER_AND_SERIAL 2294 1_1_0d EXIST::FUNCTION: +SDF_InternalPrivateKeyOperation_RSA 2295 1_1_0d EXIST::FUNCTION: +X509_REQ_get0_signature 2296 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_check_policy 2297 1_1_0d EXIST::FUNCTION: +TS_REQ_free 2298 1_1_0d EXIST::FUNCTION:TS +RSA_set0_factors 2299 1_1_0d EXIST::FUNCTION:RSA +EC_GROUP_get_curve_name 2300 1_1_0d EXIST::FUNCTION:EC +TS_RESP_free 2301 1_1_0d EXIST::FUNCTION:TS +PKCS7_dataInit 2302 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_get0_id 2303 1_1_0d EXIST::FUNCTION:OCSP +CMS_RecipientInfo_kari_decrypt 2304 1_1_0d EXIST::FUNCTION:CMS +CMS_EncryptedData_set1_key 2305 1_1_0d EXIST::FUNCTION:CMS +SDF_GenerateAgreementDataWithECC 2306 1_1_0d EXIST::FUNCTION: +OCSP_CRLID_new 2307 1_1_0d EXIST::FUNCTION:OCSP +OCSP_sendreq_new 2308 1_1_0d EXIST::FUNCTION:OCSP +i2d_ECPrivateKey_bio 2309 1_1_0d EXIST::FUNCTION:EC +EC_get_builtin_curves 2310 1_1_0d EXIST::FUNCTION:EC +i2d_FpPoint 2311 1_1_0d EXIST::FUNCTION: +EVP_aes_256_cfb128 2312 1_1_0d EXIST::FUNCTION: +DES_xcbc_encrypt 2313 1_1_0d EXIST::FUNCTION:DES +OPENSSL_sk_is_sorted 2314 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_free 2315 1_1_0d EXIST::FUNCTION: +BIO_f_cipher 2316 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_create_by_NID 2317 1_1_0d EXIST::FUNCTION: +ASN1_STRING_cmp 2318 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_get_bit 2319 1_1_0d EXIST::FUNCTION: +BN_reciprocal 2320 1_1_0d EXIST::FUNCTION: +SAF_GenRandom 2321 1_1_0d EXIST::FUNCTION: +ASIdOrRange_new 2322 1_1_0d EXIST::FUNCTION:RFC3779 +X509v3_get_ext 2323 1_1_0d EXIST::FUNCTION: +i2d_ESS_ISSUER_SERIAL 2324 1_1_0d EXIST::FUNCTION:TS +TS_TST_INFO_free 2325 1_1_0d EXIST::FUNCTION:TS +X509_ocspid_print 2326 1_1_0d EXIST::FUNCTION: +ASN1_item_sign_ctx 2327 1_1_0d EXIST::FUNCTION: +RSA_public_decrypt 2328 1_1_0d EXIST::FUNCTION:RSA +SKF_LoadLibrary 2329 1_1_0d EXIST::FUNCTION:SKF +PEM_write_X509_REQ 2330 1_1_0d EXIST::FUNCTION:STDIO +SOF_ExportUserCert 2331 1_1_0d EXIST::FUNCTION: +GENERAL_NAMES_free 2332 1_1_0d EXIST::FUNCTION: +BN_GFP2_sqr 2333 1_1_0d EXIST::FUNCTION: +RSA_new 2334 1_1_0d EXIST::FUNCTION:RSA +PKCS12_add_friendlyname_asc 2335 1_1_0d EXIST::FUNCTION: +EVP_aes_192_cfb1 2336 1_1_0d EXIST::FUNCTION: +UI_add_verify_string 2337 1_1_0d EXIST::FUNCTION:UI +X509_STORE_set_verify_cb 2338 1_1_0d EXIST::FUNCTION: +PEM_write_bio_RSAPublicKey 2339 1_1_0d EXIST::FUNCTION:RSA +OPENSSL_strnlen 2340 1_1_0d EXIST::FUNCTION: +i2d_EDIPARTYNAME 2341 1_1_0d EXIST::FUNCTION: +i2d_SM2CiphertextValue_bio 2342 1_1_0d EXIST::FUNCTION:SM2 +d2i_IPAddressRange 2343 1_1_0d EXIST::FUNCTION:RFC3779 +SOF_GetXMLSignatureInfo 2344 1_1_0d EXIST::FUNCTION: +SCT_validation_status_string 2345 1_1_0d EXIST::FUNCTION:CT +EVP_aes_256_ofb 2346 1_1_0d EXIST::FUNCTION: +DSA_meth_dup 2347 1_1_0d EXIST::FUNCTION:DSA +SKF_NewECCCipher 2348 1_1_0d EXIST::FUNCTION:SKF +IPAddressFamily_it 2349 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +IPAddressFamily_it 2349 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +d2i_CPK_PUBLIC_PARAMS_bio 2350 1_1_0d EXIST::FUNCTION:CPK +UI_method_set_reader 2351 1_1_0d EXIST::FUNCTION:UI +d2i_X509_EXTENSION 2352 1_1_0d EXIST::FUNCTION: +SM2_KAP_CTX_init 2353 1_1_0d EXIST::FUNCTION:SM2 +BN_CTX_get 2354 1_1_0d EXIST::FUNCTION: +ERR_remove_thread_state 2355 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +OCSP_REQ_CTX_get0_mem_bio 2356 1_1_0d EXIST::FUNCTION:OCSP +ESS_SIGNING_CERT_new 2357 1_1_0d EXIST::FUNCTION:TS +COMP_CTX_get_method 2358 1_1_0d EXIST::FUNCTION:COMP +IDEA_ofb64_encrypt 2359 1_1_0d EXIST::FUNCTION:IDEA +CMS_encrypt 2360 1_1_0d EXIST::FUNCTION:CMS +X509_get_X509_PUBKEY 2361 1_1_0d EXIST::FUNCTION: +SDF_ImportKeyWithISK_RSA 2362 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_it 2363 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_BIT_STRING_it 2363 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_DecryptUpdate 2364 1_1_0d EXIST::FUNCTION: +d2i_X509_ATTRIBUTE 2365 1_1_0d EXIST::FUNCTION: +RSA_OAEP_PARAMS_new 2366 1_1_0d EXIST::FUNCTION:RSA +ASN1_digest 2367 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_rand_key 2368 1_1_0d EXIST::FUNCTION: +EC_KEY_is_sm2p256v1 2369 1_1_0d EXIST::FUNCTION:SM2 +X509_CRL_get_ext_by_NID 2370 1_1_0d EXIST::FUNCTION: +d2i_OCSP_SINGLERESP 2371 1_1_0d EXIST::FUNCTION:OCSP +BIO_socket 2372 1_1_0d EXIST::FUNCTION:SOCK +OCSP_basic_add1_cert 2373 1_1_0d EXIST::FUNCTION:OCSP +TS_RESP_CTX_set_signer_cert 2374 1_1_0d EXIST::FUNCTION:TS +EVP_aes_256_wrap 2375 1_1_0d EXIST::FUNCTION: +EC_GROUP_method_of 2376 1_1_0d EXIST::FUNCTION:EC +ENGINE_register_RSA 2377 1_1_0d EXIST::FUNCTION:ENGINE +PEM_read 2378 1_1_0d EXIST::FUNCTION:STDIO +BN_rshift 2379 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_cipher 2380 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_new 2381 1_1_0d EXIST::FUNCTION:OCSP +PKCS7_ISSUER_AND_SERIAL_free 2382 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_add 2383 1_1_0d EXIST::FUNCTION: +d2i_ASN1_PRINTABLE 2384 1_1_0d EXIST::FUNCTION: +OBJ_NAME_do_all 2385 1_1_0d EXIST::FUNCTION: +ERR_get_error 2386 1_1_0d EXIST::FUNCTION: +ERR_load_CMS_strings 2387 1_1_0d EXIST::FUNCTION:CMS +X509_NAME_hash 2388 1_1_0d EXIST::FUNCTION: +PEM_read_bio_RSAPublicKey 2389 1_1_0d EXIST::FUNCTION:RSA +ERR_get_state 2390 1_1_0d EXIST::FUNCTION: +EVP_rc5_32_12_16_ofb 2391 1_1_0d EXIST::FUNCTION:RC5 +X509_STORE_CTX_get1_issuer 2392 1_1_0d EXIST::FUNCTION: +d2i_PKCS8_PRIV_KEY_INFO_bio 2393 1_1_0d EXIST::FUNCTION: +DSO_up_ref 2394 1_1_0d EXIST::FUNCTION: +d2i_ECDSA_SIG 2395 1_1_0d EXIST::FUNCTION:EC +DH_meth_get0_name 2396 1_1_0d EXIST::FUNCTION:DH +EVP_PKEY_get0_EC_KEY 2397 1_1_0d EXIST::FUNCTION:EC +X509_STORE_CTX_new 2398 1_1_0d EXIST::FUNCTION: +SXNETID_it 2399 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +SXNETID_it 2399 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_aes_192_ofb 2400 1_1_0d EXIST::FUNCTION: +i2s_ASN1_ENUMERATED_TABLE 2401 1_1_0d EXIST::FUNCTION: +DH_meth_new 2402 1_1_0d EXIST::FUNCTION:DH +EVP_DecryptFinal 2403 1_1_0d EXIST::FUNCTION: +ENGINE_set_EC 2404 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_TIME_check 2405 1_1_0d EXIST::FUNCTION: +EVP_aes_256_ccm 2406 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_num 2407 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_set_cert_flags 2408 1_1_0d EXIST::FUNCTION: +UI_get_result_minsize 2409 1_1_0d EXIST::FUNCTION:UI +EC_POINT_invert 2410 1_1_0d EXIST::FUNCTION:EC +EVP_PBE_find 2411 1_1_0d EXIST::FUNCTION: +BB1PrivateKeyBlock_new 2412 1_1_0d EXIST::FUNCTION:BB1IBE +EC_KEY_set_default_secg_method 2413 1_1_0d EXIST::FUNCTION:SM2 +NETSCAPE_SPKI_new 2414 1_1_0d EXIST::FUNCTION: +d2i_OCSP_ONEREQ 2415 1_1_0d EXIST::FUNCTION:OCSP +i2d_PaillierPublicKey 2416 1_1_0d EXIST::FUNCTION:PAILLIER +UI_get0_result 2417 1_1_0d EXIST::FUNCTION:UI +X509_CRL_get_lastUpdate 2418 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +PKCS12_BAGS_new 2419 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_find 2420 1_1_0d EXIST::FUNCTION: +ERR_load_PKCS12_strings 2421 1_1_0d EXIST::FUNCTION: +BN_mod_word 2422 1_1_0d EXIST::FUNCTION: +PKCS7_add_signer 2423 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_get_ext_by_critical 2424 1_1_0d EXIST::FUNCTION:OCSP +BIO_int_ctrl 2425 1_1_0d EXIST::FUNCTION: +OBJ_obj2nid 2426 1_1_0d EXIST::FUNCTION: +SDF_Encrypt 2427 1_1_0d EXIST::FUNCTION: +RSA_meth_new 2428 1_1_0d EXIST::FUNCTION:RSA +BN_GF2m_mod_div 2429 1_1_0d EXIST::FUNCTION:EC2M +X509_REVOKED_new 2430 1_1_0d EXIST::FUNCTION: +ACCESS_DESCRIPTION_it 2431 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ACCESS_DESCRIPTION_it 2431 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ENGINE_unregister_RAND 2432 1_1_0d EXIST::FUNCTION:ENGINE +EVP_MD_CTX_md 2433 1_1_0d EXIST::FUNCTION: +X509_alias_set1 2434 1_1_0d EXIST::FUNCTION: +DSO_flags 2435 1_1_0d EXIST::FUNCTION: +OPENSSL_gmtime 2436 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_free 2437 1_1_0d EXIST::FUNCTION:TS +i2v_GENERAL_NAMES 2438 1_1_0d EXIST::FUNCTION: +OTHERNAME_it 2439 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +OTHERNAME_it 2439 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ERR_peek_last_error_line_data 2440 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SM9_MASTER_PUBKEY 2441 1_1_0d EXIST::FUNCTION:SM9 +ENGINE_by_id 2442 1_1_0d EXIST::FUNCTION:ENGINE +ENGINE_unregister_pkey_meths 2443 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_print_private 2444 1_1_0d EXIST::FUNCTION: +NAME_CONSTRAINTS_check 2445 1_1_0d EXIST::FUNCTION: +TS_RESP_print_bio 2446 1_1_0d EXIST::FUNCTION:TS +DH_clear_flags 2447 1_1_0d EXIST::FUNCTION:DH +SDF_ExportSignPublicKey_ECC 2448 1_1_0d EXIST::FUNCTION: +EVP_DecryptInit 2449 1_1_0d EXIST::FUNCTION: +PKCS7_RECIP_INFO_get0_alg 2450 1_1_0d EXIST::FUNCTION: +UI_method_set_prompt_constructor 2451 1_1_0d EXIST::FUNCTION:UI +i2d_X509_CERT_AUX 2452 1_1_0d EXIST::FUNCTION: +PEM_read_ECPKParameters 2453 1_1_0d EXIST::FUNCTION:EC,STDIO +PKCS7_RECIP_INFO_it 2454 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_RECIP_INFO_it 2454 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +AES_cbc_encrypt 2455 1_1_0d EXIST::FUNCTION: +OCSP_set_max_response_length 2456 1_1_0d EXIST::FUNCTION:OCSP +SM9_extract_public_parameters 2457 1_1_0d EXIST::FUNCTION:SM9 +OCSP_BASICRESP_add_ext 2458 1_1_0d EXIST::FUNCTION:OCSP +OCSP_basic_verify 2459 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_THREAD_set_local 2460 1_1_0d EXIST::FUNCTION: +v2i_GENERAL_NAME 2461 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_pkey_ctx 2462 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_set1_issuer 2463 1_1_0d EXIST::FUNCTION:CT +TS_TST_INFO_get_ext_by_OBJ 2464 1_1_0d EXIST::FUNCTION:TS +EVP_MD_meth_get_flags 2465 1_1_0d EXIST::FUNCTION: +ASN1_NULL_new 2466 1_1_0d EXIST::FUNCTION: +SM2_do_verify 2467 1_1_0d EXIST::FUNCTION:SM2 +PEM_write_bio_Parameters 2468 1_1_0d EXIST::FUNCTION: +X509_CRL_INFO_free 2469 1_1_0d EXIST::FUNCTION: +NCONF_get_number_e 2470 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_error 2471 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_pop_free 2472 1_1_0d EXIST::FUNCTION: +RAND_event 2473 1_1_0d EXIST:_WIN32:FUNCTION:DEPRECATEDIN_1_1_0 +OBJ_find_sigid_algs 2474 1_1_0d EXIST::FUNCTION: +BIO_next 2475 1_1_0d EXIST::FUNCTION: +EC_POINT_set_compressed_coordinates_GFp 2476 1_1_0d EXIST::FUNCTION:EC +BN_BLINDING_lock 2477 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_get_ext_by_NID 2478 1_1_0d EXIST::FUNCTION:OCSP +X509_policy_tree_get0_policies 2479 1_1_0d EXIST::FUNCTION: +PKCS5_PBE_keyivgen 2480 1_1_0d EXIST::FUNCTION: +ERR_load_CPK_strings 2481 1_1_0d EXIST::FUNCTION:CPK +ERR_load_SM9_strings 2482 1_1_0d EXIST::FUNCTION:SM9 +i2d_OCSP_REVOKEDINFO 2483 1_1_0d EXIST::FUNCTION:OCSP +CPK_PUBLIC_PARAMS_free 2484 1_1_0d EXIST::FUNCTION:CPK +PKCS7_it 2485 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_it 2485 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SKF_OpenContainer 2486 1_1_0d EXIST::FUNCTION:SKF +EVP_md_null 2487 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_EC 2488 1_1_0d EXIST::FUNCTION:ENGINE +BIO_free_all 2489 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_set1_req 2490 1_1_0d EXIST::FUNCTION:OCSP +PKCS7_get0_signers 2491 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_dup 2492 1_1_0d EXIST::FUNCTION: +OPENSSL_INIT_free 2493 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_check_issued 2494 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_ENVELOPE 2495 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_purpose_inherit 2496 1_1_0d EXIST::FUNCTION: +CONF_parse_list 2497 1_1_0d EXIST::FUNCTION: +CONF_module_add 2498 1_1_0d EXIST::FUNCTION: +i2o_SM2CiphertextValue 2499 1_1_0d EXIST::FUNCTION:SM2 +CONF_module_set_usr_data 2500 1_1_0d EXIST::FUNCTION: +ENGINE_get_DH 2501 1_1_0d EXIST::FUNCTION:ENGINE +i2d_CMS_ContentInfo 2502 1_1_0d EXIST::FUNCTION:CMS +ENGINE_set_id 2503 1_1_0d EXIST::FUNCTION:ENGINE +BIO_gets 2504 1_1_0d EXIST::FUNCTION: +SRP_create_verifier 2505 1_1_0d EXIST::FUNCTION:SRP +BIO_ADDR_path_string 2506 1_1_0d EXIST::FUNCTION:SOCK +PEM_write_X509 2507 1_1_0d EXIST::FUNCTION:STDIO +RSA_check_key_ex 2508 1_1_0d EXIST::FUNCTION:RSA +X509_CRL_up_ref 2509 1_1_0d EXIST::FUNCTION: +ASYNC_cleanup_thread 2510 1_1_0d EXIST::FUNCTION: +EC_POINT_point2bn 2511 1_1_0d EXIST::FUNCTION:EC +ASN1_TIME_set_string 2512 1_1_0d EXIST::FUNCTION: +PKCS12_mac_present 2513 1_1_0d EXIST::FUNCTION: +OCSP_RESPONSE_free 2514 1_1_0d EXIST::FUNCTION:OCSP +BFMasterSecret_new 2515 1_1_0d EXIST::FUNCTION:BFIBE +BN_GF2m_mod_arr 2516 1_1_0d EXIST::FUNCTION:EC2M +X509_OBJECT_get0_X509_CRL 2517 1_1_0d EXIST::FUNCTION: +DES_set_key_checked 2518 1_1_0d EXIST::FUNCTION:DES +d2i_X509_PUBKEY 2519 1_1_0d EXIST::FUNCTION: +ASN1_STRING_to_UTF8 2520 1_1_0d EXIST::FUNCTION: +OCSP_RESPID_free 2521 1_1_0d EXIST::FUNCTION:OCSP +i2d_TS_REQ_fp 2522 1_1_0d EXIST::FUNCTION:STDIO,TS +EC_KEY_get_method 2523 1_1_0d EXIST::FUNCTION:EC +BIO_get_data 2524 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_get0_issuer 2525 1_1_0d EXIST::FUNCTION:CT +CRYPTO_ccm128_tag 2526 1_1_0d EXIST::FUNCTION: +X509_REQ_dup 2527 1_1_0d EXIST::FUNCTION: +BN_num_bits 2528 1_1_0d EXIST::FUNCTION: +RSA_up_ref 2529 1_1_0d EXIST::FUNCTION:RSA +PKCS7_digest_from_attributes 2530 1_1_0d EXIST::FUNCTION: +EVP_camellia_192_ctr 2531 1_1_0d EXIST::FUNCTION:CAMELLIA +i2d_ASN1_BIT_STRING 2532 1_1_0d EXIST::FUNCTION: +EVP_SealFinal 2533 1_1_0d EXIST::FUNCTION:RSA +SM9_compute_share_key_A 2534 1_1_0d EXIST::FUNCTION:SM9 +RSA_generate_key_ex 2535 1_1_0d EXIST::FUNCTION:RSA +PEM_write_bio_PKCS7 2536 1_1_0d EXIST::FUNCTION: +BN_bn2binpad 2537 1_1_0d EXIST::FUNCTION: +i2d_ECCCipher 2538 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +BIO_number_written 2539 1_1_0d EXIST::FUNCTION: +NCONF_load 2540 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_SIGN_ENVELOPE 2541 1_1_0d EXIST::FUNCTION: +X509_TRUST_get0_name 2542 1_1_0d EXIST::FUNCTION: +BN_rand 2543 1_1_0d EXIST::FUNCTION: +CMS_decrypt_set1_key 2544 1_1_0d EXIST::FUNCTION:CMS +X509_set_issuer_name 2545 1_1_0d EXIST::FUNCTION: +SM9_MASTER_KEY_new 2546 1_1_0d EXIST::FUNCTION:SM9 +ACCESS_DESCRIPTION_new 2547 1_1_0d EXIST::FUNCTION: +EVP_aes_128_cfb8 2548 1_1_0d EXIST::FUNCTION: +PEM_read_X509_AUX 2549 1_1_0d EXIST::FUNCTION:STDIO +DH_meth_dup 2550 1_1_0d EXIST::FUNCTION:DH +CMAC_CTX_copy 2551 1_1_0d EXIST::FUNCTION:CMAC +SDF_GenerateRandom 2552 1_1_0d EXIST::FUNCTION: +RSA_set_RSAPRIVATEKEYBLOB 2553 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +d2i_ECPrivateKey_fp 2554 1_1_0d EXIST::FUNCTION:EC,STDIO +NOTICEREF_free 2555 1_1_0d EXIST::FUNCTION: +d2i_X509_VAL 2556 1_1_0d EXIST::FUNCTION: +ASN1_item_i2d 2557 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_cert 2558 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_free 2559 1_1_0d EXIST::FUNCTION: +X509_REQ_get1_email 2560 1_1_0d EXIST::FUNCTION: +COMP_CTX_new 2561 1_1_0d EXIST::FUNCTION:COMP +CRYPTO_ccm128_decrypt_ccm64 2562 1_1_0d EXIST::FUNCTION: +X509_get_version 2563 1_1_0d EXIST::FUNCTION: +TS_X509_ALGOR_print_bio 2564 1_1_0d EXIST::FUNCTION:TS +X509_VERIFY_PARAM_move_peername 2565 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_add0 2566 1_1_0d EXIST::FUNCTION: +OPENSSL_strlcat 2567 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_def_policy 2568 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_assign 2569 1_1_0d EXIST::FUNCTION: +X509_it 2570 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_it 2570 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +DH_get_2048_256 2571 1_1_0d EXIST::FUNCTION:DH +speck_encrypt64 2572 1_1_0d EXIST::FUNCTION:SPECK +i2d_ASN1_BMPSTRING 2573 1_1_0d EXIST::FUNCTION: +RSA_free 2574 1_1_0d EXIST::FUNCTION:RSA +BFCiphertextBlock_new 2575 1_1_0d EXIST::FUNCTION:BFIBE +EVP_PKEY_up_ref 2576 1_1_0d EXIST::FUNCTION: +ENGINE_get_ex_data 2577 1_1_0d EXIST::FUNCTION:ENGINE +EVP_CIPHER_CTX_iv_noconst 2578 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set_by_NID 2579 1_1_0d EXIST::FUNCTION: +EC_KEY_print 2580 1_1_0d EXIST::FUNCTION:EC +ENGINE_set_load_privkey_function 2581 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_put_object 2582 1_1_0d EXIST::FUNCTION: +ERR_print_errors_fp 2583 1_1_0d EXIST::FUNCTION:STDIO +X509_cmp 2584 1_1_0d EXIST::FUNCTION: +TS_RESP_verify_response 2585 1_1_0d EXIST::FUNCTION:TS +X509_add_ext 2586 1_1_0d EXIST::FUNCTION: +BIO_parse_hostserv 2587 1_1_0d EXIST::FUNCTION:SOCK +ASN1_const_check_infinite_end 2588 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_set_data 2589 1_1_0d EXIST::FUNCTION: +SDF_OpenDevice 2590 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_set_data 2591 1_1_0d EXIST::FUNCTION:TS +X509_print_ex_fp 2592 1_1_0d EXIST::FUNCTION:STDIO +X509_REQ_add_extensions_nid 2593 1_1_0d EXIST::FUNCTION: +UI_create_method 2594 1_1_0d EXIST::FUNCTION:UI +X509_VERIFY_PARAM_lookup 2595 1_1_0d EXIST::FUNCTION: +X509_NAME_get_text_by_NID 2596 1_1_0d EXIST::FUNCTION: +EVP_whirlpool 2597 1_1_0d EXIST::FUNCTION:WHIRLPOOL +EVP_PKEY_CTX_get_keygen_info 2598 1_1_0d EXIST::FUNCTION: +EVP_aes_128_gcm 2599 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_new_null 2600 1_1_0d EXIST::FUNCTION: +BIO_ptr_ctrl 2601 1_1_0d EXIST::FUNCTION: +BIO_f_base64 2602 1_1_0d EXIST::FUNCTION: +OCSP_ONEREQ_it 2603 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_ONEREQ_it 2603 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +EVP_sms4_cbc 2604 1_1_0d EXIST::FUNCTION:SMS4 +CT_POLICY_EVAL_CTX_free 2605 1_1_0d EXIST::FUNCTION:CT +EC_GROUP_get_degree 2606 1_1_0d EXIST::FUNCTION:EC +BN_div 2607 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add_conf 2608 1_1_0d EXIST::FUNCTION: +CMS_sign_receipt 2609 1_1_0d EXIST::FUNCTION:CMS +SRP_Calc_u 2610 1_1_0d EXIST::FUNCTION:SRP +SKF_DecryptUpdate 2611 1_1_0d EXIST::FUNCTION:SKF +X509v3_asid_canonize 2612 1_1_0d EXIST::FUNCTION:RFC3779 +ECParameters_print 2613 1_1_0d EXIST::FUNCTION:EC +i2d_CMS_ReceiptRequest 2614 1_1_0d EXIST::FUNCTION:CMS +X509_PURPOSE_get0_sname 2615 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_free 2616 1_1_0d EXIST::FUNCTION: +i2d_X509_CRL_INFO 2617 1_1_0d EXIST::FUNCTION: +EVP_des_ede3 2618 1_1_0d EXIST::FUNCTION:DES +X509_get_default_cert_file_env 2619 1_1_0d EXIST::FUNCTION: +d2i_ASN1_T61STRING 2620 1_1_0d EXIST::FUNCTION: +DSA_new 2621 1_1_0d EXIST::FUNCTION:DSA +PEM_write_DHxparams 2622 1_1_0d EXIST::FUNCTION:DH,STDIO +NAME_CONSTRAINTS_new 2623 1_1_0d EXIST::FUNCTION: +X509V3_EXT_REQ_add_conf 2624 1_1_0d EXIST::FUNCTION: +IDEA_cbc_encrypt 2625 1_1_0d EXIST::FUNCTION:IDEA +BN_mod_sqr 2626 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_set_int_octetstring 2627 1_1_0d EXIST::FUNCTION: +i2d_X509_CRL 2628 1_1_0d EXIST::FUNCTION: +d2i_TS_TST_INFO_fp 2629 1_1_0d EXIST::FUNCTION:STDIO,TS +DH_meth_set_generate_params 2630 1_1_0d EXIST::FUNCTION:DH +BIO_nread 2631 1_1_0d EXIST::FUNCTION: +BIO_ADDR_rawmake 2632 1_1_0d EXIST::FUNCTION:SOCK +CMAC_CTX_new 2633 1_1_0d EXIST::FUNCTION:CMAC +OPENSSL_memcmp 2634 1_1_0d EXIST::FUNCTION: +MD5_Update 2635 1_1_0d EXIST::FUNCTION:MD5 +X509_get_pathlen 2636 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_add_md 2637 1_1_0d EXIST::FUNCTION:TS +X509_REQ_set_pubkey 2638 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_set0_param 2639 1_1_0d EXIST::FUNCTION: +RSA_set_RSAPUBLICKEYBLOB 2640 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +EVP_PKEY_size 2641 1_1_0d EXIST::FUNCTION: +BB1PublicParameters_new 2642 1_1_0d EXIST::FUNCTION:BB1IBE +d2i_ASIdentifiers 2643 1_1_0d EXIST::FUNCTION:RFC3779 +EC_POINT_is_at_infinity 2644 1_1_0d EXIST::FUNCTION:EC +CAST_set_key 2645 1_1_0d EXIST::FUNCTION:CAST +X509_LOOKUP_hash_dir 2646 1_1_0d EXIST::FUNCTION: +SKF_EnumDev 2647 1_1_0d EXIST::FUNCTION:SKF +RSA_meth_set_flags 2648 1_1_0d EXIST::FUNCTION:RSA +PKCS12_SAFEBAG_get0_type 2649 1_1_0d EXIST::FUNCTION: +OCSP_archive_cutoff_new 2650 1_1_0d EXIST::FUNCTION:OCSP +X509v3_add_ext 2651 1_1_0d EXIST::FUNCTION: +OCSP_CRLID_it 2652 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_CRLID_it 2652 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +X509_NAME_get0_der 2653 1_1_0d EXIST::FUNCTION: +EVP_seed_ofb 2654 1_1_0d EXIST::FUNCTION:SEED +DH_generate_parameters_ex 2655 1_1_0d EXIST::FUNCTION:DH +X509_REQ_INFO_free 2656 1_1_0d EXIST::FUNCTION: +OCSP_resp_get0 2657 1_1_0d EXIST::FUNCTION:OCSP +PEM_read_SM9_PUBKEY 2658 1_1_0d EXIST::FUNCTION:SM9,STDIO +BIO_new_accept 2659 1_1_0d EXIST::FUNCTION:SOCK +ASN1_UNIVERSALSTRING_it 2660 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_UNIVERSALSTRING_it 2660 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_REVOKED_set_revocationDate 2661 1_1_0d EXIST::FUNCTION: +EC_KEY_get_enc_flags 2662 1_1_0d EXIST::FUNCTION:EC +X509_CRL_set1_nextUpdate 2663 1_1_0d EXIST::FUNCTION: +HMAC 2664 1_1_0d EXIST::FUNCTION: +TS_RESP_get_status_info 2665 1_1_0d EXIST::FUNCTION:TS +EC_KEY_set_method 2666 1_1_0d EXIST::FUNCTION:EC +PKCS7_add_attrib_smimecap 2667 1_1_0d EXIST::FUNCTION: +X509_get1_email 2668 1_1_0d EXIST::FUNCTION: +i2d_X509_ALGOR 2669 1_1_0d EXIST::FUNCTION: +ASN1_item_print 2670 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_deep_copy 2671 1_1_0d EXIST::FUNCTION: +EVP_rc2_ofb 2672 1_1_0d EXIST::FUNCTION:RC2 +EVP_CIPHER_get_asn1_iv 2673 1_1_0d EXIST::FUNCTION: +i2d_PKCS8PrivateKeyInfo_fp 2674 1_1_0d EXIST::FUNCTION:STDIO +X509_issuer_and_serial_hash 2675 1_1_0d EXIST::FUNCTION: +SAF_Base64_DestroyBase64Obj 2676 1_1_0d EXIST::FUNCTION: +PEM_write_bio_ASN1_stream 2677 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_set0_pkey 2678 1_1_0d EXIST::FUNCTION:CMS +EC_POINT_add 2679 1_1_0d EXIST::FUNCTION:EC +SDF_PrintDeviceInfo 2680 1_1_0d EXIST::FUNCTION:SDF +CRYPTO_secure_malloc 2681 1_1_0d EXIST::FUNCTION: +SM2_KAP_prepare 2682 1_1_0d EXIST::FUNCTION:SM2 +CMS_unsigned_get0_data_by_OBJ 2683 1_1_0d EXIST::FUNCTION:CMS +CRYPTO_gcm128_finish 2684 1_1_0d EXIST::FUNCTION: +i2d_DSA_PUBKEY_fp 2685 1_1_0d EXIST::FUNCTION:DSA,STDIO +BIO_meth_set_read 2686 1_1_0d EXIST::FUNCTION: +BIO_s_log 2687 1_1_0d EXIST:!WIN32,!macintosh:FUNCTION: +CRYPTO_ocb128_copy_ctx 2688 1_1_0d EXIST::FUNCTION:OCB +EVP_CIPHER_meth_get_get_asn1_params 2689 1_1_0d EXIST::FUNCTION: +BN_BLINDING_get_flags 2690 1_1_0d EXIST::FUNCTION: +X509V3_EXT_REQ_add_nconf 2691 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_get_ext_by_NID 2692 1_1_0d EXIST::FUNCTION:OCSP +ASN1_UTCTIME_cmp_time_t 2693 1_1_0d EXIST::FUNCTION: +RSA_meth_get_sign 2694 1_1_0d EXIST::FUNCTION:RSA +d2i_OCSP_REQINFO 2695 1_1_0d EXIST::FUNCTION:OCSP +i2d_SM9MasterSecret_bio 2696 1_1_0d EXIST::FUNCTION:SM9 +i2d_ASIdentifiers 2697 1_1_0d EXIST::FUNCTION:RFC3779 +BIO_set_flags 2698 1_1_0d EXIST::FUNCTION: +CMS_unsigned_add1_attr 2699 1_1_0d EXIST::FUNCTION:CMS +ERR_load_ENGINE_strings 2700 1_1_0d EXIST::FUNCTION:ENGINE +ECPARAMETERS_new 2701 1_1_0d EXIST::FUNCTION:EC +SAF_RsaSignFile 2702 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_check_crl 2703 1_1_0d EXIST::FUNCTION: +d2i_EC_PUBKEY_bio 2704 1_1_0d EXIST::FUNCTION:EC +CONF_modules_load_file 2705 1_1_0d EXIST::FUNCTION: +RC5_32_ecb_encrypt 2706 1_1_0d EXIST::FUNCTION:RC5 +X509_set1_notAfter 2707 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_final 2708 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_free 2709 1_1_0d EXIST::FUNCTION: +BIO_dump_indent_fp 2710 1_1_0d EXIST::FUNCTION:STDIO +i2d_TS_MSG_IMPRINT 2711 1_1_0d EXIST::FUNCTION:TS +RC4_set_key 2712 1_1_0d EXIST::FUNCTION:RC4 +EVP_sms4_ctr 2713 1_1_0d EXIST::FUNCTION:SMS4 +BN_mod_sub_quick 2714 1_1_0d EXIST::FUNCTION: +BIO_s_fd 2715 1_1_0d EXIST::FUNCTION: +TS_CONF_set_ordering 2716 1_1_0d EXIST::FUNCTION:TS +CRYPTO_secure_zalloc 2717 1_1_0d EXIST::FUNCTION: +IPAddressRange_new 2718 1_1_0d EXIST::FUNCTION:RFC3779 +X509_STORE_add_cert 2719 1_1_0d EXIST::FUNCTION: +BN_nist_mod_func 2720 1_1_0d EXIST::FUNCTION: +d2i_OTHERNAME 2721 1_1_0d EXIST::FUNCTION: +ERR_peek_error_line 2722 1_1_0d EXIST::FUNCTION: +SM9MasterSecret_it 2723 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9MasterSecret_it 2723 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +OCSP_SINGLERESP_delete_ext 2724 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_mem_debug_malloc 2725 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +BN_bntest_rand 2726 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_it 2727 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK +CPK_MASTER_SECRET_it 2727 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK +EVP_PKEY_asn1_add_alias 2728 1_1_0d EXIST::FUNCTION: +SCT_get0_extensions 2729 1_1_0d EXIST::FUNCTION:CT +X509_REQ_get0_pubkey 2730 1_1_0d EXIST::FUNCTION: +ERR_load_SKF_strings 2731 1_1_0d EXIST::FUNCTION:SKF +ECPKPARAMETERS_free 2732 1_1_0d EXIST::FUNCTION:EC +BN_bn2hex 2733 1_1_0d EXIST::FUNCTION: +EVP_ripemd160 2734 1_1_0d EXIST::FUNCTION:RMD160 +EVP_PKEY_asn1_new 2735 1_1_0d EXIST::FUNCTION: +i2d_DHparams 2736 1_1_0d EXIST::FUNCTION:DH +SAF_GetErrorString 2737 1_1_0d EXIST::FUNCTION:SAF +DIST_POINT_NAME_free 2738 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_add1_host 2739 1_1_0d EXIST::FUNCTION: +d2i_X509_REQ_fp 2740 1_1_0d EXIST::FUNCTION:STDIO +EVP_PKEY_add1_attr_by_OBJ 2741 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_new 2742 1_1_0d EXIST::FUNCTION: +SHA512_Transform 2743 1_1_0d EXIST:!VMSVAX:FUNCTION: +CRYPTO_ccm128_encrypt_ccm64 2744 1_1_0d EXIST::FUNCTION: +CRYPTO_malloc 2745 1_1_0d EXIST::FUNCTION: +BN_get_rfc3526_prime_6144 2746 1_1_0d EXIST::FUNCTION: +SHA1_Init 2747 1_1_0d EXIST::FUNCTION: +DH_get_1024_160 2748 1_1_0d EXIST::FUNCTION:DH +EVP_MD_size 2749 1_1_0d EXIST::FUNCTION: +sm3_compress 2750 1_1_0d EXIST::FUNCTION:SM3 +EVP_CIPHER_meth_set_get_asn1_params 2751 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_delete_ext 2752 1_1_0d EXIST::FUNCTION:TS +d2i_OCSP_CRLID 2753 1_1_0d EXIST::FUNCTION:OCSP +BN_print 2754 1_1_0d EXIST::FUNCTION: +PEM_read_PUBKEY 2755 1_1_0d EXIST::FUNCTION:STDIO +SCT_new_from_base64 2756 1_1_0d EXIST::FUNCTION:CT +ASN1_VISIBLESTRING_free 2757 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_set1 2758 1_1_0d EXIST::FUNCTION: +EVP_camellia_192_cfb128 2759 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_camellia_128_ofb 2760 1_1_0d EXIST::FUNCTION:CAMELLIA +EC_KEY_set_private_key 2761 1_1_0d EXIST::FUNCTION:EC +BN_value_one 2762 1_1_0d EXIST::FUNCTION: +DSA_do_verify 2763 1_1_0d EXIST::FUNCTION:DSA +X509_STORE_set_lookup_certs 2764 1_1_0d EXIST::FUNCTION: +EVP_aes_256_ctr 2765 1_1_0d EXIST::FUNCTION: +SMIME_write_ASN1 2766 1_1_0d EXIST::FUNCTION: +OCSP_SIGNATURE_it 2767 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_SIGNATURE_it 2767 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +i2d_PKCS7_bio_stream 2768 1_1_0d EXIST::FUNCTION: +EVP_aes_128_wrap_pad 2769 1_1_0d EXIST::FUNCTION: +SRP_Calc_x 2770 1_1_0d EXIST::FUNCTION:SRP +EVP_sms4_wrap 2771 1_1_0d EXIST::FUNCTION:SMS4 +OCSP_parse_url 2772 1_1_0d EXIST::FUNCTION:OCSP +CMS_unsigned_get_attr_by_OBJ 2773 1_1_0d EXIST::FUNCTION:CMS +ASN1_GENERALIZEDTIME_check 2774 1_1_0d EXIST::FUNCTION: +SOF_GetErrorString 2775 1_1_0d EXIST::FUNCTION:SOF +PKCS8_pkey_set0 2776 1_1_0d EXIST::FUNCTION: +ASN1_GENERALIZEDTIME_new 2777 1_1_0d EXIST::FUNCTION: +ASN1_PRINTABLE_free 2778 1_1_0d EXIST::FUNCTION: +BFPublicParameters_new 2779 1_1_0d EXIST::FUNCTION:BFIBE +CRYPTO_128_wrap 2780 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_DSA 2781 1_1_0d EXIST::FUNCTION:ENGINE +RSA_blinding_off 2782 1_1_0d EXIST::FUNCTION:RSA +EC_GF2m_simple_method 2783 1_1_0d EXIST::FUNCTION:EC,EC2M +EC_POINT_get_Jprojective_coordinates_GFp 2784 1_1_0d EXIST::FUNCTION:EC +DH_generate_key 2785 1_1_0d EXIST::FUNCTION:DH +EVP_aes_192_cfb128 2786 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get_sgd 2787 1_1_0d EXIST::FUNCTION:GMAPI +DSO_new 2788 1_1_0d EXIST::FUNCTION: +PKCS7_get_smimecap 2789 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PKCS8PrivateKey_nid 2790 1_1_0d EXIST::FUNCTION: +CMS_digest_create 2791 1_1_0d EXIST::FUNCTION:CMS +CRYPTO_THREAD_get_local 2792 1_1_0d EXIST::FUNCTION: +BF_ecb_encrypt 2793 1_1_0d EXIST::FUNCTION:BF +X509_print_ex 2794 1_1_0d EXIST::FUNCTION: +ECPKParameters_print_fp 2795 1_1_0d EXIST::FUNCTION:EC,STDIO +i2d_ASN1_OBJECT 2796 1_1_0d EXIST::FUNCTION: +i2d_X509_REQ_bio 2797 1_1_0d EXIST::FUNCTION: +OPENSSL_load_builtin_modules 2798 1_1_0d EXIST::FUNCTION: +ENGINE_get_ciphers 2799 1_1_0d EXIST::FUNCTION:ENGINE +NOTICEREF_new 2800 1_1_0d EXIST::FUNCTION: +EC_GROUP_new_curve_GFp 2801 1_1_0d EXIST::FUNCTION:EC +PEM_write_X509_CRL 2802 1_1_0d EXIST::FUNCTION:STDIO +RIPEMD160 2803 1_1_0d EXIST::FUNCTION:RMD160 +X509_STORE_set_flags 2804 1_1_0d EXIST::FUNCTION: +X509_get_ext_by_critical 2805 1_1_0d EXIST::FUNCTION: +AUTHORITY_INFO_ACCESS_new 2806 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_serial_cb 2807 1_1_0d EXIST::FUNCTION:TS +OCSP_cert_status_str 2808 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_set_type 2809 1_1_0d EXIST::FUNCTION: +X509_SIG_getm 2810 1_1_0d EXIST::FUNCTION: +ERR_get_error_line 2811 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PKCS8 2812 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_ctrl 2813 1_1_0d EXIST::FUNCTION: +OCSP_REQINFO_new 2814 1_1_0d EXIST::FUNCTION:OCSP +PAILLIER_free 2815 1_1_0d EXIST::FUNCTION:PAILLIER +OCSP_resp_get0_certs 2816 1_1_0d EXIST::FUNCTION:OCSP +X509_REQ_add1_attr 2817 1_1_0d EXIST::FUNCTION: +ERR_reason_error_string 2818 1_1_0d EXIST::FUNCTION: +EVP_CipherInit 2819 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SM9PrivateKey 2820 1_1_0d EXIST::FUNCTION:SM9 +CMS_ReceiptRequest_create0 2821 1_1_0d EXIST::FUNCTION:CMS +RIPEMD160_Update 2822 1_1_0d EXIST::FUNCTION:RMD160 +EVP_seed_ecb 2823 1_1_0d EXIST::FUNCTION:SEED +RSA_get_RSArefPrivateKey 2824 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +X509_NAME_print_ex 2825 1_1_0d EXIST::FUNCTION: +SAF_SM2_DecodeSignedData 2826 1_1_0d EXIST::FUNCTION: +i2d_PKCS8PrivateKey_nid_fp 2827 1_1_0d EXIST::FUNCTION:STDIO +TXT_DB_create_index 2828 1_1_0d EXIST::FUNCTION: +CMS_dataFinal 2829 1_1_0d EXIST::FUNCTION:CMS +SAF_Pkcs7_EncodeDigestedData 2830 1_1_0d EXIST::FUNCTION: +ERR_pop_to_mark 2831 1_1_0d EXIST::FUNCTION: +PKCS7_set_digest 2832 1_1_0d EXIST::FUNCTION: +UI_get_string_type 2833 1_1_0d EXIST::FUNCTION:UI +EVP_camellia_256_ecb 2834 1_1_0d EXIST::FUNCTION:CAMELLIA +X509_free 2835 1_1_0d EXIST::FUNCTION: +BIO_get_retry_BIO 2836 1_1_0d EXIST::FUNCTION: +PBKDF2PARAM_free 2837 1_1_0d EXIST::FUNCTION: +CRYPTO_free_ex_data 2838 1_1_0d EXIST::FUNCTION: +d2i_SM2CiphertextValue 2839 1_1_0d EXIST::FUNCTION:SM2 +i2d_PrivateKey 2840 1_1_0d EXIST::FUNCTION: +i2d_OCSP_REQUEST 2841 1_1_0d EXIST::FUNCTION:OCSP +RSA_meth_set_sign 2842 1_1_0d EXIST::FUNCTION:RSA +d2i_ASN1_ENUMERATED 2843 1_1_0d EXIST::FUNCTION: +BN_solinas2bn 2844 1_1_0d EXIST::FUNCTION: +EVP_cast5_cbc 2845 1_1_0d EXIST::FUNCTION:CAST +X509V3_section_free 2846 1_1_0d EXIST::FUNCTION: +SKF_ExtECCVerify 2847 1_1_0d EXIST::FUNCTION:SKF +SHA384_Final 2848 1_1_0d EXIST:!VMSVAX:FUNCTION: +ERR_load_X509_strings 2849 1_1_0d EXIST::FUNCTION: +PEM_SignUpdate 2850 1_1_0d EXIST::FUNCTION: +SXNET_add_id_asc 2851 1_1_0d EXIST::FUNCTION: +ERR_load_BIO_strings 2852 1_1_0d EXIST::FUNCTION: +BIO_s_socket 2853 1_1_0d EXIST::FUNCTION:SOCK +X509_add1_reject_object 2854 1_1_0d EXIST::FUNCTION: +SXNET_get_id_asc 2855 1_1_0d EXIST::FUNCTION: +X509at_delete_attr 2856 1_1_0d EXIST::FUNCTION: +ENGINE_init 2857 1_1_0d EXIST::FUNCTION:ENGINE +i2d_ASN1_SEQUENCE_ANY 2858 1_1_0d EXIST::FUNCTION: +EVP_PKEY_cmp_parameters 2859 1_1_0d EXIST::FUNCTION: +BB1IBE_setup 2860 1_1_0d EXIST::FUNCTION:BB1IBE +X509_VERIFY_PARAM_set1_policies 2861 1_1_0d EXIST::FUNCTION: +PAILLIER_ciphertext_add 2862 1_1_0d EXIST::FUNCTION:PAILLIER +X509_CRL_sign 2863 1_1_0d EXIST::FUNCTION: +BN_GFP2_mul 2864 1_1_0d EXIST::FUNCTION: +a2i_IPADDRESS_NC 2865 1_1_0d EXIST::FUNCTION: +EVP_md5_sha1 2866 1_1_0d EXIST::FUNCTION:MD5 +TS_CONF_set_default_engine 2867 1_1_0d EXIST::FUNCTION:ENGINE,TS +X509_LOOKUP_init 2868 1_1_0d EXIST::FUNCTION: +EVP_camellia_192_cbc 2869 1_1_0d EXIST::FUNCTION:CAMELLIA +d2i_ASN1_UNIVERSALSTRING 2870 1_1_0d EXIST::FUNCTION: +SKF_ReadFile 2871 1_1_0d EXIST::FUNCTION:SKF +i2d_POLICYQUALINFO 2872 1_1_0d EXIST::FUNCTION: +i2d_X509_REQ_fp 2873 1_1_0d EXIST::FUNCTION:STDIO +BIO_accept_ex 2874 1_1_0d EXIST::FUNCTION:SOCK +EC_KEY_GmSSL 2875 1_1_0d EXIST::FUNCTION:SM2 +OCSP_SINGLERESP_new 2876 1_1_0d EXIST::FUNCTION:OCSP +OCSP_SIGNATURE_new 2877 1_1_0d EXIST::FUNCTION:OCSP +X509_policy_tree_get0_level 2878 1_1_0d EXIST::FUNCTION: +WHIRLPOOL_Final 2879 1_1_0d EXIST::FUNCTION:WHIRLPOOL +UI_add_user_data 2880 1_1_0d EXIST::FUNCTION:UI +PROXY_CERT_INFO_EXTENSION_new 2881 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PKCS7_stream 2882 1_1_0d EXIST::FUNCTION: +DH_new 2883 1_1_0d EXIST::FUNCTION:DH +RSA_bits 2884 1_1_0d EXIST::FUNCTION:RSA +sms4_encrypt_8blocks 2885 1_1_0d EXIST::FUNCTION:SMS4 +ASN1_BIT_STRING_new 2886 1_1_0d EXIST::FUNCTION: +ASN1_d2i_fp 2887 1_1_0d EXIST::FUNCTION:STDIO +i2d_ASN1_T61STRING 2888 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_new 2889 1_1_0d EXIST::FUNCTION: +BIO_new_CMS 2890 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_set_purpose 2891 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_create_by_NID 2892 1_1_0d EXIST::FUNCTION: +DSA_meth_set_bn_mod_exp 2893 1_1_0d EXIST::FUNCTION:DSA +OBJ_nid2ln 2894 1_1_0d EXIST::FUNCTION: +EVP_PKEY_add1_attr_by_txt 2895 1_1_0d EXIST::FUNCTION: +EVP_PKEY_type 2896 1_1_0d EXIST::FUNCTION: +BIO_accept 2897 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +CMS_set1_eContentType 2898 1_1_0d EXIST::FUNCTION:CMS +PEM_read_SM9_MASTER_PUBKEY 2899 1_1_0d EXIST::FUNCTION:SM9,STDIO +AUTHORITY_INFO_ACCESS_free 2900 1_1_0d EXIST::FUNCTION: +PKCS7_ISSUER_AND_SERIAL_it 2901 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ISSUER_AND_SERIAL_it 2901 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OCSP_ONEREQ_get_ext_by_OBJ 2902 1_1_0d EXIST::FUNCTION:OCSP +i2d_re_X509_tbs 2903 1_1_0d EXIST::FUNCTION: +X509_ATTRIBUTE_set1_data 2904 1_1_0d EXIST::FUNCTION: +X509_trust_clear 2905 1_1_0d EXIST::FUNCTION: +b2i_PVK_bio 2906 1_1_0d EXIST::FUNCTION:DSA,RC4 +AUTHORITY_KEYID_free 2907 1_1_0d EXIST::FUNCTION: +BB1PrivateKeyBlock_free 2908 1_1_0d EXIST::FUNCTION:BB1IBE +AES_cfb8_encrypt 2909 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set0_dane 2910 1_1_0d EXIST::FUNCTION: +X509_STORE_get_verify 2911 1_1_0d EXIST::FUNCTION: +BN_to_ASN1_INTEGER 2912 1_1_0d EXIST::FUNCTION: +GENERAL_SUBTREE_it 2913 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +GENERAL_SUBTREE_it 2913 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OBJ_NAME_get 2914 1_1_0d EXIST::FUNCTION: +CRYPTO_free 2915 1_1_0d EXIST::FUNCTION: +EVP_DigestFinal_ex 2916 1_1_0d EXIST::FUNCTION: +ASYNC_WAIT_CTX_clear_fd 2917 1_1_0d EXIST::FUNCTION: +ASN1_BMPSTRING_it 2918 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_BMPSTRING_it 2918 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BIO_callback_ctrl 2919 1_1_0d EXIST::FUNCTION: +SAF_SM2_EncodeSignedData 2920 1_1_0d EXIST::FUNCTION: +DSA_do_sign 2921 1_1_0d EXIST::FUNCTION:DSA +SDF_GenerateKeyPair_RSA 2922 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_set_str_flags 2923 1_1_0d EXIST::FUNCTION: +X509_getm_notBefore 2924 1_1_0d EXIST::FUNCTION: +PEM_read_X509_REQ 2925 1_1_0d EXIST::FUNCTION:STDIO +d2i_ECParameters 2926 1_1_0d EXIST::FUNCTION:EC +RIPEMD160_Init 2927 1_1_0d EXIST::FUNCTION:RMD160 +EVP_bf_ecb 2928 1_1_0d EXIST::FUNCTION:BF +TS_TST_INFO_set_ordering 2929 1_1_0d EXIST::FUNCTION:TS +BN_is_one 2930 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_accuracy 2931 1_1_0d EXIST::FUNCTION:TS +d2i_DSAPublicKey 2932 1_1_0d EXIST::FUNCTION:DSA +EC_GROUP_get0_cofactor 2933 1_1_0d EXIST::FUNCTION:EC +SDF_Decrypt 2934 1_1_0d EXIST::FUNCTION: +X509_TRUST_add 2935 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_get0 2936 1_1_0d EXIST::FUNCTION: +EVP_CipherFinal_ex 2937 1_1_0d EXIST::FUNCTION: +DES_key_sched 2938 1_1_0d EXIST::FUNCTION:DES +X509v3_asid_inherits 2939 1_1_0d EXIST::FUNCTION:RFC3779 +BN_RECP_CTX_new 2940 1_1_0d EXIST::FUNCTION: +i2d_TS_STATUS_INFO 2941 1_1_0d EXIST::FUNCTION:TS +CRYPTO_ctr128_encrypt 2942 1_1_0d EXIST::FUNCTION: +d2i_PublicKey 2943 1_1_0d EXIST::FUNCTION: +X509_CRL_print_fp 2944 1_1_0d EXIST::FUNCTION:STDIO +PEM_write_PKCS8_PRIV_KEY_INFO 2945 1_1_0d EXIST::FUNCTION:STDIO +POLICYQUALINFO_free 2946 1_1_0d EXIST::FUNCTION: +a2i_ASN1_STRING 2947 1_1_0d EXIST::FUNCTION: +SRP_Calc_client_key 2948 1_1_0d EXIST::FUNCTION:SRP +EVP_CIPHER_meth_get_do_cipher 2949 1_1_0d EXIST::FUNCTION: +CTLOG_STORE_load_default_file 2950 1_1_0d EXIST::FUNCTION:CT +i2d_PUBKEY 2951 1_1_0d EXIST::FUNCTION: +CTLOG_new_from_base64 2952 1_1_0d EXIST::FUNCTION:CT +ASN1_SCTX_get_item 2953 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_dup 2954 1_1_0d EXIST::FUNCTION:TS +SRP_Calc_A 2955 1_1_0d EXIST::FUNCTION:SRP +OPENSSL_atexit 2956 1_1_0d EXIST::FUNCTION: +SOF_GetServerCertificate 2957 1_1_0d EXIST::FUNCTION: +CMS_add0_recipient_key 2958 1_1_0d EXIST::FUNCTION:CMS +PKCS12_key_gen_asc 2959 1_1_0d EXIST::FUNCTION: +SKF_EncryptInit 2960 1_1_0d EXIST::FUNCTION:SKF +EVP_MD_CTX_set_flags 2961 1_1_0d EXIST::FUNCTION: +CONF_imodule_get_flags 2962 1_1_0d EXIST::FUNCTION: +ASN1_STRING_print_ex 2963 1_1_0d EXIST::FUNCTION: +X509V3_get_value_bool 2964 1_1_0d EXIST::FUNCTION: +BIO_lookup 2965 1_1_0d EXIST::FUNCTION:SOCK +SKF_Digest 2966 1_1_0d EXIST::FUNCTION:SKF +OCSP_BASICRESP_add1_ext_i2d 2967 1_1_0d EXIST::FUNCTION:OCSP +d2i_PBEPARAM 2968 1_1_0d EXIST::FUNCTION: +PEM_write_bio_PaillierPrivateKey 2969 1_1_0d EXIST::FUNCTION:PAILLIER +EC_POINT_new 2970 1_1_0d EXIST::FUNCTION:EC +EVP_camellia_192_cfb1 2971 1_1_0d EXIST::FUNCTION:CAMELLIA +DH_get0_pqg 2972 1_1_0d EXIST::FUNCTION:DH +UI_get0_user_data 2973 1_1_0d EXIST::FUNCTION:UI +PKCS7_RECIP_INFO_new 2974 1_1_0d EXIST::FUNCTION: +DES_check_key_parity 2975 1_1_0d EXIST::FUNCTION:DES +speck_decrypt16 2976 1_1_0d EXIST::FUNCTION:SPECK +BN_X931_generate_Xpq 2977 1_1_0d EXIST::FUNCTION: +X509_CRL_match 2978 1_1_0d EXIST::FUNCTION: +SDF_ExternalVerify_ECC 2979 1_1_0d EXIST::FUNCTION: +ASN1_STRING_copy 2980 1_1_0d EXIST::FUNCTION: +X509_REQ_free 2981 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_get_cleanup 2982 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_setiv 2983 1_1_0d EXIST::FUNCTION:OCB +PKEY_USAGE_PERIOD_it 2984 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKEY_USAGE_PERIOD_it 2984 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_CRL_get0_signature 2985 1_1_0d EXIST::FUNCTION: +EC_KEY_key2buf 2986 1_1_0d EXIST::FUNCTION:EC +ENGINE_get_ctrl_function 2987 1_1_0d EXIST::FUNCTION:ENGINE +i2d_ASN1_UTF8STRING 2988 1_1_0d EXIST::FUNCTION: +sms4_cfb128_encrypt 2989 1_1_0d EXIST::FUNCTION:SMS4 +ECDSA_SIG_new_from_ECCSignature 2990 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +ECDH_KDF_X9_62 2991 1_1_0d EXIST::FUNCTION:EC +BN_get0_nist_prime_256 2992 1_1_0d EXIST::FUNCTION: X509_get_default_cert_dir_env 2993 1_1_0d EXIST::FUNCTION: -TS_REQ_to_TS_VERIFY_CTX 2994 1_1_0d EXIST::FUNCTION:TS -d2i_TS_RESP 2995 1_1_0d EXIST::FUNCTION:TS -CRYPTO_ocb128_cleanup 2996 1_1_0d EXIST::FUNCTION:OCB -CRYPTO_ccm128_setiv 2997 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_inherit 2998 1_1_0d EXIST::FUNCTION: -TS_CONF_load_key 2999 1_1_0d EXIST::FUNCTION:TS -d2i_SM9Ciphertext_fp 3000 1_1_0d EXIST::FUNCTION:SM9,STDIO -X509_STORE_CTX_set_verify_cb 3001 1_1_0d EXIST::FUNCTION: -PKCS7_it 3002 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_it 3002 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_rc5_32_12_16_ecb 3003 1_1_0d EXIST::FUNCTION:RC5 -ASN1_PCTX_set_str_flags 3004 1_1_0d EXIST::FUNCTION: -BUF_MEM_free 3005 1_1_0d EXIST::FUNCTION: -EVP_rc4_40 3006 1_1_0d EXIST::FUNCTION:RC4 -ASN1_BIT_STRING_check 3007 1_1_0d EXIST::FUNCTION: -EVP_rc5_32_12_16_cbc 3008 1_1_0d EXIST::FUNCTION:RC5 -X509_TRUST_get_trust 3009 1_1_0d EXIST::FUNCTION: -ERR_func_error_string 3010 1_1_0d EXIST::FUNCTION: -PEM_write_SM9PrivateKey 3011 1_1_0d EXIST::FUNCTION:SM9,STDIO -X509_PURPOSE_get_count 3012 1_1_0d EXIST::FUNCTION: -DH_meth_get_generate_key 3013 1_1_0d EXIST::FUNCTION:DH -CRYPTO_ocb128_copy_ctx 3014 1_1_0d EXIST::FUNCTION:OCB -ASN1_tag2bit 3015 1_1_0d EXIST::FUNCTION: -SCT_get0_extensions 3016 1_1_0d EXIST::FUNCTION:CT -BN_from_montgomery 3017 1_1_0d EXIST::FUNCTION: -UI_create_method 3018 1_1_0d EXIST::FUNCTION:UI -ASN1_item_d2i_fp 3019 1_1_0d EXIST::FUNCTION:STDIO -PKCS12_SAFEBAG_get0_type 3020 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_decrypt_ctr32 3021 1_1_0d EXIST::FUNCTION: -OCSP_RESPDATA_new 3022 1_1_0d EXIST::FUNCTION:OCSP -EVP_PKEY_asn1_set_private 3023 1_1_0d EXIST::FUNCTION: -i2d_ECIESParameters 3024 1_1_0d EXIST::FUNCTION:ECIES -EVP_MD_CTX_pkey_ctx 3025 1_1_0d EXIST::FUNCTION: -EVP_aes_192_cfb1 3026 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_get_ext_by_OBJ 3027 1_1_0d EXIST::FUNCTION:OCSP -X509_print_ex_fp 3028 1_1_0d EXIST::FUNCTION:STDIO -X509_SIG_get0 3029 1_1_0d EXIST::FUNCTION: -SDF_Encrypt 3030 1_1_0d EXIST::FUNCTION: -EC_POINTs_make_affine 3031 1_1_0d EXIST::FUNCTION:EC -CRL_DIST_POINTS_free 3032 1_1_0d EXIST::FUNCTION: -speck_set_decrypt_key32 3033 1_1_0d EXIST::FUNCTION:SPECK -X509V3_EXT_d2i 3034 1_1_0d EXIST::FUNCTION: -CMS_ReceiptRequest_free 3035 1_1_0d EXIST::FUNCTION:CMS -SAF_RemoveCaCertificate 3036 1_1_0d EXIST::FUNCTION: -BB1PrivateKeyBlock_new 3037 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_PKEY_get1_EC_KEY 3038 1_1_0d EXIST::FUNCTION:EC -X509_STORE_CTX_new 3039 1_1_0d EXIST::FUNCTION: -ENGINE_get_first 3040 1_1_0d EXIST::FUNCTION:ENGINE -BIO_get_port 3041 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -TS_CONF_get_tsa_section 3042 1_1_0d EXIST::FUNCTION:TS -DSA_meth_set_verify 3043 1_1_0d EXIST::FUNCTION:DSA -SHA256_Update 3044 1_1_0d EXIST::FUNCTION: -X509_STORE_set_cleanup 3045 1_1_0d EXIST::FUNCTION: -OBJ_nid2obj 3046 1_1_0d EXIST::FUNCTION: -SXNET_add_id_INTEGER 3047 1_1_0d EXIST::FUNCTION: -SAF_AddTrustedRootCaCertificate 3048 1_1_0d EXIST::FUNCTION: -ENGINE_set_table_flags 3049 1_1_0d EXIST::FUNCTION:ENGINE -PEM_read_DSA_PUBKEY 3050 1_1_0d EXIST::FUNCTION:DSA,STDIO -ASN1_INTEGER_it 3051 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_INTEGER_it 3051 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BIO_f_buffer 3052 1_1_0d EXIST::FUNCTION: -BIO_ADDRINFO_free 3053 1_1_0d EXIST::FUNCTION:SOCK -EVP_camellia_256_ecb 3054 1_1_0d EXIST::FUNCTION:CAMELLIA -PKCS8_pkey_get0_attrs 3055 1_1_0d EXIST::FUNCTION: -SKF_DeleteApplication 3056 1_1_0d EXIST::FUNCTION:SKF -d2i_PaillierPrivateKey 3057 1_1_0d EXIST::FUNCTION:PAILLIER -SKF_OpenContainer 3058 1_1_0d EXIST::FUNCTION:SKF -RSA_get0_factors 3059 1_1_0d EXIST::FUNCTION:RSA -UI_add_verify_string 3060 1_1_0d EXIST::FUNCTION:UI -EVP_PKEY_type 3061 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_get_nm_flags 3062 1_1_0d EXIST::FUNCTION: -CONF_load 3063 1_1_0d EXIST::FUNCTION: -X509_CRL_set1_lastUpdate 3064 1_1_0d EXIST::FUNCTION: -CRYPTO_128_wrap 3065 1_1_0d EXIST::FUNCTION: -PEM_read_PaillierPrivateKey 3066 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO -X509_REQ_set_pubkey 3067 1_1_0d EXIST::FUNCTION: -X509_REVOKED_get_ext_by_critical 3068 1_1_0d EXIST::FUNCTION: -EC_GROUP_new 3069 1_1_0d EXIST::FUNCTION:EC -OCSP_CERTID_new 3070 1_1_0d EXIST::FUNCTION:OCSP -d2i_X509_NAME 3071 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_derive 3072 1_1_0d EXIST::FUNCTION: -d2i_EC_PUBKEY_fp 3073 1_1_0d EXIST::FUNCTION:EC,STDIO -EVP_CipherInit 3074 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_check_crl 3075 1_1_0d EXIST::FUNCTION: -EVP_desx_cbc 3076 1_1_0d EXIST::FUNCTION:DES -ZUC_128eea3_set_key 3077 1_1_0d EXIST::FUNCTION:ZUC -RSA_padding_add_PKCS1_PSS_mgf1 3078 1_1_0d EXIST::FUNCTION:RSA -SAF_RsaSignFile 3079 1_1_0d EXIST::FUNCTION: -SAF_SM2_DecodeSignedAndEnvelopedData 3080 1_1_0d EXIST::FUNCTION: -EVP_cast5_cbc 3081 1_1_0d EXIST::FUNCTION:CAST -CRYPTO_ccm128_encrypt_ccm64 3082 1_1_0d EXIST::FUNCTION: -i2d_DSA_PUBKEY_fp 3083 1_1_0d EXIST::FUNCTION:DSA,STDIO -BN_gcd 3084 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_decrypt_ccm64 3085 1_1_0d EXIST::FUNCTION: -SCT_set1_extensions 3086 1_1_0d EXIST::FUNCTION:CT -CONF_module_set_usr_data 3087 1_1_0d EXIST::FUNCTION: -SXNET_it 3088 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -SXNET_it 3088 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASN1_UTCTIME_free 3089 1_1_0d EXIST::FUNCTION: -PKCS7_SIGNER_INFO_new 3090 1_1_0d EXIST::FUNCTION: -RSA_meth_set_priv_enc 3091 1_1_0d EXIST::FUNCTION:RSA -BF_decrypt 3092 1_1_0d EXIST::FUNCTION:BF -BFPrivateKeyBlock_new 3093 1_1_0d EXIST::FUNCTION:BFIBE -UI_set_result 3094 1_1_0d EXIST::FUNCTION:UI -PKCS12_new 3095 1_1_0d EXIST::FUNCTION: -CTLOG_STORE_load_file 3096 1_1_0d EXIST::FUNCTION:CT -BN_GFP2_sub_bn 3097 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_get_cert_flags 3098 1_1_0d EXIST::FUNCTION: -RSA_get_RSArefPublicKey 3099 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -TS_CONF_set_signer_cert 3100 1_1_0d EXIST::FUNCTION:TS -CRYPTO_atomic_add 3101 1_1_0d EXIST::FUNCTION: -X509_add1_ext_i2d 3102 1_1_0d EXIST::FUNCTION: -SOF_SignFile 3103 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_encrypt 3104 1_1_0d EXIST::FUNCTION:OCB -DH_set0_pqg 3105 1_1_0d EXIST::FUNCTION:DH -PKCS7_encrypt 3106 1_1_0d EXIST::FUNCTION: -EVP_des_cfb64 3107 1_1_0d EXIST::FUNCTION:DES -FFX_compute_luhn 3108 1_1_0d EXIST::FUNCTION: -X509_NAME_digest 3109 1_1_0d EXIST::FUNCTION: -SAF_GetVersion 3110 1_1_0d EXIST::FUNCTION: -PKCS12_create 3111 1_1_0d EXIST::FUNCTION: -RSA_X931_derive_ex 3112 1_1_0d EXIST::FUNCTION:RSA -EC_GROUP_copy 3113 1_1_0d EXIST::FUNCTION:EC -OBJ_cmp 3114 1_1_0d EXIST::FUNCTION: -PEM_read_X509 3115 1_1_0d EXIST::FUNCTION:STDIO -X509_STORE_CTX_set0_trusted_stack 3116 1_1_0d EXIST::FUNCTION: -SDF_GenerateKeyPair_ECC 3117 1_1_0d EXIST::FUNCTION: -SM2_sign_ex 3118 1_1_0d EXIST::FUNCTION:SM2 -EVP_PKEY_set_type 3119 1_1_0d EXIST::FUNCTION: -EVP_aes_256_cbc_hmac_sha256 3120 1_1_0d EXIST::FUNCTION: -X509_cmp_time 3121 1_1_0d EXIST::FUNCTION: -X509_load_cert_file 3122 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_curve_GFp 3123 1_1_0d EXIST::FUNCTION:EC -X509_TRUST_get_by_id 3124 1_1_0d EXIST::FUNCTION: -CAST_ecb_encrypt 3125 1_1_0d EXIST::FUNCTION:CAST -X509_NAME_ENTRY_get_object 3126 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_get_asn1_params 3127 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_get_int64 3128 1_1_0d EXIST::FUNCTION: -EC_POINT_method_of 3129 1_1_0d EXIST::FUNCTION:EC -d2i_X509_CRL_fp 3130 1_1_0d EXIST::FUNCTION:STDIO -X509v3_addr_subset 3131 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_read_X509_CRL 3132 1_1_0d EXIST::FUNCTION:STDIO -EVP_MD_meth_dup 3133 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set_hostflags 3134 1_1_0d EXIST::FUNCTION: -TS_CONF_set_tsa_name 3135 1_1_0d EXIST::FUNCTION:TS -EVP_PKEY_meth_get_verify_recover 3136 1_1_0d EXIST::FUNCTION: -EC_GROUP_get0_generator 3137 1_1_0d EXIST::FUNCTION:EC -BIO_get_ex_data 3138 1_1_0d EXIST::FUNCTION: -OBJ_nid2sn 3139 1_1_0d EXIST::FUNCTION: -X509_INFO_free 3140 1_1_0d EXIST::FUNCTION: -ASN1_BIT_STRING_free 3141 1_1_0d EXIST::FUNCTION: -CRYPTO_128_unwrap_pad 3142 1_1_0d EXIST::FUNCTION: -BN_bn2gfp2 3143 1_1_0d EXIST::FUNCTION: -OCSP_sendreq_new 3144 1_1_0d EXIST::FUNCTION:OCSP -SRP_Calc_server_key 3145 1_1_0d EXIST::FUNCTION:SRP -ASN1_STRING_length_set 3146 1_1_0d EXIST::FUNCTION: -CTLOG_free 3147 1_1_0d EXIST::FUNCTION:CT -ASN1_UTF8STRING_free 3148 1_1_0d EXIST::FUNCTION: -ENGINE_set_ciphers 3149 1_1_0d EXIST::FUNCTION:ENGINE -DSA_meth_get_paramgen 3150 1_1_0d EXIST::FUNCTION:DSA -ENGINE_set_cmd_defns 3151 1_1_0d EXIST::FUNCTION:ENGINE -EVP_sms4_cbc 3152 1_1_0d EXIST::FUNCTION:SMS4 -SAF_GetRsaPublicKey 3153 1_1_0d EXIST::FUNCTION: -OBJ_create_objects 3154 1_1_0d EXIST::FUNCTION: -X509_verify_cert_error_string 3155 1_1_0d EXIST::FUNCTION: -i2d_OCSP_ONEREQ 3156 1_1_0d EXIST::FUNCTION:OCSP -SM9_encrypt 3157 1_1_0d EXIST::FUNCTION:SM9 -X509v3_asid_validate_resource_set 3158 1_1_0d EXIST::FUNCTION:RFC3779 -X509_get_ext_by_OBJ 3159 1_1_0d EXIST::FUNCTION: -ASYNC_WAIT_CTX_get_fd 3160 1_1_0d EXIST::FUNCTION: -EVP_cast5_ofb 3161 1_1_0d EXIST::FUNCTION:CAST -EVP_CIPHER_CTX_get_app_data 3162 1_1_0d EXIST::FUNCTION: -i2d_PUBKEY_fp 3163 1_1_0d EXIST::FUNCTION:STDIO -HMAC_CTX_copy 3164 1_1_0d EXIST::FUNCTION: -BIO_get_host_ip 3165 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -SAF_Pkcs7_EncodeDigestedData 3166 1_1_0d EXIST::FUNCTION: -CMS_signed_add1_attr_by_txt 3167 1_1_0d EXIST::FUNCTION:CMS -SKF_EnumApplication 3168 1_1_0d EXIST::FUNCTION:SKF -X509_LOOKUP_by_alias 3169 1_1_0d EXIST::FUNCTION: -DES_ecb_encrypt 3170 1_1_0d EXIST::FUNCTION:DES -EVP_chacha20_poly1305 3171 1_1_0d EXIST::FUNCTION:CHACHA,POLY1305 -BN_sub 3172 1_1_0d EXIST::FUNCTION: -BIO_get_data 3173 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_new 3174 1_1_0d EXIST::FUNCTION: -DES_ecb3_encrypt 3175 1_1_0d EXIST::FUNCTION:DES -TS_TST_INFO_set_ordering 3176 1_1_0d EXIST::FUNCTION:TS -BIO_ADDR_path_string 3177 1_1_0d EXIST::FUNCTION:SOCK -CRYPTO_get_ex_new_index 3178 1_1_0d EXIST::FUNCTION: -ASN1_PRINTABLESTRING_new 3179 1_1_0d EXIST::FUNCTION: -PEM_read_SM9_PUBKEY 3180 1_1_0d EXIST::FUNCTION:SM9,STDIO -ENGINE_get_id 3181 1_1_0d EXIST::FUNCTION:ENGINE -X509_CRL_METHOD_new 3182 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_push 3183 1_1_0d EXIST::FUNCTION: -X509_REVOKED_set_revocationDate 3184 1_1_0d EXIST::FUNCTION: -SAF_Base64_EncodeUpdate 3185 1_1_0d EXIST::FUNCTION: -BN_GF2m_mod_arr 3186 1_1_0d EXIST::FUNCTION:EC2M -EC_GROUP_dup 3187 1_1_0d EXIST::FUNCTION:EC -OCSP_url_svcloc_new 3188 1_1_0d EXIST::FUNCTION:OCSP -ASN1_const_check_infinite_end 3189 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_set_flags 3190 1_1_0d EXIST::FUNCTION: -OCSP_CRLID_new 3191 1_1_0d EXIST::FUNCTION:OCSP -CMS_decrypt_set1_pkey 3192 1_1_0d EXIST::FUNCTION:CMS -SM2_verify 3193 1_1_0d EXIST::FUNCTION:SM2 -HMAC_CTX_new 3194 1_1_0d EXIST::FUNCTION: -X509_STORE_up_ref 3195 1_1_0d EXIST::FUNCTION: -SKF_DigestUpdate 3196 1_1_0d EXIST::FUNCTION:SKF -SCT_get0_log_id 3197 1_1_0d EXIST::FUNCTION:CT -ENGINE_free 3198 1_1_0d EXIST::FUNCTION:ENGINE -BIO_meth_set_write 3199 1_1_0d EXIST::FUNCTION: -RSA_meth_get_mod_exp 3200 1_1_0d EXIST::FUNCTION:RSA -EC_POINT_clear_free 3201 1_1_0d EXIST::FUNCTION:EC -BIO_parse_hostserv 3202 1_1_0d EXIST::FUNCTION:SOCK -PEM_write_bio_PKCS7 3203 1_1_0d EXIST::FUNCTION: -SKF_ECCSignData 3204 1_1_0d EXIST::FUNCTION:SKF -EVP_aes_192_cfb128 3205 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_update 3206 1_1_0d EXIST::FUNCTION: -CONF_set_default_method 3207 1_1_0d EXIST::FUNCTION: -CONF_modules_load 3208 1_1_0d EXIST::FUNCTION: -ZUC_128eea3 3209 1_1_0d EXIST::FUNCTION:ZUC -OCSP_BASICRESP_get_ext 3210 1_1_0d EXIST::FUNCTION:OCSP -EVP_camellia_128_ctr 3211 1_1_0d EXIST::FUNCTION:CAMELLIA -X509V3_get_d2i 3212 1_1_0d EXIST::FUNCTION: -X509_cmp 3213 1_1_0d EXIST::FUNCTION: -SOF_GetCertTrustListAltNames 3214 1_1_0d EXIST::FUNCTION: -X509_INFO_new 3215 1_1_0d EXIST::FUNCTION: -i2d_OCSP_REVOKEDINFO 3216 1_1_0d EXIST::FUNCTION:OCSP -BN_GENCB_call 3217 1_1_0d EXIST::FUNCTION: -BN_GFP2_mul 3218 1_1_0d EXIST::FUNCTION: -BN_GFP2_new 3219 1_1_0d EXIST::FUNCTION: -d2i_PrivateKey 3220 1_1_0d EXIST::FUNCTION: -ASN1_ENUMERATED_to_BN 3221 1_1_0d EXIST::FUNCTION: -BN_lshift 3222 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_get0_cert 3223 1_1_0d EXIST::FUNCTION:CT -TS_REQ_set_policy_id 3224 1_1_0d EXIST::FUNCTION:TS -i2d_TS_RESP_bio 3225 1_1_0d EXIST::FUNCTION:TS -ASN1_STRING_set_by_NID 3226 1_1_0d EXIST::FUNCTION: -d2i_SM9PrivateKey_bio 3227 1_1_0d EXIST::FUNCTION:SM9 -DSA_set_method 3228 1_1_0d EXIST::FUNCTION:DSA -ENGINE_load_private_key 3229 1_1_0d EXIST::FUNCTION:ENGINE -ENGINE_set_pkey_asn1_meths 3230 1_1_0d EXIST::FUNCTION:ENGINE -sms4_encrypt_init 3231 1_1_0d EXIST::FUNCTION:SMS4 -CT_POLICY_EVAL_CTX_get_time 3232 1_1_0d EXIST::FUNCTION:CT -EVP_Cipher 3233 1_1_0d EXIST::FUNCTION: -SKF_CreateFile 3234 1_1_0d EXIST::FUNCTION:SKF -X509_VERIFY_PARAM_set1_ip_asc 3235 1_1_0d EXIST::FUNCTION: -d2i_NETSCAPE_SPKI 3236 1_1_0d EXIST::FUNCTION: -BN_swap 3237 1_1_0d EXIST::FUNCTION: -OBJ_NAME_remove 3238 1_1_0d EXIST::FUNCTION: -ASYNC_cleanup_thread 3239 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_cmp_time_t 3240 1_1_0d EXIST::FUNCTION: -SCT_validation_status_string 3241 1_1_0d EXIST::FUNCTION:CT -d2i_CRL_DIST_POINTS 3242 1_1_0d EXIST::FUNCTION: -OPENSSL_DIR_end 3243 1_1_0d EXIST::FUNCTION: -sms4_wrap_key 3244 1_1_0d EXIST::FUNCTION:SMS4 -X509_add1_reject_object 3245 1_1_0d EXIST::FUNCTION: -X509_STORE_set_verify_cb 3246 1_1_0d EXIST::FUNCTION: -EC_POINT_dup 3247 1_1_0d EXIST::FUNCTION:EC -i2d_ASN1_OBJECT 3248 1_1_0d EXIST::FUNCTION: -BN_get_rfc2409_prime_768 3249 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_free 3250 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get_by_id 3251 1_1_0d EXIST::FUNCTION: -d2i_BASIC_CONSTRAINTS 3252 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_asn1_meth_engine 3253 1_1_0d EXIST::FUNCTION:ENGINE -d2i_TS_REQ_fp 3254 1_1_0d EXIST::FUNCTION:STDIO,TS -EXTENDED_KEY_USAGE_it 3255 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -EXTENDED_KEY_USAGE_it 3255 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -UI_add_info_string 3256 1_1_0d EXIST::FUNCTION:UI -SMIME_write_PKCS7 3257 1_1_0d EXIST::FUNCTION: -SKF_ClearSecureState 3258 1_1_0d EXIST::FUNCTION:SKF -d2i_CPK_MASTER_SECRET 3259 1_1_0d EXIST::FUNCTION:CPK -d2i_AutoPrivateKey 3260 1_1_0d EXIST::FUNCTION: -SCT_get_source 3261 1_1_0d EXIST::FUNCTION:CT -NETSCAPE_SPKI_new 3262 1_1_0d EXIST::FUNCTION: -EVP_PKEY_verify_recover 3263 1_1_0d EXIST::FUNCTION: -SOF_SignDataXML 3264 1_1_0d EXIST::FUNCTION: -ERR_error_string 3265 1_1_0d EXIST::FUNCTION: -DES_quad_cksum 3266 1_1_0d EXIST::FUNCTION:DES -ASN1_BIT_STRING_it 3267 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_BIT_STRING_it 3267 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PKCS8_pkey_get0 3268 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_get 3269 1_1_0d EXIST::FUNCTION: -PEM_write_PUBKEY 3270 1_1_0d EXIST::FUNCTION:STDIO -RSA_meth_get_sign 3271 1_1_0d EXIST::FUNCTION:RSA -ENGINE_set_default_digests 3272 1_1_0d EXIST::FUNCTION:ENGINE -CRL_DIST_POINTS_new 3273 1_1_0d EXIST::FUNCTION: -EVP_aes_256_ccm 3274 1_1_0d EXIST::FUNCTION: -EVP_PKEY_sign 3275 1_1_0d EXIST::FUNCTION: -CMS_verify_receipt 3276 1_1_0d EXIST::FUNCTION:CMS -PEM_read_bio_X509_AUX 3277 1_1_0d EXIST::FUNCTION: -EVP_add_alg_module 3278 1_1_0d EXIST::FUNCTION: -OPENSSL_uni2asc 3279 1_1_0d EXIST::FUNCTION: -BIO_s_socket 3280 1_1_0d EXIST::FUNCTION:SOCK -CAST_cbc_encrypt 3281 1_1_0d EXIST::FUNCTION:CAST -PEM_read_bio_SM9MasterSecret 3282 1_1_0d EXIST::FUNCTION:SM9 -UI_new 3283 1_1_0d EXIST::FUNCTION:UI -X509_PUBKEY_set0_param 3284 1_1_0d EXIST::FUNCTION: -PEM_read_PrivateKey 3285 1_1_0d EXIST::FUNCTION:STDIO -DES_key_sched 3286 1_1_0d EXIST::FUNCTION:DES -SM2CiphertextValue_free 3287 1_1_0d EXIST::FUNCTION:SM2 -d2i_BB1MasterSecret 3288 1_1_0d EXIST::FUNCTION:BB1IBE -ASN1_UNIVERSALSTRING_free 3289 1_1_0d EXIST::FUNCTION: -X509_ALGOR_dup 3290 1_1_0d EXIST::FUNCTION: -CTLOG_STORE_new 3291 1_1_0d EXIST::FUNCTION:CT -ENGINE_get_default_RAND 3292 1_1_0d EXIST::FUNCTION:ENGINE -CRYPTO_mem_ctrl 3293 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_free 3294 1_1_0d EXIST::FUNCTION: -BIO_write 3295 1_1_0d EXIST::FUNCTION: -TS_REQ_set_cert_req 3296 1_1_0d EXIST::FUNCTION:TS -AUTHORITY_KEYID_free 3297 1_1_0d EXIST::FUNCTION: -DES_cbc_cksum 3298 1_1_0d EXIST::FUNCTION:DES -OCSP_REQINFO_it 3299 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_REQINFO_it 3299 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -DES_ede3_ofb64_encrypt 3300 1_1_0d EXIST::FUNCTION:DES -ECDH_KDF_X9_62 3301 1_1_0d EXIST::FUNCTION:EC -DSA_do_verify 3302 1_1_0d EXIST::FUNCTION:DSA -BIGNUM_it 3303 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -BIGNUM_it 3303 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PKCS7_decrypt 3304 1_1_0d EXIST::FUNCTION: -d2i_SM9PrivateKey_fp 3305 1_1_0d EXIST::FUNCTION:SM9,STDIO -X509_CRL_new 3306 1_1_0d EXIST::FUNCTION: -X509_STORE_free 3307 1_1_0d EXIST::FUNCTION: -SCT_set_version 3308 1_1_0d EXIST::FUNCTION:CT -BN_set_params 3309 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -EC_KEY_METHOD_get_keygen 3310 1_1_0d EXIST::FUNCTION:EC -OCSP_sendreq_nbio 3311 1_1_0d EXIST::FUNCTION:OCSP -MDC2_Final 3312 1_1_0d EXIST::FUNCTION:MDC2 -ASN1_OCTET_STRING_NDEF_it 3313 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_OCTET_STRING_NDEF_it 3313 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DES_ede3_cbc_encrypt 3314 1_1_0d EXIST::FUNCTION:DES -X509_NAME_set 3315 1_1_0d EXIST::FUNCTION: -CMS_add0_crl 3316 1_1_0d EXIST::FUNCTION:CMS -PAILLIER_new 3317 1_1_0d EXIST::FUNCTION:PAILLIER -FpPoint_it 3318 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -FpPoint_it 3318 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -d2i_X509_ALGOR 3319 1_1_0d EXIST::FUNCTION: -PKCS7_add_signer 3320 1_1_0d EXIST::FUNCTION: -b2i_PVK_bio 3321 1_1_0d EXIST::FUNCTION:DSA,RC4 -SAF_Hash 3322 1_1_0d EXIST::FUNCTION: -BN_GFP2_set_bn 3323 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_init 3324 1_1_0d EXIST::FUNCTION: -ASN1_OBJECT_new 3325 1_1_0d EXIST::FUNCTION: -RSA_set_method 3326 1_1_0d EXIST::FUNCTION:RSA -PAILLIER_ciphertext_add 3327 1_1_0d EXIST::FUNCTION:PAILLIER -ASN1_PCTX_get_oid_flags 3328 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_file 3329 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_free 3330 1_1_0d EXIST::FUNCTION: -X509_chain_check_suiteb 3331 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_node_usage_stats 3332 1_1_0d EXIST::FUNCTION:STDIO -PKCS12_set_mac 3333 1_1_0d EXIST::FUNCTION: -sms4_unwrap_key 3334 1_1_0d EXIST::FUNCTION:SMS4 -UI_method_get_flusher 3335 1_1_0d EXIST::FUNCTION:UI -SAF_Initialize 3336 1_1_0d EXIST::FUNCTION: -PEM_read_PaillierPublicKey 3337 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO -SEED_ecb_encrypt 3338 1_1_0d EXIST::FUNCTION:SEED -ASN1_buf_print 3339 1_1_0d EXIST::FUNCTION: -SDF_ImportKeyWithISK_ECC 3340 1_1_0d EXIST::FUNCTION: -PEM_read_bio_PaillierPublicKey 3341 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_ENCODE_CTX_copy 3342 1_1_0d EXIST::FUNCTION: -TS_CONF_set_def_policy 3343 1_1_0d EXIST::FUNCTION:TS -RAND_set_rand_method 3344 1_1_0d EXIST::FUNCTION: -EVP_MD_CTX_copy 3345 1_1_0d EXIST::FUNCTION: -i2d_X509_REQ 3346 1_1_0d EXIST::FUNCTION: -SOF_SetCertTrustList 3347 1_1_0d EXIST::FUNCTION: -i2d_PKCS8PrivateKey_bio 3348 1_1_0d EXIST::FUNCTION: -i2d_X509_CRL 3349 1_1_0d EXIST::FUNCTION: -SAF_SM2_EncodeEnvelopedData 3350 1_1_0d EXIST::FUNCTION: -POLICY_CONSTRAINTS_new 3351 1_1_0d EXIST::FUNCTION: -ECIES_CIPHERTEXT_VALUE_get_ECCCIPHERBLOB 3352 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF -UI_new_method 3353 1_1_0d EXIST::FUNCTION:UI -EVP_PKEY_CTX_get_data 3354 1_1_0d EXIST::FUNCTION: -X509_REQ_digest 3355 1_1_0d EXIST::FUNCTION: -BIO_meth_set_callback_ctrl 3356 1_1_0d EXIST::FUNCTION: -i2d_DHxparams 3357 1_1_0d EXIST::FUNCTION:DH -OPENSSL_gmtime_diff 3358 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_new 3359 1_1_0d EXIST::FUNCTION:CT -RSA_new_from_RSArefPublicKey 3360 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -d2i_ASIdentifiers 3361 1_1_0d EXIST::FUNCTION:RFC3779 -OPENSSL_LH_get_down_load 3362 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_DH 3363 1_1_0d EXIST::FUNCTION:DH -NETSCAPE_CERT_SEQUENCE_free 3364 1_1_0d EXIST::FUNCTION: -b2i_PrivateKey_bio 3365 1_1_0d EXIST::FUNCTION:DSA -d2i_PKCS12_bio 3366 1_1_0d EXIST::FUNCTION: -i2d_CPK_PUBLIC_PARAMS_bio 3367 1_1_0d EXIST::FUNCTION:CPK -AUTHORITY_INFO_ACCESS_new 3368 1_1_0d EXIST::FUNCTION: -PKCS12_newpass 3369 1_1_0d EXIST::FUNCTION: -EC_KEY_get0_public_key 3370 1_1_0d EXIST::FUNCTION:EC -TS_TST_INFO_get_version 3371 1_1_0d EXIST::FUNCTION:TS -EC_KEY_get_method 3372 1_1_0d EXIST::FUNCTION:EC -SHA512_Update 3373 1_1_0d EXIST:!VMSVAX:FUNCTION: -EVP_PKEY_new_mac_key 3374 1_1_0d EXIST::FUNCTION: -OPENSSL_gmtime 3375 1_1_0d EXIST::FUNCTION: -d2i_OCSP_RESPDATA 3376 1_1_0d EXIST::FUNCTION:OCSP -OCSP_ONEREQ_get_ext 3377 1_1_0d EXIST::FUNCTION:OCSP -BIO_dump_fp 3378 1_1_0d EXIST::FUNCTION:STDIO -RSA_padding_check_PKCS1_OAEP 3379 1_1_0d EXIST::FUNCTION:RSA -ASN1_TYPE_pack_sequence 3380 1_1_0d EXIST::FUNCTION: -d2i_X509_fp 3381 1_1_0d EXIST::FUNCTION:STDIO -SOF_GetEncryptMethod 3382 1_1_0d EXIST::FUNCTION: -i2d_SXNET 3383 1_1_0d EXIST::FUNCTION: -PEM_write_bio_ASN1_stream 3384 1_1_0d EXIST::FUNCTION: -RSA_set0_factors 3385 1_1_0d EXIST::FUNCTION:RSA -SHA1 3386 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_init 3387 1_1_0d EXIST::FUNCTION: -EVP_rc2_ofb 3388 1_1_0d EXIST::FUNCTION:RC2 -X509_STORE_CTX_get_explicit_policy 3389 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_set_asn1_params 3390 1_1_0d EXIST::FUNCTION: -ERR_load_ASN1_strings 3391 1_1_0d EXIST::FUNCTION: -PEM_SignFinal 3392 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_check_revocation 3393 1_1_0d EXIST::FUNCTION: -SM2_KAP_compute_key 3394 1_1_0d EXIST::FUNCTION:SM2 -CPK_PUBLIC_PARAMS_extract_public_key 3395 1_1_0d EXIST::FUNCTION:CPK -i2d_CERTIFICATEPOLICIES 3396 1_1_0d EXIST::FUNCTION: -RSA_private_decrypt 3397 1_1_0d EXIST::FUNCTION:RSA -d2i_RSAPublicKey_bio 3398 1_1_0d EXIST::FUNCTION:RSA -RSA_setup_blinding 3399 1_1_0d EXIST::FUNCTION:RSA -EVP_camellia_192_cbc 3400 1_1_0d EXIST::FUNCTION:CAMELLIA -ASN1_item_sign 3401 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_set 3402 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_depth 3403 1_1_0d EXIST::FUNCTION: -COMP_CTX_new 3404 1_1_0d EXIST::FUNCTION:COMP -PKCS7_free 3405 1_1_0d EXIST::FUNCTION: -IDEA_options 3406 1_1_0d EXIST::FUNCTION:IDEA -DSA_meth_set_paramgen 3407 1_1_0d EXIST::FUNCTION:DSA -SAF_Base64_DecodeUpdate 3408 1_1_0d EXIST::FUNCTION: -EVP_PKEY_base_id 3409 1_1_0d EXIST::FUNCTION: -BIO_accept_ex 3410 1_1_0d EXIST::FUNCTION:SOCK -CMS_ContentInfo_free 3411 1_1_0d EXIST::FUNCTION:CMS -d2i_AUTHORITY_KEYID 3412 1_1_0d EXIST::FUNCTION: -SOF_VerifyTimeStamp 3413 1_1_0d EXIST::FUNCTION: -GENERAL_SUBTREE_free 3414 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_add_ext 3415 1_1_0d EXIST::FUNCTION:TS -X509_VERIFY_PARAM_add0_policy 3416 1_1_0d EXIST::FUNCTION: -ASN1_STRING_set0 3417 1_1_0d EXIST::FUNCTION: -X509_CRL_get0_by_cert 3418 1_1_0d EXIST::FUNCTION: -X509_trust_clear 3419 1_1_0d EXIST::FUNCTION: -SKF_ExtECCDecrypt 3420 1_1_0d EXIST::FUNCTION:SKF -PEM_read_bio_ECPKParameters 3421 1_1_0d EXIST::FUNCTION:EC -X509V3_get_value_int 3422 1_1_0d EXIST::FUNCTION: -PEM_write_bio_X509_CRL 3423 1_1_0d EXIST::FUNCTION: -OBJ_NAME_get 3424 1_1_0d EXIST::FUNCTION: -PKCS7_set_signed_attributes 3425 1_1_0d EXIST::FUNCTION: -TS_ACCURACY_set_millis 3426 1_1_0d EXIST::FUNCTION:TS -X509_STORE_set_default_paths 3427 1_1_0d EXIST::FUNCTION: -ERR_load_UI_strings 3428 1_1_0d EXIST::FUNCTION:UI -X509_VAL_new 3429 1_1_0d EXIST::FUNCTION: -CAST_decrypt 3430 1_1_0d EXIST::FUNCTION:CAST -BN_GF2m_poly2arr 3431 1_1_0d EXIST::FUNCTION:EC2M -USERNOTICE_free 3432 1_1_0d EXIST::FUNCTION: -SRP_create_verifier 3433 1_1_0d EXIST::FUNCTION:SRP -o2i_ECPublicKey 3434 1_1_0d EXIST::FUNCTION:EC -TS_TST_INFO_print_bio 3435 1_1_0d EXIST::FUNCTION:TS -EVP_aes_256_ecb 3436 1_1_0d EXIST::FUNCTION: -DH_generate_parameters_ex 3437 1_1_0d EXIST::FUNCTION:DH -BIO_dgram_sctp_wait_for_dry 3438 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -d2i_X509_ALGORS 3439 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_PAILLIER 3440 1_1_0d EXIST::FUNCTION:PAILLIER -i2d_RSAPublicKey_bio 3441 1_1_0d EXIST::FUNCTION:RSA -X509_CRL_verify 3442 1_1_0d EXIST::FUNCTION: -ASN1_i2d_bio 3443 1_1_0d EXIST::FUNCTION: -EVP_PKEY_decrypt_init 3444 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get_encrypt 3445 1_1_0d EXIST::FUNCTION: -EVP_EncryptFinal 3446 1_1_0d EXIST::FUNCTION: -X509v3_asid_add_id_or_range 3447 1_1_0d EXIST::FUNCTION:RFC3779 -BF_cbc_encrypt 3448 1_1_0d EXIST::FUNCTION:BF -d2i_OCSP_RESPID 3449 1_1_0d EXIST::FUNCTION:OCSP -TS_RESP_create_response 3450 1_1_0d EXIST::FUNCTION:TS -ECIES_PARAMS_get_enc 3451 1_1_0d EXIST::FUNCTION:ECIES -X509_OBJECT_new 3452 1_1_0d EXIST::FUNCTION: -RAND_egd_bytes 3453 1_1_0d EXIST::FUNCTION:EGD -UI_method_get_reader 3454 1_1_0d EXIST::FUNCTION:UI -BN_GF2m_mod_inv 3455 1_1_0d EXIST::FUNCTION:EC2M -CMAC_CTX_copy 3456 1_1_0d EXIST::FUNCTION:CMAC -X509V3_EXT_nconf 3457 1_1_0d EXIST::FUNCTION: -BN_mod_sqrt 3458 1_1_0d EXIST::FUNCTION: -EC_KEY_set_ECCPUBLICKEYBLOB 3459 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -ASN1_ENUMERATED_get 3460 1_1_0d EXIST::FUNCTION: -d2i_PKCS12_BAGS 3461 1_1_0d EXIST::FUNCTION: -OCSP_RESPID_match 3462 1_1_0d EXIST::FUNCTION:OCSP -X509v3_asid_inherits 3463 1_1_0d EXIST::FUNCTION:RFC3779 -X509_check_purpose 3464 1_1_0d EXIST::FUNCTION: -EVP_CipherFinal 3465 1_1_0d EXIST::FUNCTION: -DSO_bind_func 3466 1_1_0d EXIST::FUNCTION: -PEM_write_SM9_MASTER_PUBKEY 3467 1_1_0d EXIST::FUNCTION:SM9,STDIO -RSA_print_fp 3468 1_1_0d EXIST::FUNCTION:RSA,STDIO -d2i_ASN1_IA5STRING 3469 1_1_0d EXIST::FUNCTION: -X509v3_get_ext_by_critical 3470 1_1_0d EXIST::FUNCTION: -BN_lshift1 3471 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_rand_key 3472 1_1_0d EXIST::FUNCTION: -CT_POLICY_EVAL_CTX_set1_cert 3473 1_1_0d EXIST::FUNCTION:CT -CONF_imodule_get_flags 3474 1_1_0d EXIST::FUNCTION: -i2d_SM9Ciphertext_fp 3475 1_1_0d EXIST::FUNCTION:SM9,STDIO -EVP_PKEY_verify 3476 1_1_0d EXIST::FUNCTION: -EVP_MD_pkey_type 3477 1_1_0d EXIST::FUNCTION: -MD4 3478 1_1_0d EXIST::FUNCTION:MD4 -EC_type1curve_tate 3479 1_1_0d EXIST::FUNCTION: -BFCiphertextBlock_free 3480 1_1_0d EXIST::FUNCTION:BFIBE -CMS_set1_eContentType 3481 1_1_0d EXIST::FUNCTION:CMS -ENGINE_get_default_EC 3482 1_1_0d EXIST::FUNCTION:ENGINE -BIO_ADDR_service_string 3483 1_1_0d EXIST::FUNCTION:SOCK -CONF_imodule_get_value 3484 1_1_0d EXIST::FUNCTION: -EVP_idea_cfb64 3485 1_1_0d EXIST::FUNCTION:IDEA -i2d_SM9Signature_bio 3486 1_1_0d EXIST::FUNCTION:SM9 -CPK_MASTER_SECRET_get_name 3487 1_1_0d EXIST::FUNCTION:CPK -d2i_CPK_PUBLIC_PARAMS_bio 3488 1_1_0d EXIST::FUNCTION:CPK -EXTENDED_KEY_USAGE_free 3489 1_1_0d EXIST::FUNCTION: -d2i_ASRange 3490 1_1_0d EXIST::FUNCTION:RFC3779 -BIO_new_fp 3491 1_1_0d EXIST::FUNCTION:STDIO -ASN1_STRING_length 3492 1_1_0d EXIST::FUNCTION: -BIO_set_next 3493 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_get_local 3494 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_by_subject 3495 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_copy 3496 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_it 3497 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_REQUEST_it 3497 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -PEM_X509_INFO_read 3498 1_1_0d EXIST::FUNCTION:STDIO -DSA_meth_get_flags 3499 1_1_0d EXIST::FUNCTION:DSA -MDC2_Init 3500 1_1_0d EXIST::FUNCTION:MDC2 -SDF_Decrypt 3501 1_1_0d EXIST::FUNCTION: -i2d_ASN1_IA5STRING 3502 1_1_0d EXIST::FUNCTION: -PKCS12_add_CSPName_asc 3503 1_1_0d EXIST::FUNCTION: -BIO_ADDR_rawmake 3504 1_1_0d EXIST::FUNCTION:SOCK -SHA256_Init 3505 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_by_OBJ 3506 1_1_0d EXIST::FUNCTION:OCSP -CMS_SignerInfo_get0_algs 3507 1_1_0d EXIST::FUNCTION:CMS -AES_bi_ige_encrypt 3508 1_1_0d EXIST::FUNCTION: -X509_CRL_add0_revoked 3509 1_1_0d EXIST::FUNCTION: -X509_reject_clear 3510 1_1_0d EXIST::FUNCTION: -BIO_ADDR_rawaddress 3511 1_1_0d EXIST::FUNCTION:SOCK -EVP_PKEY_meth_get_verify 3512 1_1_0d EXIST::FUNCTION: -TS_STATUS_INFO_dup 3513 1_1_0d EXIST::FUNCTION:TS -X509_CRL_METHOD_free 3514 1_1_0d EXIST::FUNCTION: -d2i_SM9MasterSecret_fp 3515 1_1_0d EXIST::FUNCTION:SM9,STDIO -EVP_aes_256_cbc_hmac_sha1 3516 1_1_0d EXIST::FUNCTION: -i2d_OCSP_SINGLERESP 3517 1_1_0d EXIST::FUNCTION:OCSP -i2d_X509_ALGOR 3518 1_1_0d EXIST::FUNCTION: -SOF_GetServerCertificate 3519 1_1_0d EXIST::FUNCTION: -PKCS12_mac_present 3520 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_create0_p8inf 3521 1_1_0d EXIST::FUNCTION: -DH_bits 3522 1_1_0d EXIST::FUNCTION:DH -OCSP_id_get0_info 3523 1_1_0d EXIST::FUNCTION:OCSP -PKCS7_get_signer_info 3524 1_1_0d EXIST::FUNCTION: -EVP_DecodeFinal 3525 1_1_0d EXIST::FUNCTION: -PKCS12_setup_mac 3526 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_point_conversion_form 3527 1_1_0d EXIST::FUNCTION:EC -RSA_get_RSAPUBLICKEYBLOB 3528 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -PEM_write_CMS 3529 1_1_0d EXIST::FUNCTION:CMS,STDIO -BIO_next 3530 1_1_0d EXIST::FUNCTION: -BN_BLINDING_create_param 3531 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_def_policy 3532 1_1_0d EXIST::FUNCTION:TS -X509_subject_name_hash_old 3533 1_1_0d EXIST::FUNCTION:MD5 -TS_REQ_get_policy_id 3534 1_1_0d EXIST::FUNCTION:TS -ENGINE_set_RSA 3535 1_1_0d EXIST::FUNCTION:ENGINE -X509_REVOKED_get_ext_by_OBJ 3536 1_1_0d EXIST::FUNCTION: -ERR_get_error_line_data 3537 1_1_0d EXIST::FUNCTION: -EVP_des_ecb 3538 1_1_0d EXIST::FUNCTION:DES -OPENSSL_hexstr2buf 3539 1_1_0d EXIST::FUNCTION: -DSA_meth_set_sign_setup 3540 1_1_0d EXIST::FUNCTION:DSA -ENGINE_get_ciphers 3541 1_1_0d EXIST::FUNCTION:ENGINE -X509_NAME_print_ex 3542 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_get_algo 3543 1_1_0d EXIST::FUNCTION:TS -EC_KEY_set_conv_form 3544 1_1_0d EXIST::FUNCTION:EC -CRYPTO_THREAD_cleanup_local 3545 1_1_0d EXIST::FUNCTION: -SM9_MASTER_KEY_new 3546 1_1_0d EXIST::FUNCTION:SM9 -i2d_ECPrivateKey_bio 3547 1_1_0d EXIST::FUNCTION:EC -SDF_PrintECCSignature 3548 1_1_0d EXIST::FUNCTION:SDF -EVP_aes_192_cfb8 3549 1_1_0d EXIST::FUNCTION: -DSA_meth_get_mod_exp 3550 1_1_0d EXIST::FUNCTION:DSA -BIO_get_callback_arg 3551 1_1_0d EXIST::FUNCTION: -d2i_PKCS7_DIGEST 3552 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_get_template 3553 1_1_0d EXIST::FUNCTION: -SAF_EnumKeyContainerInfo 3554 1_1_0d EXIST::FUNCTION: -i2t_ASN1_OBJECT 3555 1_1_0d EXIST::FUNCTION: -EVP_aes_256_ctr 3556 1_1_0d EXIST::FUNCTION: -d2i_OCSP_REQINFO 3557 1_1_0d EXIST::FUNCTION:OCSP -BFIBE_setup 3558 1_1_0d EXIST::FUNCTION:BFIBE -PEM_write_DSA_PUBKEY 3559 1_1_0d EXIST::FUNCTION:DSA,STDIO -d2i_RSA_PUBKEY_fp 3560 1_1_0d EXIST::FUNCTION:RSA,STDIO -X509_CINF_new 3561 1_1_0d EXIST::FUNCTION: -CTLOG_STORE_get0_log_by_id 3562 1_1_0d EXIST::FUNCTION:CT -X509_LOOKUP_by_fingerprint 3563 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_new 3564 1_1_0d EXIST::FUNCTION:TS -BIO_s_fd 3565 1_1_0d EXIST::FUNCTION: -BN_BLINDING_invert_ex 3566 1_1_0d EXIST::FUNCTION: -BIO_f_md 3567 1_1_0d EXIST::FUNCTION: -i2d_X509_REQ_bio 3568 1_1_0d EXIST::FUNCTION: -EVP_PKEY_encrypt_init 3569 1_1_0d EXIST::FUNCTION: -DES_xcbc_encrypt 3570 1_1_0d EXIST::FUNCTION:DES -NCONF_free_data 3571 1_1_0d EXIST::FUNCTION: -EC_KEY_OpenSSL 3572 1_1_0d EXIST::FUNCTION:EC -EVP_bf_cfb64 3573 1_1_0d EXIST::FUNCTION:BF -ENGINE_register_RSA 3574 1_1_0d EXIST::FUNCTION:ENGINE -d2i_CPK_PUBLIC_PARAMS 3575 1_1_0d EXIST::FUNCTION:CPK -OpenSSL_version_num 3576 1_1_0d EXIST::FUNCTION: -SCT_set1_log_id 3577 1_1_0d EXIST::FUNCTION:CT -CRYPTO_cfb128_8_encrypt 3578 1_1_0d EXIST::FUNCTION: -i2d_SM9PublicParameters_bio 3579 1_1_0d EXIST::FUNCTION:SM9 -OPENSSL_cleanup 3580 1_1_0d EXIST::FUNCTION: -X509_ALGOR_get0 3581 1_1_0d EXIST::FUNCTION: -ERR_load_SM9_strings 3582 1_1_0d EXIST::FUNCTION:SM9 -BB1MasterSecret_free 3583 1_1_0d EXIST::FUNCTION:BB1IBE -EVP_PKEY_asn1_set_item 3584 1_1_0d EXIST::FUNCTION: -BIO_f_reliable 3585 1_1_0d EXIST::FUNCTION: -X509_CRL_digest 3586 1_1_0d EXIST::FUNCTION: -PBEPARAM_new 3587 1_1_0d EXIST::FUNCTION: -SRP_check_known_gN_param 3588 1_1_0d EXIST::FUNCTION:SRP -ASN1_dup 3589 1_1_0d EXIST::FUNCTION: -SM9_KEY_up_ref 3590 1_1_0d EXIST::FUNCTION:SM9 -d2i_BB1PrivateKeyBlock 3591 1_1_0d EXIST::FUNCTION:BB1IBE -SKF_Transmit 3592 1_1_0d EXIST::FUNCTION:SKF -RC2_cfb64_encrypt 3593 1_1_0d EXIST::FUNCTION:RC2 -i2d_POLICYQUALINFO 3594 1_1_0d EXIST::FUNCTION: -BN_dup 3595 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_lock_new 3596 1_1_0d EXIST::FUNCTION: -RSA_PKCS1_OpenSSL 3597 1_1_0d EXIST::FUNCTION:RSA -EC_GROUP_get_curve_name 3598 1_1_0d EXIST::FUNCTION:EC -SOF_EncryptData 3599 1_1_0d EXIST::FUNCTION: -X509v3_addr_get_afi 3600 1_1_0d EXIST::FUNCTION:RFC3779 -NCONF_load_bio 3601 1_1_0d EXIST::FUNCTION: -CPK_PUBLIC_PARAMS_free 3602 1_1_0d EXIST::FUNCTION:CPK -TS_RESP_verify_response 3603 1_1_0d EXIST::FUNCTION:TS -X509_VERIFY_PARAM_add1_host 3604 1_1_0d EXIST::FUNCTION: -X509_REQ_check_private_key 3605 1_1_0d EXIST::FUNCTION: -ASN1_item_verify 3606 1_1_0d EXIST::FUNCTION: -ENGINE_get_pkey_asn1_meths 3607 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_ENUMERATED_set 3608 1_1_0d EXIST::FUNCTION: -sms4_ofb128_encrypt 3609 1_1_0d EXIST::FUNCTION:SMS4 -EVP_SignFinal 3610 1_1_0d EXIST::FUNCTION: -PEM_write_RSAPrivateKey 3611 1_1_0d EXIST::FUNCTION:RSA,STDIO -PKCS12_gen_mac 3612 1_1_0d EXIST::FUNCTION: -BIO_get_shutdown 3613 1_1_0d EXIST::FUNCTION: -TS_REQ_ext_free 3614 1_1_0d EXIST::FUNCTION:TS -i2d_PKCS7_ENC_CONTENT 3615 1_1_0d EXIST::FUNCTION: -OCSP_REQUEST_get_ext_by_NID 3616 1_1_0d EXIST::FUNCTION:OCSP -ZUC_128eia3_final 3617 1_1_0d EXIST::FUNCTION:ZUC -X509_CRL_get0_by_serial 3618 1_1_0d EXIST::FUNCTION: -ERR_remove_thread_state 3619 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 -i2d_GENERAL_NAME 3620 1_1_0d EXIST::FUNCTION: -PKCS12_parse 3621 1_1_0d EXIST::FUNCTION: -d2i_ASN1_ENUMERATED 3622 1_1_0d EXIST::FUNCTION: -i2b_PVK_bio 3623 1_1_0d EXIST::FUNCTION:DSA,RC4 -OPENSSL_strlcpy 3624 1_1_0d EXIST::FUNCTION: -d2i_X509_EXTENSION 3625 1_1_0d EXIST::FUNCTION: -BN_mpi2bn 3626 1_1_0d EXIST::FUNCTION: -SM9Ciphertext_new 3627 1_1_0d EXIST::FUNCTION:SM9 -BN_get_rfc3526_prime_6144 3628 1_1_0d EXIST::FUNCTION: -POLICY_MAPPING_free 3629 1_1_0d EXIST::FUNCTION: -BB1IBE_do_encrypt 3630 1_1_0d EXIST::FUNCTION:BB1IBE -BN_GF2m_mod_solve_quad 3631 1_1_0d EXIST::FUNCTION:EC2M -CRYPTO_secure_used 3632 1_1_0d EXIST::FUNCTION: -EC_POINT_add 3633 1_1_0d EXIST::FUNCTION:EC -SDF_GenerateKeyWithKEK 3634 1_1_0d EXIST::FUNCTION: -OBJ_txt2nid 3635 1_1_0d EXIST::FUNCTION: -d2i_POLICYINFO 3636 1_1_0d EXIST::FUNCTION: -PEM_write_bio_SM9MasterSecret 3637 1_1_0d EXIST::FUNCTION:SM9 -EC_POINT_point2bn 3638 1_1_0d EXIST::FUNCTION:EC -d2i_SM9Ciphertext_bio 3639 1_1_0d EXIST::FUNCTION:SM9 -ENGINE_register_all_pkey_meths 3640 1_1_0d EXIST::FUNCTION:ENGINE -i2d_CMS_bio 3641 1_1_0d EXIST::FUNCTION:CMS -OCSP_REQ_CTX_free 3642 1_1_0d EXIST::FUNCTION:OCSP -X509_SIG_it 3643 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_SIG_it 3643 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -RSA_set_flags 3644 1_1_0d EXIST::FUNCTION:RSA -SAF_HashFinal 3645 1_1_0d EXIST::FUNCTION: -DSA_get0_pqg 3646 1_1_0d EXIST::FUNCTION:DSA -CMS_SignerInfo_get0_signer_id 3647 1_1_0d EXIST::FUNCTION:CMS -ASN1_BIT_STRING_set_bit 3648 1_1_0d EXIST::FUNCTION: -X509_STORE_set_check_issued 3649 1_1_0d EXIST::FUNCTION: -OBJ_obj2txt 3650 1_1_0d EXIST::FUNCTION: -X509_NAME_ENTRY_it 3651 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_NAME_ENTRY_it 3651 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_GF2m_mod_mul_arr 3652 1_1_0d EXIST::FUNCTION:EC2M -SXNET_get_id_asc 3653 1_1_0d EXIST::FUNCTION: -SKF_DisConnectDev 3654 1_1_0d EXIST::FUNCTION:SKF -X509_subject_name_hash 3655 1_1_0d EXIST::FUNCTION: -a2d_ASN1_OBJECT 3656 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get0_param 3657 1_1_0d EXIST::FUNCTION: -sm3_hmac 3658 1_1_0d EXIST::FUNCTION:SM3 -CONF_modules_finish 3659 1_1_0d EXIST::FUNCTION: -DES_cbc_encrypt 3660 1_1_0d EXIST::FUNCTION:DES -PEM_read_RSAPublicKey 3661 1_1_0d EXIST::FUNCTION:RSA,STDIO -SDF_InternalDecrypt_ECC 3662 1_1_0d EXIST::FUNCTION: -BN_set_bit 3663 1_1_0d EXIST::FUNCTION: -TS_VERIFY_CTX_init 3664 1_1_0d EXIST::FUNCTION:TS -ENGINE_get_DH 3665 1_1_0d EXIST::FUNCTION:ENGINE -TS_CONF_set_certs 3666 1_1_0d EXIST::FUNCTION:TS -EC_GROUP_check 3667 1_1_0d EXIST::FUNCTION:EC -SAF_EnumCertificates 3668 1_1_0d EXIST::FUNCTION: -X509_delete_ext 3669 1_1_0d EXIST::FUNCTION: -ASN1_put_eoc 3670 1_1_0d EXIST::FUNCTION: -X509_NAME_cmp 3671 1_1_0d EXIST::FUNCTION: -ERR_load_strings 3672 1_1_0d EXIST::FUNCTION: -CRYPTO_strdup 3673 1_1_0d EXIST::FUNCTION: -ASN1_verify 3674 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_get_trust 3675 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_dup 3676 1_1_0d EXIST::FUNCTION: -d2i_X509_CINF 3677 1_1_0d EXIST::FUNCTION: -i2d_RSAPublicKey_fp 3678 1_1_0d EXIST::FUNCTION:RSA,STDIO -EVP_PKEY_get0_asn1 3679 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_clear_flags 3680 1_1_0d EXIST::FUNCTION: -i2d_DSAPrivateKey_fp 3681 1_1_0d EXIST::FUNCTION:DSA,STDIO -SDF_ReadFile 3682 1_1_0d EXIST::FUNCTION: -ACCESS_DESCRIPTION_new 3683 1_1_0d EXIST::FUNCTION: -BIO_ctrl_reset_read_request 3684 1_1_0d EXIST::FUNCTION: -RSA_meth_get_finish 3685 1_1_0d EXIST::FUNCTION:RSA -d2i_DISPLAYTEXT 3686 1_1_0d EXIST::FUNCTION: -CONF_get_number 3687 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_set_ctrl 3688 1_1_0d EXIST::FUNCTION: -d2i_X509_CRL 3689 1_1_0d EXIST::FUNCTION: -PKCS8_pkey_set0 3690 1_1_0d EXIST::FUNCTION: -EVP_camellia_256_cbc 3691 1_1_0d EXIST::FUNCTION:CAMELLIA -EVP_DigestSignInit 3692 1_1_0d EXIST::FUNCTION: -i2d_PAILLIER_PUBKEY 3693 1_1_0d EXIST::FUNCTION:PAILLIER -OBJ_get0_data 3694 1_1_0d EXIST::FUNCTION: -o2i_SCT_LIST 3695 1_1_0d EXIST::FUNCTION:CT -BN_GFP2_canonical 3696 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_nid 3697 1_1_0d EXIST::FUNCTION: -SKF_EnumContainer 3698 1_1_0d EXIST::FUNCTION:SKF -EVP_CIPHER_CTX_num 3699 1_1_0d EXIST::FUNCTION: -EVP_des_ofb 3700 1_1_0d EXIST::FUNCTION:DES -ASRange_new 3701 1_1_0d EXIST::FUNCTION:RFC3779 -SKF_GetPINInfo 3702 1_1_0d EXIST::FUNCTION:SKF -BN_X931_generate_Xpq 3703 1_1_0d EXIST::FUNCTION: -CAST_set_key 3704 1_1_0d EXIST::FUNCTION:CAST -SXNETID_new 3705 1_1_0d EXIST::FUNCTION: -X509_PURPOSE_cleanup 3706 1_1_0d EXIST::FUNCTION: -EVP_aes_256_ocb 3707 1_1_0d EXIST::FUNCTION:OCB -PKCS8_set0_pbe 3708 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_it 3709 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_PUBKEY_it 3709 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_ATTRIBUTE_create 3710 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get1_certs 3711 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_num_untrusted 3712 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_set_down_load 3713 1_1_0d EXIST::FUNCTION: -SOF_EncryptFile 3714 1_1_0d EXIST::FUNCTION: -PEM_write_DSAPrivateKey 3715 1_1_0d EXIST::FUNCTION:DSA,STDIO -EVP_PBE_CipherInit 3716 1_1_0d EXIST::FUNCTION: -DES_crypt 3717 1_1_0d EXIST::FUNCTION:DES -ECDSA_do_sign 3718 1_1_0d EXIST::FUNCTION:EC -X509_get_X509_PUBKEY 3719 1_1_0d EXIST::FUNCTION: -PEM_write_bio_X509_AUX 3720 1_1_0d EXIST::FUNCTION: -SEED_set_key 3721 1_1_0d EXIST::FUNCTION:SEED -EVP_PKEY_meth_get_ctrl 3722 1_1_0d EXIST::FUNCTION: -PKCS12_add_safe 3723 1_1_0d EXIST::FUNCTION: -X509_NAME_add_entry_by_NID 3724 1_1_0d EXIST::FUNCTION: -EVP_seed_cfb128 3725 1_1_0d EXIST::FUNCTION:SEED -i2d_ASN1_GENERALIZEDTIME 3726 1_1_0d EXIST::FUNCTION: -SKF_SetSymmKey 3727 1_1_0d EXIST::FUNCTION:SKF -PKCS5_PBKDF2_HMAC 3728 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_unlock 3729 1_1_0d EXIST::FUNCTION: -SM9Signature_new 3730 1_1_0d EXIST::FUNCTION:SM9 -BFPrivateKeyBlock_free 3731 1_1_0d EXIST::FUNCTION:BFIBE -CRYPTO_gcm128_tag 3732 1_1_0d EXIST::FUNCTION: -X509V3_add_value_bool_nf 3733 1_1_0d EXIST::FUNCTION: -SEED_cfb128_encrypt 3734 1_1_0d EXIST::FUNCTION:SEED -BIO_ADDRINFO_socktype 3735 1_1_0d EXIST::FUNCTION:SOCK -EVP_chacha20 3736 1_1_0d EXIST::FUNCTION:CHACHA -OPENSSL_LH_error 3737 1_1_0d EXIST::FUNCTION: -DIST_POINT_NAME_new 3738 1_1_0d EXIST::FUNCTION: -MD4_Final 3739 1_1_0d EXIST::FUNCTION:MD4 -PKCS7_dup 3740 1_1_0d EXIST::FUNCTION: -d2i_ASN1_UTF8STRING 3741 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_set_algo 3742 1_1_0d EXIST::FUNCTION:TS -BIO_vsnprintf 3743 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_get_encrypt 3744 1_1_0d EXIST::FUNCTION:SM2 -d2i_SM9PublicParameters_fp 3745 1_1_0d EXIST::FUNCTION:SM9,STDIO -EVP_PKEY_meth_get_sign 3746 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_finish 3747 1_1_0d EXIST::FUNCTION: -POLICYINFO_free 3748 1_1_0d EXIST::FUNCTION: -OBJ_add_sigid 3749 1_1_0d EXIST::FUNCTION: -CMS_EncryptedData_decrypt 3750 1_1_0d EXIST::FUNCTION:CMS -UI_get0_user_data 3751 1_1_0d EXIST::FUNCTION:UI -IPAddressRange_new 3752 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_read_bio 3753 1_1_0d EXIST::FUNCTION: -i2d_DIRECTORYSTRING 3754 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_get_octetstring 3755 1_1_0d EXIST::FUNCTION: -SDF_CloseSession 3756 1_1_0d EXIST::FUNCTION: -BN_div_recp 3757 1_1_0d EXIST::FUNCTION: -ASN1_OCTET_STRING_it 3758 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_OCTET_STRING_it 3758 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CT_POLICY_EVAL_CTX_set_time 3759 1_1_0d EXIST::FUNCTION:CT -TS_CONF_set_crypto_device 3760 1_1_0d EXIST::FUNCTION:ENGINE,TS -i2d_ASN1_BIT_STRING 3761 1_1_0d EXIST::FUNCTION: -ACCESS_DESCRIPTION_it 3762 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ACCESS_DESCRIPTION_it 3762 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -IDEA_cbc_encrypt 3763 1_1_0d EXIST::FUNCTION:IDEA -OBJ_add_object 3764 1_1_0d EXIST::FUNCTION: -EC_GROUP_precompute_mult 3765 1_1_0d EXIST::FUNCTION:EC -EVP_get_digestbysgd 3766 1_1_0d EXIST::FUNCTION:GMAPI -CRYPTO_gcm128_aad 3767 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_block_size 3768 1_1_0d EXIST::FUNCTION: -ESS_ISSUER_SERIAL_free 3769 1_1_0d EXIST::FUNCTION:TS -X509_PUBKEY_new 3770 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_get0_info 3771 1_1_0d EXIST::FUNCTION: -DSA_SIG_free 3772 1_1_0d EXIST::FUNCTION:DSA -FFX_decrypt 3773 1_1_0d EXIST::FUNCTION: -RSA_X931_generate_key_ex 3774 1_1_0d EXIST::FUNCTION:RSA -ECDSA_SIG_set0 3775 1_1_0d EXIST::FUNCTION:EC -EVP_sms4_gcm 3776 1_1_0d EXIST::FUNCTION:SMS4 -EVP_rc2_cbc 3777 1_1_0d EXIST::FUNCTION:RC2 -EC_POINT_set_affine_coordinates_GFp 3778 1_1_0d EXIST::FUNCTION:EC -X509v3_asid_subset 3779 1_1_0d EXIST::FUNCTION:RFC3779 -SM2CiphertextValue_set_ECCCIPHERBLOB 3780 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 -EVP_CIPHER_block_size 3781 1_1_0d EXIST::FUNCTION: -DES_ede3_cfb64_encrypt 3782 1_1_0d EXIST::FUNCTION:DES -EC_KEY_new_from_ECCrefPublicKey 3783 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -OBJ_nid2ln 3784 1_1_0d EXIST::FUNCTION: -UI_ctrl 3785 1_1_0d EXIST::FUNCTION:UI -i2d_ISSUING_DIST_POINT 3786 1_1_0d EXIST::FUNCTION: -X509_REQ_add_extensions 3787 1_1_0d EXIST::FUNCTION: -i2d_RSAPublicKey 3788 1_1_0d EXIST::FUNCTION:RSA -FFX_init 3789 1_1_0d EXIST::FUNCTION: -SDF_CalculateMAC 3790 1_1_0d EXIST::FUNCTION: -BN_with_flags 3791 1_1_0d EXIST::FUNCTION: -BN_sqr 3792 1_1_0d EXIST::FUNCTION: -PKCS7_digest_from_attributes 3793 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_serial_cb 3794 1_1_0d EXIST::FUNCTION:TS -X509_STORE_CTX_purpose_inherit 3795 1_1_0d EXIST::FUNCTION: -SAF_GetRootCaCertificateCount 3796 1_1_0d EXIST::FUNCTION: -BIO_method_name 3797 1_1_0d EXIST::FUNCTION: -UI_get_input_flags 3798 1_1_0d EXIST::FUNCTION:UI -EVP_PKEY_meth_copy 3799 1_1_0d EXIST::FUNCTION: -DSA_set_flags 3800 1_1_0d EXIST::FUNCTION:DSA -d2i_PKCS8_PRIV_KEY_INFO_bio 3801 1_1_0d EXIST::FUNCTION: -CRYPTO_cts128_encrypt_block 3802 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_set_public 3803 1_1_0d EXIST::FUNCTION: -OBJ_NAME_cleanup 3804 1_1_0d EXIST::FUNCTION: -SM9_generate_key_exchange 3805 1_1_0d EXIST::FUNCTION:SM9 -SAF_EccPublicKeyEncByCert 3806 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_new 3807 1_1_0d EXIST::FUNCTION:TS -EVP_PKEY_set1_DSA 3808 1_1_0d EXIST::FUNCTION:DSA -OBJ_NAME_init 3809 1_1_0d EXIST::FUNCTION: -X509v3_asid_validate_path 3810 1_1_0d EXIST::FUNCTION:RFC3779 -CMS_ContentInfo_new 3811 1_1_0d EXIST::FUNCTION:CMS -OCSP_response_create 3812 1_1_0d EXIST::FUNCTION:OCSP -SOF_DecryptData 3813 1_1_0d EXIST::FUNCTION: -CRYPTO_mem_leaks 3814 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -CMS_add_smimecap 3815 1_1_0d EXIST::FUNCTION:CMS -X509_CRL_set_version 3816 1_1_0d EXIST::FUNCTION: -NCONF_get_section 3817 1_1_0d EXIST::FUNCTION: -X509_REVOKED_add1_ext_i2d 3818 1_1_0d EXIST::FUNCTION: -o2i_SM2CiphertextValue 3819 1_1_0d EXIST::FUNCTION:SM2 -EVP_MD_meth_set_init 3820 1_1_0d EXIST::FUNCTION: -SDF_GetErrorString 3821 1_1_0d EXIST::FUNCTION:SDF -X509_REQ_add1_attr 3822 1_1_0d EXIST::FUNCTION: -CONF_modules_unload 3823 1_1_0d EXIST::FUNCTION: -i2d_PKCS7_SIGNED 3824 1_1_0d EXIST::FUNCTION: -UI_set_ex_data 3825 1_1_0d EXIST::FUNCTION:UI -EC_GROUP_get_trinomial_basis 3826 1_1_0d EXIST::FUNCTION:EC,EC2M -ENGINE_unregister_DSA 3827 1_1_0d EXIST::FUNCTION:ENGINE -X509V3_EXT_i2d 3828 1_1_0d EXIST::FUNCTION: -ENGINE_register_DSA 3829 1_1_0d EXIST::FUNCTION:ENGINE -Camellia_cfb128_encrypt 3830 1_1_0d EXIST::FUNCTION:CAMELLIA -X509_PURPOSE_get_id 3831 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_paramgen 3832 1_1_0d EXIST::FUNCTION: -X509_REQ_dup 3833 1_1_0d EXIST::FUNCTION: -EC_KEY_new_from_ECCPRIVATEKEYBLOB 3834 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -BFIBE_decrypt 3835 1_1_0d EXIST::FUNCTION:BFIBE -RSA_meth_set_pub_enc 3836 1_1_0d EXIST::FUNCTION:RSA -PKCS7_signatureVerify 3837 1_1_0d EXIST::FUNCTION: -BN_clear 3838 1_1_0d EXIST::FUNCTION: -ENGINE_pkey_asn1_find_str 3839 1_1_0d EXIST::FUNCTION:ENGINE -BN_GFP2_sub 3840 1_1_0d EXIST::FUNCTION: -d2i_RSAPrivateKey 3841 1_1_0d EXIST::FUNCTION:RSA -NCONF_get_number_e 3842 1_1_0d EXIST::FUNCTION: -EVP_DecodeBlock 3843 1_1_0d EXIST::FUNCTION: -RSA_get_method 3844 1_1_0d EXIST::FUNCTION:RSA -ASN1_T61STRING_free 3845 1_1_0d EXIST::FUNCTION: -CMS_add1_ReceiptRequest 3846 1_1_0d EXIST::FUNCTION:CMS -EVP_CIPHER_CTX_set_app_data 3847 1_1_0d EXIST::FUNCTION: -d2i_SM9PublicParameters_bio 3848 1_1_0d EXIST::FUNCTION:SM9 -ASN1_UTCTIME_it 3849 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_UTCTIME_it 3849 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_strndup 3850 1_1_0d EXIST::FUNCTION: -d2i_IPAddressChoice 3851 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_PKEY_meth_set_verifyctx 3852 1_1_0d EXIST::FUNCTION: -EVP_PKEY_asn1_set_free 3853 1_1_0d EXIST::FUNCTION: -SHA384_Final 3854 1_1_0d EXIST:!VMSVAX:FUNCTION: -ECDH_compute_key 3855 1_1_0d EXIST::FUNCTION:EC -BN_reciprocal 3856 1_1_0d EXIST::FUNCTION: -i2d_SM9PublicKey 3857 1_1_0d EXIST::FUNCTION:SM9 -ENGINE_get_load_privkey_function 3858 1_1_0d EXIST::FUNCTION:ENGINE -BN_to_ASN1_ENUMERATED 3859 1_1_0d EXIST::FUNCTION: -CRYPTO_cts128_encrypt 3860 1_1_0d EXIST::FUNCTION: -EC_GROUP_new_curve_GF2m 3861 1_1_0d EXIST::FUNCTION:EC,EC2M -ASN1_TIME_print 3862 1_1_0d EXIST::FUNCTION: -SOF_InitCertAppPolicy 3863 1_1_0d EXIST::FUNCTION: -BIO_get_init 3864 1_1_0d EXIST::FUNCTION: -X509V3_EXT_add_nconf_sk 3865 1_1_0d EXIST::FUNCTION: -X509_STORE_unlock 3866 1_1_0d EXIST::FUNCTION: -SAF_GetErrorString 3867 1_1_0d EXIST::FUNCTION:SAF -UI_get0_result 3868 1_1_0d EXIST::FUNCTION:UI -X509_VERIFY_PARAM_set1_email 3869 1_1_0d EXIST::FUNCTION: -BN_X931_derive_prime_ex 3870 1_1_0d EXIST::FUNCTION: -X509_REQ_get1_email 3871 1_1_0d EXIST::FUNCTION: -i2d_SM9PublicParameters_fp 3872 1_1_0d EXIST::FUNCTION:SM9,STDIO -X509v3_get_ext_count 3873 1_1_0d EXIST::FUNCTION: -ASYNC_WAIT_CTX_new 3874 1_1_0d EXIST::FUNCTION: -RSA_sign_ASN1_OCTET_STRING 3875 1_1_0d EXIST::FUNCTION:RSA -X509_CRL_check_suiteb 3876 1_1_0d EXIST::FUNCTION: -X509_REQ_new 3877 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_decrypt 3878 1_1_0d EXIST::FUNCTION:OCB -DSA_bits 3879 1_1_0d EXIST::FUNCTION:DSA -X509V3_section_free 3880 1_1_0d EXIST::FUNCTION: -EC_KEY_set_flags 3881 1_1_0d EXIST::FUNCTION:EC -X509V3_EXT_add_conf 3882 1_1_0d EXIST::FUNCTION: -CRYPTO_gcm128_decrypt 3883 1_1_0d EXIST::FUNCTION: -PKCS7_SIGN_ENVELOPE_new 3884 1_1_0d EXIST::FUNCTION: -EVP_PKEY_security_bits 3885 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_set_msg_imprint 3886 1_1_0d EXIST::FUNCTION:TS -EVP_aes_192_ecb 3887 1_1_0d EXIST::FUNCTION: -OBJ_bsearch_ 3888 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_flags 3889 1_1_0d EXIST::FUNCTION: -DH_meth_dup 3890 1_1_0d EXIST::FUNCTION:DH -i2d_SM9Ciphertext 3891 1_1_0d EXIST::FUNCTION:SM9 -X509_get_default_cert_file 3892 1_1_0d EXIST::FUNCTION: -i2d_re_X509_REQ_tbs 3893 1_1_0d EXIST::FUNCTION: -WHIRLPOOL 3894 1_1_0d EXIST::FUNCTION:WHIRLPOOL -DH_clear_flags 3895 1_1_0d EXIST::FUNCTION:DH -BIO_method_type 3896 1_1_0d EXIST::FUNCTION: -EC_KEY_set_method 3897 1_1_0d EXIST::FUNCTION:EC -TS_RESP_CTX_new 3898 1_1_0d EXIST::FUNCTION:TS -X509_CRL_get_signature_nid 3899 1_1_0d EXIST::FUNCTION: -X509V3_conf_free 3900 1_1_0d EXIST::FUNCTION: -OCSP_SINGLERESP_delete_ext 3901 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_delete_ext 3902 1_1_0d EXIST::FUNCTION: -X509_REQ_get_pubkey 3903 1_1_0d EXIST::FUNCTION: -NOTICEREF_new 3904 1_1_0d EXIST::FUNCTION: -BN_BLINDING_free 3905 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_ctrl 3906 1_1_0d EXIST::FUNCTION: -X509_CRL_diff 3907 1_1_0d EXIST::FUNCTION: -i2d_BFPublicParameters 3908 1_1_0d EXIST::FUNCTION:BFIBE -ENGINE_set_default_pkey_meths 3909 1_1_0d EXIST::FUNCTION:ENGINE -OPENSSL_sk_num 3910 1_1_0d EXIST::FUNCTION: -i2d_ESS_SIGNING_CERT 3911 1_1_0d EXIST::FUNCTION:TS -CRYPTO_nistcts128_decrypt_block 3912 1_1_0d EXIST::FUNCTION: -d2i_ASIdOrRange 3913 1_1_0d EXIST::FUNCTION:RFC3779 -SAF_EccVerifySignFile 3914 1_1_0d EXIST::FUNCTION:SAF -RSA_bits 3915 1_1_0d EXIST::FUNCTION:RSA -OCSP_ONEREQ_it 3916 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP -OCSP_ONEREQ_it 3916 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP -X509_REQ_sign 3917 1_1_0d EXIST::FUNCTION: -CONF_dump_bio 3918 1_1_0d EXIST::FUNCTION: -SKF_GenExtRSAKey 3919 1_1_0d EXIST::FUNCTION:SKF -EVP_CIPHER_get_sgd 3920 1_1_0d EXIST::FUNCTION:GMAPI -X509_signature_dump 3921 1_1_0d EXIST::FUNCTION: -BASIC_CONSTRAINTS_new 3922 1_1_0d EXIST::FUNCTION: -PKCS5_pbe_set0_algor 3923 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_set_result_size 3924 1_1_0d EXIST::FUNCTION: -d2i_DSA_SIG 3925 1_1_0d EXIST::FUNCTION:DSA -d2i_BB1CiphertextBlock 3926 1_1_0d EXIST::FUNCTION:BB1IBE -X509_STORE_CTX_get_error 3927 1_1_0d EXIST::FUNCTION: -OBJ_obj2nid 3928 1_1_0d EXIST::FUNCTION: -i2d_SM9Signature_fp 3929 1_1_0d EXIST::FUNCTION:SM9,STDIO -BN_CTX_secure_new 3930 1_1_0d EXIST::FUNCTION: -OPENSSL_init_crypto 3931 1_1_0d EXIST::FUNCTION: -i2d_OCSP_CRLID 3932 1_1_0d EXIST::FUNCTION:OCSP -SAF_GenRandom 3933 1_1_0d EXIST::FUNCTION: -PKCS7_simple_smimecap 3934 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kari_get0_ctx 3935 1_1_0d EXIST::FUNCTION:CMS -SDF_InternalEncrypt_ECC 3936 1_1_0d EXIST::FUNCTION: -X509_set_proxy_flag 3937 1_1_0d EXIST::FUNCTION: -d2i_CMS_ReceiptRequest 3938 1_1_0d EXIST::FUNCTION:CMS -SRP_Calc_client_key 3939 1_1_0d EXIST::FUNCTION:SRP -CMAC_resume 3940 1_1_0d EXIST::FUNCTION:CMAC -OTHERNAME_cmp 3941 1_1_0d EXIST::FUNCTION: -X509_LOOKUP_hash_dir 3942 1_1_0d EXIST::FUNCTION: -SKF_DigestFinal 3943 1_1_0d EXIST::FUNCTION:SKF -CMS_SignerInfo_cert_cmp 3944 1_1_0d EXIST::FUNCTION:CMS -CMS_decrypt_set1_password 3945 1_1_0d EXIST::FUNCTION:CMS -DSO_pathbyaddr 3946 1_1_0d EXIST::FUNCTION: -X509_TRUST_set_default 3947 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set1_policies 3948 1_1_0d EXIST::FUNCTION: -d2i_ECPKParameters 3949 1_1_0d EXIST::FUNCTION:EC -CMS_RecipientInfo_ktri_get0_signer_id 3950 1_1_0d EXIST::FUNCTION:CMS -SDF_PrintRSAPrivateKey 3951 1_1_0d EXIST::FUNCTION:SDF -PAILLIER_check_key 3952 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_PKEY_get_attr_count 3953 1_1_0d EXIST::FUNCTION: -d2i_PrivateKey_bio 3954 1_1_0d EXIST::FUNCTION: -SDF_GetDeviceInfo 3955 1_1_0d EXIST::FUNCTION: -X509_issuer_and_serial_hash 3956 1_1_0d EXIST::FUNCTION: -i2d_ASN1_T61STRING 3957 1_1_0d EXIST::FUNCTION: -PEM_read_PUBKEY 3958 1_1_0d EXIST::FUNCTION:STDIO -X509_STORE_CTX_get_verify_cb 3959 1_1_0d EXIST::FUNCTION: -OBJ_find_sigid_by_algs 3960 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get0_DH 3961 1_1_0d EXIST::FUNCTION:DH -X509_STORE_get_check_revocation 3962 1_1_0d EXIST::FUNCTION: -BIO_asn1_set_prefix 3963 1_1_0d EXIST::FUNCTION: -i2d_PaillierPublicKey 3964 1_1_0d EXIST::FUNCTION:PAILLIER -EVP_aes_192_cbc 3965 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_sort 3966 1_1_0d EXIST::FUNCTION: -DISPLAYTEXT_new 3967 1_1_0d EXIST::FUNCTION: -i2d_RSAPrivateKey 3968 1_1_0d EXIST::FUNCTION:RSA -TS_TST_INFO_get_ext_by_critical 3969 1_1_0d EXIST::FUNCTION:TS -EVP_PKEY_get0_PAILLIER 3970 1_1_0d EXIST::FUNCTION:PAILLIER -RSA_set_RSArefPrivateKey 3971 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF -PKCS7_RECIP_INFO_free 3972 1_1_0d EXIST::FUNCTION: -CRYPTO_dup_ex_data 3973 1_1_0d EXIST::FUNCTION: -X509_NAME_add_entry_by_OBJ 3974 1_1_0d EXIST::FUNCTION: -DSO_up_ref 3975 1_1_0d EXIST::FUNCTION: -EVP_DigestFinal_ex 3976 1_1_0d EXIST::FUNCTION: -ASN1_BIT_STRING_set_asc 3977 1_1_0d EXIST::FUNCTION: -DES_random_key 3978 1_1_0d EXIST::FUNCTION:DES -SHA224_Init 3979 1_1_0d EXIST::FUNCTION: -EC_KEY_set_enc_flags 3980 1_1_0d EXIST::FUNCTION:EC -ASN1_UNIVERSALSTRING_new 3981 1_1_0d EXIST::FUNCTION: -COMP_CTX_free 3982 1_1_0d EXIST::FUNCTION:COMP -BN_solinas2bn 3983 1_1_0d EXIST::FUNCTION: -i2d_CPK_MASTER_SECRET 3984 1_1_0d EXIST::FUNCTION:CPK -AES_ecb_encrypt 3985 1_1_0d EXIST::FUNCTION: -BIO_new_CMS 3986 1_1_0d EXIST::FUNCTION:CMS -d2i_OCSP_SERVICELOC 3987 1_1_0d EXIST::FUNCTION:OCSP -SAF_Base64_EncodeFinal 3988 1_1_0d EXIST::FUNCTION: -BN_is_odd 3989 1_1_0d EXIST::FUNCTION: -SKF_PrintRSAPrivateKey 3990 1_1_0d EXIST::FUNCTION:SKF -d2i_SM9Ciphertext 3991 1_1_0d EXIST::FUNCTION:SM9 -X509_policy_node_get0_qualifiers 3992 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_nid 3993 1_1_0d EXIST::FUNCTION: -X509_TRUST_get0 3994 1_1_0d EXIST::FUNCTION: -SDF_ImportKey 3995 1_1_0d EXIST::FUNCTION:SDF -i2d_RSA_PUBKEY_fp 3996 1_1_0d EXIST::FUNCTION:RSA,STDIO -ASIdentifierChoice_it 3997 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -ASIdentifierChoice_it 3997 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -RIPEMD160_Final 3998 1_1_0d EXIST::FUNCTION:RMD160 -PEM_write_bio_SM9PrivateKey 3999 1_1_0d EXIST::FUNCTION:SM9 -sm3_update 4000 1_1_0d EXIST::FUNCTION:SM3 -d2i_PKCS7_ENC_CONTENT 4001 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_pop 4002 1_1_0d EXIST::FUNCTION: -SEED_encrypt 4003 1_1_0d EXIST::FUNCTION:SEED -PKCS7_SIGNED_it 4004 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_SIGNED_it 4004 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_sha1 4005 1_1_0d EXIST::FUNCTION: -ASIdOrRange_free 4006 1_1_0d EXIST::FUNCTION:RFC3779 -RSA_check_key_ex 4007 1_1_0d EXIST::FUNCTION:RSA -OPENSSL_isservice 4008 1_1_0d EXIST::FUNCTION: -ERR_load_FFX_strings 4009 1_1_0d EXIST::FUNCTION: -SKF_ImportSessionKey 4010 1_1_0d EXIST::FUNCTION:SKF -ASN1_UTCTIME_check 4011 1_1_0d EXIST::FUNCTION: -SXNET_free 4012 1_1_0d EXIST::FUNCTION: -BN_get_rfc3526_prime_3072 4013 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_ofb 4014 1_1_0d EXIST::FUNCTION:CAMELLIA -X509V3_EXT_REQ_add_conf 4015 1_1_0d EXIST::FUNCTION: -EVP_camellia_128_cfb128 4016 1_1_0d EXIST::FUNCTION:CAMELLIA -X509_STORE_CTX_get_get_issuer 4017 1_1_0d EXIST::FUNCTION: -i2d_ASN1_GENERALSTRING 4018 1_1_0d EXIST::FUNCTION: -SM2_compute_id_digest 4019 1_1_0d EXIST::FUNCTION:SM2 -OCSP_SERVICELOC_free 4020 1_1_0d EXIST::FUNCTION:OCSP -RSA_blinding_on 4021 1_1_0d EXIST::FUNCTION:RSA -OCSP_ONEREQ_new 4022 1_1_0d EXIST::FUNCTION:OCSP -SEED_ofb128_encrypt 4023 1_1_0d EXIST::FUNCTION:SEED -BN_get0_nist_prime_224 4024 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_nonce 4025 1_1_0d EXIST::FUNCTION:TS -NETSCAPE_SPKI_free 4026 1_1_0d EXIST::FUNCTION: -EVP_PBE_cleanup 4027 1_1_0d EXIST::FUNCTION: -BN_zero_ex 4028 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_encrypting 4029 1_1_0d EXIST::FUNCTION: -NCONF_get_string 4030 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_basis_type 4031 1_1_0d EXIST::FUNCTION:EC -a2i_ASN1_ENUMERATED 4032 1_1_0d EXIST::FUNCTION: -RSA_set_RSAPUBLICKEYBLOB 4033 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF -EC_POINT_is_on_curve 4034 1_1_0d EXIST::FUNCTION:EC -EC_GROUP_get_ecparameters 4035 1_1_0d EXIST::FUNCTION:EC -BN_is_prime_ex 4036 1_1_0d EXIST::FUNCTION: -X509_set1_notBefore 4037 1_1_0d EXIST::FUNCTION: -RSA_set0_key 4038 1_1_0d EXIST::FUNCTION:RSA -TS_REQ_get_ext_by_NID 4039 1_1_0d EXIST::FUNCTION:TS -ERR_get_error 4040 1_1_0d EXIST::FUNCTION: -PKCS12_key_gen_uni 4041 1_1_0d EXIST::FUNCTION: -PKCS7_final 4042 1_1_0d EXIST::FUNCTION: -CMS_RecipientEncryptedKey_cert_cmp 4043 1_1_0d EXIST::FUNCTION:CMS -PKCS8_encrypt 4044 1_1_0d EXIST::FUNCTION: -EVP_aes_128_cbc 4045 1_1_0d EXIST::FUNCTION: -DES_string_to_2keys 4046 1_1_0d EXIST::FUNCTION:DES -PEM_read_NETSCAPE_CERT_SEQUENCE 4047 1_1_0d EXIST::FUNCTION:STDIO -ERR_load_DSA_strings 4048 1_1_0d EXIST::FUNCTION:DSA -X509_set_subject_name 4049 1_1_0d EXIST::FUNCTION: -CMS_get1_certs 4050 1_1_0d EXIST::FUNCTION:CMS -SDF_ExternalVerify_ECC 4051 1_1_0d EXIST::FUNCTION: -X509_keyid_set1 4052 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_free 4053 1_1_0d EXIST::FUNCTION: -ASN1_BIT_STRING_num_asc 4054 1_1_0d EXIST::FUNCTION: -NCONF_new 4055 1_1_0d EXIST::FUNCTION: -ASN1_item_print 4056 1_1_0d EXIST::FUNCTION: -BB1PrivateKeyBlock_it 4057 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1PrivateKeyBlock_it 4057 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -SAF_EccPublicKeyEnc 4058 1_1_0d EXIST::FUNCTION: -X509_OBJECT_get0_X509_CRL 4059 1_1_0d EXIST::FUNCTION: -BN_bn2bin 4060 1_1_0d EXIST::FUNCTION: -SKF_ImportCertificate 4061 1_1_0d EXIST::FUNCTION:SKF -EVP_CIPHER_get_asn1_iv 4062 1_1_0d EXIST::FUNCTION: -X509_REQ_get_attr_by_NID 4063 1_1_0d EXIST::FUNCTION: -EC_KEY_get0_group 4064 1_1_0d EXIST::FUNCTION:EC -X509_aux_print 4065 1_1_0d EXIST::FUNCTION: -EVP_add_cipher 4066 1_1_0d EXIST::FUNCTION: -X509_NAME_print 4067 1_1_0d EXIST::FUNCTION: -d2i_ECPrivateKey_fp 4068 1_1_0d EXIST::FUNCTION:EC,STDIO -CMS_RecipientInfo_kari_get0_alg 4069 1_1_0d EXIST::FUNCTION:CMS -d2i_ASN1_T61STRING 4070 1_1_0d EXIST::FUNCTION: -EVP_ENCODE_CTX_num 4071 1_1_0d EXIST::FUNCTION: -BN_GENCB_set_old 4072 1_1_0d EXIST::FUNCTION: -SOF_GetVersion 4073 1_1_0d EXIST::FUNCTION: -SHA1_Update 4074 1_1_0d EXIST::FUNCTION: -PKCS7_DIGEST_new 4075 1_1_0d EXIST::FUNCTION: -EVP_EncodeBlock 4076 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_flags 4077 1_1_0d EXIST::FUNCTION: -CRYPTO_set_mem_debug 4078 1_1_0d EXIST::FUNCTION: -RSA_private_encrypt 4079 1_1_0d EXIST::FUNCTION:RSA -PEM_write_bio_PAILLIER_PUBKEY 4080 1_1_0d EXIST::FUNCTION:PAILLIER -CMAC_CTX_new 4081 1_1_0d EXIST::FUNCTION:CMAC -ASN1_generate_nconf 4082 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_free 4083 1_1_0d EXIST::FUNCTION: -EVP_aes_128_ecb 4084 1_1_0d EXIST::FUNCTION: -i2d_RSA_PUBKEY_bio 4085 1_1_0d EXIST::FUNCTION:RSA -X509_VERIFY_PARAM_set_trust 4086 1_1_0d EXIST::FUNCTION: -CMS_sign 4087 1_1_0d EXIST::FUNCTION:CMS -EVP_PKEY_CTX_get_cb 4088 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_delete 4089 1_1_0d EXIST::FUNCTION: -ENGINE_get_flags 4090 1_1_0d EXIST::FUNCTION:ENGINE -SDF_ExchangeDigitEnvelopeBaseOnECC 4091 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_time_cb 4092 1_1_0d EXIST::FUNCTION:TS -X509_NAME_ENTRY_new 4093 1_1_0d EXIST::FUNCTION: -SDF_ExchangeDigitEnvelopeBaseOnRSA 4094 1_1_0d EXIST::FUNCTION: -PKCS12_get_attr_gen 4095 1_1_0d EXIST::FUNCTION: -BIO_f_linebuffer 4096 1_1_0d EXIST::FUNCTION: -i2d_ASRange 4097 1_1_0d EXIST::FUNCTION:RFC3779 -PEM_read_SM9_MASTER_PUBKEY 4098 1_1_0d EXIST::FUNCTION:SM9,STDIO -PKCS8_add_keyusage 4099 1_1_0d EXIST::FUNCTION: -BN_mod_mul 4100 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_RSA 4101 1_1_0d EXIST::FUNCTION:RSA -OCSP_SINGLERESP_get1_ext_d2i 4102 1_1_0d EXIST::FUNCTION:OCSP -CRYPTO_gcm128_release 4103 1_1_0d EXIST::FUNCTION: -d2i_IPAddressFamily 4104 1_1_0d EXIST::FUNCTION:RFC3779 -SKF_Mac 4105 1_1_0d EXIST::FUNCTION:SKF -d2i_ASN1_BMPSTRING 4106 1_1_0d EXIST::FUNCTION: -X509_free 4107 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_asn1_flag 4108 1_1_0d EXIST::FUNCTION:EC -X509_print 4109 1_1_0d EXIST::FUNCTION: -BN_rand 4110 1_1_0d EXIST::FUNCTION: -X509_CERT_AUX_free 4111 1_1_0d EXIST::FUNCTION: -EC_POINT_make_affine 4112 1_1_0d EXIST::FUNCTION:EC -SCT_set0_signature 4113 1_1_0d EXIST::FUNCTION:CT -TS_VERIFY_CTX_set_store 4114 1_1_0d EXIST::FUNCTION:TS -i2d_EC_PUBKEY_bio 4115 1_1_0d EXIST::FUNCTION:EC -X509_check_ca 4116 1_1_0d EXIST::FUNCTION: -CONF_get1_default_config_file 4117 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get0_name 4118 1_1_0d EXIST::FUNCTION: -PKCS12_get_friendlyname 4119 1_1_0d EXIST::FUNCTION: -BN_bn2lebinpad 4120 1_1_0d EXIST::FUNCTION: -EVP_sm3 4121 1_1_0d EXIST::FUNCTION:SM3 -d2i_BFPrivateKeyBlock 4122 1_1_0d EXIST::FUNCTION:BFIBE -i2d_PBKDF2PARAM 4123 1_1_0d EXIST::FUNCTION: -DSA_meth_set_init 4124 1_1_0d EXIST::FUNCTION:DSA -X509_STORE_set_get_issuer 4125 1_1_0d EXIST::FUNCTION: -EC_POINT_dbl 4126 1_1_0d EXIST::FUNCTION:EC -ENGINE_get_table_flags 4127 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_sign_init 4128 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_set 4129 1_1_0d EXIST::FUNCTION: -TS_RESP_CTX_set_status_info 4130 1_1_0d EXIST::FUNCTION:TS -AUTHORITY_KEYID_new 4131 1_1_0d EXIST::FUNCTION: -d2i_ASN1_UTCTIME 4132 1_1_0d EXIST::FUNCTION: -ASN1_sign 4133 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_set_cmp_func 4134 1_1_0d EXIST::FUNCTION: -ENGINE_set_load_pubkey_function 4135 1_1_0d EXIST::FUNCTION:ENGINE -PKCS7_DIGEST_it 4136 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_DIGEST_it 4136 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ASN1_IA5STRING_new 4137 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_doall 4138 1_1_0d EXIST::FUNCTION: -i2d_DSA_SIG 4139 1_1_0d EXIST::FUNCTION:DSA -i2d_X509_AUX 4140 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_get_ctrl 4141 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_serial 4142 1_1_0d EXIST::FUNCTION:TS -SOF_GetUserList 4143 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_new 4144 1_1_0d EXIST::FUNCTION: -SKF_CloseApplication 4145 1_1_0d EXIST::FUNCTION:SKF -BN_GENCB_get_arg 4146 1_1_0d EXIST::FUNCTION: -MD4_Init 4147 1_1_0d EXIST::FUNCTION:MD4 -SM9_generate_master_secret 4148 1_1_0d EXIST::FUNCTION:SM9 -SKF_ChangeDevAuthKey 4149 1_1_0d EXIST::FUNCTION:SKF -DSA_meth_get0_app_data 4150 1_1_0d EXIST::FUNCTION:DSA -ASN1_STRING_TABLE_cleanup 4151 1_1_0d EXIST::FUNCTION: -SCT_set_log_entry_type 4152 1_1_0d EXIST::FUNCTION:CT -TS_REQ_get_version 4153 1_1_0d EXIST::FUNCTION:TS -X509_STORE_add_crl 4154 1_1_0d EXIST::FUNCTION: -X509_NAME_get0_der 4155 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_create0_pkcs8 4156 1_1_0d EXIST::FUNCTION: -DHparams_dup 4157 1_1_0d EXIST::FUNCTION:DH -X509_load_crl_file 4158 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKI_set_pubkey 4159 1_1_0d EXIST::FUNCTION: -NCONF_dump_fp 4160 1_1_0d EXIST::FUNCTION:STDIO -i2d_RSAPrivateKey_bio 4161 1_1_0d EXIST::FUNCTION:RSA -X509_TRUST_set 4162 1_1_0d EXIST::FUNCTION: -BN_usub 4163 1_1_0d EXIST::FUNCTION: -X509at_get_attr 4164 1_1_0d EXIST::FUNCTION: -SM2_KAP_CTX_cleanup 4165 1_1_0d EXIST::FUNCTION:SM2 -OBJ_dup 4166 1_1_0d EXIST::FUNCTION: -EC_GROUP_new_from_ecparameters 4167 1_1_0d EXIST::FUNCTION:EC -X509_CRL_print 4168 1_1_0d EXIST::FUNCTION: -i2d_PKCS8_fp 4169 1_1_0d EXIST::FUNCTION:STDIO -DH_get_default_method 4170 1_1_0d EXIST::FUNCTION:DH -X509_policy_tree_get0_policies 4171 1_1_0d EXIST::FUNCTION: -EC_KEY_get_default_method 4172 1_1_0d EXIST::FUNCTION:EC -SKF_GenerateAgreementDataWithECC 4173 1_1_0d EXIST::FUNCTION:SKF -EC_KEY_set_default_secg_method 4174 1_1_0d EXIST::FUNCTION:SM2 -X509_NAME_ENTRY_set 4175 1_1_0d EXIST::FUNCTION: -BIO_dgram_is_sctp 4176 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -EVP_aes_192_wrap_pad 4177 1_1_0d EXIST::FUNCTION: -SDF_ExportSignPublicKey_ECC 4178 1_1_0d EXIST::FUNCTION: -EC_KEY_can_sign 4179 1_1_0d EXIST::FUNCTION:EC -PEM_read_bio_PrivateKey 4180 1_1_0d EXIST::FUNCTION: -DSA_size 4181 1_1_0d EXIST::FUNCTION:DSA -X509_NAME_ENTRY_get_data 4182 1_1_0d EXIST::FUNCTION: -BN_GFP2_div_bn 4183 1_1_0d EXIST::FUNCTION: -X509_policy_node_get0_policy 4184 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_zero 4185 1_1_0d EXIST::FUNCTION: -i2d_PKCS8PrivateKey_nid_bio 4186 1_1_0d EXIST::FUNCTION: -d2i_DHparams 4187 1_1_0d EXIST::FUNCTION:DH -PEM_read_bio_DSA_PUBKEY 4188 1_1_0d EXIST::FUNCTION:DSA -DSO_ctrl 4189 1_1_0d EXIST::FUNCTION: -EVP_DigestFinal 4190 1_1_0d EXIST::FUNCTION: -BIO_s_datagram 4191 1_1_0d EXIST::FUNCTION:DGRAM -PKCS7_ENVELOPE_it 4192 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ENVELOPE_it 4192 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EC_KEY_dup 4193 1_1_0d EXIST::FUNCTION:EC -X509_TRUST_get_count 4194 1_1_0d EXIST::FUNCTION: -X509_get_pubkey 4195 1_1_0d EXIST::FUNCTION: -DIST_POINT_set_dpname 4196 1_1_0d EXIST::FUNCTION: -EVP_EncryptFinal_ex 4197 1_1_0d EXIST::FUNCTION: -PKCS8_PRIV_KEY_INFO_it 4198 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS8_PRIV_KEY_INFO_it 4198 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CPK_MASTER_SECRET_validate_public_params 4199 1_1_0d EXIST::FUNCTION:CPK -d2i_ASN1_BIT_STRING 4200 1_1_0d EXIST::FUNCTION: -d2i_OTHERNAME 4201 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_set_impl_ctx_size 4202 1_1_0d EXIST::FUNCTION: -d2i_PBKDF2PARAM 4203 1_1_0d EXIST::FUNCTION: -PEM_write_bio_PUBKEY 4204 1_1_0d EXIST::FUNCTION: -BIO_meth_new 4205 1_1_0d EXIST::FUNCTION: -SKF_ReadFile 4206 1_1_0d EXIST::FUNCTION:SKF -CRYPTO_ocb128_init 4207 1_1_0d EXIST::FUNCTION:OCB -SKF_ECCExportSessionKey 4208 1_1_0d EXIST::FUNCTION:SKF -ERR_load_DH_strings 4209 1_1_0d EXIST::FUNCTION:DH -ASN1_TIME_set 4210 1_1_0d EXIST::FUNCTION: -BN_nnmod 4211 1_1_0d EXIST::FUNCTION: -RSA_meth_get_keygen 4212 1_1_0d EXIST::FUNCTION:RSA -d2i_ECParameters 4213 1_1_0d EXIST::FUNCTION:EC -EC_GROUP_get0_cofactor 4214 1_1_0d EXIST::FUNCTION:EC -BIO_ADDR_free 4215 1_1_0d EXIST::FUNCTION:SOCK -i2d_BFPrivateKeyBlock 4216 1_1_0d EXIST::FUNCTION:BFIBE -BIO_ctrl_get_write_guarantee 4217 1_1_0d EXIST::FUNCTION: -MD4_Transform 4218 1_1_0d EXIST::FUNCTION:MD4 -PKCS7_SIGN_ENVELOPE_it 4219 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_SIGN_ENVELOPE_it 4219 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -IPAddressOrRange_it 4220 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 -IPAddressOrRange_it 4220 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 -DH_set_default_method 4221 1_1_0d EXIST::FUNCTION:DH -DH_set_flags 4222 1_1_0d EXIST::FUNCTION:DH -EVP_MD_meth_get_init 4223 1_1_0d EXIST::FUNCTION: -X509_NAME_get_index_by_NID 4224 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_get_auth_level 4225 1_1_0d EXIST::FUNCTION: -PEM_SignInit 4226 1_1_0d EXIST::FUNCTION: -PEM_read_bio_RSAPublicKey 4227 1_1_0d EXIST::FUNCTION:RSA -PEM_write_PKCS7 4228 1_1_0d EXIST::FUNCTION:STDIO -EDIPARTYNAME_free 4229 1_1_0d EXIST::FUNCTION: -EVP_PKEY_assign 4230 1_1_0d EXIST::FUNCTION: -ASN1_TIME_new 4231 1_1_0d EXIST::FUNCTION: -EVP_PKEY_save_parameters 4232 1_1_0d EXIST::FUNCTION: -BIO_set_retry_reason 4233 1_1_0d EXIST::FUNCTION: -CRYPTO_secure_allocated 4234 1_1_0d EXIST::FUNCTION: -BN_GFP2_sqr 4235 1_1_0d EXIST::FUNCTION: -EC_GROUP_get_ecpkparameters 4236 1_1_0d EXIST::FUNCTION:EC -BN_mod_exp_recp 4237 1_1_0d EXIST::FUNCTION: -EVP_PKEY_add1_attr_by_OBJ 4238 1_1_0d EXIST::FUNCTION: -SAF_EccSign 4239 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_cmp 4240 1_1_0d EXIST::FUNCTION: -RC5_32_cbc_encrypt 4241 1_1_0d EXIST::FUNCTION:RC5 -RAND_add 4242 1_1_0d EXIST::FUNCTION: -i2d_X509_REQ_INFO 4243 1_1_0d EXIST::FUNCTION: -USERNOTICE_new 4244 1_1_0d EXIST::FUNCTION: -CMS_get0_eContentType 4245 1_1_0d EXIST::FUNCTION:CMS -CMS_add0_recipient_password 4246 1_1_0d EXIST::FUNCTION:CMS -PEM_read_bio_CMS 4247 1_1_0d EXIST::FUNCTION:CMS -CRYPTO_mem_debug_push 4248 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -BIO_meth_get_callback_ctrl 4249 1_1_0d EXIST::FUNCTION: -OCSP_check_nonce 4250 1_1_0d EXIST::FUNCTION:OCSP -d2i_X509_REQ 4251 1_1_0d EXIST::FUNCTION: -POLICYQUALINFO_free 4252 1_1_0d EXIST::FUNCTION: -RSA_padding_add_X931 4253 1_1_0d EXIST::FUNCTION:RSA -EVP_aes_128_cfb128 4254 1_1_0d EXIST::FUNCTION: -EVP_PBE_alg_add 4255 1_1_0d EXIST::FUNCTION: -EC_KEY_is_sm2p256v1 4256 1_1_0d EXIST::FUNCTION:SM2 -CMS_get1_crls 4257 1_1_0d EXIST::FUNCTION:CMS -X509_ATTRIBUTE_set1_data 4258 1_1_0d EXIST::FUNCTION: -PBE2PARAM_it 4259 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PBE2PARAM_it 4259 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -BN_print_fp 4260 1_1_0d EXIST::FUNCTION:STDIO -BFCiphertextBlock_it 4261 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFCiphertextBlock_it 4261 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -speck_decrypt64 4262 1_1_0d EXIST::FUNCTION:SPECK -RSA_meth_get_init 4263 1_1_0d EXIST::FUNCTION:RSA -X509_LOOKUP_ctrl 4264 1_1_0d EXIST::FUNCTION: -i2s_ASN1_IA5STRING 4265 1_1_0d EXIST::FUNCTION: -i2s_ASN1_OCTET_STRING 4266 1_1_0d EXIST::FUNCTION: -BIO_new_fd 4267 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_SM9 4268 1_1_0d EXIST::FUNCTION:SM9 -PEM_write 4269 1_1_0d EXIST::FUNCTION:STDIO -EVP_MD_CTX_set_update_fn 4270 1_1_0d EXIST::FUNCTION: -BIO_ctrl 4271 1_1_0d EXIST::FUNCTION: -ENGINE_register_ciphers 4272 1_1_0d EXIST::FUNCTION:ENGINE -UI_set_method 4273 1_1_0d EXIST::FUNCTION:UI -EVP_PKEY_free 4274 1_1_0d EXIST::FUNCTION: -PEM_read_bio_PaillierPrivateKey 4275 1_1_0d EXIST::FUNCTION:PAILLIER -PAILLIER_free 4276 1_1_0d EXIST::FUNCTION:PAILLIER -OCSP_SINGLERESP_add1_ext_i2d 4277 1_1_0d EXIST::FUNCTION:OCSP -X509v3_asid_is_canonical 4278 1_1_0d EXIST::FUNCTION:RFC3779 -OCSP_REQUEST_get_ext 4279 1_1_0d EXIST::FUNCTION:OCSP -X509_VERIFY_PARAM_get_count 4280 1_1_0d EXIST::FUNCTION: -ASYNC_get_wait_ctx 4281 1_1_0d EXIST::FUNCTION: -OCSP_CERTSTATUS_new 4282 1_1_0d EXIST::FUNCTION:OCSP -PEM_ASN1_write_bio 4283 1_1_0d EXIST::FUNCTION: -CRYPTO_ccm128_aad 4284 1_1_0d EXIST::FUNCTION: -BIO_meth_set_ctrl 4285 1_1_0d EXIST::FUNCTION: -SM9_do_verify 4286 1_1_0d EXIST::FUNCTION:SM9 -BIO_f_zlib 4287 1_1_0d EXIST:ZLIB:FUNCTION:COMP -EVP_CIPHER_meth_get_cleanup 4288 1_1_0d EXIST::FUNCTION: -BIO_asn1_set_suffix 4289 1_1_0d EXIST::FUNCTION: -BIO_puts 4290 1_1_0d EXIST::FUNCTION: -EVP_MD_do_all 4291 1_1_0d EXIST::FUNCTION: -d2i_DSAPublicKey 4292 1_1_0d EXIST::FUNCTION:DSA -X509_REVOKED_get_ext_d2i 4293 1_1_0d EXIST::FUNCTION: -DSA_get_ex_data 4294 1_1_0d EXIST::FUNCTION:DSA -PEM_write_X509_REQ_NEW 4295 1_1_0d EXIST::FUNCTION:STDIO -EVP_MD_meth_set_copy 4296 1_1_0d EXIST::FUNCTION: -DH_set_method 4297 1_1_0d EXIST::FUNCTION:DH -BN_GF2m_mod_sqrt_arr 4298 1_1_0d EXIST::FUNCTION:EC2M -EVP_OpenInit 4299 1_1_0d EXIST::FUNCTION:RSA -EVP_MD_CTX_free 4300 1_1_0d EXIST::FUNCTION: -RSA_up_ref 4301 1_1_0d EXIST::FUNCTION:RSA -EC_GROUP_is_type1curve 4302 1_1_0d EXIST::FUNCTION: -RSA_padding_add_SSLv23 4303 1_1_0d EXIST::FUNCTION:RSA -TS_ACCURACY_dup 4304 1_1_0d EXIST::FUNCTION:TS -SCT_set_signature_nid 4305 1_1_0d EXIST::FUNCTION:CT -RSA_set_default_method 4306 1_1_0d EXIST::FUNCTION:RSA -EVP_aes_128_wrap_pad 4307 1_1_0d EXIST::FUNCTION: -DSO_dsobyaddr 4308 1_1_0d EXIST::FUNCTION: -X509_CERT_AUX_new 4309 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_lookup 4310 1_1_0d EXIST::FUNCTION: -v2i_GENERAL_NAMES 4311 1_1_0d EXIST::FUNCTION: -RSA_padding_check_PKCS1_OAEP_mgf1 4312 1_1_0d EXIST::FUNCTION:RSA -BIO_f_asn1 4313 1_1_0d EXIST::FUNCTION: -X509v3_asid_add_inherit 4314 1_1_0d EXIST::FUNCTION:RFC3779 -CMS_unsigned_add1_attr_by_txt 4315 1_1_0d EXIST::FUNCTION:CMS -i2d_DIST_POINT 4316 1_1_0d EXIST::FUNCTION: -X509_get_signature_nid 4317 1_1_0d EXIST::FUNCTION: -TS_MSG_IMPRINT_free 4318 1_1_0d EXIST::FUNCTION:TS -PKCS7_stream 4319 1_1_0d EXIST::FUNCTION: -X509_ATTRIBUTE_create_by_NID 4320 1_1_0d EXIST::FUNCTION: -EVP_sms4_cfb1 4321 1_1_0d EXIST::FUNCTION:SMS4 -EC_curve_nid2nist 4322 1_1_0d EXIST::FUNCTION:EC -CONF_module_get_usr_data 4323 1_1_0d EXIST::FUNCTION: -BN_is_zero 4324 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_strhash 4325 1_1_0d EXIST::FUNCTION: -PKCS8_pkey_add1_attr_by_NID 4326 1_1_0d EXIST::FUNCTION: -X509v3_addr_add_range 4327 1_1_0d EXIST::FUNCTION:RFC3779 -BN_mod_exp_mont 4328 1_1_0d EXIST::FUNCTION: -ERR_print_errors 4329 1_1_0d EXIST::FUNCTION: -X509_CRL_get_REVOKED 4330 1_1_0d EXIST::FUNCTION: -CMS_set1_signers_certs 4331 1_1_0d EXIST::FUNCTION:CMS -d2i_TS_TST_INFO_bio 4332 1_1_0d EXIST::FUNCTION:TS -SCT_LIST_free 4333 1_1_0d EXIST::FUNCTION:CT -SKF_GetContainerTypeName 4334 1_1_0d EXIST::FUNCTION:SKF -i2d_OCSP_REQUEST 4335 1_1_0d EXIST::FUNCTION:OCSP -CT_POLICY_EVAL_CTX_get0_log_store 4336 1_1_0d EXIST::FUNCTION:CT -BIO_f_base64 4337 1_1_0d EXIST::FUNCTION: -SM9_KEY_print 4338 1_1_0d EXIST::FUNCTION:SM9 -ASN1_GENERALIZEDTIME_it 4339 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_GENERALIZEDTIME_it 4339 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_NAME_add_entry 4340 1_1_0d EXIST::FUNCTION: -SMIME_write_CMS 4341 1_1_0d EXIST::FUNCTION:CMS -BN_value_one 4342 1_1_0d EXIST::FUNCTION: -EC_GFp_sm2p256_method 4343 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128,SM2 -SCT_set0_log_id 4344 1_1_0d EXIST::FUNCTION:CT -EC_GF2m_simple_method 4345 1_1_0d EXIST::FUNCTION:EC,EC2M -EVP_MD_meth_free 4346 1_1_0d EXIST::FUNCTION: -d2i_TS_TST_INFO_fp 4347 1_1_0d EXIST::FUNCTION:STDIO,TS -BFIBE_encrypt 4348 1_1_0d EXIST::FUNCTION:BFIBE -i2d_POLICYINFO 4349 1_1_0d EXIST::FUNCTION: -SAF_GenerateAgreementDataWithECC 4350 1_1_0d EXIST::FUNCTION: -EC_GROUP_set_curve_GFp 4351 1_1_0d EXIST::FUNCTION:EC -ASYNC_WAIT_CTX_free 4352 1_1_0d EXIST::FUNCTION: -RSA_padding_add_PKCS1_type_2 4353 1_1_0d EXIST::FUNCTION:RSA -sm3_compress 4354 1_1_0d EXIST::FUNCTION:SM3 -ASN1_UTF8STRING_it 4355 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_UTF8STRING_it 4355 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ERR_remove_state 4356 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_0_0 -i2d_PROXY_POLICY 4357 1_1_0d EXIST::FUNCTION: -ASN1_item_d2i 4358 1_1_0d EXIST::FUNCTION: -X509V3_EXT_nconf_nid 4359 1_1_0d EXIST::FUNCTION: -d2i_DSA_PUBKEY_fp 4360 1_1_0d EXIST::FUNCTION:DSA,STDIO -BN_mod_exp_simple 4361 1_1_0d EXIST::FUNCTION: -d2i_OCSP_CERTSTATUS 4362 1_1_0d EXIST::FUNCTION:OCSP -DSO_convert_filename 4363 1_1_0d EXIST::FUNCTION: -SM9_compute_share_key_B 4364 1_1_0d EXIST::FUNCTION:SM9 -DES_set_odd_parity 4365 1_1_0d EXIST::FUNCTION:DES -TS_REQ_get_msg_imprint 4366 1_1_0d EXIST::FUNCTION:TS -SOF_GetCertTrustList 4367 1_1_0d EXIST::FUNCTION: -d2i_ESS_CERT_ID 4368 1_1_0d EXIST::FUNCTION:TS -BN_MONT_CTX_copy 4369 1_1_0d EXIST::FUNCTION: -RC5_32_cfb64_encrypt 4370 1_1_0d EXIST::FUNCTION:RC5 -X509_OBJECT_retrieve_by_subject 4371 1_1_0d EXIST::FUNCTION: -X509_REQ_delete_attr 4372 1_1_0d EXIST::FUNCTION: -NCONF_load_fp 4373 1_1_0d EXIST::FUNCTION:STDIO -X509_STORE_CTX_set_verify 4374 1_1_0d EXIST::FUNCTION: -ASN1_INTEGER_to_BN 4375 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKAC_it 4376 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NETSCAPE_SPKAC_it 4376 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -X509_PKEY_free 4377 1_1_0d EXIST::FUNCTION: -X509_getm_notBefore 4378 1_1_0d EXIST::FUNCTION: -BIO_s_connect 4379 1_1_0d EXIST::FUNCTION:SOCK -SDF_OpenSession 4380 1_1_0d EXIST::FUNCTION: -RAND_bytes 4381 1_1_0d EXIST::FUNCTION: -X509_REQ_get_version 4382 1_1_0d EXIST::FUNCTION: -X509V3_add_value_int 4383 1_1_0d EXIST::FUNCTION: -RSA_meth_set0_app_data 4384 1_1_0d EXIST::FUNCTION:RSA -EC_POINT_oct2point 4385 1_1_0d EXIST::FUNCTION:EC -SOF_DecryptFile 4386 1_1_0d EXIST::FUNCTION: -ERR_reason_error_string 4387 1_1_0d EXIST::FUNCTION: -PEM_read_bio_EC_PUBKEY 4388 1_1_0d EXIST::FUNCTION:EC -speck_decrypt16 4389 1_1_0d EXIST::FUNCTION:SPECK -d2i_CERTIFICATEPOLICIES 4390 1_1_0d EXIST::FUNCTION: -X509_STORE_get_verify_cb 4391 1_1_0d EXIST::FUNCTION: -DH_new_method 4392 1_1_0d EXIST::FUNCTION:DH -ASN1_VISIBLESTRING_new 4393 1_1_0d EXIST::FUNCTION: -SM9Signature_free 4394 1_1_0d EXIST::FUNCTION:SM9 -CMS_signed_get0_data_by_OBJ 4395 1_1_0d EXIST::FUNCTION:CMS -SKF_ConnectDev 4396 1_1_0d EXIST::FUNCTION:SKF -OPENSSL_issetugid 4397 1_1_0d EXIST::FUNCTION: -PKCS12_SAFEBAG_create_cert 4398 1_1_0d EXIST::FUNCTION: -RSA_generate_key_ex 4399 1_1_0d EXIST::FUNCTION:RSA -BIO_new_file 4400 1_1_0d EXIST::FUNCTION: -ENGINE_get_RAND 4401 1_1_0d EXIST::FUNCTION:ENGINE -DH_meth_get_init 4402 1_1_0d EXIST::FUNCTION:DH -ERR_peek_last_error_line_data 4403 1_1_0d EXIST::FUNCTION: -EVP_PKEY_verify_init 4404 1_1_0d EXIST::FUNCTION: -ASN1_GENERALIZEDTIME_print 4405 1_1_0d EXIST::FUNCTION: -d2i_OCSP_REQUEST 4406 1_1_0d EXIST::FUNCTION:OCSP -X509_PURPOSE_get0_sname 4407 1_1_0d EXIST::FUNCTION: -SDF_UnloadLibrary 4408 1_1_0d EXIST::FUNCTION:SDF -COMP_zlib 4409 1_1_0d EXIST::FUNCTION:COMP -X509_REVOKED_free 4410 1_1_0d EXIST::FUNCTION: -d2i_X509_REQ_fp 4411 1_1_0d EXIST::FUNCTION:STDIO -X509_STORE_CTX_get_error_depth 4412 1_1_0d EXIST::FUNCTION: -ERR_get_error_line 4413 1_1_0d EXIST::FUNCTION: -MD5_Transform 4414 1_1_0d EXIST::FUNCTION:MD5 -EC_GROUP_get_curve_GF2m 4415 1_1_0d EXIST::FUNCTION:EC,EC2M -SKF_ExportCertificate 4416 1_1_0d EXIST::FUNCTION:SKF -ASN1_NULL_it 4417 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_NULL_it 4417 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -CRYPTO_gcm128_encrypt 4418 1_1_0d EXIST::FUNCTION: -ASN1_FBOOLEAN_it 4419 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_FBOOLEAN_it 4419 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_sms4_ocb 4420 1_1_0d EXIST::FUNCTION:SMS4 -MD2 4421 1_1_0d EXIST::FUNCTION:MD2 -ASN1_STRING_new 4422 1_1_0d EXIST::FUNCTION: -OCSP_SERVICELOC_new 4423 1_1_0d EXIST::FUNCTION:OCSP -i2d_SM9_MASTER_PUBKEY 4424 1_1_0d EXIST::FUNCTION:SM9 -EVP_PKEY_CTX_get_operation 4425 1_1_0d EXIST::FUNCTION: -RSA_get0_key 4426 1_1_0d EXIST::FUNCTION:RSA -FIPS_mode_set 4427 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_get_verify 4428 1_1_0d EXIST::FUNCTION:EC -BIO_printf 4429 1_1_0d EXIST::FUNCTION: -PKCS7_ENCRYPT_it 4430 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PKCS7_ENCRYPT_it 4430 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -SOF_ValidateCert 4431 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_final 4432 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_dup 4433 1_1_0d EXIST::FUNCTION: -EC_KEY_new_by_curve_name 4434 1_1_0d EXIST::FUNCTION:EC -d2i_USERNOTICE 4435 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_node_stats 4436 1_1_0d EXIST::FUNCTION:STDIO -BIO_vfree 4437 1_1_0d EXIST::FUNCTION: -OCSP_ONEREQ_get1_ext_d2i 4438 1_1_0d EXIST::FUNCTION:OCSP -RSA_meth_new 4439 1_1_0d EXIST::FUNCTION:RSA -PEM_write_RSA_PUBKEY 4440 1_1_0d EXIST::FUNCTION:RSA,STDIO -BN_BLINDING_new 4441 1_1_0d EXIST::FUNCTION: -BIO_dgram_sctp_notification_cb 4442 1_1_0d EXIST::FUNCTION:DGRAM,SCTP -i2d_SM9MasterSecret 4443 1_1_0d EXIST::FUNCTION:SM9 -X509_REQ_INFO_new 4444 1_1_0d EXIST::FUNCTION: -d2i_OCSP_SINGLERESP 4445 1_1_0d EXIST::FUNCTION:OCSP -X509_CRL_add1_ext_i2d 4446 1_1_0d EXIST::FUNCTION: -X509_VERIFY_PARAM_set1_host 4447 1_1_0d EXIST::FUNCTION: -d2i_OCSP_REVOKEDINFO 4448 1_1_0d EXIST::FUNCTION:OCSP -PKCS7_add_attrib_smimecap 4449 1_1_0d EXIST::FUNCTION: -BIO_s_bio 4450 1_1_0d EXIST::FUNCTION: -NOTICEREF_it 4451 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -NOTICEREF_it 4451 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_PKEY_asn1_add_alias 4452 1_1_0d EXIST::FUNCTION: -EVP_seed_cbc 4453 1_1_0d EXIST::FUNCTION:SEED -CMS_RecipientInfo_kari_orig_id_cmp 4454 1_1_0d EXIST::FUNCTION:CMS -EVP_rc2_64_cbc 4455 1_1_0d EXIST::FUNCTION:RC2 -DSA_security_bits 4456 1_1_0d EXIST::FUNCTION:DSA -d2i_BFPublicParameters 4457 1_1_0d EXIST::FUNCTION:BFIBE -BF_options 4458 1_1_0d EXIST::FUNCTION:BF -SKF_PrintDevInfo 4459 1_1_0d EXIST::FUNCTION:SKF -EVP_md2 4460 1_1_0d EXIST::FUNCTION:MD2 -PKCS7_ENVELOPE_free 4461 1_1_0d EXIST::FUNCTION: -i2d_PKEY_USAGE_PERIOD 4462 1_1_0d EXIST::FUNCTION: -DH_new 4463 1_1_0d EXIST::FUNCTION:DH -EVP_PKEY_asn1_find 4464 1_1_0d EXIST::FUNCTION: -SKF_WriteFile 4465 1_1_0d EXIST::FUNCTION:SKF -ENGINE_get_load_pubkey_function 4466 1_1_0d EXIST::FUNCTION:ENGINE -CMAC_CTX_get0_cipher_ctx 4467 1_1_0d EXIST::FUNCTION:CMAC -ASN1_object_size 4468 1_1_0d EXIST::FUNCTION: -CAST_encrypt 4469 1_1_0d EXIST::FUNCTION:CAST -i2d_X509 4470 1_1_0d EXIST::FUNCTION: -d2i_OCSP_ONEREQ 4471 1_1_0d EXIST::FUNCTION:OCSP -EVP_get_default_cipher 4472 1_1_0d EXIST::FUNCTION: -ERR_load_PKCS12_strings 4473 1_1_0d EXIST::FUNCTION: -COMP_compress_block 4474 1_1_0d EXIST::FUNCTION:COMP -PEM_write_X509 4475 1_1_0d EXIST::FUNCTION:STDIO -FpPoint_free 4476 1_1_0d EXIST::FUNCTION: -ZUC_generate_keyword 4477 1_1_0d EXIST::FUNCTION:ZUC -ERR_load_EVP_strings 4478 1_1_0d EXIST::FUNCTION: -DH_meth_get0_app_data 4479 1_1_0d EXIST::FUNCTION:DH -PKCS12_MAC_DATA_new 4480 1_1_0d EXIST::FUNCTION: -TS_RESP_get_status_info 4481 1_1_0d EXIST::FUNCTION:TS -TS_TST_INFO_free 4482 1_1_0d EXIST::FUNCTION:TS -ASN1_STRING_get0_data 4483 1_1_0d EXIST::FUNCTION: -EC_KEY_set_ECCrefPrivateKey 4484 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -EVP_MD_meth_set_input_blocksize 4485 1_1_0d EXIST::FUNCTION: -ERR_load_ERR_strings 4486 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_get_init 4487 1_1_0d EXIST::FUNCTION: -i2d_ECCCIPHERBLOB 4488 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -X509_get_key_usage 4489 1_1_0d EXIST::FUNCTION: -EC_GROUP_method_of 4490 1_1_0d EXIST::FUNCTION:EC -DIST_POINT_it 4491 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -DIST_POINT_it 4491 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_sms4_ccm 4492 1_1_0d EXIST::FUNCTION:SMS4 -BIO_ctrl_get_read_request 4493 1_1_0d EXIST::FUNCTION: -EVP_aes_128_ofb 4494 1_1_0d EXIST::FUNCTION: -ASN1_item_ex_i2d 4495 1_1_0d EXIST::FUNCTION: -ASN1_item_d2i_bio 4496 1_1_0d EXIST::FUNCTION: -ERR_load_SM2_strings 4497 1_1_0d EXIST::FUNCTION:SM2 -EC_POINT_set_compressed_coordinates_GFp 4498 1_1_0d EXIST::FUNCTION:EC -d2i_X509_CRL_bio 4499 1_1_0d EXIST::FUNCTION: -TLS_FEATURE_free 4500 1_1_0d EXIST::FUNCTION: -EC_KEY_METHOD_get_decrypt 4501 1_1_0d EXIST::FUNCTION:SM2 -SKF_RSASignData 4502 1_1_0d EXIST::FUNCTION:SKF -PKCS7_RECIP_INFO_set 4503 1_1_0d EXIST::FUNCTION: -SOF_SetSignMethod 4504 1_1_0d EXIST::FUNCTION: -CRYPTO_ocb128_aad 4505 1_1_0d EXIST::FUNCTION:OCB -CRYPTO_get_ex_data 4506 1_1_0d EXIST::FUNCTION: -i2d_ASN1_UTF8STRING 4507 1_1_0d EXIST::FUNCTION: -UI_method_get_prompt_constructor 4508 1_1_0d EXIST::FUNCTION:UI -BIO_accept 4509 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -PKEY_USAGE_PERIOD_new 4510 1_1_0d EXIST::FUNCTION: -PEM_write_ECPKParameters 4511 1_1_0d EXIST::FUNCTION:EC,STDIO -TS_STATUS_INFO_get0_text 4512 1_1_0d EXIST::FUNCTION:TS -BN_bn2dec 4513 1_1_0d EXIST::FUNCTION: -BN_add 4514 1_1_0d EXIST::FUNCTION: -X509_add_ext 4515 1_1_0d EXIST::FUNCTION: -BN_nist_mod_256 4516 1_1_0d EXIST::FUNCTION: -CRYPTO_mem_debug_realloc 4517 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG -EVP_get_digestbyname 4518 1_1_0d EXIST::FUNCTION: -SRP_Calc_A 4519 1_1_0d EXIST::FUNCTION:SRP -BIO_f_cipher 4520 1_1_0d EXIST::FUNCTION: -ECIES_PARAMS_get_kdf 4521 1_1_0d EXIST::FUNCTION:ECIES -OCSP_resp_find_status 4522 1_1_0d EXIST::FUNCTION:OCSP -X509V3_EXT_add_alias 4523 1_1_0d EXIST::FUNCTION: -EVP_camellia_256_cfb128 4524 1_1_0d EXIST::FUNCTION:CAMELLIA -RAND_load_file 4525 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_type 4526 1_1_0d EXIST::FUNCTION:CMS -BN_GFP2_inv 4527 1_1_0d EXIST::FUNCTION: -PKCS5_pbe2_set_iv 4528 1_1_0d EXIST::FUNCTION: -ASN1_STRING_free 4529 1_1_0d EXIST::FUNCTION: -X509_STORE_get_cert_crl 4530 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_get_verify 4531 1_1_0d EXIST::FUNCTION: -ASN1_TYPE_unpack_sequence 4532 1_1_0d EXIST::FUNCTION: -EVP_PKEY_cmp_parameters 4533 1_1_0d EXIST::FUNCTION: -OBJ_sigid_free 4534 1_1_0d EXIST::FUNCTION: -BIO_new_dgram 4535 1_1_0d EXIST::FUNCTION:DGRAM -EVP_PKEY_cmp 4536 1_1_0d EXIST::FUNCTION: -BIO_gethostbyname 4537 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK -SM2_sign_setup 4538 1_1_0d EXIST::FUNCTION:SM2 -RSA_flags 4539 1_1_0d EXIST::FUNCTION:RSA -CMS_signed_add1_attr_by_NID 4540 1_1_0d EXIST::FUNCTION:CMS -ERR_load_EC_strings 4541 1_1_0d EXIST::FUNCTION:EC -ASN1_T61STRING_new 4542 1_1_0d EXIST::FUNCTION: -BIO_set_init 4543 1_1_0d EXIST::FUNCTION: -X509_issuer_name_hash_old 4544 1_1_0d EXIST::FUNCTION:MD5 -PEM_write_bio_ECPrivateKey 4545 1_1_0d EXIST::FUNCTION:EC -OCSP_resp_get0_certs 4546 1_1_0d EXIST::FUNCTION:OCSP -PROXY_POLICY_new 4547 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_find 4548 1_1_0d EXIST::FUNCTION: -X509_get_ex_data 4549 1_1_0d EXIST::FUNCTION: -HMAC_CTX_free 4550 1_1_0d EXIST::FUNCTION: -CRYPTO_THREAD_set_local 4551 1_1_0d EXIST::FUNCTION: -BIO_free 4552 1_1_0d EXIST::FUNCTION: -SKF_EncryptInit 4553 1_1_0d EXIST::FUNCTION:SKF -X509_VAL_free 4554 1_1_0d EXIST::FUNCTION: -BIO_socket 4555 1_1_0d EXIST::FUNCTION:SOCK -OCSP_SIGNATURE_free 4556 1_1_0d EXIST::FUNCTION:OCSP -BIO_get_retry_reason 4557 1_1_0d EXIST::FUNCTION: -RSA_print 4558 1_1_0d EXIST::FUNCTION:RSA -SDF_GenerateKeyWithIPK_ECC 4559 1_1_0d EXIST::FUNCTION: -CRYPTO_free 4560 1_1_0d EXIST::FUNCTION: -OPENSSL_sk_shift 4561 1_1_0d EXIST::FUNCTION: -EVP_PKEY_get1_DSA 4562 1_1_0d EXIST::FUNCTION:DSA -d2i_ESS_ISSUER_SERIAL 4563 1_1_0d EXIST::FUNCTION:TS -RSA_public_decrypt 4564 1_1_0d EXIST::FUNCTION:RSA -ECDSA_SIG_get0 4565 1_1_0d EXIST::FUNCTION:EC -PEM_write_bio_PaillierPublicKey 4566 1_1_0d EXIST::FUNCTION:PAILLIER -DES_ncbc_encrypt 4567 1_1_0d EXIST::FUNCTION:DES -PEM_write_bio_X509 4568 1_1_0d EXIST::FUNCTION: -DSA_meth_get_keygen 4569 1_1_0d EXIST::FUNCTION:DSA -SAF_Base64_DestroyBase64Obj 4570 1_1_0d EXIST::FUNCTION: -X509_STORE_CTX_set_cert 4571 1_1_0d EXIST::FUNCTION: -i2d_IPAddressRange 4572 1_1_0d EXIST::FUNCTION:RFC3779 -EVP_cast5_cfb64 4573 1_1_0d EXIST::FUNCTION:CAST -RSA_meth_set1_name 4574 1_1_0d EXIST::FUNCTION:RSA -CMS_ContentInfo_print_ctx 4575 1_1_0d EXIST::FUNCTION:CMS -X509_STORE_CTX_set_ex_data 4576 1_1_0d EXIST::FUNCTION: -TS_RESP_set_status_info 4577 1_1_0d EXIST::FUNCTION:TS -d2i_ASN1_UNIVERSALSTRING 4578 1_1_0d EXIST::FUNCTION: -X509_alias_get0 4579 1_1_0d EXIST::FUNCTION: -BUF_MEM_new_ex 4580 1_1_0d EXIST::FUNCTION: -DSAparams_dup 4581 1_1_0d EXIST::FUNCTION:DSA -ASN1_UNIVERSALSTRING_it 4582 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_UNIVERSALSTRING_it 4582 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -ENGINE_get_next 4583 1_1_0d EXIST::FUNCTION:ENGINE -BB1MasterSecret_it 4584 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BB1IBE -BB1MasterSecret_it 4584 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BB1IBE -i2d_ECParameters 4585 1_1_0d EXIST::FUNCTION:EC -OCSP_SIGNATURE_new 4586 1_1_0d EXIST::FUNCTION:OCSP -ENGINE_get_cipher 4587 1_1_0d EXIST::FUNCTION:ENGINE -CMS_unsigned_get_attr_by_OBJ 4588 1_1_0d EXIST::FUNCTION:CMS -EVP_idea_ecb 4589 1_1_0d EXIST::FUNCTION:IDEA -ENGINE_register_all_RAND 4590 1_1_0d EXIST::FUNCTION:ENGINE -OPENSSL_LH_delete 4591 1_1_0d EXIST::FUNCTION: -UI_destroy_method 4592 1_1_0d EXIST::FUNCTION:UI -PKCS5_pbkdf2_set 4593 1_1_0d EXIST::FUNCTION: -ENGINE_register_complete 4594 1_1_0d EXIST::FUNCTION:ENGINE -CMAC_Init 4595 1_1_0d EXIST::FUNCTION:CMAC -PKCS7_ctrl 4596 1_1_0d EXIST::FUNCTION: -BN_GFP2_free 4597 1_1_0d EXIST::FUNCTION: -OCSP_response_get1_basic 4598 1_1_0d EXIST::FUNCTION:OCSP -TS_CONF_set_default_engine 4599 1_1_0d EXIST::FUNCTION:ENGINE,TS -PKCS7_content_new 4600 1_1_0d EXIST::FUNCTION: -SKF_CloseHandle 4601 1_1_0d EXIST::FUNCTION:SKF -PKCS7_SIGNER_INFO_get0_algs 4602 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_get_flags 4603 1_1_0d EXIST::FUNCTION: -PKCS7_ENVELOPE_new 4604 1_1_0d EXIST::FUNCTION: -OCSP_REQINFO_new 4605 1_1_0d EXIST::FUNCTION:OCSP -i2d_NETSCAPE_SPKI 4606 1_1_0d EXIST::FUNCTION: -ASN1_PCTX_get_flags 4607 1_1_0d EXIST::FUNCTION: -PEM_ASN1_write 4608 1_1_0d EXIST::FUNCTION:STDIO -BN_options 4609 1_1_0d EXIST::FUNCTION: -i2d_X509_CERT_AUX 4610 1_1_0d EXIST::FUNCTION: -X509_set1_notAfter 4611 1_1_0d EXIST::FUNCTION: -OPENSSL_init 4612 1_1_0d EXIST::FUNCTION: -X509_NAME_entry_count 4613 1_1_0d EXIST::FUNCTION: -X509_PUBKEY_get0_param 4614 1_1_0d EXIST::FUNCTION: -i2d_SM2CiphertextValue_fp 4615 1_1_0d EXIST::FUNCTION:SM2,STDIO -PKCS7_get_issuer_and_serial 4616 1_1_0d EXIST::FUNCTION: -ASYNC_init_thread 4617 1_1_0d EXIST::FUNCTION: -PEM_read_bio_DHparams 4618 1_1_0d EXIST::FUNCTION:DH -X509_STORE_CTX_get_get_crl 4619 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_i2d 4620 1_1_0d EXIST::FUNCTION:OCSP -BN_nist_mod_224 4621 1_1_0d EXIST::FUNCTION: -SCT_get_log_entry_type 4622 1_1_0d EXIST::FUNCTION:CT -ASN1_BIT_STRING_new 4623 1_1_0d EXIST::FUNCTION: -PEM_write_PrivateKey 4624 1_1_0d EXIST::FUNCTION:STDIO -RAND_status 4625 1_1_0d EXIST::FUNCTION: -X509_STORE_set_trust 4626 1_1_0d EXIST::FUNCTION: -X509_REQ_get_subject_name 4627 1_1_0d EXIST::FUNCTION: -OBJ_create 4628 1_1_0d EXIST::FUNCTION: -ASN1_STRING_copy 4629 1_1_0d EXIST::FUNCTION: -BN_is_prime 4630 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 -RIPEMD160_Init 4631 1_1_0d EXIST::FUNCTION:RMD160 -ENGINE_set_destroy_function 4632 1_1_0d EXIST::FUNCTION:ENGINE -EVP_PKEY_get0_RSA 4633 1_1_0d EXIST::FUNCTION:RSA -i2d_ASN1_UNIVERSALSTRING 4634 1_1_0d EXIST::FUNCTION: -NETSCAPE_SPKAC_free 4635 1_1_0d EXIST::FUNCTION: -i2d_X509_CRL_fp 4636 1_1_0d EXIST::FUNCTION:STDIO -EVP_PKEY_get0_EC_KEY 4637 1_1_0d EXIST::FUNCTION:EC -SDF_ExportEncPublicKey_ECC 4638 1_1_0d EXIST::FUNCTION: -PKCS7_get_signed_attribute 4639 1_1_0d EXIST::FUNCTION: -PaillierPrivateKey_it 4640 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER -PaillierPrivateKey_it 4640 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER -BN_GF2m_mod_exp_arr 4641 1_1_0d EXIST::FUNCTION:EC2M -BN_GF2m_mod_sqr_arr 4642 1_1_0d EXIST::FUNCTION:EC2M -EVP_des_ede3_cfb1 4643 1_1_0d EXIST::FUNCTION:DES -PBKDF2PARAM_it 4644 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -PBKDF2PARAM_it 4644 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -PKCS5_PBE_add 4645 1_1_0d EXIST::FUNCTION: -ENGINE_set_load_ssl_client_cert_function 4646 1_1_0d EXIST::FUNCTION:ENGINE -TS_STATUS_INFO_get0_failure_info 4647 1_1_0d EXIST::FUNCTION:TS -PKCS12_PBE_add 4648 1_1_0d EXIST::FUNCTION: -GENERAL_NAME_new 4649 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_new 4650 1_1_0d EXIST::FUNCTION: -ENGINE_load_ssl_client_cert 4651 1_1_0d EXIST::FUNCTION:ENGINE -PKCS8_PRIV_KEY_INFO_free 4652 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_set_keygen 4653 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_meth_free 4654 1_1_0d EXIST::FUNCTION: -BIO_meth_set_destroy 4655 1_1_0d EXIST::FUNCTION: -TS_TST_INFO_get_policy_id 4656 1_1_0d EXIST::FUNCTION:TS -OPENSSL_uni2utf8 4657 1_1_0d EXIST::FUNCTION: -ASN1_digest 4658 1_1_0d EXIST::FUNCTION: -TS_ACCURACY_get_millis 4659 1_1_0d EXIST::FUNCTION:TS -SAF_EccVerifySignByCert 4660 1_1_0d EXIST::FUNCTION: -ENGINE_by_id 4661 1_1_0d EXIST::FUNCTION:ENGINE -d2i_FpPoint 4662 1_1_0d EXIST::FUNCTION: -SDF_OpenDevice 4663 1_1_0d EXIST::FUNCTION: -BIO_debug_callback 4664 1_1_0d EXIST::FUNCTION: -ASN1_item_ex_new 4665 1_1_0d EXIST::FUNCTION: -PKCS7_ISSUER_AND_SERIAL_new 4666 1_1_0d EXIST::FUNCTION: -AES_cbc_encrypt 4667 1_1_0d EXIST::FUNCTION: -EVP_MD_meth_new 4668 1_1_0d EXIST::FUNCTION: -ERR_peek_error 4669 1_1_0d EXIST::FUNCTION: -CAST_ofb64_encrypt 4670 1_1_0d EXIST::FUNCTION:CAST -ESS_CERT_ID_free 4671 1_1_0d EXIST::FUNCTION:TS -i2d_PKCS7_RECIP_INFO 4672 1_1_0d EXIST::FUNCTION: -OCSP_request_sign 4673 1_1_0d EXIST::FUNCTION:OCSP -DSA_set0_pqg 4674 1_1_0d EXIST::FUNCTION:DSA -ASN1_d2i_bio 4675 1_1_0d EXIST::FUNCTION: -SCT_validate 4676 1_1_0d EXIST::FUNCTION:CT -DH_get_2048_256 4677 1_1_0d EXIST::FUNCTION:DH -WHIRLPOOL_Final 4678 1_1_0d EXIST::FUNCTION:WHIRLPOOL -DSA_free 4679 1_1_0d EXIST::FUNCTION:DSA -TS_REQ_dup 4680 1_1_0d EXIST::FUNCTION:TS -CRYPTO_xts128_encrypt 4681 1_1_0d EXIST::FUNCTION: -i2d_ASN1_UTCTIME 4682 1_1_0d EXIST::FUNCTION: -EVP_PKEY_meth_get0_info 4683 1_1_0d EXIST::FUNCTION: -EC_KEY_get_ECCrefPublicKey 4684 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -d2i_SM9MasterSecret 4685 1_1_0d EXIST::FUNCTION:SM9 -BIO_sock_error 4686 1_1_0d EXIST::FUNCTION:SOCK -X509_STORE_set_check_revocation 4687 1_1_0d EXIST::FUNCTION: -DSO_merge 4688 1_1_0d EXIST::FUNCTION: -SM2_KAP_final_check 4689 1_1_0d EXIST::FUNCTION:SM2 -SAF_RemoveRootCaCertificate 4690 1_1_0d EXIST::FUNCTION: -RSA_get_default_method 4691 1_1_0d EXIST::FUNCTION:RSA -TS_ACCURACY_set_seconds 4692 1_1_0d EXIST::FUNCTION:TS -EVP_md4 4693 1_1_0d EXIST::FUNCTION:MD4 -SAF_AddCaCertificate 4694 1_1_0d EXIST::FUNCTION: -ASN1_TBOOLEAN_it 4695 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -ASN1_TBOOLEAN_it 4695 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -DH_get0_engine 4696 1_1_0d EXIST::FUNCTION:DH -OPENSSL_LH_stats_bio 4697 1_1_0d EXIST::FUNCTION: -SKF_OpenApplication 4698 1_1_0d EXIST::FUNCTION:SKF -OCSP_ONEREQ_get_ext_by_NID 4699 1_1_0d EXIST::FUNCTION:OCSP -PEM_read_bio_SM9PublicParameters 4700 1_1_0d EXIST::FUNCTION:SM9 -ERR_load_TS_strings 4701 1_1_0d EXIST::FUNCTION:TS -EDIPARTYNAME_it 4702 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -EDIPARTYNAME_it 4702 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -NAME_CONSTRAINTS_new 4703 1_1_0d EXIST::FUNCTION: -ENGINE_set_default_ciphers 4704 1_1_0d EXIST::FUNCTION:ENGINE -ECDSA_SIG_new_from_ECCSignature 4705 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF -d2i_ASN1_OBJECT 4706 1_1_0d EXIST::FUNCTION: -UI_dup_input_string 4707 1_1_0d EXIST::FUNCTION:UI -SRP_VBASE_init 4708 1_1_0d EXIST::FUNCTION:SRP -BIO_set_callback_arg 4709 1_1_0d EXIST::FUNCTION: -d2i_TS_ACCURACY 4710 1_1_0d EXIST::FUNCTION:TS -X509_issuer_and_serial_cmp 4711 1_1_0d EXIST::FUNCTION: -X509_REVOKED_dup 4712 1_1_0d EXIST::FUNCTION: -OCSP_cert_status_str 4713 1_1_0d EXIST::FUNCTION:OCSP -OCSP_BASICRESP_get_ext_by_NID 4714 1_1_0d EXIST::FUNCTION:OCSP -AES_decrypt 4715 1_1_0d EXIST::FUNCTION: -BIO_get_callback 4716 1_1_0d EXIST::FUNCTION: -BN_set_negative 4717 1_1_0d EXIST::FUNCTION: -BFIBE_do_decrypt 4718 1_1_0d EXIST::FUNCTION:BFIBE -ZUC_128eia3_set_key 4719 1_1_0d EXIST::FUNCTION:ZUC -BIO_meth_get_write 4720 1_1_0d EXIST::FUNCTION: -TLS_FEATURE_new 4721 1_1_0d EXIST::FUNCTION: -SM9_extract_public_key 4722 1_1_0d EXIST::FUNCTION:SM9 -X509_email_free 4723 1_1_0d EXIST::FUNCTION: -PEM_read_PAILLIER_PUBKEY 4724 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO -SHA224 4725 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_free 4726 1_1_0d EXIST::FUNCTION: -PKCS12_add_localkeyid 4727 1_1_0d EXIST::FUNCTION: -OPENSSL_LH_insert 4728 1_1_0d EXIST::FUNCTION: -RAND_poll 4729 1_1_0d EXIST::FUNCTION: -EVP_rc5_32_12_16_ofb 4730 1_1_0d EXIST::FUNCTION:RC5 -EVP_PKEY_CTX_dup 4731 1_1_0d EXIST::FUNCTION: -i2s_ASN1_ENUMERATED_TABLE 4732 1_1_0d EXIST::FUNCTION: -ASN1_STRING_print 4733 1_1_0d EXIST::FUNCTION: -SXNET_new 4734 1_1_0d EXIST::FUNCTION: -OBJ_bsearch_ex_ 4735 1_1_0d EXIST::FUNCTION: -HMAC_Update 4736 1_1_0d EXIST::FUNCTION: -BFPublicParameters_it 4737 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE -BFPublicParameters_it 4737 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE -ASN1_PCTX_free 4738 1_1_0d EXIST::FUNCTION: -X509_REQ_to_X509 4739 1_1_0d EXIST::FUNCTION: -EVP_aes_256_wrap_pad 4740 1_1_0d EXIST::FUNCTION: -EC_POINT_hash2point 4741 1_1_0d EXIST::FUNCTION: -d2i_PKCS8PrivateKey_fp 4742 1_1_0d EXIST::FUNCTION:STDIO -EC_METHOD_get_field_type 4743 1_1_0d EXIST::FUNCTION:EC -i2a_ACCESS_DESCRIPTION 4744 1_1_0d EXIST::FUNCTION: -UI_get0_test_string 4745 1_1_0d EXIST::FUNCTION:UI -SM2_sign 4746 1_1_0d EXIST::FUNCTION:SM2 -CMS_verify 4747 1_1_0d EXIST::FUNCTION:CMS -X509_REVOKED_add_ext 4748 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_set_app_data 4749 1_1_0d EXIST::FUNCTION: -ASN1_SCTX_set_app_data 4750 1_1_0d EXIST::FUNCTION: -ASN1_UTCTIME_set 4751 1_1_0d EXIST::FUNCTION: -CMS_unsigned_get_attr_count 4752 1_1_0d EXIST::FUNCTION:CMS -CTLOG_new_from_base64 4753 1_1_0d EXIST::FUNCTION:CT -EVP_camellia_192_cfb128 4754 1_1_0d EXIST::FUNCTION:CAMELLIA -d2i_TS_REQ 4755 1_1_0d EXIST::FUNCTION:TS -SOF_ExportExchangeUserCert 4756 1_1_0d EXIST::FUNCTION: -BIO_fd_should_retry 4757 1_1_0d EXIST::FUNCTION: -EVP_PKEY_CTX_get_sgd 4758 1_1_0d EXIST::FUNCTION:GMAPI -BIO_dgram_non_fatal_error 4759 1_1_0d EXIST::FUNCTION:DGRAM -BN_consttime_swap 4760 1_1_0d EXIST::FUNCTION: -ERR_load_BIO_strings 4761 1_1_0d EXIST::FUNCTION: -EVP_aes_128_ocb 4762 1_1_0d EXIST::FUNCTION:OCB -SM2_do_sign 4763 1_1_0d EXIST::FUNCTION:SM2 -PEM_read_bio_X509 4764 1_1_0d EXIST::FUNCTION: -EVP_read_pw_string 4765 1_1_0d EXIST::FUNCTION:UI -AES_cfb128_encrypt 4766 1_1_0d EXIST::FUNCTION: -ECDSA_SIG_get_ECCSIGNATUREBLOB 4767 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF -i2d_PKCS7_ENVELOPE 4768 1_1_0d EXIST::FUNCTION: -X509_REQ_sign_ctx 4769 1_1_0d EXIST::FUNCTION: -PKCS7_add_attrib_content_type 4770 1_1_0d EXIST::FUNCTION: -PKCS7_SIGN_ENVELOPE_free 4771 1_1_0d EXIST::FUNCTION: -EC_KEY_get_flags 4772 1_1_0d EXIST::FUNCTION:EC -sm3_hmac_update 4773 1_1_0d EXIST::FUNCTION:SM3 -ENGINE_set_finish_function 4774 1_1_0d EXIST::FUNCTION:ENGINE -EC_GROUP_new_curve_GFp 4775 1_1_0d EXIST::FUNCTION:EC -d2i_OCSP_SIGNATURE 4776 1_1_0d EXIST::FUNCTION:OCSP -SRP_VBASE_get1_by_user 4777 1_1_0d EXIST::FUNCTION:SRP -X509_check_akid 4778 1_1_0d EXIST::FUNCTION: -ECPKPARAMETERS_new 4779 1_1_0d EXIST::FUNCTION:EC -ENGINE_set_default_EC 4780 1_1_0d EXIST::FUNCTION:ENGINE -X509_STORE_CTX_get0_chain 4781 1_1_0d EXIST::FUNCTION: -PEM_read_RSA_PUBKEY 4782 1_1_0d EXIST::FUNCTION:RSA,STDIO -i2d_ECDSA_SIG_fp 4783 1_1_0d EXIST::FUNCTION:EC,STDIO -SMIME_text 4784 1_1_0d EXIST::FUNCTION: -NAME_CONSTRAINTS_check 4785 1_1_0d EXIST::FUNCTION: -EVP_MD_do_all_sorted 4786 1_1_0d EXIST::FUNCTION: -CMS_RecipientInfo_kari_get0_reks 4787 1_1_0d EXIST::FUNCTION:CMS -BN_mul 4788 1_1_0d EXIST::FUNCTION: -EC_KEY_new_method 4789 1_1_0d EXIST::FUNCTION:EC -BIO_ADDRINFO_address 4790 1_1_0d EXIST::FUNCTION:SOCK -RSA_meth_get_bn_mod_exp 4791 1_1_0d EXIST::FUNCTION:RSA -EC_KEY_free 4792 1_1_0d EXIST::FUNCTION:EC -DHparams_print_fp 4793 1_1_0d EXIST::FUNCTION:DH,STDIO -PKCS12_SAFEBAG_get0_pkcs8 4794 1_1_0d EXIST::FUNCTION: -speck_set_decrypt_key64 4795 1_1_0d EXIST::FUNCTION:SPECK -X509_NAME_delete_entry 4796 1_1_0d EXIST::FUNCTION: -SM2CiphertextValue_get_ECCCIPHERBLOB 4797 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 -BIO_ADDR_hostname_string 4798 1_1_0d EXIST::FUNCTION:SOCK -ERR_error_string_n 4799 1_1_0d EXIST::FUNCTION: -POLICY_MAPPING_new 4800 1_1_0d EXIST::FUNCTION: -BN_mod_exp2_mont 4801 1_1_0d EXIST::FUNCTION: -SOF_VerifySignedMessage 4802 1_1_0d EXIST::FUNCTION: -ENGINE_register_all_RSA 4803 1_1_0d EXIST::FUNCTION:ENGINE -ASN1_PCTX_get_str_flags 4804 1_1_0d EXIST::FUNCTION: -d2i_RSA_PUBKEY 4805 1_1_0d EXIST::FUNCTION:RSA -DHparams_print 4806 1_1_0d EXIST::FUNCTION:DH -EC_KEY_clear_flags 4807 1_1_0d EXIST::FUNCTION:EC -X509_it 4808 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: -X509_it 4808 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: -EVP_CipherInit_ex 4809 1_1_0d EXIST::FUNCTION: -EVP_CIPHER_CTX_new 4810 1_1_0d EXIST::FUNCTION: -ENGINE_register_pkey_meths 4811 1_1_0d EXIST::FUNCTION:ENGINE -OCSP_REVOKEDINFO_new 4812 1_1_0d EXIST::FUNCTION:OCSP -ESS_SIGNING_CERT_free 4813 1_1_0d EXIST::FUNCTION:TS -BN_generate_dsa_nonce 4814 1_1_0d EXIST::FUNCTION: -SKF_PrintECCCipher 4815 1_1_0d EXIST::FUNCTION:SKF -i2d_PrivateKey_fp 4816 1_1_0d EXIST::FUNCTION:STDIO -ASIdentifierChoice_new 4817 1_1_0d EXIST::FUNCTION:RFC3779 -X509_STORE_get_check_issued 4818 1_1_0d EXIST::FUNCTION: -SM9Ciphertext_free 4819 1_1_0d EXIST::FUNCTION:SM9 -OCSP_resp_find 4820 1_1_0d EXIST::FUNCTION:OCSP -X509_VERIFY_PARAM_set_inh_flags 4821 1_1_0d EXIST::FUNCTION: -X509v3_addr_canonize 4822 1_1_0d EXIST::FUNCTION:RFC3779 -BB1CiphertextBlock_free 4823 1_1_0d EXIST::FUNCTION:BB1IBE -OBJ_txt2obj 4824 1_1_0d EXIST::FUNCTION: -EVP_aes_192_gcm 4825 1_1_0d EXIST::FUNCTION: -EVP_des_ede 4826 1_1_0d EXIST::FUNCTION:DES -PEM_read_bio_Parameters 4827 1_1_0d EXIST::FUNCTION: -EVP_des_ede_ofb 4828 1_1_0d EXIST::FUNCTION:DES -ECDSA_sign 4829 1_1_0d EXIST::FUNCTION:EC -X509at_delete_attr 4830 1_1_0d EXIST::FUNCTION: -BN_CTX_free 4831 1_1_0d EXIST::FUNCTION: -OCSP_REQ_CTX_get0_mem_bio 4832 1_1_0d EXIST::FUNCTION:OCSP -DH_meth_set_finish 4833 1_1_0d EXIST::FUNCTION:DH -ERR_get_next_error_library 4834 1_1_0d EXIST::FUNCTION: -ENGINE_ctrl_cmd_string 4835 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_object_size 2994 1_1_0d EXIST::FUNCTION: +NCONF_get_string 2995 1_1_0d EXIST::FUNCTION: +EVP_seed_cfb128 2996 1_1_0d EXIST::FUNCTION:SEED +POLICYQUALINFO_new 2997 1_1_0d EXIST::FUNCTION: +BN_get_word 2998 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_extract_private_key 2999 1_1_0d EXIST::FUNCTION:CPK +AES_cfb1_encrypt 3000 1_1_0d EXIST::FUNCTION: +i2d_TS_REQ 3001 1_1_0d EXIST::FUNCTION:TS +CPK_PUBLIC_PARAMS_extract_public_key 3002 1_1_0d EXIST::FUNCTION:CPK +sms4_ctr128_encrypt 3003 1_1_0d EXIST::FUNCTION:SMS4 +SAF_CreateSymmKeyObj 3004 1_1_0d EXIST::FUNCTION: +SOF_VerifySignedMessage 3005 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_exts 3006 1_1_0d EXIST::FUNCTION:TS +X509V3_EXT_print_fp 3007 1_1_0d EXIST::FUNCTION:STDIO +IPAddressChoice_new 3008 1_1_0d EXIST::FUNCTION:RFC3779 +BIO_s_null 3009 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_set1 3010 1_1_0d EXIST::FUNCTION: +SM9_unwrap_key 3011 1_1_0d EXIST::FUNCTION:SM9 +BN_dup 3012 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set_error_depth 3013 1_1_0d EXIST::FUNCTION: +X509_OBJECT_retrieve_by_subject 3014 1_1_0d EXIST::FUNCTION: +CRYPTO_ctr128_encrypt_ctr32 3015 1_1_0d EXIST::FUNCTION: +PKCS12_get_attr 3016 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +i2t_ASN1_OBJECT 3017 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_add_ext 3018 1_1_0d EXIST::FUNCTION:OCSP +X509_PURPOSE_get_trust 3019 1_1_0d EXIST::FUNCTION: +SDF_ExportSignPublicKey_RSA 3020 1_1_0d EXIST::FUNCTION: +i2d_ASN1_GENERALSTRING 3021 1_1_0d EXIST::FUNCTION: +d2i_PROXY_CERT_INFO_EXTENSION 3022 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_doall_arg 3023 1_1_0d EXIST::FUNCTION: +DH_get_default_method 3024 1_1_0d EXIST::FUNCTION:DH +Camellia_decrypt 3025 1_1_0d EXIST::FUNCTION:CAMELLIA +RSA_generate_key 3026 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,RSA +X509_CRL_get0_by_cert 3027 1_1_0d EXIST::FUNCTION: +BIO_new_dgram_sctp 3028 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +X509_STORE_CTX_set_time 3029 1_1_0d EXIST::FUNCTION: +AES_encrypt 3030 1_1_0d EXIST::FUNCTION: +X509_STORE_set_cert_crl 3031 1_1_0d EXIST::FUNCTION: +FpPoint_it 3032 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +FpPoint_it 3032 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +DH_check_params 3033 1_1_0d EXIST::FUNCTION:DH +SKF_UnloadLibrary 3034 1_1_0d EXIST::FUNCTION:SKF +SM2_do_decrypt 3035 1_1_0d EXIST::FUNCTION:SM2 +CRYPTO_mem_debug_push 3036 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +ENGINE_register_all_pkey_asn1_meths 3037 1_1_0d EXIST::FUNCTION:ENGINE +PEM_read_bio 3038 1_1_0d EXIST::FUNCTION: +X509_get0_tbs_sigalg 3039 1_1_0d EXIST::FUNCTION: +MDC2_Final 3040 1_1_0d EXIST::FUNCTION:MDC2 +EVP_idea_cfb64 3041 1_1_0d EXIST::FUNCTION:IDEA +X509_CERT_AUX_it 3042 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CERT_AUX_it 3042 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_METHOD_set_verify 3043 1_1_0d EXIST::FUNCTION:EC +ASN1_IA5STRING_new 3044 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_DH 3045 1_1_0d EXIST::FUNCTION:DH +SKF_RSAExportSessionKey 3046 1_1_0d EXIST::FUNCTION:SKF +X509_STORE_CTX_get0_store 3047 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set1_SM9 3048 1_1_0d EXIST::FUNCTION:SM9 +i2d_DSAPrivateKey_bio 3049 1_1_0d EXIST::FUNCTION:DSA +ERR_load_DSO_strings 3050 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_write_lock 3051 1_1_0d EXIST::FUNCTION: +DH_check_pub_key 3052 1_1_0d EXIST::FUNCTION:DH +ASN1_BIT_STRING_num_asc 3053 1_1_0d EXIST::FUNCTION: +SXNET_new 3054 1_1_0d EXIST::FUNCTION: +ASN1_STRING_new 3055 1_1_0d EXIST::FUNCTION: +OCSP_RESPONSE_it 3056 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPONSE_it 3056 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +BIO_meth_get_puts 3057 1_1_0d EXIST::FUNCTION: +d2i_X509_CERT_AUX 3058 1_1_0d EXIST::FUNCTION: +OPENSSL_config 3059 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +RSA_padding_check_PKCS1_OAEP 3060 1_1_0d EXIST::FUNCTION:RSA +SAF_EccVerifySign 3061 1_1_0d EXIST::FUNCTION: +BN_BLINDING_set_current_thread 3062 1_1_0d EXIST::FUNCTION: +CPK_PUBLIC_PARAMS_get_name 3063 1_1_0d EXIST::FUNCTION:CPK +BIO_meth_get_create 3064 1_1_0d EXIST::FUNCTION: +TS_REQ_add_ext 3065 1_1_0d EXIST::FUNCTION:TS +X509_get_ext_by_NID 3066 1_1_0d EXIST::FUNCTION: +BIO_nwrite0 3067 1_1_0d EXIST::FUNCTION: +X509_REQ_extension_nid 3068 1_1_0d EXIST::FUNCTION: +i2d_ISSUING_DIST_POINT 3069 1_1_0d EXIST::FUNCTION: +EVP_PKEY_paramgen 3070 1_1_0d EXIST::FUNCTION: +X509_CRL_get_ext 3071 1_1_0d EXIST::FUNCTION: +v2i_GENERAL_NAMES 3072 1_1_0d EXIST::FUNCTION: +BIO_method_type 3073 1_1_0d EXIST::FUNCTION: +CMS_EncryptedData_encrypt 3074 1_1_0d EXIST::FUNCTION:CMS +TXT_DB_get_by_index 3075 1_1_0d EXIST::FUNCTION: +d2i_TS_ACCURACY 3076 1_1_0d EXIST::FUNCTION:TS +OPENSSL_LH_error 3077 1_1_0d EXIST::FUNCTION: +CRYPTO_ofb128_encrypt 3078 1_1_0d EXIST::FUNCTION: +d2i_PUBKEY 3079 1_1_0d EXIST::FUNCTION: +OPENSSL_DIR_end 3080 1_1_0d EXIST::FUNCTION: +ASN1_UNIVERSALSTRING_to_string 3081 1_1_0d EXIST::FUNCTION: +PKCS7_stream 3082 1_1_0d EXIST::FUNCTION: +X509_STORE_unlock 3083 1_1_0d EXIST::FUNCTION: +CMS_get0_SignerInfos 3084 1_1_0d EXIST::FUNCTION:CMS +SCT_set_timestamp 3085 1_1_0d EXIST::FUNCTION:CT +SDF_PrintRSAPublicKey 3086 1_1_0d EXIST::FUNCTION:SDF +UI_get_input_flags 3087 1_1_0d EXIST::FUNCTION:UI +CONF_imodule_get_value 3088 1_1_0d EXIST::FUNCTION: +PEM_write_bio_CMS_stream 3089 1_1_0d EXIST::FUNCTION:CMS +Camellia_cfb128_encrypt 3090 1_1_0d EXIST::FUNCTION:CAMELLIA +PKCS12_set_mac 3091 1_1_0d EXIST::FUNCTION: +sms4_encrypt 3092 1_1_0d EXIST::FUNCTION:SMS4 +PEM_write_PKCS7 3093 1_1_0d EXIST::FUNCTION:STDIO +SDF_GenerateKeyWithECC 3094 1_1_0d EXIST::FUNCTION: +TS_REQ_get_ext_count 3095 1_1_0d EXIST::FUNCTION:TS +RAND_query_egd_bytes 3096 1_1_0d EXIST::FUNCTION:EGD +PKCS12_PBE_add 3097 1_1_0d EXIST::FUNCTION: +i2a_ASN1_ENUMERATED 3098 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithEPK_ECC 3099 1_1_0d EXIST::FUNCTION: +EVP_read_pw_string 3100 1_1_0d EXIST::FUNCTION:UI +BN_nist_mod_521 3101 1_1_0d EXIST::FUNCTION: +BIO_ctrl_get_read_request 3102 1_1_0d EXIST::FUNCTION: +BN_set_word 3103 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_free 3104 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_set1_DSA 3105 1_1_0d EXIST::FUNCTION:DSA +SKF_MacUpdate 3106 1_1_0d EXIST::FUNCTION:SKF +d2i_EC_PUBKEY_fp 3107 1_1_0d EXIST::FUNCTION:EC,STDIO +UI_method_get_reader 3108 1_1_0d EXIST::FUNCTION:UI +ECDSA_size 3109 1_1_0d EXIST::FUNCTION:EC +TXT_DB_read 3110 1_1_0d EXIST::FUNCTION: +CONF_get_number 3111 1_1_0d EXIST::FUNCTION: +X509_signature_dump 3112 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kekri_id_cmp 3113 1_1_0d EXIST::FUNCTION:CMS +SMIME_text 3114 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_get_ECCSignature 3115 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +ENGINE_register_all_RAND 3116 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_get0_DH 3117 1_1_0d EXIST::FUNCTION:DH +EVP_PKEY_missing_parameters 3118 1_1_0d EXIST::FUNCTION: +DSA_meth_get_finish 3119 1_1_0d EXIST::FUNCTION:DSA +ECPARAMETERS_it 3120 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC +ECPARAMETERS_it 3120 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC +EVP_camellia_128_cbc 3121 1_1_0d EXIST::FUNCTION:CAMELLIA +TS_REQ_get_nonce 3122 1_1_0d EXIST::FUNCTION:TS +OPENSSL_uni2utf8 3123 1_1_0d EXIST::FUNCTION: +OpenSSL_version 3124 1_1_0d EXIST::FUNCTION: +d2i_ASN1_PRINTABLESTRING 3125 1_1_0d EXIST::FUNCTION: +OCSP_RESPBYTES_it 3126 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPBYTES_it 3126 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +BB1MasterSecret_free 3127 1_1_0d EXIST::FUNCTION:BB1IBE +TS_TST_INFO_get_accuracy 3128 1_1_0d EXIST::FUNCTION:TS +EVP_des_ede3_cfb64 3129 1_1_0d EXIST::FUNCTION:DES +d2i_CPK_PUBLIC_PARAMS 3130 1_1_0d EXIST::FUNCTION:CPK +ASN1_ENUMERATED_get_int64 3131 1_1_0d EXIST::FUNCTION: +SKF_EnumContainer 3132 1_1_0d EXIST::FUNCTION:SKF +ESS_ISSUER_SERIAL_new 3133 1_1_0d EXIST::FUNCTION:TS +PEM_write_NETSCAPE_CERT_SEQUENCE 3134 1_1_0d EXIST::FUNCTION:STDIO +BN_dec2bn 3135 1_1_0d EXIST::FUNCTION: +X509_email_free 3136 1_1_0d EXIST::FUNCTION: +X509_STORE_get_check_policy 3137 1_1_0d EXIST::FUNCTION: +PKCS7_SIGN_ENVELOPE_new 3138 1_1_0d EXIST::FUNCTION: +CONF_set_default_method 3139 1_1_0d EXIST::FUNCTION: +SDF_NewECCCipher 3140 1_1_0d EXIST::FUNCTION:SDF +OCSP_ONEREQ_get1_ext_d2i 3141 1_1_0d EXIST::FUNCTION:OCSP +i2d_ASRange 3142 1_1_0d EXIST::FUNCTION:RFC3779 +i2d_ASN1_IA5STRING 3143 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kekri_get0_id 3144 1_1_0d EXIST::FUNCTION:CMS +d2i_BB1PublicParameters 3145 1_1_0d EXIST::FUNCTION:BB1IBE +TS_CONF_set_serial 3146 1_1_0d EXIST::FUNCTION:TS +i2d_NETSCAPE_SPKI 3147 1_1_0d EXIST::FUNCTION: +PAILLIER_up_ref 3148 1_1_0d EXIST::FUNCTION:PAILLIER +i2d_CPK_MASTER_SECRET 3149 1_1_0d EXIST::FUNCTION:CPK +X509v3_addr_add_prefix 3150 1_1_0d EXIST::FUNCTION:RFC3779 +X509_CINF_free 3151 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set 3152 1_1_0d EXIST::FUNCTION: +i2v_GENERAL_NAME 3153 1_1_0d EXIST::FUNCTION: +X509_STORE_set_check_crl 3154 1_1_0d EXIST::FUNCTION: +IDEA_cfb64_encrypt 3155 1_1_0d EXIST::FUNCTION:IDEA +BIO_get_accept_socket 3156 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +PBE2PARAM_free 3157 1_1_0d EXIST::FUNCTION: +BIO_new_file 3158 1_1_0d EXIST::FUNCTION: +BIO_vfree 3159 1_1_0d EXIST::FUNCTION: +BIO_sock_non_fatal_error 3160 1_1_0d EXIST::FUNCTION:SOCK +BN_get_flags 3161 1_1_0d EXIST::FUNCTION: +SCT_get_timestamp 3162 1_1_0d EXIST::FUNCTION:CT +EVP_CIPHER_set_asn1_iv 3163 1_1_0d EXIST::FUNCTION: +SCT_validate 3164 1_1_0d EXIST::FUNCTION:CT +TS_RESP_CTX_set_signer_digest 3165 1_1_0d EXIST::FUNCTION:TS +DSA_meth_free 3166 1_1_0d EXIST::FUNCTION:DSA +X509V3_EXT_get_nid 3167 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKAC_free 3168 1_1_0d EXIST::FUNCTION: +EVP_PKEY_set_type_str 3169 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_new_id 3170 1_1_0d EXIST::FUNCTION: +DSA_meth_get_verify 3171 1_1_0d EXIST::FUNCTION:DSA +SAF_Pkcs7_DecodeEnvelopedData 3172 1_1_0d EXIST::FUNCTION: +DSA_meth_set_keygen 3173 1_1_0d EXIST::FUNCTION:DSA +DH_meth_get_bn_mod_exp 3174 1_1_0d EXIST::FUNCTION:DH +Camellia_set_key 3175 1_1_0d EXIST::FUNCTION:CAMELLIA +UI_dup_info_string 3176 1_1_0d EXIST::FUNCTION:UI +SKF_ExtECCSign 3177 1_1_0d EXIST::FUNCTION:SKF +NETSCAPE_SPKI_get_pubkey 3178 1_1_0d EXIST::FUNCTION: +EC_GFp_mont_method 3179 1_1_0d EXIST::FUNCTION:EC +X509_STORE_set_check_policy 3180 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_decrypt 3181 1_1_0d EXIST::FUNCTION:CMS +TS_REQ_get_ext_d2i 3182 1_1_0d EXIST::FUNCTION:TS +d2i_PKCS7_RECIP_INFO 3183 1_1_0d EXIST::FUNCTION: +SM9_encrypt 3184 1_1_0d EXIST::FUNCTION:SM9 +EC_GROUP_set_curve_GFp 3185 1_1_0d EXIST::FUNCTION:EC +X509_ATTRIBUTE_get0_object 3186 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_delete 3187 1_1_0d EXIST::FUNCTION: +BN_BLINDING_invert 3188 1_1_0d EXIST::FUNCTION: +DES_fcrypt 3189 1_1_0d EXIST::FUNCTION:DES +DHparams_print 3190 1_1_0d EXIST::FUNCTION:DH +DES_ede3_cfb_encrypt 3191 1_1_0d EXIST::FUNCTION:DES +CMS_RecipientInfo_kari_get0_orig_id 3192 1_1_0d EXIST::FUNCTION:CMS +d2i_SM9Ciphertext 3193 1_1_0d EXIST::FUNCTION:SM9 +i2d_SM2CiphertextValue 3194 1_1_0d EXIST::FUNCTION:SM2 +OPENSSL_sk_insert 3195 1_1_0d EXIST::FUNCTION: +DSO_merge 3196 1_1_0d EXIST::FUNCTION: +BIO_ctrl 3197 1_1_0d EXIST::FUNCTION: +CMS_signed_get_attr 3198 1_1_0d EXIST::FUNCTION:CMS +PKCS7_get_attribute 3199 1_1_0d EXIST::FUNCTION: +EVP_PKEY_verify_init 3200 1_1_0d EXIST::FUNCTION: +BFMasterSecret_free 3201 1_1_0d EXIST::FUNCTION:BFIBE +HMAC_CTX_copy 3202 1_1_0d EXIST::FUNCTION: +i2d_SM2CiphertextValue_fp 3203 1_1_0d EXIST::FUNCTION:SM2,STDIO +UI_construct_prompt 3204 1_1_0d EXIST::FUNCTION:UI +SKF_PrintECCCipher 3205 1_1_0d EXIST::FUNCTION:SKF +SRP_Calc_server_key 3206 1_1_0d EXIST::FUNCTION:SRP +EVP_md4 3207 1_1_0d EXIST::FUNCTION:MD4 +CMS_signed_add1_attr_by_txt 3208 1_1_0d EXIST::FUNCTION:CMS +SHA1_Transform 3209 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_nbio_d2i 3210 1_1_0d EXIST::FUNCTION:OCSP +BN_GFP2_equ 3211 1_1_0d EXIST::FUNCTION: +EVP_MD_get_sgd 3212 1_1_0d EXIST::FUNCTION:GMAPI +OCSP_single_get0_status 3213 1_1_0d EXIST::FUNCTION:OCSP +i2d_DISPLAYTEXT 3214 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_set_ECCSIGNATUREBLOB 3215 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +EVP_PKEY_get0_asn1 3216 1_1_0d EXIST::FUNCTION: +PAILLIER_size 3217 1_1_0d EXIST::FUNCTION:PAILLIER +BN_mod_exp 3218 1_1_0d EXIST::FUNCTION: +BN_bn2lebinpad 3219 1_1_0d EXIST::FUNCTION: +ASN1_TIME_diff 3220 1_1_0d EXIST::FUNCTION: +X509_issuer_and_serial_cmp 3221 1_1_0d EXIST::FUNCTION: +DSA_meth_set_finish 3222 1_1_0d EXIST::FUNCTION:DSA +BIO_ctrl_get_write_guarantee 3223 1_1_0d EXIST::FUNCTION: +EC_KEY_set_default_sm_method 3224 1_1_0d EXIST::FUNCTION:SM2 +X509_VERIFY_PARAM_add0_table 3225 1_1_0d EXIST::FUNCTION: +RSA_get0_factors 3226 1_1_0d EXIST::FUNCTION:RSA +CONF_imodule_get_name 3227 1_1_0d EXIST::FUNCTION: +BIGNUM_it 3228 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +BIGNUM_it 3228 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OPENSSL_buf2hexstr 3229 1_1_0d EXIST::FUNCTION: +d2i_RSAPrivateKey_fp 3230 1_1_0d EXIST::FUNCTION:RSA,STDIO +d2i_NETSCAPE_CERT_SEQUENCE 3231 1_1_0d EXIST::FUNCTION: +CTLOG_get0_public_key 3232 1_1_0d EXIST::FUNCTION:CT +EC_GROUP_new_type1curve 3233 1_1_0d EXIST::FUNCTION: +ENGINE_get_RAND 3234 1_1_0d EXIST::FUNCTION:ENGINE +ASIdOrRange_it 3235 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASIdOrRange_it 3235 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +ENGINE_set_default_pkey_meths 3236 1_1_0d EXIST::FUNCTION:ENGINE +X509_VERIFY_PARAM_inherit 3237 1_1_0d EXIST::FUNCTION: +ASN1_sign 3238 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_set_string 3239 1_1_0d EXIST::FUNCTION: +ASN1_STRING_type 3240 1_1_0d EXIST::FUNCTION: +OBJ_bsearch_ 3241 1_1_0d EXIST::FUNCTION: +NCONF_load_fp 3242 1_1_0d EXIST::FUNCTION:STDIO +BB1CiphertextBlock_new 3243 1_1_0d EXIST::FUNCTION:BB1IBE +PEM_write_bio_SM9_PUBKEY 3244 1_1_0d EXIST::FUNCTION:SM9 +EVP_PKEY_asn1_get0_info 3245 1_1_0d EXIST::FUNCTION: +BIO_push 3246 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_set_seconds 3247 1_1_0d EXIST::FUNCTION:TS +ERR_unload_strings 3248 1_1_0d EXIST::FUNCTION: +BN_bin2bn 3249 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_sqr_arr 3250 1_1_0d EXIST::FUNCTION:EC2M +X509_VERIFY_PARAM_set_trust 3251 1_1_0d EXIST::FUNCTION: +BIO_fd_should_retry 3252 1_1_0d EXIST::FUNCTION: +BN_usub 3253 1_1_0d EXIST::FUNCTION: +BF_ofb64_encrypt 3254 1_1_0d EXIST::FUNCTION:BF +DSA_up_ref 3255 1_1_0d EXIST::FUNCTION:DSA +OBJ_sn2nid 3256 1_1_0d EXIST::FUNCTION: +X509V3_get_string 3257 1_1_0d EXIST::FUNCTION: +DH_meth_get0_app_data 3258 1_1_0d EXIST::FUNCTION:DH +SKF_ImportECCKeyPair 3259 1_1_0d EXIST::FUNCTION:SKF +i2d_ASN1_UTCTIME 3260 1_1_0d EXIST::FUNCTION: +CRYPTO_xts128_encrypt 3261 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_it 3262 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_PUBKEY_it 3262 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_security_bits 3263 1_1_0d EXIST::FUNCTION: +i2d_OCSP_RESPONSE 3264 1_1_0d EXIST::FUNCTION:OCSP +PEM_read_bio_X509_CRL 3265 1_1_0d EXIST::FUNCTION: +OBJ_obj2txt 3266 1_1_0d EXIST::FUNCTION: +UI_set_result 3267 1_1_0d EXIST::FUNCTION:UI +X509_TRUST_get_flags 3268 1_1_0d EXIST::FUNCTION: +ENGINE_set_finish_function 3269 1_1_0d EXIST::FUNCTION:ENGINE +X509_OBJECT_retrieve_match 3270 1_1_0d EXIST::FUNCTION: +X509v3_asid_add_inherit 3271 1_1_0d EXIST::FUNCTION:RFC3779 +X509_TRUST_set 3272 1_1_0d EXIST::FUNCTION: +BN_mod_exp_mont_consttime 3273 1_1_0d EXIST::FUNCTION: +BIO_ADDR_new 3274 1_1_0d EXIST::FUNCTION:SOCK +X509_CRL_get_nextUpdate 3275 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +i2d_PKCS8PrivateKeyInfo_bio 3276 1_1_0d EXIST::FUNCTION: +serpent_encrypt 3277 1_1_0d EXIST::FUNCTION:SERPENT +ASN1_SCTX_new 3278 1_1_0d EXIST::FUNCTION: +EC_POINT_make_affine 3279 1_1_0d EXIST::FUNCTION:EC +EVP_PKEY_new_mac_key 3280 1_1_0d EXIST::FUNCTION: +CMS_unsigned_get_attr_by_NID 3281 1_1_0d EXIST::FUNCTION:CMS +EC_POINT_get_affine_coordinates_GF2m 3282 1_1_0d EXIST::FUNCTION:EC,EC2M +SDF_ExchangeDigitEnvelopeBaseOnRSA 3283 1_1_0d EXIST::FUNCTION: +CMS_EncryptedData_decrypt 3284 1_1_0d EXIST::FUNCTION:CMS +EC_KEY_METHOD_new 3285 1_1_0d EXIST::FUNCTION:EC +SAF_CreateHashObj 3286 1_1_0d EXIST::FUNCTION: +EVP_rc4_hmac_md5 3287 1_1_0d EXIST::FUNCTION:MD5,RC4 +EVP_rc5_32_12_16_cbc 3288 1_1_0d EXIST::FUNCTION:RC5 +BIO_hex_string 3289 1_1_0d EXIST::FUNCTION: +EC_POINT_free 3290 1_1_0d EXIST::FUNCTION:EC +UI_dup_error_string 3291 1_1_0d EXIST::FUNCTION:UI +v2i_GENERAL_NAME_ex 3292 1_1_0d EXIST::FUNCTION: +ASN1_UNIVERSALSTRING_free 3293 1_1_0d EXIST::FUNCTION: +DSA_get0_key 3294 1_1_0d EXIST::FUNCTION:DSA +CRYPTO_ocb128_decrypt 3295 1_1_0d EXIST::FUNCTION:OCB +ERR_load_PEM_strings 3296 1_1_0d EXIST::FUNCTION: +d2i_TS_MSG_IMPRINT 3297 1_1_0d EXIST::FUNCTION:TS +EVP_MD_meth_set_ctrl 3298 1_1_0d EXIST::FUNCTION: +BIO_set_callback 3299 1_1_0d EXIST::FUNCTION: +SKF_GenRandom 3300 1_1_0d EXIST::FUNCTION:SKF +BIO_s_file 3301 1_1_0d EXIST::FUNCTION: +EVP_PKEY_asn1_set_public 3302 1_1_0d EXIST::FUNCTION: +X509_STORE_set_depth 3303 1_1_0d EXIST::FUNCTION: +CRYPTO_ccm128_init 3304 1_1_0d EXIST::FUNCTION: +DSA_meth_set_verify 3305 1_1_0d EXIST::FUNCTION:DSA +BIO_snprintf 3306 1_1_0d EXIST::FUNCTION: +PKCS5_pbe2_set_scrypt 3307 1_1_0d EXIST::FUNCTION:SCRYPT +X509_STORE_CTX_get1_certs 3308 1_1_0d EXIST::FUNCTION: +d2i_SM9Signature_bio 3309 1_1_0d EXIST::FUNCTION:SM9 +X509_issuer_name_cmp 3310 1_1_0d EXIST::FUNCTION: +PEM_X509_INFO_write_bio 3311 1_1_0d EXIST::FUNCTION: +d2i_X509_NAME 3312 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext 3313 1_1_0d EXIST::FUNCTION:OCSP +OPENSSL_sk_find 3314 1_1_0d EXIST::FUNCTION: +X509_CRL_add_ext 3315 1_1_0d EXIST::FUNCTION: +EVP_aes_128_ocb 3316 1_1_0d EXIST::FUNCTION:OCB +X509_NAME_dup 3317 1_1_0d EXIST::FUNCTION: +COMP_CTX_get_type 3318 1_1_0d EXIST::FUNCTION:COMP +POLICY_CONSTRAINTS_free 3319 1_1_0d EXIST::FUNCTION: +a2i_GENERAL_NAME 3320 1_1_0d EXIST::FUNCTION: +BN_cmp 3321 1_1_0d EXIST::FUNCTION: +BN_MONT_CTX_free 3322 1_1_0d EXIST::FUNCTION: +d2i_SM9Signature 3323 1_1_0d EXIST::FUNCTION:SM9 +i2d_X509_fp 3324 1_1_0d EXIST::FUNCTION:STDIO +EVP_sha256 3325 1_1_0d EXIST::FUNCTION: +ECDH_compute_key 3326 1_1_0d EXIST::FUNCTION:EC +DSA_set_flags 3327 1_1_0d EXIST::FUNCTION:DSA +PEM_write_bio 3328 1_1_0d EXIST::FUNCTION: +EC_POINT_clear_free 3329 1_1_0d EXIST::FUNCTION:EC +d2i_X509_NAME_ENTRY 3330 1_1_0d EXIST::FUNCTION: +OBJ_find_sigid_by_algs 3331 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ordering 3332 1_1_0d EXIST::FUNCTION:TS +CAST_ofb64_encrypt 3333 1_1_0d EXIST::FUNCTION:CAST +DH_get_length 3334 1_1_0d EXIST::FUNCTION:DH +TS_ACCURACY_set_millis 3335 1_1_0d EXIST::FUNCTION:TS +SDF_GetDeviceInfo 3336 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SM9MasterSecret 3337 1_1_0d EXIST::FUNCTION:SM9 +EC_KEY_new_from_ECCrefPrivateKey 3338 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +MD5 3339 1_1_0d EXIST::FUNCTION:MD5 +DH_meth_free 3340 1_1_0d EXIST::FUNCTION:DH +SAF_EccSign 3341 1_1_0d EXIST::FUNCTION: +TS_CONF_set_signer_digest 3342 1_1_0d EXIST::FUNCTION:TS +PKCS7_set_content 3343 1_1_0d EXIST::FUNCTION: +PEM_write_bio_ECPKParameters 3344 1_1_0d EXIST::FUNCTION:EC +X509_NAME_get_text_by_OBJ 3345 1_1_0d EXIST::FUNCTION: +UI_method_set_flusher 3346 1_1_0d EXIST::FUNCTION:UI +BN_mod_add_quick 3347 1_1_0d EXIST::FUNCTION: +X509_check_purpose 3348 1_1_0d EXIST::FUNCTION: +SKF_ExtECCDecrypt 3349 1_1_0d EXIST::FUNCTION:SKF +BN_GF2m_mod_sqrt 3350 1_1_0d EXIST::FUNCTION:EC2M +EC_GROUP_check 3351 1_1_0d EXIST::FUNCTION:EC +PEM_X509_INFO_read_bio 3352 1_1_0d EXIST::FUNCTION: +BIO_ADDRINFO_socktype 3353 1_1_0d EXIST::FUNCTION:SOCK +i2d_SM9_PUBKEY 3354 1_1_0d EXIST::FUNCTION:SM9 +PKCS7_ctrl 3355 1_1_0d EXIST::FUNCTION: +EC_POINT_cmp 3356 1_1_0d EXIST::FUNCTION:EC +CMS_SignerInfo_get0_signature 3357 1_1_0d EXIST::FUNCTION:CMS +POLICY_MAPPINGS_it 3358 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICY_MAPPINGS_it 3358 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SOF_ChangePassWd 3359 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_kari_set0_pkey 3360 1_1_0d EXIST::FUNCTION:CMS +d2i_PKCS12_SAFEBAG 3361 1_1_0d EXIST::FUNCTION: +X509V3_set_conf_lhash 3362 1_1_0d EXIST::FUNCTION: +BIO_s_datagram_sctp 3363 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +EC_GROUP_copy 3364 1_1_0d EXIST::FUNCTION:EC +SAF_SM2_EncodeSignedAndEnvelopedData 3365 1_1_0d EXIST::FUNCTION: +X509_NAME_add_entry_by_OBJ 3366 1_1_0d EXIST::FUNCTION: +i2d_X509_VAL 3367 1_1_0d EXIST::FUNCTION: +X509_REVOKED_add1_ext_i2d 3368 1_1_0d EXIST::FUNCTION: +ENGINE_register_all_ciphers 3369 1_1_0d EXIST::FUNCTION:ENGINE +SHA1_Update 3370 1_1_0d EXIST::FUNCTION: +i2d_IPAddressFamily 3371 1_1_0d EXIST::FUNCTION:RFC3779 +BN_get_rfc3526_prime_4096 3372 1_1_0d EXIST::FUNCTION: +X509_get_ext_count 3373 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_get_app_data 3374 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_free 3375 1_1_0d EXIST::FUNCTION: +DH_new_method 3376 1_1_0d EXIST::FUNCTION:DH +EVP_PKEY_get1_EC_KEY 3377 1_1_0d EXIST::FUNCTION:EC +i2d_DSAPublicKey 3378 1_1_0d EXIST::FUNCTION:DSA +EVP_PKEY_meth_copy 3379 1_1_0d EXIST::FUNCTION: +CMS_add1_ReceiptRequest 3380 1_1_0d EXIST::FUNCTION:CMS +ASN1_SCTX_get_flags 3381 1_1_0d EXIST::FUNCTION: +PEM_read_bio_DSAparams 3382 1_1_0d EXIST::FUNCTION:DSA +ENGINE_set_table_flags 3383 1_1_0d EXIST::FUNCTION:ENGINE +i2d_RSA_PUBKEY_fp 3384 1_1_0d EXIST::FUNCTION:RSA,STDIO +SCT_LIST_validate 3385 1_1_0d EXIST::FUNCTION:CT +X509_REQ_add1_attr_by_txt 3386 1_1_0d EXIST::FUNCTION: +OCSP_RESPONSE_new 3387 1_1_0d EXIST::FUNCTION:OCSP +i2s_ASN1_INTEGER 3388 1_1_0d EXIST::FUNCTION: +OBJ_dup 3389 1_1_0d EXIST::FUNCTION: +OCSP_resp_find_status 3390 1_1_0d EXIST::FUNCTION:OCSP +X509_delete_ext 3391 1_1_0d EXIST::FUNCTION: +i2d_re_X509_CRL_tbs 3392 1_1_0d EXIST::FUNCTION: +ASN1_ENUMERATED_free 3393 1_1_0d EXIST::FUNCTION: +SKF_PrintECCPrivateKey 3394 1_1_0d EXIST::FUNCTION:SKF +DSA_set0_pqg 3395 1_1_0d EXIST::FUNCTION:DSA +SOF_SignFile 3396 1_1_0d EXIST::FUNCTION: +BN_RECP_CTX_free 3397 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get1_crls 3398 1_1_0d EXIST::FUNCTION: +ENGINE_get_default_RAND 3399 1_1_0d EXIST::FUNCTION:ENGINE +SAF_HashUpdate 3400 1_1_0d EXIST::FUNCTION: +d2i_DISPLAYTEXT 3401 1_1_0d EXIST::FUNCTION: +X509_REQ_get_version 3402 1_1_0d EXIST::FUNCTION: +RSA_private_decrypt 3403 1_1_0d EXIST::FUNCTION:RSA +i2v_ASN1_BIT_STRING 3404 1_1_0d EXIST::FUNCTION: +PKCS5_pbe_set0_algor 3405 1_1_0d EXIST::FUNCTION: +OCSP_request_verify 3406 1_1_0d EXIST::FUNCTION:OCSP +d2i_OCSP_SIGNATURE 3407 1_1_0d EXIST::FUNCTION:OCSP +BN_get0_nist_prime_192 3408 1_1_0d EXIST::FUNCTION: +d2i_BFPublicParameters 3409 1_1_0d EXIST::FUNCTION:BFIBE +BN_GENCB_call 3410 1_1_0d EXIST::FUNCTION: +RSA_meth_get_pub_enc 3411 1_1_0d EXIST::FUNCTION:RSA +ENGINE_ctrl_cmd_string 3412 1_1_0d EXIST::FUNCTION:ENGINE +ASYNC_init_thread 3413 1_1_0d EXIST::FUNCTION: +X509_get_proxy_pathlen 3414 1_1_0d EXIST::FUNCTION: +EVP_set_pw_prompt 3415 1_1_0d EXIST::FUNCTION:UI +BIO_f_buffer 3416 1_1_0d EXIST::FUNCTION: +Camellia_encrypt 3417 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_MD_CTX_copy 3418 1_1_0d EXIST::FUNCTION: +X509_set_ex_data 3419 1_1_0d EXIST::FUNCTION: +TS_MSG_IMPRINT_free 3420 1_1_0d EXIST::FUNCTION:TS +PKCS7_ISSUER_AND_SERIAL_digest 3421 1_1_0d EXIST::FUNCTION: +BIO_socket_ioctl 3422 1_1_0d EXIST::FUNCTION:SOCK +PKCS12_decrypt_skey 3423 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_fp 3424 1_1_0d EXIST::FUNCTION:STDIO +X509_ATTRIBUTE_get0_type 3425 1_1_0d EXIST::FUNCTION: +PKCS12_it 3426 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS12_it 3426 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_CIPHER_get_sgd 3427 1_1_0d EXIST::FUNCTION:GMAPI +d2i_X509_CINF 3428 1_1_0d EXIST::FUNCTION: +RAND_set_rand_engine 3429 1_1_0d EXIST::FUNCTION:ENGINE +X509_EXTENSION_get_critical 3430 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_finish 3431 1_1_0d EXIST::FUNCTION:OCB +i2d_RSAPublicKey_bio 3432 1_1_0d EXIST::FUNCTION:RSA +ASIdentifiers_it 3433 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASIdentifiers_it 3433 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +EVP_PKEY_asn1_add0 3434 1_1_0d EXIST::FUNCTION: +ASN1_PRINTABLESTRING_it 3435 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_PRINTABLESTRING_it 3435 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OPENSSL_LH_stats_bio 3436 1_1_0d EXIST::FUNCTION: +RAND_bytes 3437 1_1_0d EXIST::FUNCTION: +ECPARAMETERS_free 3438 1_1_0d EXIST::FUNCTION:EC +TS_OBJ_print_bio 3439 1_1_0d EXIST::FUNCTION:TS +X509_get0_signature 3440 1_1_0d EXIST::FUNCTION: +PKCS12_MAC_DATA_new 3441 1_1_0d EXIST::FUNCTION: +ECIES_decrypt 3442 1_1_0d EXIST::FUNCTION:ECIES +ERR_load_OTP_strings 3443 1_1_0d EXIST::FUNCTION:OTP +RC4_options 3444 1_1_0d EXIST::FUNCTION:RC4 +EVP_MD_CTX_test_flags 3445 1_1_0d EXIST::FUNCTION: +ECIES_PARAMS_init_with_recommended 3446 1_1_0d EXIST::FUNCTION:ECIES +d2i_SM2CiphertextValue_bio 3447 1_1_0d EXIST::FUNCTION:SM2 +RSA_meth_set_init 3448 1_1_0d EXIST::FUNCTION:RSA +ENGINE_finish 3449 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_meth_set_sign 3450 1_1_0d EXIST::FUNCTION: +SOF_ExportExchangeUserCert 3451 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_set 3452 1_1_0d EXIST::FUNCTION: +X509V3_EXT_CRL_add_nconf 3453 1_1_0d EXIST::FUNCTION: +DH_generate_parameters 3454 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DH +d2i_PKCS12_BAGS 3455 1_1_0d EXIST::FUNCTION: +OCSP_RESPDATA_it 3456 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_RESPDATA_it 3456 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +d2i_RSA_PUBKEY_fp 3457 1_1_0d EXIST::FUNCTION:RSA,STDIO +COMP_expand_block 3458 1_1_0d EXIST::FUNCTION:COMP +X509_CRL_check_suiteb 3459 1_1_0d EXIST::FUNCTION: +d2i_DSAPrivateKey_bio 3460 1_1_0d EXIST::FUNCTION:DSA +X509_REQ_get_extension_nids 3461 1_1_0d EXIST::FUNCTION: +SAF_SymmDecrypt 3462 1_1_0d EXIST::FUNCTION: +PEM_write_bio_SM9MasterSecret 3463 1_1_0d EXIST::FUNCTION:SM9 +SKF_GenerateKeyWithECC 3464 1_1_0d EXIST::FUNCTION:SKF +X509_subject_name_hash_old 3465 1_1_0d EXIST::FUNCTION:MD5 +BN_mod_mul_montgomery 3466 1_1_0d EXIST::FUNCTION: +TS_RESP_create_response 3467 1_1_0d EXIST::FUNCTION:TS +RSA_verify_ASN1_OCTET_STRING 3468 1_1_0d EXIST::FUNCTION:RSA +X509v3_get_ext_by_NID 3469 1_1_0d EXIST::FUNCTION: +BN_mul_word 3470 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_run_once 3471 1_1_0d EXIST::FUNCTION: +PEM_ASN1_write_bio 3472 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get0_current_crl 3473 1_1_0d EXIST::FUNCTION: +i2d_PKCS12_bio 3474 1_1_0d EXIST::FUNCTION: +BN_GFP2_one 3475 1_1_0d EXIST::FUNCTION: +PEM_read_bio_PaillierPublicKey 3476 1_1_0d EXIST::FUNCTION:PAILLIER +ASN1_TYPE_set 3477 1_1_0d EXIST::FUNCTION: +ZUC_set_key 3478 1_1_0d EXIST::FUNCTION:ZUC +ASN1_add_stable_module 3479 1_1_0d EXIST::FUNCTION: +PKCS12_item_pack_safebag 3480 1_1_0d EXIST::FUNCTION: +d2i_SXNETID 3481 1_1_0d EXIST::FUNCTION: +GENERAL_NAME_cmp 3482 1_1_0d EXIST::FUNCTION: +EVP_BytesToKey 3483 1_1_0d EXIST::FUNCTION: +PEM_read_RSAPublicKey 3484 1_1_0d EXIST::FUNCTION:RSA,STDIO +OCSP_RESPID_set_by_name 3485 1_1_0d EXIST::FUNCTION:OCSP +X509_policy_level_get0_node 3486 1_1_0d EXIST::FUNCTION: +SAF_GetExtTypeInfo 3487 1_1_0d EXIST::FUNCTION: +BB1IBE_do_encrypt 3488 1_1_0d EXIST::FUNCTION:BB1IBE +DSA_SIG_get0 3489 1_1_0d EXIST::FUNCTION:DSA +EVP_aes_192_cfb8 3490 1_1_0d EXIST::FUNCTION: +Camellia_cbc_encrypt 3491 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_aes_256_ecb 3492 1_1_0d EXIST::FUNCTION: +EVP_aes_256_wrap_pad 3493 1_1_0d EXIST::FUNCTION: +d2i_SM9MasterSecret_fp 3494 1_1_0d EXIST::FUNCTION:SM9,STDIO +ENGINE_register_digests 3495 1_1_0d EXIST::FUNCTION:ENGINE +CMS_signed_delete_attr 3496 1_1_0d EXIST::FUNCTION:CMS +X509_STORE_CTX_get_lookup_certs 3497 1_1_0d EXIST::FUNCTION: +d2i_PKCS12_bio 3498 1_1_0d EXIST::FUNCTION: +PKCS7_ENVELOPE_new 3499 1_1_0d EXIST::FUNCTION: +PKCS7_ATTR_SIGN_it 3500 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ATTR_SIGN_it 3500 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +TS_CONF_set_certs 3501 1_1_0d EXIST::FUNCTION:TS +SAF_VerifyCertificate 3502 1_1_0d EXIST::FUNCTION: +RSA_get0_crt_params 3503 1_1_0d EXIST::FUNCTION:RSA +NCONF_free 3504 1_1_0d EXIST::FUNCTION: +ASN1_tag2bit 3505 1_1_0d EXIST::FUNCTION: +X509v3_asid_subset 3506 1_1_0d EXIST::FUNCTION:RFC3779 +CPK_PUBLIC_PARAMS_it 3507 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CPK +CPK_PUBLIC_PARAMS_it 3507 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CPK +X509v3_addr_add_range 3508 1_1_0d EXIST::FUNCTION:RFC3779 +CRYPTO_nistcts128_encrypt 3509 1_1_0d EXIST::FUNCTION: +CRYPTO_nistcts128_decrypt 3510 1_1_0d EXIST::FUNCTION: +PEM_write_bio_NETSCAPE_CERT_SEQUENCE 3511 1_1_0d EXIST::FUNCTION: +BFIBE_encrypt 3512 1_1_0d EXIST::FUNCTION:BFIBE +TS_REQ_ext_free 3513 1_1_0d EXIST::FUNCTION:TS +d2i_AUTHORITY_INFO_ACCESS 3514 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_EC 3515 1_1_0d EXIST::FUNCTION:ENGINE +CMS_unsigned_get_attr 3516 1_1_0d EXIST::FUNCTION:CMS +DSO_pathbyaddr 3517 1_1_0d EXIST::FUNCTION: +RSA_new_from_RSAPUBLICKEYBLOB 3518 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +RSA_print_fp 3519 1_1_0d EXIST::FUNCTION:RSA,STDIO +RSAPrivateKey_it 3520 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSAPrivateKey_it 3520 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +OBJ_bsearch_ex_ 3521 1_1_0d EXIST::FUNCTION: +d2i_ECPrivateKey 3522 1_1_0d EXIST::FUNCTION:EC +d2i_AutoPrivateKey 3523 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_new 3524 1_1_0d EXIST::FUNCTION: +ERR_peek_last_error 3525 1_1_0d EXIST::FUNCTION: +CMS_signed_get_attr_count 3526 1_1_0d EXIST::FUNCTION:CMS +CRYPTO_gcm128_new 3527 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_nm_flags 3528 1_1_0d EXIST::FUNCTION: +CRYPTO_secure_used 3529 1_1_0d EXIST::FUNCTION: +OCSP_REQ_CTX_free 3530 1_1_0d EXIST::FUNCTION:OCSP +ASN1_i2d_fp 3531 1_1_0d EXIST::FUNCTION:STDIO +ECPKPARAMETERS_it 3532 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:EC +ECPKPARAMETERS_it 3532 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:EC +ECIES_CIPHERTEXT_VALUE_set_ECCCipher 3533 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF +ASN1_SCTX_get_template 3534 1_1_0d EXIST::FUNCTION: +ASN1_ENUMERATED_to_BN 3535 1_1_0d EXIST::FUNCTION: +d2i_ASN1_UTCTIME 3536 1_1_0d EXIST::FUNCTION: +SOF_GetLastError 3537 1_1_0d EXIST::FUNCTION: +EC_GROUP_set_seed 3538 1_1_0d EXIST::FUNCTION:EC +SKF_Encrypt 3539 1_1_0d EXIST::FUNCTION:SKF +CRYPTO_cfb128_8_encrypt 3540 1_1_0d EXIST::FUNCTION: +CMS_RecipientInfo_set0_password 3541 1_1_0d EXIST::FUNCTION:CMS +OCSP_copy_nonce 3542 1_1_0d EXIST::FUNCTION:OCSP +EVP_MD_block_size 3543 1_1_0d EXIST::FUNCTION: +SCT_get_source 3544 1_1_0d EXIST::FUNCTION:CT +SM9_compute_share_key_B 3545 1_1_0d EXIST::FUNCTION:SM9 +SDF_ReleasePrivateKeyAccessRight 3546 1_1_0d EXIST::FUNCTION: +RC5_32_encrypt 3547 1_1_0d EXIST::FUNCTION:RC5 +ASYNC_get_current_job 3548 1_1_0d EXIST::FUNCTION: +i2d_X509_ALGORS 3549 1_1_0d EXIST::FUNCTION: +ERR_load_ASYNC_strings 3550 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get0_p8inf 3551 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_set_asc 3552 1_1_0d EXIST::FUNCTION: +SXNET_add_id_ulong 3553 1_1_0d EXIST::FUNCTION: +EVP_camellia_128_ctr 3554 1_1_0d EXIST::FUNCTION:CAMELLIA +EVP_CIPHER_CTX_set_num 3555 1_1_0d EXIST::FUNCTION: +OCSP_SERVICELOC_it 3556 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_SERVICELOC_it 3556 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +d2i_ESS_CERT_ID 3557 1_1_0d EXIST::FUNCTION:TS +ASN1_str2mask 3558 1_1_0d EXIST::FUNCTION: +SOF_GenRandom 3559 1_1_0d EXIST::FUNCTION: +X509_VAL_it 3560 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_VAL_it 3560 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_NAME_ENTRY_create_by_OBJ 3561 1_1_0d EXIST::FUNCTION: +SOF_SetEncryptMethod 3562 1_1_0d EXIST::FUNCTION: +SKF_MacInit 3563 1_1_0d EXIST::FUNCTION:SKF +SAF_Pkcs7_DecodeData 3564 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_new 3565 1_1_0d EXIST::FUNCTION: +i2d_PUBKEY_fp 3566 1_1_0d EXIST::FUNCTION:STDIO +X509_STORE_CTX_get0_policy_tree 3567 1_1_0d EXIST::FUNCTION: +PKCS12_add_localkeyid 3568 1_1_0d EXIST::FUNCTION: +PAILLIER_new 3569 1_1_0d EXIST::FUNCTION:PAILLIER +ECDSA_verify 3570 1_1_0d EXIST::FUNCTION:EC +PEM_read_X509 3571 1_1_0d EXIST::FUNCTION:STDIO +CMS_digest_verify 3572 1_1_0d EXIST::FUNCTION:CMS +X509_ALGORS_it 3573 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_ALGORS_it 3573 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OCSP_REQ_CTX_add1_header 3574 1_1_0d EXIST::FUNCTION:OCSP +EVP_PKEY_paramgen_init 3575 1_1_0d EXIST::FUNCTION: +X509_sign 3576 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_verify 3577 1_1_0d EXIST::FUNCTION:CMS +a2d_ASN1_OBJECT 3578 1_1_0d EXIST::FUNCTION: +SXNETID_new 3579 1_1_0d EXIST::FUNCTION: +ERR_put_error 3580 1_1_0d EXIST::FUNCTION: +X509_get0_serialNumber 3581 1_1_0d EXIST::FUNCTION: +SAF_GenRsaKeyPair 3582 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_flags 3583 1_1_0d EXIST::FUNCTION: +i2d_OCSP_RESPID 3584 1_1_0d EXIST::FUNCTION:OCSP +d2i_ASN1_TYPE 3585 1_1_0d EXIST::FUNCTION: +RSA_meth_get_flags 3586 1_1_0d EXIST::FUNCTION:RSA +PEM_write_bio_PUBKEY 3587 1_1_0d EXIST::FUNCTION: +DH_meth_set_generate_key 3588 1_1_0d EXIST::FUNCTION:DH +CT_POLICY_EVAL_CTX_set1_cert 3589 1_1_0d EXIST::FUNCTION:CT +DES_is_weak_key 3590 1_1_0d EXIST::FUNCTION:DES +DH_compute_key 3591 1_1_0d EXIST::FUNCTION:DH +ERR_load_CT_strings 3592 1_1_0d EXIST::FUNCTION:CT +X509_REQ_add_extensions 3593 1_1_0d EXIST::FUNCTION: +X509_PURPOSE_get_count 3594 1_1_0d EXIST::FUNCTION: +X509_REQ_sign 3595 1_1_0d EXIST::FUNCTION: +ENGINE_get_load_privkey_function 3596 1_1_0d EXIST::FUNCTION:ENGINE +HMAC_CTX_free 3597 1_1_0d EXIST::FUNCTION: +UI_get0_action_string 3598 1_1_0d EXIST::FUNCTION:UI +PKCS12_add_safe 3599 1_1_0d EXIST::FUNCTION: +PKCS7_get_issuer_and_serial 3600 1_1_0d EXIST::FUNCTION: +ASN1_FBOOLEAN_it 3601 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_FBOOLEAN_it 3601 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OCSP_REQ_CTX_http 3602 1_1_0d EXIST::FUNCTION:OCSP +BN_GF2m_mod_mul 3603 1_1_0d EXIST::FUNCTION:EC2M +SRP_Calc_B 3604 1_1_0d EXIST::FUNCTION:SRP +OCSP_RESPID_match 3605 1_1_0d EXIST::FUNCTION:OCSP +i2o_SCT 3606 1_1_0d EXIST::FUNCTION:CT +ASN1_GENERALIZEDTIME_it 3607 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_GENERALIZEDTIME_it 3607 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +DHparams_print_fp 3608 1_1_0d EXIST::FUNCTION:DH,STDIO +EC_GROUP_clear_free 3609 1_1_0d EXIST::FUNCTION:EC +BN_GFP2_inv 3610 1_1_0d EXIST::FUNCTION: +EVP_des_cfb1 3611 1_1_0d EXIST::FUNCTION:DES +CMS_unsigned_delete_attr 3612 1_1_0d EXIST::FUNCTION:CMS +CRL_DIST_POINTS_it 3613 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +CRL_DIST_POINTS_it 3613 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SAF_MacUpdate 3614 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_get_request 3615 1_1_0d EXIST::FUNCTION:TS +PKCS7_to_TS_TST_INFO 3616 1_1_0d EXIST::FUNCTION:TS +CMS_add1_signer 3617 1_1_0d EXIST::FUNCTION:CMS +TXT_DB_free 3618 1_1_0d EXIST::FUNCTION: +i2d_EC_PUBKEY_bio 3619 1_1_0d EXIST::FUNCTION:EC +SKF_LockDev 3620 1_1_0d EXIST::FUNCTION:SKF +X509V3_get_d2i 3621 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_new_from_ECCCipher 3622 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF +d2i_ASIdentifierChoice 3623 1_1_0d EXIST::FUNCTION:RFC3779 +IPAddressFamily_new 3624 1_1_0d EXIST::FUNCTION:RFC3779 +OCSP_cert_to_id 3625 1_1_0d EXIST::FUNCTION:OCSP +CRYPTO_get_ex_data 3626 1_1_0d EXIST::FUNCTION: +EC_POINT_oct2point 3627 1_1_0d EXIST::FUNCTION:EC +EVP_ENCODE_CTX_free 3628 1_1_0d EXIST::FUNCTION: +EC_POINT_set_affine_coordinates_GF2m 3629 1_1_0d EXIST::FUNCTION:EC,EC2M +SRP_Verify_B_mod_N 3630 1_1_0d EXIST::FUNCTION:SRP +EVP_des_ede3_wrap 3631 1_1_0d EXIST::FUNCTION:DES +X509_STORE_add_crl 3632 1_1_0d EXIST::FUNCTION: +OBJ_add_object 3633 1_1_0d EXIST::FUNCTION: +i2d_DSAPrivateKey_fp 3634 1_1_0d EXIST::FUNCTION:DSA,STDIO +X509_ATTRIBUTE_get0_data 3635 1_1_0d EXIST::FUNCTION: +i2d_NOTICEREF 3636 1_1_0d EXIST::FUNCTION: +d2i_POLICYQUALINFO 3637 1_1_0d EXIST::FUNCTION: +SM9_decrypt 3638 1_1_0d EXIST::FUNCTION:SM9 +BN_bn2solinas 3639 1_1_0d EXIST::FUNCTION: +RSA_PSS_PARAMS_it 3640 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSA_PSS_PARAMS_it 3640 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +EVP_EncodeBlock 3641 1_1_0d EXIST::FUNCTION: +BIO_vprintf 3642 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_digests 3643 1_1_0d EXIST::FUNCTION:ENGINE +ASN1_add_oid_module 3644 1_1_0d EXIST::FUNCTION: +SHA224_Update 3645 1_1_0d EXIST::FUNCTION: +X509_find_by_subject 3646 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_get_int64 3647 1_1_0d EXIST::FUNCTION: +ENGINE_get_digest 3648 1_1_0d EXIST::FUNCTION:ENGINE +POLICY_CONSTRAINTS_it 3649 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICY_CONSTRAINTS_it 3649 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BFIBE_decrypt 3650 1_1_0d EXIST::FUNCTION:BFIBE +X509v3_asid_add_id_or_range 3651 1_1_0d EXIST::FUNCTION:RFC3779 +NETSCAPE_CERT_SEQUENCE_it 3652 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +NETSCAPE_CERT_SEQUENCE_it 3652 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ZUC_128eia3_set_key 3653 1_1_0d EXIST::FUNCTION:ZUC +EVP_DigestUpdate 3654 1_1_0d EXIST::FUNCTION: +CTLOG_STORE_get0_log_by_id 3655 1_1_0d EXIST::FUNCTION:CT +PKCS7_DIGEST_it 3656 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_DIGEST_it 3656 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509V3_conf_free 3657 1_1_0d EXIST::FUNCTION: +SMIME_crlf_copy 3658 1_1_0d EXIST::FUNCTION: +NCONF_WIN32 3659 1_1_0d EXIST::FUNCTION: +ECPKPARAMETERS_new 3660 1_1_0d EXIST::FUNCTION:EC +d2i_PKCS12_MAC_DATA 3661 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_get_name 3662 1_1_0d EXIST::FUNCTION:CPK +PEM_def_callback 3663 1_1_0d EXIST::FUNCTION: +ENGINE_set_ex_data 3664 1_1_0d EXIST::FUNCTION:ENGINE +d2i_PKCS7_fp 3665 1_1_0d EXIST::FUNCTION:STDIO +d2i_X509_fp 3666 1_1_0d EXIST::FUNCTION:STDIO +X509_PURPOSE_get_id 3667 1_1_0d EXIST::FUNCTION: +CMS_ReceiptRequest_new 3668 1_1_0d EXIST::FUNCTION:CMS +EVP_CIPHER_CTX_free 3669 1_1_0d EXIST::FUNCTION: +BN_set_params 3670 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +EC_KEY_METHOD_get_keygen 3671 1_1_0d EXIST::FUNCTION:EC +d2i_ECDSA_SIG_fp 3672 1_1_0d EXIST::FUNCTION:EC,STDIO +BIO_ADDRINFO_protocol 3673 1_1_0d EXIST::FUNCTION:SOCK +X509_get_signature_nid 3674 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_add_ext 3675 1_1_0d EXIST::FUNCTION:OCSP +DH_set_length 3676 1_1_0d EXIST::FUNCTION:DH +BN_GFP2_sub_bn 3677 1_1_0d EXIST::FUNCTION: +ERR_load_UI_strings 3678 1_1_0d EXIST::FUNCTION:UI +PEM_write_bio_X509_REQ 3679 1_1_0d EXIST::FUNCTION: +PKCS7_add_attribute 3680 1_1_0d EXIST::FUNCTION: +ERR_func_error_string 3681 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_SM9_MASTER 3682 1_1_0d EXIST::FUNCTION:SM9 +BUF_MEM_free 3683 1_1_0d EXIST::FUNCTION: +OBJ_cmp 3684 1_1_0d EXIST::FUNCTION: +i2o_SCT_LIST 3685 1_1_0d EXIST::FUNCTION:CT +RSA_padding_check_none 3686 1_1_0d EXIST::FUNCTION:RSA +OPENSSL_gmtime_adj 3687 1_1_0d EXIST::FUNCTION: +BIO_free 3688 1_1_0d EXIST::FUNCTION: +OBJ_NAME_do_all_sorted 3689 1_1_0d EXIST::FUNCTION: +RC2_ecb_encrypt 3690 1_1_0d EXIST::FUNCTION:RC2 +BN_get_rfc3526_prime_3072 3691 1_1_0d EXIST::FUNCTION: +OCSP_REQINFO_it 3692 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_REQINFO_it 3692 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +EVP_des_ede_ecb 3693 1_1_0d EXIST::FUNCTION:DES +X509_LOOKUP_shutdown 3694 1_1_0d EXIST::FUNCTION: +SM9_KEY_new 3695 1_1_0d EXIST::FUNCTION:SM9 +ERR_load_RSA_strings 3696 1_1_0d EXIST::FUNCTION:RSA +X509_get0_notAfter 3697 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod 3698 1_1_0d EXIST::FUNCTION:EC2M +BIO_meth_set_write 3699 1_1_0d EXIST::FUNCTION: +ENGINE_pkey_asn1_find_str 3700 1_1_0d EXIST::FUNCTION:ENGINE +OCSP_request_set1_name 3701 1_1_0d EXIST::FUNCTION:OCSP +SKF_UnlockDev 3702 1_1_0d EXIST::FUNCTION:SKF +RSA_set_RSArefPrivateKey 3703 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +X509_supported_extension 3704 1_1_0d EXIST::FUNCTION: +BIO_dgram_sctp_wait_for_dry 3705 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +i2d_PublicKey 3706 1_1_0d EXIST::FUNCTION: +ASIdOrRange_free 3707 1_1_0d EXIST::FUNCTION:RFC3779 +X509_NAME_ENTRY_dup 3708 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get0_extensions 3709 1_1_0d EXIST::FUNCTION: +FFX_decrypt 3710 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get_app_data 3711 1_1_0d EXIST::FUNCTION: +d2i_X509_CRL_INFO 3712 1_1_0d EXIST::FUNCTION: +X509_set_serialNumber 3713 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_get_ECCCipher 3714 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SDF +i2d_ECIES_CIPHERTEXT_VALUE 3715 1_1_0d EXIST::FUNCTION:ECIES +TS_RESP_CTX_add_policy 3716 1_1_0d EXIST::FUNCTION:TS +EVP_PKEY_meth_set_init 3717 1_1_0d EXIST::FUNCTION: +SKF_PrintRSAPublicKey 3718 1_1_0d EXIST::FUNCTION:SKF +ASN1_SEQUENCE_ANY_it 3719 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_SEQUENCE_ANY_it 3719 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +BN_GFP2_add_bn 3720 1_1_0d EXIST::FUNCTION: +CMS_get1_certs 3721 1_1_0d EXIST::FUNCTION:CMS +i2d_CPK_MASTER_SECRET_bio 3722 1_1_0d EXIST::FUNCTION:CPK +BN_GF2m_poly2arr 3723 1_1_0d EXIST::FUNCTION:EC2M +BIO_f_nbio_test 3724 1_1_0d EXIST::FUNCTION: +X509at_get_attr_by_OBJ 3725 1_1_0d EXIST::FUNCTION: +AES_set_encrypt_key 3726 1_1_0d EXIST::FUNCTION: +X509_STORE_set_check_revocation 3727 1_1_0d EXIST::FUNCTION: +X509_set_version 3728 1_1_0d EXIST::FUNCTION: +i2d_OCSP_CERTSTATUS 3729 1_1_0d EXIST::FUNCTION:OCSP +X509_CRL_dup 3730 1_1_0d EXIST::FUNCTION: +RSA_OAEP_PARAMS_it 3731 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA +RSA_OAEP_PARAMS_it 3731 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA +DSO_ctrl 3732 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_set_update_fn 3733 1_1_0d EXIST::FUNCTION: +RSA_padding_check_PKCS1_type_2 3734 1_1_0d EXIST::FUNCTION:RSA +OCSP_crl_reason_str 3735 1_1_0d EXIST::FUNCTION:OCSP +BFCiphertextBlock_free 3736 1_1_0d EXIST::FUNCTION:BFIBE +DSO_dsobyaddr 3737 1_1_0d EXIST::FUNCTION: +d2i_SXNET 3738 1_1_0d EXIST::FUNCTION: +RSA_OAEP_PARAMS_free 3739 1_1_0d EXIST::FUNCTION:RSA +BIO_dgram_sctp_msg_waiting 3740 1_1_0d EXIST::FUNCTION:DGRAM,SCTP +SOF_VerifySignedDataXML 3741 1_1_0d EXIST::FUNCTION: +PEM_read_EC_PUBKEY 3742 1_1_0d EXIST::FUNCTION:EC,STDIO +SKF_ChangeDevAuthKey 3743 1_1_0d EXIST::FUNCTION:SKF +OCSP_id_issuer_cmp 3744 1_1_0d EXIST::FUNCTION:OCSP +X509_to_X509_REQ 3745 1_1_0d EXIST::FUNCTION: +SHA256_Init 3746 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_new 3747 1_1_0d EXIST::FUNCTION: +PBEPARAM_it 3748 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PBEPARAM_it 3748 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OPENSSL_sk_delete_ptr 3749 1_1_0d EXIST::FUNCTION: +PKCS1_MGF1 3750 1_1_0d EXIST::FUNCTION:RSA +d2i_TS_STATUS_INFO 3751 1_1_0d EXIST::FUNCTION:TS +i2d_SM9PublicKey 3752 1_1_0d EXIST::FUNCTION:SM9 +SHA224 3753 1_1_0d EXIST::FUNCTION: +CMS_add0_cert 3754 1_1_0d EXIST::FUNCTION:CMS +PKCS5_PBKDF2_HMAC_SHA1 3755 1_1_0d EXIST::FUNCTION:SHA +d2i_SM9_PUBKEY 3756 1_1_0d EXIST::FUNCTION:SM9 +CRYPTO_cbc128_encrypt 3757 1_1_0d EXIST::FUNCTION: +EVP_PKEY_decrypt 3758 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_set1_signer_cert 3759 1_1_0d EXIST::FUNCTION:CMS +d2i_ASN1_TIME 3760 1_1_0d EXIST::FUNCTION: +ASN1_OBJECT_new 3761 1_1_0d EXIST::FUNCTION: +PEM_write_bio_DHparams 3762 1_1_0d EXIST::FUNCTION:DH +CRYPTO_zalloc 3763 1_1_0d EXIST::FUNCTION: +CMS_decrypt_set1_password 3764 1_1_0d EXIST::FUNCTION:CMS +UTF8_putc 3765 1_1_0d EXIST::FUNCTION: +RSA_blinding_on 3766 1_1_0d EXIST::FUNCTION:RSA +EVP_camellia_256_ofb 3767 1_1_0d EXIST::FUNCTION:CAMELLIA +SRP_VBASE_get1_by_user 3768 1_1_0d EXIST::FUNCTION:SRP +SHA512_Init 3769 1_1_0d EXIST:!VMSVAX:FUNCTION: +UI_method_get_prompt_constructor 3770 1_1_0d EXIST::FUNCTION:UI +DES_random_key 3771 1_1_0d EXIST::FUNCTION:DES +TS_RESP_set_status_info 3772 1_1_0d EXIST::FUNCTION:TS +DIST_POINT_it 3773 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DIST_POINT_it 3773 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +OBJ_get0_data 3774 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_keygen 3775 1_1_0d EXIST::FUNCTION: +DSO_load 3776 1_1_0d EXIST::FUNCTION: +ENGINE_ctrl_cmd 3777 1_1_0d EXIST::FUNCTION:ENGINE +TS_TST_INFO_get_version 3778 1_1_0d EXIST::FUNCTION:TS +X509_EXTENSIONS_it 3779 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_EXTENSIONS_it 3779 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_aes_192_ctr 3780 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_init 3781 1_1_0d EXIST::FUNCTION: +EC_KEY_up_ref 3782 1_1_0d EXIST::FUNCTION:EC +BN_get0_nist_prime_384 3783 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_time 3784 1_1_0d EXIST::FUNCTION: +RAND_poll 3785 1_1_0d EXIST::FUNCTION: +SOF_GetVersion 3786 1_1_0d EXIST::FUNCTION: +BASIC_CONSTRAINTS_it 3787 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +BASIC_CONSTRAINTS_it 3787 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +RSA_PSS_PARAMS_free 3788 1_1_0d EXIST::FUNCTION:RSA +PEM_write_bio_RSA_PUBKEY 3789 1_1_0d EXIST::FUNCTION:RSA +OCSP_REQUEST_get_ext_by_critical 3790 1_1_0d EXIST::FUNCTION:OCSP +DSO_set_filename 3791 1_1_0d EXIST::FUNCTION: +i2d_ASN1_SET_ANY 3792 1_1_0d EXIST::FUNCTION: +DSA_set_default_method 3793 1_1_0d EXIST::FUNCTION:DSA +EVP_CIPHER_CTX_set_cipher_data 3794 1_1_0d EXIST::FUNCTION: +TS_VERIFY_CTX_cleanup 3795 1_1_0d EXIST::FUNCTION:TS +X509_VAL_free 3796 1_1_0d EXIST::FUNCTION: +PEM_read_SM9MasterSecret 3797 1_1_0d EXIST::FUNCTION:SM9,STDIO +d2i_RSA_OAEP_PARAMS 3798 1_1_0d EXIST::FUNCTION:RSA +EC_KEY_METHOD_set_init 3799 1_1_0d EXIST::FUNCTION:EC +d2i_X509_ALGOR 3800 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_set_object 3801 1_1_0d EXIST::FUNCTION: +UI_get0_result_string 3802 1_1_0d EXIST::FUNCTION:UI +ASYNC_start_job 3803 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_set_nonce 3804 1_1_0d EXIST::FUNCTION:TS +X509_REQ_add1_attr_by_OBJ 3805 1_1_0d EXIST::FUNCTION: +X509_NAME_free 3806 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_get_time 3807 1_1_0d EXIST::FUNCTION:CT +sm3 3808 1_1_0d EXIST::FUNCTION:SM3 +X509_REVOKED_get_ext_by_NID 3809 1_1_0d EXIST::FUNCTION: +PEM_write_bio_X509_REQ_NEW 3810 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_derive 3811 1_1_0d EXIST::FUNCTION: +DSO_get_filename 3812 1_1_0d EXIST::FUNCTION: +EVP_chacha20_poly1305 3813 1_1_0d EXIST::FUNCTION:CHACHA,POLY1305 +ASN1_TIME_set 3814 1_1_0d EXIST::FUNCTION: +X509_policy_node_get0_parent 3815 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_get0_pkey_ctx 3816 1_1_0d EXIST::FUNCTION:CMS +BN_secure_new 3817 1_1_0d EXIST::FUNCTION: +ASN1_item_i2d_fp 3818 1_1_0d EXIST::FUNCTION:STDIO +i2d_TS_MSG_IMPRINT_bio 3819 1_1_0d EXIST::FUNCTION:TS +BN_X931_derive_prime_ex 3820 1_1_0d EXIST::FUNCTION: +SKF_SetLabel 3821 1_1_0d EXIST::FUNCTION:SKF +EC_KEY_oct2priv 3822 1_1_0d EXIST::FUNCTION:EC +FFX_CTX_free 3823 1_1_0d EXIST::FUNCTION: +CTLOG_STORE_new 3824 1_1_0d EXIST::FUNCTION:CT +BB1CiphertextBlock_free 3825 1_1_0d EXIST::FUNCTION:BB1IBE +X509_get_extended_key_usage 3826 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add_nconf 3827 1_1_0d EXIST::FUNCTION: +CMAC_Final 3828 1_1_0d EXIST::FUNCTION:CMAC +BIO_set_callback_arg 3829 1_1_0d EXIST::FUNCTION: +CRYPTO_gcm128_encrypt_ctr32 3830 1_1_0d EXIST::FUNCTION: +ECIES_CIPHERTEXT_VALUE_set_ECCCIPHERBLOB 3831 1_1_0d EXIST::FUNCTION:EC,ECIES,GMAPI,SKF +BN_get0_nist_prime_224 3832 1_1_0d EXIST::FUNCTION: +MD5_Final 3833 1_1_0d EXIST::FUNCTION:MD5 +i2d_ECIESParameters 3834 1_1_0d EXIST::FUNCTION:ECIES +i2d_X509_CINF 3835 1_1_0d EXIST::FUNCTION: +X509V3_EXT_CRL_add_conf 3836 1_1_0d EXIST::FUNCTION: +CONF_modules_unload 3837 1_1_0d EXIST::FUNCTION: +PEM_X509_INFO_read 3838 1_1_0d EXIST::FUNCTION:STDIO +PEM_read_bio_EC_PUBKEY 3839 1_1_0d EXIST::FUNCTION:EC +CRL_DIST_POINTS_new 3840 1_1_0d EXIST::FUNCTION: +i2d_re_X509_REQ_tbs 3841 1_1_0d EXIST::FUNCTION: +i2d_OCSP_CERTID 3842 1_1_0d EXIST::FUNCTION:OCSP +d2i_DHparams 3843 1_1_0d EXIST::FUNCTION:DH +BN_generate_prime 3844 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +EXTENDED_KEY_USAGE_free 3845 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_PAILLIER 3846 1_1_0d EXIST::FUNCTION:PAILLIER +i2d_ESS_SIGNING_CERT 3847 1_1_0d EXIST::FUNCTION:TS +X509_STORE_CTX_get_get_issuer 3848 1_1_0d EXIST::FUNCTION: +OCSP_REQUEST_get1_ext_d2i 3849 1_1_0d EXIST::FUNCTION:OCSP +X509_STORE_get0_param 3850 1_1_0d EXIST::FUNCTION: +i2d_TS_ACCURACY 3851 1_1_0d EXIST::FUNCTION:TS +EC_GROUP_precompute_mult 3852 1_1_0d EXIST::FUNCTION:EC +PKCS12_create 3853 1_1_0d EXIST::FUNCTION: +UI_UTIL_read_pw_string 3854 1_1_0d EXIST::FUNCTION:UI +EVP_MD_CTX_clear_flags 3855 1_1_0d EXIST::FUNCTION: +d2i_POLICYINFO 3856 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_new_from_ECCSIGNATUREBLOB 3857 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +CMS_add1_cert 3858 1_1_0d EXIST::FUNCTION:CMS +BIO_meth_set_puts 3859 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_to_BN 3860 1_1_0d EXIST::FUNCTION: +BFCiphertextBlock_it 3861 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFCiphertextBlock_it 3861 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +BN_lshift 3862 1_1_0d EXIST::FUNCTION: +ASN1_SCTX_free 3863 1_1_0d EXIST::FUNCTION: +CRYPTO_set_mem_functions 3864 1_1_0d EXIST::FUNCTION: +CMS_get0_content 3865 1_1_0d EXIST::FUNCTION:CMS +RSA_new_from_RSAPRIVATEKEYBLOB 3866 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SKF +X509_ALGOR_cmp 3867 1_1_0d EXIST::FUNCTION: +BIO_set_next 3868 1_1_0d EXIST::FUNCTION: +PKCS8_set0_pbe 3869 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_table_cleanup 3870 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_set_bit 3871 1_1_0d EXIST::FUNCTION: +RSA_set_RSArefPublicKey 3872 1_1_0d EXIST::FUNCTION:GMAPI,RSA,SDF +ASN1_OCTET_STRING_new 3873 1_1_0d EXIST::FUNCTION: +UI_set_method 3874 1_1_0d EXIST::FUNCTION:UI +SDF_OpenSession 3875 1_1_0d EXIST::FUNCTION: +DH_get_ex_data 3876 1_1_0d EXIST::FUNCTION:DH +EC_KEY_free 3877 1_1_0d EXIST::FUNCTION:EC +SKF_DecryptFinal 3878 1_1_0d EXIST::FUNCTION:SKF +BN_MONT_CTX_copy 3879 1_1_0d EXIST::FUNCTION: +ERR_print_errors_cb 3880 1_1_0d EXIST::FUNCTION: +DH_bits 3881 1_1_0d EXIST::FUNCTION:DH +EVP_CIPHER_meth_get_init 3882 1_1_0d EXIST::FUNCTION: +ERR_lib_error_string 3883 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_create0_p8inf 3884 1_1_0d EXIST::FUNCTION: +OCSP_RESPDATA_new 3885 1_1_0d EXIST::FUNCTION:OCSP +OPENSSL_sk_num 3886 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_new 3887 1_1_0d EXIST::FUNCTION:SM2 +EVP_PKEY_meth_set_keygen 3888 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_new 3889 1_1_0d EXIST::FUNCTION: +ERR_peek_error 3890 1_1_0d EXIST::FUNCTION: +HMAC_CTX_get_md 3891 1_1_0d EXIST::FUNCTION: +SOF_SignMessageDetach 3892 1_1_0d EXIST::FUNCTION: +DH_size 3893 1_1_0d EXIST::FUNCTION:DH +EVP_MD_meth_get_init 3894 1_1_0d EXIST::FUNCTION: +X509_verify 3895 1_1_0d EXIST::FUNCTION: +d2i_TS_RESP 3896 1_1_0d EXIST::FUNCTION:TS +X509_REVOKED_it 3897 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_REVOKED_it 3897 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_POINT_dbl 3898 1_1_0d EXIST::FUNCTION:EC +d2i_PKCS7 3899 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_SIGNED 3900 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add 3901 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get_bag_nid 3902 1_1_0d EXIST::FUNCTION: +CMS_unsigned_add1_attr_by_txt 3903 1_1_0d EXIST::FUNCTION:CMS +i2d_TS_MSG_IMPRINT_fp 3904 1_1_0d EXIST::FUNCTION:STDIO,TS +i2d_ECPKParameters 3905 1_1_0d EXIST::FUNCTION:EC +USERNOTICE_new 3906 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_set_encrypt 3907 1_1_0d EXIST::FUNCTION: +i2d_ECCSignature 3908 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +EVP_Cipher 3909 1_1_0d EXIST::FUNCTION: +PEM_do_header 3910 1_1_0d EXIST::FUNCTION: +PKCS7_SIGN_ENVELOPE_free 3911 1_1_0d EXIST::FUNCTION: +BN_CTX_new 3912 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_it 3913 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_NAME_ENTRY_it 3913 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ECIES_CIPHERTEXT_VALUE_it 3914 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:ECIES +ECIES_CIPHERTEXT_VALUE_it 3914 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:ECIES +SM2_compute_id_digest 3915 1_1_0d EXIST::FUNCTION:SM2 +X509_issuer_name_hash_old 3916 1_1_0d EXIST::FUNCTION:MD5 +SOF_VerifySignedMessageDetach 3917 1_1_0d EXIST::FUNCTION: +SAF_GenerateKeyWithECC 3918 1_1_0d EXIST::FUNCTION: +i2d_OCSP_SIGNATURE 3919 1_1_0d EXIST::FUNCTION:OCSP +X509v3_asid_is_canonical 3920 1_1_0d EXIST::FUNCTION:RFC3779 +PKCS12_new 3921 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_verify_recover 3922 1_1_0d EXIST::FUNCTION: +EVP_aes_128_cbc_hmac_sha1 3923 1_1_0d EXIST::FUNCTION: +d2i_IPAddressFamily 3924 1_1_0d EXIST::FUNCTION:RFC3779 +CRYPTO_clear_free 3925 1_1_0d EXIST::FUNCTION: +BIO_meth_get_destroy 3926 1_1_0d EXIST::FUNCTION: +BIO_get_callback_arg 3927 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_node_stats_bio 3928 1_1_0d EXIST::FUNCTION: +UI_add_input_string 3929 1_1_0d EXIST::FUNCTION:UI +EVP_CIPHER_CTX_copy 3930 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_new 3931 1_1_0d EXIST::FUNCTION: +EVP_PKEY_id 3932 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithEPK_RSA 3933 1_1_0d EXIST::FUNCTION: +TS_CONF_set_digests 3934 1_1_0d EXIST::FUNCTION:TS +RSA_padding_check_PKCS1_type_1 3935 1_1_0d EXIST::FUNCTION:RSA +BASIC_CONSTRAINTS_free 3936 1_1_0d EXIST::FUNCTION: +BB1PublicParameters_free 3937 1_1_0d EXIST::FUNCTION:BB1IBE +BIO_dup_chain 3938 1_1_0d EXIST::FUNCTION: +PKCS5_PBE_add 3939 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNER_INFO_free 3940 1_1_0d EXIST::FUNCTION: +X509_CRL_diff 3941 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_get_inh_flags 3942 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_reset 3943 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_verify 3944 1_1_0d EXIST::FUNCTION: +DH_security_bits 3945 1_1_0d EXIST::FUNCTION:DH +TS_TST_INFO_print_bio 3946 1_1_0d EXIST::FUNCTION:TS +X509_EXTENSION_create_by_OBJ 3947 1_1_0d EXIST::FUNCTION: +PBEPARAM_new 3948 1_1_0d EXIST::FUNCTION: +CMS_SharedInfo_encode 3949 1_1_0d EXIST::FUNCTION:CMS +EC_KEY_set_ECCrefPublicKey 3950 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +ASN1_BOOLEAN_it 3951 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_BOOLEAN_it 3951 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509_STORE_CTX_get0_cert 3952 1_1_0d EXIST::FUNCTION: +ERR_set_mark 3953 1_1_0d EXIST::FUNCTION: +PKCS7_get_signed_attribute 3954 1_1_0d EXIST::FUNCTION: +PKCS7_SIGNED_it 3955 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_SIGNED_it 3955 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PKCS12_parse 3956 1_1_0d EXIST::FUNCTION: +ENGINE_get_pkey_asn1_meths 3957 1_1_0d EXIST::FUNCTION:ENGINE +SKF_ConnectDev 3958 1_1_0d EXIST::FUNCTION:SKF +EC_KEY_new_from_ECCPUBLICKEYBLOB 3959 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +RC2_ofb64_encrypt 3960 1_1_0d EXIST::FUNCTION:RC2 +X509_STORE_add_lookup 3961 1_1_0d EXIST::FUNCTION: +DH_up_ref 3962 1_1_0d EXIST::FUNCTION:DH +PKCS12_item_decrypt_d2i 3963 1_1_0d EXIST::FUNCTION: +X509_find_by_issuer_and_serial 3964 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add_list 3965 1_1_0d EXIST::FUNCTION: +i2d_PBKDF2PARAM 3966 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_get0_algs 3967 1_1_0d EXIST::FUNCTION:CMS +SM9_do_sign 3968 1_1_0d EXIST::FUNCTION:SM9 +PEM_write_SM9MasterSecret 3969 1_1_0d EXIST::FUNCTION:SM9,STDIO +EVP_aes_192_ecb 3970 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_error_depth 3971 1_1_0d EXIST::FUNCTION: +DH_meth_set1_name 3972 1_1_0d EXIST::FUNCTION:DH +X509_policy_node_get0_qualifiers 3973 1_1_0d EXIST::FUNCTION: +RSA_padding_check_SSLv23 3974 1_1_0d EXIST::FUNCTION:RSA +EC_GROUP_set_generator 3975 1_1_0d EXIST::FUNCTION:EC +GENERAL_NAME_dup 3976 1_1_0d EXIST::FUNCTION: +SAF_Pkcs7_EncodeData 3977 1_1_0d EXIST::FUNCTION: +SOF_GetCertInfoByOid 3978 1_1_0d EXIST::FUNCTION: +PKCS12_unpack_authsafes 3979 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get0_pkey 3980 1_1_0d EXIST::FUNCTION: +NCONF_dump_fp 3981 1_1_0d EXIST::FUNCTION:STDIO +RSA_padding_check_PKCS1_OAEP_mgf1 3982 1_1_0d EXIST::FUNCTION:RSA +CRYPTO_mem_debug_pop 3983 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +SDF_LoadLibrary 3984 1_1_0d EXIST::FUNCTION:SDF +BN_is_prime_fasttest 3985 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8 +SKF_NewEnvelopedKey 3986 1_1_0d EXIST::FUNCTION:SKF +X509_NAME_print_ex_fp 3987 1_1_0d EXIST::FUNCTION:STDIO +X509_NAME_ENTRY_create_by_NID 3988 1_1_0d EXIST::FUNCTION: +ASN1_BIT_STRING_free 3989 1_1_0d EXIST::FUNCTION: +OPENSSL_INIT_new 3990 1_1_0d EXIST::FUNCTION: +BIO_printf 3991 1_1_0d EXIST::FUNCTION: +EVP_zuc 3992 1_1_0d EXIST::FUNCTION:ZUC +X509_new 3993 1_1_0d EXIST::FUNCTION: +EDIPARTYNAME_free 3994 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_free 3995 1_1_0d EXIST::FUNCTION: +TS_RESP_dup 3996 1_1_0d EXIST::FUNCTION:TS +X509_get0_uids 3997 1_1_0d EXIST::FUNCTION: +SDF_DestroyKey 3998 1_1_0d EXIST::FUNCTION: +d2i_X509 3999 1_1_0d EXIST::FUNCTION: +BN_BLINDING_unlock 4000 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_tls_encodedpoint 4001 1_1_0d EXIST::FUNCTION: +ASN1_STRING_dup 4002 1_1_0d EXIST::FUNCTION: +BN_init 4003 1_1_0d EXIST::FUNCTION: +CRYPTO_128_unwrap_pad 4004 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get1_chain 4005 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_meth_set_impl_ctx_size 4006 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_init 4007 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_adj 4008 1_1_0d EXIST::FUNCTION: +RC2_encrypt 4009 1_1_0d EXIST::FUNCTION:RC2 +EVP_mdc2 4010 1_1_0d EXIST::FUNCTION:MDC2 +CMS_add_standard_smimecap 4011 1_1_0d EXIST::FUNCTION:CMS +CRYPTO_ocb128_init 4012 1_1_0d EXIST::FUNCTION:OCB +BUF_MEM_grow_clean 4013 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_new 4014 1_1_0d EXIST::FUNCTION: +SM2_KAP_compute_key 4015 1_1_0d EXIST::FUNCTION:SM2 +SM9_SignInit 4016 1_1_0d EXIST::FUNCTION:SM9 +ASN1_parse 4017 1_1_0d EXIST::FUNCTION: +d2i_OCSP_BASICRESP 4018 1_1_0d EXIST::FUNCTION:OCSP +TS_VERIFY_CTX_set_flags 4019 1_1_0d EXIST::FUNCTION:TS +COMP_get_type 4020 1_1_0d EXIST::FUNCTION:COMP +EVP_seed_cbc 4021 1_1_0d EXIST::FUNCTION:SEED +i2d_ASN1_PRINTABLE 4022 1_1_0d EXIST::FUNCTION: +EVP_MD_meth_set_flags 4023 1_1_0d EXIST::FUNCTION: +RC5_32_set_key 4024 1_1_0d EXIST::FUNCTION:RC5 +OCSP_BASICRESP_get_ext_by_NID 4025 1_1_0d EXIST::FUNCTION:OCSP +RSA_meth_get_verify 4026 1_1_0d EXIST::FUNCTION:RSA +PEM_write_bio_EC_PUBKEY 4027 1_1_0d EXIST::FUNCTION:EC +SKF_ClearSecureState 4028 1_1_0d EXIST::FUNCTION:SKF +RAND_pseudo_bytes 4029 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +BIO_asn1_set_prefix 4030 1_1_0d EXIST::FUNCTION: +CMS_uncompress 4031 1_1_0d EXIST::FUNCTION:CMS +i2d_PKCS8_fp 4032 1_1_0d EXIST::FUNCTION:STDIO +EVP_MD_meth_get_app_datasize 4033 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ext 4034 1_1_0d EXIST::FUNCTION:TS +CMS_add0_CertificateChoices 4035 1_1_0d EXIST::FUNCTION:CMS +BFPrivateKeyBlock_free 4036 1_1_0d EXIST::FUNCTION:BFIBE +EVP_PKEY_asn1_get_count 4037 1_1_0d EXIST::FUNCTION: +BIO_meth_get_callback_ctrl 4038 1_1_0d EXIST::FUNCTION: +SRP_VBASE_get_by_user 4039 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SRP +BUF_MEM_new 4040 1_1_0d EXIST::FUNCTION: +BF_cbc_encrypt 4041 1_1_0d EXIST::FUNCTION:BF +EC_GROUP_cmp 4042 1_1_0d EXIST::FUNCTION:EC +CMAC_CTX_cleanup 4043 1_1_0d EXIST::FUNCTION:CMAC +i2d_OCSP_RESPDATA 4044 1_1_0d EXIST::FUNCTION:OCSP +EVP_DigestInit_ex 4045 1_1_0d EXIST::FUNCTION: +d2i_ASN1_IA5STRING 4046 1_1_0d EXIST::FUNCTION: +UI_method_set_writer 4047 1_1_0d EXIST::FUNCTION:UI +DSA_security_bits 4048 1_1_0d EXIST::FUNCTION:DSA +DES_encrypt2 4049 1_1_0d EXIST::FUNCTION:DES +ASN1_PCTX_free 4050 1_1_0d EXIST::FUNCTION: +EVP_PKEY_derive 4051 1_1_0d EXIST::FUNCTION: +EVP_get_pw_prompt 4052 1_1_0d EXIST::FUNCTION:UI +BN_sqr 4053 1_1_0d EXIST::FUNCTION: +SM9_KEY_print 4054 1_1_0d EXIST::FUNCTION:SM9 +EC_KEY_print_fp 4055 1_1_0d EXIST::FUNCTION:EC,STDIO +UI_dup_verify_string 4056 1_1_0d EXIST::FUNCTION:UI +DSA_sign_setup 4057 1_1_0d EXIST::FUNCTION:DSA +SM9Signature_free 4058 1_1_0d EXIST::FUNCTION:SM9 +RSA_setup_blinding 4059 1_1_0d EXIST::FUNCTION:RSA +SM9PrivateKey_get_public_key 4060 1_1_0d EXIST::FUNCTION:SM9 +ENGINE_register_DSA 4061 1_1_0d EXIST::FUNCTION:ENGINE +X509at_add1_attr_by_txt 4062 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_new 4063 1_1_0d EXIST::FUNCTION:CPK +TS_TST_INFO_get_ext_by_NID 4064 1_1_0d EXIST::FUNCTION:TS +TS_TST_INFO_get_policy_id 4065 1_1_0d EXIST::FUNCTION:TS +SKF_ECCSignData 4066 1_1_0d EXIST::FUNCTION:SKF +CAST_decrypt 4067 1_1_0d EXIST::FUNCTION:CAST +i2d_AUTHORITY_INFO_ACCESS 4068 1_1_0d EXIST::FUNCTION: +PEM_write_bio_SM9PublicParameters 4069 1_1_0d EXIST::FUNCTION:SM9 +BN_mod_exp_mont_word 4070 1_1_0d EXIST::FUNCTION: +X509_NAME_print 4071 1_1_0d EXIST::FUNCTION: +DH_compute_key_padded 4072 1_1_0d EXIST::FUNCTION:DH +ECIES_PARAMS_get_mac 4073 1_1_0d EXIST::FUNCTION:ECIES +EVP_CIPHER_param_to_asn1 4074 1_1_0d EXIST::FUNCTION: +UI_dup_input_boolean 4075 1_1_0d EXIST::FUNCTION:UI +OCSP_request_add1_cert 4076 1_1_0d EXIST::FUNCTION:OCSP +TS_CONF_load_key 4077 1_1_0d EXIST::FUNCTION:TS +ENGINE_get_pkey_asn1_meth 4078 1_1_0d EXIST::FUNCTION:ENGINE +EC_KEY_set_asn1_flag 4079 1_1_0d EXIST::FUNCTION:EC +d2i_CERTIFICATEPOLICIES 4080 1_1_0d EXIST::FUNCTION: +SRP_Verify_A_mod_N 4081 1_1_0d EXIST::FUNCTION:SRP +CMS_add_smimecap 4082 1_1_0d EXIST::FUNCTION:CMS +EVP_rc4 4083 1_1_0d EXIST::FUNCTION:RC4 +BN_lebin2bn 4084 1_1_0d EXIST::FUNCTION: +SM2_KAP_CTX_cleanup 4085 1_1_0d EXIST::FUNCTION:SM2 +ENGINE_get_ssl_client_cert_function 4086 1_1_0d EXIST::FUNCTION:ENGINE +BIO_meth_get_ctrl 4087 1_1_0d EXIST::FUNCTION: +PKCS7_SIGN_ENVELOPE_it 4088 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_SIGN_ENVELOPE_it 4088 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PKCS12_get_friendlyname 4089 1_1_0d EXIST::FUNCTION: +BIO_s_accept 4090 1_1_0d EXIST::FUNCTION:SOCK +EVP_CIPHER_nid 4091 1_1_0d EXIST::FUNCTION: +PEM_read_bio_DHparams 4092 1_1_0d EXIST::FUNCTION:DH +SAF_ChangePin 4093 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set_default_mask_asc 4094 1_1_0d EXIST::FUNCTION: +PKCS7_dataDecode 4095 1_1_0d EXIST::FUNCTION: +X509_STORE_get_lookup_crls 4096 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get1_cert 4097 1_1_0d EXIST::FUNCTION: +EVP_PKEY_meth_get_signctx 4098 1_1_0d EXIST::FUNCTION: +OPENSSL_gmtime_diff 4099 1_1_0d EXIST::FUNCTION: +TS_STATUS_INFO_get0_failure_info 4100 1_1_0d EXIST::FUNCTION:TS +PEM_read_DSAparams 4101 1_1_0d EXIST::FUNCTION:DSA,STDIO +EC_POINTs_mul 4102 1_1_0d EXIST::FUNCTION:EC +OCSP_CERTSTATUS_it 4103 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP +OCSP_CERTSTATUS_it 4103 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP +d2i_X509_AUX 4104 1_1_0d EXIST::FUNCTION: +ERR_remove_state 4105 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_0_0 +SCT_set1_signature 4106 1_1_0d EXIST::FUNCTION:CT +d2i_SM2CiphertextValue_fp 4107 1_1_0d EXIST::FUNCTION:SM2,STDIO +DH_set_method 4108 1_1_0d EXIST::FUNCTION:DH +ASIdentifierChoice_it 4109 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779 +ASIdentifierChoice_it 4109 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779 +EC_KEY_METHOD_set_decrypt 4110 1_1_0d EXIST::FUNCTION:SM2 +ENGINE_register_RAND 4111 1_1_0d EXIST::FUNCTION:ENGINE +ECIES_CIPHERTEXT_VALUE_free 4112 1_1_0d EXIST::FUNCTION:ECIES +ASN1_VISIBLESTRING_new 4113 1_1_0d EXIST::FUNCTION: +X509V3_parse_list 4114 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_get_down_load 4115 1_1_0d EXIST::FUNCTION: +SKF_EncryptFinal 4116 1_1_0d EXIST::FUNCTION:SKF +sms4_unwrap_key 4117 1_1_0d EXIST::FUNCTION:SMS4 +EDIPARTYNAME_it 4118 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +EDIPARTYNAME_it 4118 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SOF_GetCertTrustListAltNames 4119 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_is_zero 4120 1_1_0d EXIST::FUNCTION:SM2 +EVP_PKEY_get_attr_count 4121 1_1_0d EXIST::FUNCTION: +X509_NAME_add_entry 4122 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_ext_count 4123 1_1_0d EXIST::FUNCTION:TS +ASN1_d2i_bio 4124 1_1_0d EXIST::FUNCTION: +EC_GROUP_new 4125 1_1_0d EXIST::FUNCTION:EC +d2i_ISSUING_DIST_POINT 4126 1_1_0d EXIST::FUNCTION: +ERR_clear_error 4127 1_1_0d EXIST::FUNCTION: +ASN1_PRINTABLE_new 4128 1_1_0d EXIST::FUNCTION: +CRYPTO_THREAD_init_local 4129 1_1_0d EXIST::FUNCTION: +i2d_BFCiphertextBlock 4130 1_1_0d EXIST::FUNCTION:BFIBE +EVP_PKEY_asn1_get0 4131 1_1_0d EXIST::FUNCTION: +d2i_ASN1_BIT_STRING 4132 1_1_0d EXIST::FUNCTION: +POLICY_MAPPING_new 4133 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_get 4134 1_1_0d EXIST::FUNCTION: +DSAparams_print_fp 4135 1_1_0d EXIST::FUNCTION:DSA,STDIO +DES_ofb64_encrypt 4136 1_1_0d EXIST::FUNCTION:DES +SAF_Pkcs7_EncodeEnvelopedData 4137 1_1_0d EXIST::FUNCTION: +SAF_GetRootCaCertificateCount 4138 1_1_0d EXIST::FUNCTION: +X509_policy_level_node_count 4139 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_ENVELOPE 4140 1_1_0d EXIST::FUNCTION: +EVP_sms4_gcm 4141 1_1_0d EXIST::FUNCTION:SMS4 +SAF_RemoveRootCaCertificate 4142 1_1_0d EXIST::FUNCTION: +DIST_POINT_new 4143 1_1_0d EXIST::FUNCTION: +ENGINE_unregister_pkey_asn1_meths 4144 1_1_0d EXIST::FUNCTION:ENGINE +NETSCAPE_SPKI_set_pubkey 4145 1_1_0d EXIST::FUNCTION: +EC_POINT_point2buf 4146 1_1_0d EXIST::FUNCTION:EC +TS_CONF_get_tsa_section 4147 1_1_0d EXIST::FUNCTION:TS +ASN1_BMPSTRING_new 4148 1_1_0d EXIST::FUNCTION: +ERR_error_string_n 4149 1_1_0d EXIST::FUNCTION: +PKCS7_DIGEST_new 4150 1_1_0d EXIST::FUNCTION: +EVP_aes_128_ccm 4151 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_get_cert_flags 4152 1_1_0d EXIST::FUNCTION: +SKF_ExtRSAPriKeyOperation 4153 1_1_0d EXIST::FUNCTION:SKF +d2i_RSAPublicKey_fp 4154 1_1_0d EXIST::FUNCTION:RSA,STDIO +EVP_EncodeUpdate 4155 1_1_0d EXIST::FUNCTION: +SM2_sign 4156 1_1_0d EXIST::FUNCTION:SM2 +RSA_meth_set_verify 4157 1_1_0d EXIST::FUNCTION:RSA +PKCS7_ATTR_VERIFY_it 4158 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ATTR_VERIFY_it 4158 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_GROUP_get_cofactor 4159 1_1_0d EXIST::FUNCTION:EC +NCONF_dump_bio 4160 1_1_0d EXIST::FUNCTION: +X509_CINF_it 4161 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CINF_it 4161 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SAF_SM2_DecodeEnvelopedData 4162 1_1_0d EXIST::FUNCTION: +i2d_X509_ATTRIBUTE 4163 1_1_0d EXIST::FUNCTION: +ENGINE_get_default_DSA 4164 1_1_0d EXIST::FUNCTION:ENGINE +i2d_NETSCAPE_SPKAC 4165 1_1_0d EXIST::FUNCTION: +X509_signature_print 4166 1_1_0d EXIST::FUNCTION: +SDF_ImportKeyWithKEK 4167 1_1_0d EXIST::FUNCTION: +BIO_new_mem_buf 4168 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_get_sgd 4169 1_1_0d EXIST::FUNCTION:GMAPI +PEM_write_SM9_MASTER_PUBKEY 4170 1_1_0d EXIST::FUNCTION:SM9,STDIO +EVP_camellia_192_ofb 4171 1_1_0d EXIST::FUNCTION:CAMELLIA +TS_REQ_get_ext_by_critical 4172 1_1_0d EXIST::FUNCTION:TS +RIPEMD160_Final 4173 1_1_0d EXIST::FUNCTION:RMD160 +UI_add_info_string 4174 1_1_0d EXIST::FUNCTION:UI +CMS_RecipientInfo_ktri_cert_cmp 4175 1_1_0d EXIST::FUNCTION:CMS +EVP_MD_meth_set_init 4176 1_1_0d EXIST::FUNCTION: +EVP_PKEY_add1_attr 4177 1_1_0d EXIST::FUNCTION: +BIO_asn1_get_suffix 4178 1_1_0d EXIST::FUNCTION: +EVP_PKEY_save_parameters 4179 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_dup 4180 1_1_0d EXIST::FUNCTION: +d2i_OCSP_CERTID 4181 1_1_0d EXIST::FUNCTION:OCSP +X509_get_serialNumber 4182 1_1_0d EXIST::FUNCTION: +X509_print 4183 1_1_0d EXIST::FUNCTION: +ENGINE_get_finish_function 4184 1_1_0d EXIST::FUNCTION:ENGINE +d2i_GENERAL_NAME 4185 1_1_0d EXIST::FUNCTION: +X509_CERT_AUX_free 4186 1_1_0d EXIST::FUNCTION: +SM9PublicKey_it 4187 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:SM9 +SM9PublicKey_it 4187 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:SM9 +X509_STORE_CTX_get0_chain 4188 1_1_0d EXIST::FUNCTION: +d2i_DIST_POINT_NAME 4189 1_1_0d EXIST::FUNCTION: +X509_STORE_set_trust 4190 1_1_0d EXIST::FUNCTION: +OCSP_resp_find 4191 1_1_0d EXIST::FUNCTION:OCSP +X509_ATTRIBUTE_create_by_txt 4192 1_1_0d EXIST::FUNCTION: +SKF_SetSymmKey 4193 1_1_0d EXIST::FUNCTION:SKF +EVP_PKEY_asn1_free 4194 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_create_by_txt 4195 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_trinomial_basis 4196 1_1_0d EXIST::FUNCTION:EC,EC2M +BN_bn2gfp2 4197 1_1_0d EXIST::FUNCTION: +BF_encrypt 4198 1_1_0d EXIST::FUNCTION:BF +d2i_DHxparams 4199 1_1_0d EXIST::FUNCTION:DH +BIO_ADDRINFO_next 4200 1_1_0d EXIST::FUNCTION:SOCK +i2d_CRL_DIST_POINTS 4201 1_1_0d EXIST::FUNCTION: +BN_BLINDING_invert_ex 4202 1_1_0d EXIST::FUNCTION: +X509V3_EXT_add_nconf_sk 4203 1_1_0d EXIST::FUNCTION: +X509V3_set_nconf 4204 1_1_0d EXIST::FUNCTION: +BIO_set_data 4205 1_1_0d EXIST::FUNCTION: +SHA224_Final 4206 1_1_0d EXIST::FUNCTION: +i2d_ECCSIGNATUREBLOB 4207 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +OTHERNAME_free 4208 1_1_0d EXIST::FUNCTION: +DSA_print_fp 4209 1_1_0d EXIST::FUNCTION:DSA,STDIO +X509_STORE_set_get_issuer 4210 1_1_0d EXIST::FUNCTION: +ASN1_SCTX_set_app_data 4211 1_1_0d EXIST::FUNCTION: +PKCS5_pbe2_set_iv 4212 1_1_0d EXIST::FUNCTION: +SOF_GetEncryptMethod 4213 1_1_0d EXIST::FUNCTION: +SAF_AddCrl 4214 1_1_0d EXIST::FUNCTION: +SHA256_Transform 4215 1_1_0d EXIST::FUNCTION: +MD2_Init 4216 1_1_0d EXIST::FUNCTION:MD2 +EVP_PKEY_asn1_set_security_bits 4217 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get1_SM9_MASTER 4218 1_1_0d EXIST::FUNCTION:SM9 +CRYPTO_mem_leaks_fp 4219 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG,STDIO +PAILLIER_check_key 4220 1_1_0d EXIST::FUNCTION:PAILLIER +ENGINE_cmd_is_executable 4221 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY2PKCS8 4222 1_1_0d EXIST::FUNCTION: +EVP_bf_cbc 4223 1_1_0d EXIST::FUNCTION:BF +d2i_X509_REQ_INFO 4224 1_1_0d EXIST::FUNCTION: +EC_KEY_generate_key 4225 1_1_0d EXIST::FUNCTION:EC +EC_POINT_mul 4226 1_1_0d EXIST::FUNCTION:EC +CTLOG_STORE_load_file 4227 1_1_0d EXIST::FUNCTION:CT +OCSP_sendreq_nbio 4228 1_1_0d EXIST::FUNCTION:OCSP +EVP_MD_meth_dup 4229 1_1_0d EXIST::FUNCTION: +X509V3_EXT_get 4230 1_1_0d EXIST::FUNCTION: +EC_KEY_can_sign 4231 1_1_0d EXIST::FUNCTION:EC +BN_mod_exp_simple 4232 1_1_0d EXIST::FUNCTION: +X509_NAME_ENTRY_set_data 4233 1_1_0d EXIST::FUNCTION: +EVP_chacha20 4234 1_1_0d EXIST::FUNCTION:CHACHA +RSA_padding_check_X931 4235 1_1_0d EXIST::FUNCTION:RSA +X509V3_add_value_int 4236 1_1_0d EXIST::FUNCTION: +RSA_meth_set_priv_dec 4237 1_1_0d EXIST::FUNCTION:RSA +BIO_meth_get_read 4238 1_1_0d EXIST::FUNCTION: +X509_check_private_key 4239 1_1_0d EXIST::FUNCTION: +PEM_read_bio_DSAPrivateKey 4240 1_1_0d EXIST::FUNCTION:DSA +ASYNC_is_capable 4241 1_1_0d EXIST::FUNCTION: +ASN1_TYPE_get_int_octetstring 4242 1_1_0d EXIST::FUNCTION: +SM2CiphertextValue_new_from_ECCCIPHERBLOB 4243 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 +CTLOG_free 4244 1_1_0d EXIST::FUNCTION:CT +CPK_PUBLIC_PARAMS_validate_private_key 4245 1_1_0d EXIST::FUNCTION:CPK +SKF_GetDevInfo 4246 1_1_0d EXIST::FUNCTION:SKF +TS_REQ_new 4247 1_1_0d EXIST::FUNCTION:TS +DSA_meth_get_flags 4248 1_1_0d EXIST::FUNCTION:DSA +EVP_get_cipherbysgd 4249 1_1_0d EXIST::FUNCTION:GMAPI +X509v3_addr_canonize 4250 1_1_0d EXIST::FUNCTION:RFC3779 +COMP_get_name 4251 1_1_0d EXIST::FUNCTION:COMP +X509_STORE_CTX_get0_parent_ctx 4252 1_1_0d EXIST::FUNCTION: +OCSP_SINGLERESP_free 4253 1_1_0d EXIST::FUNCTION:OCSP +MD2_options 4254 1_1_0d EXIST::FUNCTION:MD2 +ENGINE_get_pkey_asn1_meth_str 4255 1_1_0d EXIST::FUNCTION:ENGINE +EVP_PKEY_meth_set_decrypt 4256 1_1_0d EXIST::FUNCTION: +PKCS5_v2_PBE_keyivgen 4257 1_1_0d EXIST::FUNCTION: +X509_STORE_get_check_revocation 4258 1_1_0d EXIST::FUNCTION: +TS_CONF_load_certs 4259 1_1_0d EXIST::FUNCTION:TS +X509_STORE_set_verify 4260 1_1_0d EXIST::FUNCTION: +X509_REQ_it 4261 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_REQ_it 4261 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_PKEY_CTX_ctrl_str 4262 1_1_0d EXIST::FUNCTION: +i2d_RSAPublicKey_fp 4263 1_1_0d EXIST::FUNCTION:RSA,STDIO +PKCS7_add_recipient_info 4264 1_1_0d EXIST::FUNCTION: +RSA_meth_set_priv_enc 4265 1_1_0d EXIST::FUNCTION:RSA +PKCS12_gen_mac 4266 1_1_0d EXIST::FUNCTION: +PEM_get_EVP_CIPHER_INFO 4267 1_1_0d EXIST::FUNCTION: +SHA256_Final 4268 1_1_0d EXIST::FUNCTION: +PKCS7_ENCRYPT_free 4269 1_1_0d EXIST::FUNCTION: +SKF_GetContainerTypeName 4270 1_1_0d EXIST::FUNCTION:SKF +X509_NAME_ENTRY_get_object 4271 1_1_0d EXIST::FUNCTION: +BIO_get_new_index 4272 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_iv_length 4273 1_1_0d EXIST::FUNCTION: +X509at_get0_data_by_OBJ 4274 1_1_0d EXIST::FUNCTION: +EVP_MD_CTX_update_fn 4275 1_1_0d EXIST::FUNCTION: +i2d_SM9Ciphertext_fp 4276 1_1_0d EXIST::FUNCTION:SM9,STDIO +PEM_write_bio_PKCS8_PRIV_KEY_INFO 4277 1_1_0d EXIST::FUNCTION: +ERR_load_CRYPTO_strings 4278 1_1_0d EXIST:!VMS:FUNCTION: +ERR_load_CRYPTOlib_strings 4278 1_1_0d EXIST:VMS:FUNCTION: +CRYPTO_secure_malloc_done 4279 1_1_0d EXIST::FUNCTION: +CPK_MASTER_SECRET_print 4280 1_1_0d EXIST::FUNCTION:CPK +i2d_SM9MasterSecret 4281 1_1_0d EXIST::FUNCTION:SM9 +EVP_PBE_get 4282 1_1_0d EXIST::FUNCTION: +PEM_write_PrivateKey 4283 1_1_0d EXIST::FUNCTION:STDIO +CMS_add_simple_smimecap 4284 1_1_0d EXIST::FUNCTION:CMS +EVP_sha1 4285 1_1_0d EXIST::FUNCTION: +SKF_DisConnectDev 4286 1_1_0d EXIST::FUNCTION:SKF +SAF_EccPublicKeyEncByCert 4287 1_1_0d EXIST::FUNCTION: +CRYPTO_ccm128_encrypt 4288 1_1_0d EXIST::FUNCTION: +OCSP_REVOKEDINFO_free 4289 1_1_0d EXIST::FUNCTION:OCSP +SAF_SM2_EncodeEnvelopedData 4290 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_ext_free 4291 1_1_0d EXIST::FUNCTION:TS +BN_sub_word 4292 1_1_0d EXIST::FUNCTION: +X509V3_EXT_conf_nid 4293 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_reset 4294 1_1_0d EXIST::FUNCTION: +PKCS7_ISSUER_AND_SERIAL_new 4295 1_1_0d EXIST::FUNCTION: +d2i_PKCS8_PRIV_KEY_INFO 4296 1_1_0d EXIST::FUNCTION: +i2d_OCSP_ONEREQ 4297 1_1_0d EXIST::FUNCTION:OCSP +X509_get_pubkey 4298 1_1_0d EXIST::FUNCTION: +COMP_compress_block 4299 1_1_0d EXIST::FUNCTION:COMP +SEED_set_key 4300 1_1_0d EXIST::FUNCTION:SEED +RSA_new_method 4301 1_1_0d EXIST::FUNCTION:RSA +NCONF_load_bio 4302 1_1_0d EXIST::FUNCTION: +SOF_EncryptData 4303 1_1_0d EXIST::FUNCTION: +X509_VERIFY_PARAM_free 4304 1_1_0d EXIST::FUNCTION: +ASN1_GENERALSTRING_free 4305 1_1_0d EXIST::FUNCTION: +PKCS7_add_signature 4306 1_1_0d EXIST::FUNCTION: +SDF_GetErrorString 4307 1_1_0d EXIST::FUNCTION:SDF +DSA_generate_parameters 4308 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DSA +X509_cmp_current_time 4309 1_1_0d EXIST::FUNCTION: +PBE2PARAM_new 4310 1_1_0d EXIST::FUNCTION: +CMS_get0_eContentType 4311 1_1_0d EXIST::FUNCTION:CMS +BN_GFP2_zero 4312 1_1_0d EXIST::FUNCTION: +X509v3_addr_get_afi 4313 1_1_0d EXIST::FUNCTION:RFC3779 +NETSCAPE_CERT_SEQUENCE_free 4314 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_set_padding 4315 1_1_0d EXIST::FUNCTION: +BUF_MEM_new_ex 4316 1_1_0d EXIST::FUNCTION: +FFX_init 4317 1_1_0d EXIST::FUNCTION: +ENGINE_add_conf_module 4318 1_1_0d EXIST::FUNCTION:ENGINE +SCT_get_version 4319 1_1_0d EXIST::FUNCTION:CT +SAF_Base64_Decode 4320 1_1_0d EXIST::FUNCTION: +EVP_CipherFinal 4321 1_1_0d EXIST::FUNCTION: +CAST_ecb_encrypt 4322 1_1_0d EXIST::FUNCTION:CAST +SM9_VerifyFinal 4323 1_1_0d EXIST::FUNCTION:SM9 +CMS_set_detached 4324 1_1_0d EXIST::FUNCTION:CMS +ASN1_mbstring_copy 4325 1_1_0d EXIST::FUNCTION: +BN_GF2m_mod_div_arr 4326 1_1_0d EXIST::FUNCTION:EC2M +X509v3_get_ext_by_OBJ 4327 1_1_0d EXIST::FUNCTION: +SM2_compute_message_digest 4328 1_1_0d EXIST::FUNCTION:SM2 +SKF_RSAVerify 4329 1_1_0d EXIST::FUNCTION:SKF +X509_policy_tree_level_count 4330 1_1_0d EXIST::FUNCTION: +EVP_sms4_cfb8 4331 1_1_0d EXIST::FUNCTION:SMS4 +X509at_get_attr_count 4332 1_1_0d EXIST::FUNCTION: +EVP_rc2_ecb 4333 1_1_0d EXIST::FUNCTION:RC2 +CRYPTO_secure_actual_size 4334 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_dup 4335 1_1_0d EXIST::FUNCTION:TS +X509_LOOKUP_by_alias 4336 1_1_0d EXIST::FUNCTION: +EVP_OpenFinal 4337 1_1_0d EXIST::FUNCTION:RSA +d2i_DSAparams 4338 1_1_0d EXIST::FUNCTION:DSA +DH_free 4339 1_1_0d EXIST::FUNCTION:DH +RSA_get0_engine 4340 1_1_0d EXIST::FUNCTION:RSA +d2i_ASN1_GENERALIZEDTIME 4341 1_1_0d EXIST::FUNCTION: +CMS_SignerInfo_cert_cmp 4342 1_1_0d EXIST::FUNCTION:CMS +BIO_meth_set_gets 4343 1_1_0d EXIST::FUNCTION: +EVP_PKEY_sign 4344 1_1_0d EXIST::FUNCTION: +UI_get0_output_string 4345 1_1_0d EXIST::FUNCTION:UI +RAND_write_file 4346 1_1_0d EXIST::FUNCTION: +ASN1_item_verify 4347 1_1_0d EXIST::FUNCTION: +CMS_unsigned_add1_attr_by_NID 4348 1_1_0d EXIST::FUNCTION:CMS +PEM_write_PaillierPublicKey 4349 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +BN_GF2m_mod_sqrt_arr 4350 1_1_0d EXIST::FUNCTION:EC2M +ASN1_UTCTIME_set 4351 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_set_critical 4352 1_1_0d EXIST::FUNCTION: +POLICY_MAPPING_it 4353 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +POLICY_MAPPING_it 4353 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EC_KEY_METHOD_get_compute_key 4354 1_1_0d EXIST::FUNCTION:EC +ASYNC_unblock_pause 4355 1_1_0d EXIST::FUNCTION: +NETSCAPE_SPKI_print 4356 1_1_0d EXIST::FUNCTION: +EC_type1curve_tate 4357 1_1_0d EXIST::FUNCTION: +ERR_get_next_error_library 4358 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_nonce 4359 1_1_0d EXIST::FUNCTION:TS +DSA_meth_set0_app_data 4360 1_1_0d EXIST::FUNCTION:DSA +TS_VERIFY_CTX_set_store 4361 1_1_0d EXIST::FUNCTION:TS +RSA_meth_set1_name 4362 1_1_0d EXIST::FUNCTION:RSA +SDF_ExchangeDigitEnvelopeBaseOnECC 4363 1_1_0d EXIST::FUNCTION: +SM9_KEY_up_ref 4364 1_1_0d EXIST::FUNCTION:SM9 +EVP_MD_meth_free 4365 1_1_0d EXIST::FUNCTION: +RSA_private_encrypt 4366 1_1_0d EXIST::FUNCTION:RSA +X509_STORE_CTX_get_verify_cb 4367 1_1_0d EXIST::FUNCTION: +EVP_idea_ofb 4368 1_1_0d EXIST::FUNCTION:IDEA +PROXY_CERT_INFO_EXTENSION_free 4369 1_1_0d EXIST::FUNCTION: +ECDSA_sign_ex 4370 1_1_0d EXIST::FUNCTION:EC +RAND_get_rand_method 4371 1_1_0d EXIST::FUNCTION: +SAF_GetCaCertificate 4372 1_1_0d EXIST::FUNCTION: +CT_POLICY_EVAL_CTX_get0_cert 4373 1_1_0d EXIST::FUNCTION:CT +RAND_OpenSSL 4374 1_1_0d EXIST::FUNCTION: +i2d_TS_RESP_fp 4375 1_1_0d EXIST::FUNCTION:STDIO,TS +d2i_SM9MasterSecret 4376 1_1_0d EXIST::FUNCTION:SM9 +BIO_dump_indent 4377 1_1_0d EXIST::FUNCTION: +X509_CRL_new 4378 1_1_0d EXIST::FUNCTION: +POLICY_MAPPING_free 4379 1_1_0d EXIST::FUNCTION: +X509_STORE_set1_param 4380 1_1_0d EXIST::FUNCTION: +X509_check_issued 4381 1_1_0d EXIST::FUNCTION: +ESS_SIGNING_CERT_free 4382 1_1_0d EXIST::FUNCTION:TS +EVP_DigestFinal 4383 1_1_0d EXIST::FUNCTION: +i2d_X509_NAME 4384 1_1_0d EXIST::FUNCTION: +PEM_read_DHparams 4385 1_1_0d EXIST::FUNCTION:DH,STDIO +SAF_EnumCertificates 4386 1_1_0d EXIST::FUNCTION: +OPENSSL_asc2uni 4387 1_1_0d EXIST::FUNCTION: +X509v3_asid_validate_resource_set 4388 1_1_0d EXIST::FUNCTION:RFC3779 +sm3_update 4389 1_1_0d EXIST::FUNCTION:SM3 +DH_meth_set_bn_mod_exp 4390 1_1_0d EXIST::FUNCTION:DH +SM2_decrypt 4391 1_1_0d EXIST::FUNCTION:SM2 +EVP_MD_CTX_get_sgd 4392 1_1_0d EXIST::FUNCTION:GMAPI +i2d_POLICYINFO 4393 1_1_0d EXIST::FUNCTION: +CONF_modules_load 4394 1_1_0d EXIST::FUNCTION: +d2i_X509_REQ 4395 1_1_0d EXIST::FUNCTION: +X509_CRL_INFO_it 4396 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CRL_INFO_it 4396 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +KDF_get_x9_63 4397 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get_operation 4398 1_1_0d EXIST::FUNCTION: +RC2_set_key 4399 1_1_0d EXIST::FUNCTION:RC2 +ENGINE_set_default_string 4400 1_1_0d EXIST::FUNCTION:ENGINE +TS_TST_INFO_set_accuracy 4401 1_1_0d EXIST::FUNCTION:TS +PAILLIER_generate_key 4402 1_1_0d EXIST::FUNCTION:PAILLIER +BIO_ADDR_family 4403 1_1_0d EXIST::FUNCTION:SOCK +EVP_CIPHER_meth_get_ctrl 4404 1_1_0d EXIST::FUNCTION: +ASN1_UTCTIME_it 4405 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_UTCTIME_it 4405 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_des_cbc 4406 1_1_0d EXIST::FUNCTION:DES +ASN1_mbstring_ncopy 4407 1_1_0d EXIST::FUNCTION: +d2i_TS_TST_INFO_bio 4408 1_1_0d EXIST::FUNCTION:TS +EVP_aes_256_cfb8 4409 1_1_0d EXIST::FUNCTION: +X509at_add1_attr_by_NID 4410 1_1_0d EXIST::FUNCTION: +EC_type1curve_tate_ratio 4411 1_1_0d EXIST::FUNCTION: +SDF_ReadFile 4412 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_set0_param 4413 1_1_0d EXIST::FUNCTION: +X509_EXTENSION_get_data 4414 1_1_0d EXIST::FUNCTION: +EVP_EncryptUpdate 4415 1_1_0d EXIST::FUNCTION: +SDF_HashInit 4416 1_1_0d EXIST::FUNCTION: +X509_CRL_get_REVOKED 4417 1_1_0d EXIST::FUNCTION: +X509_ALGOR_set0 4418 1_1_0d EXIST::FUNCTION: +PEM_read_bio_RSA_PUBKEY 4419 1_1_0d EXIST::FUNCTION:RSA +BN_asc2bn 4420 1_1_0d EXIST::FUNCTION: +BIO_set_shutdown 4421 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_new 4422 1_1_0d EXIST::FUNCTION:TS +SM9_KEY_free 4423 1_1_0d EXIST::FUNCTION:SM9 +EVP_EncodeInit 4424 1_1_0d EXIST::FUNCTION: +EC_GROUP_set_curve_GF2m 4425 1_1_0d EXIST::FUNCTION:EC,EC2M +X509_REQ_new 4426 1_1_0d EXIST::FUNCTION: +ZUC_128eia3_update 4427 1_1_0d EXIST::FUNCTION:ZUC +i2b_PrivateKey_bio 4428 1_1_0d EXIST::FUNCTION:DSA +EVP_camellia_256_cfb8 4429 1_1_0d EXIST::FUNCTION:CAMELLIA +DISPLAYTEXT_new 4430 1_1_0d EXIST::FUNCTION: +X509_get_default_cert_dir 4431 1_1_0d EXIST::FUNCTION: +RSA_clear_flags 4432 1_1_0d EXIST::FUNCTION:RSA +PKCS7_add_signed_attribute 4433 1_1_0d EXIST::FUNCTION: +UI_ctrl 4434 1_1_0d EXIST::FUNCTION:UI +BN_is_prime_ex 4435 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get0_attr 4436 1_1_0d EXIST::FUNCTION: +d2i_AUTHORITY_KEYID 4437 1_1_0d EXIST::FUNCTION: +d2i_PrivateKey_bio 4438 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_dup 4439 1_1_0d EXIST::FUNCTION: +i2d_TS_RESP_bio 4440 1_1_0d EXIST::FUNCTION:TS +i2d_X509_EXTENSION 4441 1_1_0d EXIST::FUNCTION: +CMAC_Update 4442 1_1_0d EXIST::FUNCTION:CMAC +ASN1_PRINTABLE_it 4443 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_PRINTABLE_it 4443 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +CRYPTO_cts128_encrypt 4444 1_1_0d EXIST::FUNCTION: +o2i_SCT 4445 1_1_0d EXIST::FUNCTION:CT +i2d_X509_NAME_ENTRY 4446 1_1_0d EXIST::FUNCTION: +DH_OpenSSL 4447 1_1_0d EXIST::FUNCTION:DH +BIO_new_PKCS7 4448 1_1_0d EXIST::FUNCTION: +PEM_write_CMS 4449 1_1_0d EXIST::FUNCTION:CMS,STDIO +PKCS7_ENC_CONTENT_free 4450 1_1_0d EXIST::FUNCTION: +OCSP_BASICRESP_get_ext_by_OBJ 4451 1_1_0d EXIST::FUNCTION:OCSP +BN_generate_dsa_nonce 4452 1_1_0d EXIST::FUNCTION: +CONF_free 4453 1_1_0d EXIST::FUNCTION: +i2d_ACCESS_DESCRIPTION 4454 1_1_0d EXIST::FUNCTION: +i2d_RSA_PUBKEY_bio 4455 1_1_0d EXIST::FUNCTION:RSA +EC_GROUP_new_by_curve_name 4456 1_1_0d EXIST::FUNCTION:EC +EC_KEY_METHOD_get_sign 4457 1_1_0d EXIST::FUNCTION:EC +RSA_set_method 4458 1_1_0d EXIST::FUNCTION:RSA +BN_get_rfc2409_prime_768 4459 1_1_0d EXIST::FUNCTION: +d2i_RSAPrivateKey_bio 4460 1_1_0d EXIST::FUNCTION:RSA +d2i_ESS_ISSUER_SERIAL 4461 1_1_0d EXIST::FUNCTION:TS +i2d_PROXY_POLICY 4462 1_1_0d EXIST::FUNCTION: +ASYNC_WAIT_CTX_free 4463 1_1_0d EXIST::FUNCTION: +X509_SIG_get0 4464 1_1_0d EXIST::FUNCTION: +X509v3_delete_ext 4465 1_1_0d EXIST::FUNCTION: +ASN1_SEQUENCE_it 4466 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_SEQUENCE_it 4466 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SAF_DestroyHashObj 4467 1_1_0d EXIST::FUNCTION: +EC_POINTs_make_affine 4468 1_1_0d EXIST::FUNCTION:EC +PEM_bytes_read_bio 4469 1_1_0d EXIST::FUNCTION: +ASN1_dup 4470 1_1_0d EXIST::FUNCTION: +OPENSSL_utf82uni 4471 1_1_0d EXIST::FUNCTION: +BIO_ADDR_hostname_string 4472 1_1_0d EXIST::FUNCTION:SOCK +CMS_unsigned_get_attr_count 4473 1_1_0d EXIST::FUNCTION:CMS +X509_LOOKUP_by_issuer_serial 4474 1_1_0d EXIST::FUNCTION: +PEM_write_bio_SM9PrivateKey 4475 1_1_0d EXIST::FUNCTION:SM9 +DSO_convert_filename 4476 1_1_0d EXIST::FUNCTION: +sm3_final 4477 1_1_0d EXIST::FUNCTION:SM3 +PKCS7_free 4478 1_1_0d EXIST::FUNCTION: +BN_set_bit 4479 1_1_0d EXIST::FUNCTION: +d2i_DSA_PUBKEY 4480 1_1_0d EXIST::FUNCTION:DSA +SCT_set0_log_id 4481 1_1_0d EXIST::FUNCTION:CT +SMIME_write_CMS 4482 1_1_0d EXIST::FUNCTION:CMS +SKF_CreateContainer 4483 1_1_0d EXIST::FUNCTION:SKF +UI_get_default_method 4484 1_1_0d EXIST::FUNCTION:UI +X509v3_asid_validate_path 4485 1_1_0d EXIST::FUNCTION:RFC3779 +d2i_EXTENDED_KEY_USAGE 4486 1_1_0d EXIST::FUNCTION: +d2i_SM9PublicParameters 4487 1_1_0d EXIST::FUNCTION:SM9 +SAF_SM2_DecodeSignedAndEnvelopedData 4488 1_1_0d EXIST::FUNCTION: +HMAC_CTX_set_flags 4489 1_1_0d EXIST::FUNCTION: +CMS_verify_receipt 4490 1_1_0d EXIST::FUNCTION:CMS +PEM_read_PaillierPrivateKey 4491 1_1_0d EXIST::FUNCTION:PAILLIER,STDIO +X509_STORE_CTX_get_cleanup 4492 1_1_0d EXIST::FUNCTION: +CRYPTO_mem_leaks 4493 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +i2d_RSA_PSS_PARAMS 4494 1_1_0d EXIST::FUNCTION:RSA +BUF_reverse 4495 1_1_0d EXIST::FUNCTION: +ASN1_OCTET_STRING_NDEF_it 4496 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_OCTET_STRING_NDEF_it 4496 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_write_PKCS8 4497 1_1_0d EXIST::FUNCTION:STDIO +SCT_get_signature_nid 4498 1_1_0d EXIST::FUNCTION:CT +CRYPTO_mem_debug_free 4499 1_1_0d EXIST::FUNCTION:CRYPTO_MDEBUG +BN_with_flags 4500 1_1_0d EXIST::FUNCTION: +DES_crypt 4501 1_1_0d EXIST::FUNCTION:DES +BIO_meth_get_write 4502 1_1_0d EXIST::FUNCTION: +BN_GENCB_set_old 4503 1_1_0d EXIST::FUNCTION: +ENGINE_load_builtin_engines 4504 1_1_0d EXIST::FUNCTION:ENGINE +SDF_InternalPublicKeyOperation_RSA 4505 1_1_0d EXIST::FUNCTION: +BN_rand_range 4506 1_1_0d EXIST::FUNCTION: +d2i_NETSCAPE_SPKAC 4507 1_1_0d EXIST::FUNCTION: +CMS_get1_ReceiptRequest 4508 1_1_0d EXIST::FUNCTION:CMS +DES_ecb_encrypt 4509 1_1_0d EXIST::FUNCTION:DES +DSO_free 4510 1_1_0d EXIST::FUNCTION: +sm3_hmac_init 4511 1_1_0d EXIST::FUNCTION:SM3 +EVP_PKEY_decrypt_init 4512 1_1_0d EXIST::FUNCTION: +sms4_wrap_key 4513 1_1_0d EXIST::FUNCTION:SMS4 +CRYPTO_num_locks 4514 1_1_0d EXIST::FUNCTION: +ESS_SIGNING_CERT_dup 4515 1_1_0d EXIST::FUNCTION:TS +BIO_find_type 4516 1_1_0d EXIST::FUNCTION: +BIO_new_connect 4517 1_1_0d EXIST::FUNCTION:SOCK +X509_REQ_get_X509_PUBKEY 4518 1_1_0d EXIST::FUNCTION: +ENGINE_register_pkey_asn1_meths 4519 1_1_0d EXIST::FUNCTION:ENGINE +EC_KEY_set_ECCPRIVATEKEYBLOB 4520 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +GENERAL_NAME_new 4521 1_1_0d EXIST::FUNCTION: +DSO_global_lookup 4522 1_1_0d EXIST::FUNCTION: +CONF_get_string 4523 1_1_0d EXIST::FUNCTION: +CONF_load_fp 4524 1_1_0d EXIST::FUNCTION:STDIO +EXTENDED_KEY_USAGE_it 4525 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +EXTENDED_KEY_USAGE_it 4525 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +EVP_sms4_wrap_pad 4526 1_1_0d EXIST::FUNCTION:SMS4 +ASN1_STRING_length_set 4527 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_node_usage_stats_bio 4528 1_1_0d EXIST::FUNCTION: +i2d_TS_TST_INFO 4529 1_1_0d EXIST::FUNCTION:TS +PEM_write_bio_SM9PublicKey 4530 1_1_0d EXIST::FUNCTION:SM9 +CRYPTO_THREAD_get_current_id 4531 1_1_0d EXIST::FUNCTION: +ASN1_GENERALIZEDTIME_adj 4532 1_1_0d EXIST::FUNCTION: +EVP_camellia_192_cfb8 4533 1_1_0d EXIST::FUNCTION:CAMELLIA +EC_KEY_get_default_method 4534 1_1_0d EXIST::FUNCTION:EC +EVP_CIPHER_meth_get_set_asn1_params 4535 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_create_crl 4536 1_1_0d EXIST::FUNCTION: +EC_GFp_sm2p256_method 4537 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128,SM2 +ASYNC_block_pause 4538 1_1_0d EXIST::FUNCTION: +SDF_GenerateKeyWithKEK 4539 1_1_0d EXIST::FUNCTION: +ECDSA_SIG_new 4540 1_1_0d EXIST::FUNCTION:EC +EVP_rc2_40_cbc 4541 1_1_0d EXIST::FUNCTION:RC2 +SM9PublicKey_get_gmtls_encoded 4542 1_1_0d EXIST::FUNCTION:SM9 +PKCS7_set_cipher 4543 1_1_0d EXIST::FUNCTION: +X509_STORE_free 4544 1_1_0d EXIST::FUNCTION: +ENGINE_set_load_pubkey_function 4545 1_1_0d EXIST::FUNCTION:ENGINE +BIO_meth_set_create 4546 1_1_0d EXIST::FUNCTION: +BIO_new_fp 4547 1_1_0d EXIST::FUNCTION:STDIO +CRYPTO_clear_realloc 4548 1_1_0d EXIST::FUNCTION: +X509_CRL_it 4549 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +X509_CRL_it 4549 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +SAF_MacFinal 4550 1_1_0d EXIST::FUNCTION: +SM9_MASTER_KEY_up_ref 4551 1_1_0d EXIST::FUNCTION:SM9 +SKF_Decrypt 4552 1_1_0d EXIST::FUNCTION:SKF +BN_mask_bits 4553 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_create_cert 4554 1_1_0d EXIST::FUNCTION: +X509_STORE_set_lookup_crls 4555 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_clock_precision_digits 4556 1_1_0d EXIST::FUNCTION:TS +ECDSA_sign_setup 4557 1_1_0d EXIST::FUNCTION:EC +SM2_sign_ex 4558 1_1_0d EXIST::FUNCTION:SM2 +EVP_aes_128_xts 4559 1_1_0d EXIST::FUNCTION: +PROXY_POLICY_free 4560 1_1_0d EXIST::FUNCTION: +PEM_write_ECPrivateKey 4561 1_1_0d EXIST::FUNCTION:EC,STDIO +RSA_public_encrypt 4562 1_1_0d EXIST::FUNCTION:RSA +i2d_DSAparams 4563 1_1_0d EXIST::FUNCTION:DSA +CMS_signed_add1_attr_by_OBJ 4564 1_1_0d EXIST::FUNCTION:CMS +ENGINE_set_RSA 4565 1_1_0d EXIST::FUNCTION:ENGINE +CMS_is_detached 4566 1_1_0d EXIST::FUNCTION:CMS +BN_is_bit_set 4567 1_1_0d EXIST::FUNCTION: +ENGINE_get_DSA 4568 1_1_0d EXIST::FUNCTION:ENGINE +SKF_DigestFinal 4569 1_1_0d EXIST::FUNCTION:SKF +EVP_rc5_32_12_16_ecb 4570 1_1_0d EXIST::FUNCTION:RC5 +CRYPTO_gcm128_encrypt 4571 1_1_0d EXIST::FUNCTION: +BB1IBE_do_decrypt 4572 1_1_0d EXIST::FUNCTION:BB1IBE +ASN1_UNIVERSALSTRING_new 4573 1_1_0d EXIST::FUNCTION: +ENGINE_get_EC 4574 1_1_0d EXIST::FUNCTION:ENGINE +i2d_PKCS7_NDEF 4575 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_clear_flags 4576 1_1_0d EXIST::FUNCTION: +Camellia_ofb128_encrypt 4577 1_1_0d EXIST::FUNCTION:CAMELLIA +SAF_SymmEncryptFinal 4578 1_1_0d EXIST::FUNCTION: +EVP_PBE_alg_add_type 4579 1_1_0d EXIST::FUNCTION: +BIO_connect 4580 1_1_0d EXIST::FUNCTION:SOCK +EVP_PKEY_CTX_set_app_data 4581 1_1_0d EXIST::FUNCTION: +BIO_new_dgram 4582 1_1_0d EXIST::FUNCTION:DGRAM +EC_curve_nist2nid 4583 1_1_0d EXIST::FUNCTION:EC +EVP_MD_meth_get_input_blocksize 4584 1_1_0d EXIST::FUNCTION: +SEED_cfb128_encrypt 4585 1_1_0d EXIST::FUNCTION:SEED +EVP_des_ecb 4586 1_1_0d EXIST::FUNCTION:DES +d2i_X509_CRL_bio 4587 1_1_0d EXIST::FUNCTION: +X509_get0_pubkey 4588 1_1_0d EXIST::FUNCTION: +TS_TST_INFO_get_time 4589 1_1_0d EXIST::FUNCTION:TS +i2d_CMS_bio 4590 1_1_0d EXIST::FUNCTION:CMS +BN_nist_mod_256 4591 1_1_0d EXIST::FUNCTION: +X509_STORE_lock 4592 1_1_0d EXIST::FUNCTION: +X509_CRL_get0_lastUpdate 4593 1_1_0d EXIST::FUNCTION: +i2d_ECParameters 4594 1_1_0d EXIST::FUNCTION:EC +EVP_camellia_192_ecb 4595 1_1_0d EXIST::FUNCTION:CAMELLIA +SXNET_free 4596 1_1_0d EXIST::FUNCTION: +EVP_PKEY_get0_hmac 4597 1_1_0d EXIST::FUNCTION: +PKCS12_pbe_crypt 4598 1_1_0d EXIST::FUNCTION: +DSA_meth_set_sign_setup 4599 1_1_0d EXIST::FUNCTION:DSA +EVP_get_default_cipher 4600 1_1_0d EXIST::FUNCTION: +ASN1_TBOOLEAN_it 4601 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_TBOOLEAN_it 4601 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +RAND_egd 4602 1_1_0d EXIST::FUNCTION:EGD +SEED_decrypt 4603 1_1_0d EXIST::FUNCTION:SEED +RSA_set_flags 4604 1_1_0d EXIST::FUNCTION:RSA +PEM_read_bio_ECPrivateKey 4605 1_1_0d EXIST::FUNCTION:EC +X509_ATTRIBUTE_create_by_OBJ 4606 1_1_0d EXIST::FUNCTION: +BIO_set_retry_reason 4607 1_1_0d EXIST::FUNCTION: +ESS_ISSUER_SERIAL_free 4608 1_1_0d EXIST::FUNCTION:TS +ERR_peek_last_error_line 4609 1_1_0d EXIST::FUNCTION: +EVP_sms4_ccm 4610 1_1_0d EXIST::FUNCTION:SMS4 +d2i_ASN1_SET_ANY 4611 1_1_0d EXIST::FUNCTION: +EVP_aes_192_cbc 4612 1_1_0d EXIST::FUNCTION: +SKF_ExtECCEncrypt 4613 1_1_0d EXIST::FUNCTION:SKF +ENGINE_set_name 4614 1_1_0d EXIST::FUNCTION:ENGINE +PaillierPrivateKey_it 4615 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:PAILLIER +PaillierPrivateKey_it 4615 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:PAILLIER +PEM_read_bio_Parameters 4616 1_1_0d EXIST::FUNCTION: +CMS_EnvelopedData_create 4617 1_1_0d EXIST::FUNCTION:CMS +UTF8_getc 4618 1_1_0d EXIST::FUNCTION: +BFPublicParameters_it 4619 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:BFIBE +BFPublicParameters_it 4619 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:BFIBE +SHA384_Update 4620 1_1_0d EXIST:!VMSVAX:FUNCTION: +PKCS7_ENCRYPT_it 4621 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +PKCS7_ENCRYPT_it 4621 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +PEM_write_DHparams 4622 1_1_0d EXIST::FUNCTION:DH,STDIO +EVP_aes_128_wrap 4623 1_1_0d EXIST::FUNCTION: +OBJ_length 4624 1_1_0d EXIST::FUNCTION: +d2i_BB1MasterSecret 4625 1_1_0d EXIST::FUNCTION:BB1IBE +DH_meth_set_init 4626 1_1_0d EXIST::FUNCTION:DH +POLICYINFO_free 4627 1_1_0d EXIST::FUNCTION: +COMP_zlib 4628 1_1_0d EXIST::FUNCTION:COMP +SM9Signature_new 4629 1_1_0d EXIST::FUNCTION:SM9 +EVP_Digest 4630 1_1_0d EXIST::FUNCTION: +RSA_padding_add_PKCS1_type_1 4631 1_1_0d EXIST::FUNCTION:RSA +d2i_OCSP_SERVICELOC 4632 1_1_0d EXIST::FUNCTION:OCSP +PKCS8_pkey_add1_attr_by_NID 4633 1_1_0d EXIST::FUNCTION: +X509_POLICY_NODE_print 4634 1_1_0d EXIST::FUNCTION: +i2d_EC_PUBKEY 4635 1_1_0d EXIST::FUNCTION:EC +EC_KEY_new_from_ECCrefPublicKey 4636 1_1_0d EXIST::FUNCTION:EC,GMAPI,SDF +DIST_POINT_NAME_it 4637 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +DIST_POINT_NAME_it 4637 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +ENGINE_get_default_RSA 4638 1_1_0d EXIST::FUNCTION:ENGINE +i2d_DSAPrivateKey 4639 1_1_0d EXIST::FUNCTION:DSA +SCT_LIST_print 4640 1_1_0d EXIST::FUNCTION:CT +i2d_IPAddressChoice 4641 1_1_0d EXIST::FUNCTION:RFC3779 +EVP_CIPHER_CTX_iv 4642 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get0_serialNumber 4643 1_1_0d EXIST::FUNCTION: +BIO_f_null 4644 1_1_0d EXIST::FUNCTION: +X509_PKEY_new 4645 1_1_0d EXIST::FUNCTION: +PEM_write_RSAPublicKey 4646 1_1_0d EXIST::FUNCTION:RSA,STDIO +EVP_PKEY_get0_SM9 4647 1_1_0d EXIST::FUNCTION:SM9 +BN_mod_lshift1_quick 4648 1_1_0d EXIST::FUNCTION: +OPENSSL_thread_stop 4649 1_1_0d EXIST::FUNCTION: +EVP_aes_256_cfb1 4650 1_1_0d EXIST::FUNCTION: +IDEA_options 4651 1_1_0d EXIST::FUNCTION:IDEA +X509_check_akid 4652 1_1_0d EXIST::FUNCTION: +ASN1_INTEGER_it 4653 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +ASN1_INTEGER_it 4653 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +X509V3_EXT_nconf_nid 4654 1_1_0d EXIST::FUNCTION: +ASN1_TIME_print 4655 1_1_0d EXIST::FUNCTION: +EVP_sm9hash2_sm3 4656 1_1_0d EXIST::FUNCTION:SM3,SM9 +d2i_TS_RESP_bio 4657 1_1_0d EXIST::FUNCTION:TS +RSA_meth_get0_app_data 4658 1_1_0d EXIST::FUNCTION:RSA +EVP_PKEY_derive_init 4659 1_1_0d EXIST::FUNCTION: +NCONF_get_section 4660 1_1_0d EXIST::FUNCTION: +PEM_write_bio_DSAPrivateKey 4661 1_1_0d EXIST::FUNCTION:DSA +BIO_meth_get_gets 4662 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_CTX_get_cipher_data 4663 1_1_0d EXIST::FUNCTION: +ECDSA_sign 4664 1_1_0d EXIST::FUNCTION:EC +DSA_get_method 4665 1_1_0d EXIST::FUNCTION:DSA +PKCS7_add_attrib_content_type 4666 1_1_0d EXIST::FUNCTION: +SHA512 4667 1_1_0d EXIST:!VMSVAX:FUNCTION: +SCT_set_version 4668 1_1_0d EXIST::FUNCTION:CT +TS_CONF_set_signer_cert 4669 1_1_0d EXIST::FUNCTION:TS +ASN1_PRINTABLESTRING_free 4670 1_1_0d EXIST::FUNCTION: +BIO_meth_set_callback_ctrl 4671 1_1_0d EXIST::FUNCTION: +PEM_SignFinal 4672 1_1_0d EXIST::FUNCTION: +ENGINE_get_pkey_asn1_meth_engine 4673 1_1_0d EXIST::FUNCTION:ENGINE +SXNET_it 4674 1_1_0d EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: +SXNET_it 4674 1_1_0d EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: +TS_REQ_set_version 4675 1_1_0d EXIST::FUNCTION:TS +CMAC_Init 4676 1_1_0d EXIST::FUNCTION:CMAC +d2i_PrivateKey_fp 4677 1_1_0d EXIST::FUNCTION:STDIO +SKF_GenerateAgreementDataWithECC 4678 1_1_0d EXIST::FUNCTION:SKF +ENGINE_set_init_function 4679 1_1_0d EXIST::FUNCTION:ENGINE +X509_CRL_get0_by_serial 4680 1_1_0d EXIST::FUNCTION: +EC_POINT_set_affine_coordinates_GFp 4681 1_1_0d EXIST::FUNCTION:EC +X509_VERIFY_PARAM_set_hostflags 4682 1_1_0d EXIST::FUNCTION: +EC_GROUP_free 4683 1_1_0d EXIST::FUNCTION:EC +BN_kronecker 4684 1_1_0d EXIST::FUNCTION: +DES_options 4685 1_1_0d EXIST::FUNCTION:DES +EVP_MD_do_all_sorted 4686 1_1_0d EXIST::FUNCTION: +X509_PUBKEY_free 4687 1_1_0d EXIST::FUNCTION: +CMS_ReceiptRequest_free 4688 1_1_0d EXIST::FUNCTION:CMS +i2d_BB1PublicParameters 4689 1_1_0d EXIST::FUNCTION:BB1IBE +DES_encrypt1 4690 1_1_0d EXIST::FUNCTION:DES +CRYPTO_THREAD_read_lock 4691 1_1_0d EXIST::FUNCTION: +BN_nist_mod_384 4692 1_1_0d EXIST::FUNCTION: +X509_TRUST_get_trust 4693 1_1_0d EXIST::FUNCTION: +ASN1_STRING_set_default_mask 4694 1_1_0d EXIST::FUNCTION: +d2i_IPAddressOrRange 4695 1_1_0d EXIST::FUNCTION:RFC3779 +EC_KEY_get_flags 4696 1_1_0d EXIST::FUNCTION:EC +BFIBE_extract_private_key 4697 1_1_0d EXIST::FUNCTION:BFIBE +EVP_PKEY_meth_get_verifyctx 4698 1_1_0d EXIST::FUNCTION: +PKCS12_key_gen_utf8 4699 1_1_0d EXIST::FUNCTION: +BN_is_prime_fasttest_ex 4700 1_1_0d EXIST::FUNCTION: +PKCS7_decrypt 4701 1_1_0d EXIST::FUNCTION: +EVP_PKEY_encrypt 4702 1_1_0d EXIST::FUNCTION: +PKCS12_SAFEBAG_get0_safes 4703 1_1_0d EXIST::FUNCTION: +d2i_SM9Signature_fp 4704 1_1_0d EXIST::FUNCTION:SM9,STDIO +i2d_DSA_PUBKEY_bio 4705 1_1_0d EXIST::FUNCTION:DSA +EVP_MD_meth_get_ctrl 4706 1_1_0d EXIST::FUNCTION: +CRYPTO_ocb128_encrypt 4707 1_1_0d EXIST::FUNCTION:OCB +BIO_get_port 4708 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +RAND_egd_bytes 4709 1_1_0d EXIST::FUNCTION:EGD +i2d_IPAddressOrRange 4710 1_1_0d EXIST::FUNCTION:RFC3779 +BIO_new 4711 1_1_0d EXIST::FUNCTION: +CRYPTO_memcmp 4712 1_1_0d EXIST::FUNCTION: +d2i_ECCSIGNATUREBLOB 4713 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF +SAF_Pkcs7_EncodeSignedData 4714 1_1_0d EXIST::FUNCTION: +ZUC_128eia3_final 4715 1_1_0d EXIST::FUNCTION:ZUC +BIO_gethostbyname 4716 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SOCK +EVP_CIPHER_meth_dup 4717 1_1_0d EXIST::FUNCTION: +DSA_meth_get_sign_setup 4718 1_1_0d EXIST::FUNCTION:DSA +ASYNC_WAIT_CTX_set_wait_fd 4719 1_1_0d EXIST::FUNCTION: +EC_GROUP_dup 4720 1_1_0d EXIST::FUNCTION:EC +SEED_ofb128_encrypt 4721 1_1_0d EXIST::FUNCTION:SEED +SAF_VerifyCertificateByCrl 4722 1_1_0d EXIST::FUNCTION: +i2d_PKCS7_ENC_CONTENT 4723 1_1_0d EXIST::FUNCTION: +ENGINE_register_DH 4724 1_1_0d EXIST::FUNCTION:ENGINE +SEED_cbc_encrypt 4725 1_1_0d EXIST::FUNCTION:SEED +SM9_signature_size 4726 1_1_0d EXIST::FUNCTION:SM9 +SM2CiphertextValue_set_ECCCIPHERBLOB 4727 1_1_0d EXIST::FUNCTION:EC,GMAPI,SKF,SM2 +EC_GROUP_set_point_conversion_form 4728 1_1_0d EXIST::FUNCTION:EC +EC_GROUP_check_discriminant 4729 1_1_0d EXIST::FUNCTION:EC +ERR_load_KDF2_strings 4730 1_1_0d EXIST::FUNCTION: +d2i_RSA_PUBKEY 4731 1_1_0d EXIST::FUNCTION:RSA +SKF_EncryptUpdate 4732 1_1_0d EXIST::FUNCTION:SKF +SXNET_get_id_INTEGER 4733 1_1_0d EXIST::FUNCTION: +RSA_set0_key 4734 1_1_0d EXIST::FUNCTION:RSA +SCT_set1_extensions 4735 1_1_0d EXIST::FUNCTION:CT +s2i_ASN1_OCTET_STRING 4736 1_1_0d EXIST::FUNCTION: +X509_REVOKED_get_ext_d2i 4737 1_1_0d EXIST::FUNCTION: +SOF_InitCertAppPolicy 4738 1_1_0d EXIST::FUNCTION: +EC_KEY_METHOD_get_decrypt 4739 1_1_0d EXIST::FUNCTION:SM2 +RSA_print 4740 1_1_0d EXIST::FUNCTION:RSA +SDF_PrintECCPrivateKey 4741 1_1_0d EXIST::FUNCTION:SDF +SKF_PrintDevInfo 4742 1_1_0d EXIST::FUNCTION:SKF +i2d_PaillierPrivateKey 4743 1_1_0d EXIST::FUNCTION:PAILLIER +AES_ofb128_encrypt 4744 1_1_0d EXIST::FUNCTION: +EVP_des_ede_ofb 4745 1_1_0d EXIST::FUNCTION:DES +d2i_TS_REQ 4746 1_1_0d EXIST::FUNCTION:TS +PEM_write_SM9PrivateKey 4747 1_1_0d EXIST::FUNCTION:SM9,STDIO +i2d_DHxparams 4748 1_1_0d EXIST::FUNCTION:DH +d2i_X509_SIG 4749 1_1_0d EXIST::FUNCTION: +EC_KEY_get0_private_key 4750 1_1_0d EXIST::FUNCTION:EC +EC_GFp_nistp521_method 4751 1_1_0d EXIST::FUNCTION:EC,EC_NISTP_64_GCC_128 +EVP_PKEY_get1_DSA 4752 1_1_0d EXIST::FUNCTION:DSA +X509_ATTRIBUTE_new 4753 1_1_0d EXIST::FUNCTION: +d2i_PKCS7_ENC_CONTENT 4754 1_1_0d EXIST::FUNCTION: +X509_get0_reject_objects 4755 1_1_0d EXIST::FUNCTION: +EVP_EncryptInit 4756 1_1_0d EXIST::FUNCTION: +EVP_CIPHER_flags 4757 1_1_0d EXIST::FUNCTION: +PEM_write_bio_DHxparams 4758 1_1_0d EXIST::FUNCTION:DH +OCSP_SINGLERESP_get_ext_by_NID 4759 1_1_0d EXIST::FUNCTION:OCSP +RSA_padding_add_SSLv23 4760 1_1_0d EXIST::FUNCTION:RSA +CONF_get_section 4761 1_1_0d EXIST::FUNCTION: +EVP_rc2_cbc 4762 1_1_0d EXIST::FUNCTION:RC2 +X509_STORE_get_verify_cb 4763 1_1_0d EXIST::FUNCTION: +OPENSSL_LH_node_stats 4764 1_1_0d EXIST::FUNCTION:STDIO +BFIBE_setup 4765 1_1_0d EXIST::FUNCTION:BFIBE +BN_mod_lshift 4766 1_1_0d EXIST::FUNCTION: +DSA_meth_set_flags 4767 1_1_0d EXIST::FUNCTION:DSA +X509_STORE_CTX_free 4768 1_1_0d EXIST::FUNCTION: +X509_TRUST_get0 4769 1_1_0d EXIST::FUNCTION: +X509_STORE_load_locations 4770 1_1_0d EXIST::FUNCTION: +EC_GROUP_get_seed_len 4771 1_1_0d EXIST::FUNCTION:EC +CRYPTO_get_ex_new_index 4772 1_1_0d EXIST::FUNCTION: +TS_ACCURACY_get_micros 4773 1_1_0d EXIST::FUNCTION:TS +EC_GROUP_new_from_ecpkparameters 4774 1_1_0d EXIST::FUNCTION:EC +EVP_PKEY_CTX_dup 4775 1_1_0d EXIST::FUNCTION: +BIO_f_reliable 4776 1_1_0d EXIST::FUNCTION: +TS_RESP_CTX_set_status_info 4777 1_1_0d EXIST::FUNCTION:TS +X509_STORE_get_ex_data 4778 1_1_0d EXIST::FUNCTION: +POLICY_CONSTRAINTS_new 4779 1_1_0d EXIST::FUNCTION: +X509_STORE_CTX_get_explicit_policy 4780 1_1_0d EXIST::FUNCTION: +ERR_add_error_vdata 4781 1_1_0d EXIST::FUNCTION: +BIO_ctrl_pending 4782 1_1_0d EXIST::FUNCTION: +X509_TRUST_get_by_id 4783 1_1_0d EXIST::FUNCTION: +X509v3_addr_inherits 4784 1_1_0d EXIST::FUNCTION:RFC3779 +NETSCAPE_SPKI_b64_decode 4785 1_1_0d EXIST::FUNCTION: +TS_REQ_delete_ext 4786 1_1_0d EXIST::FUNCTION:TS +RSA_meth_get_priv_dec 4787 1_1_0d EXIST::FUNCTION:RSA +X509v3_addr_validate_resource_set 4788 1_1_0d EXIST::FUNCTION:RFC3779 +X509_REQ_print_fp 4789 1_1_0d EXIST::FUNCTION:STDIO +DSA_meth_set1_name 4790 1_1_0d EXIST::FUNCTION:DSA +CMS_RecipientEncryptedKey_cert_cmp 4791 1_1_0d EXIST::FUNCTION:CMS +d2i_PaillierPrivateKey 4792 1_1_0d EXIST::FUNCTION:PAILLIER +BN_GFP2_copy 4793 1_1_0d EXIST::FUNCTION: +ECDSA_do_verify 4794 1_1_0d EXIST::FUNCTION:EC +TS_MSG_IMPRINT_get_algo 4795 1_1_0d EXIST::FUNCTION:TS +i2d_SM9Ciphertext 4796 1_1_0d EXIST::FUNCTION:SM9 +PEM_dek_info 4797 1_1_0d EXIST::FUNCTION: +X509at_add1_attr_by_OBJ 4798 1_1_0d EXIST::FUNCTION: +ZUC_generate_keystream 4799 1_1_0d EXIST::FUNCTION:ZUC +d2i_PKEY_USAGE_PERIOD 4800 1_1_0d EXIST::FUNCTION: +EC_KEY_set_default_method 4801 1_1_0d EXIST::FUNCTION:EC +X509_trusted 4802 1_1_0d EXIST::FUNCTION: +ENGINE_set_default_RSA 4803 1_1_0d EXIST::FUNCTION:ENGINE +d2i_ASN1_INTEGER 4804 1_1_0d EXIST::FUNCTION: +CMS_decrypt_set1_pkey 4805 1_1_0d EXIST::FUNCTION:CMS +d2i_CMS_bio 4806 1_1_0d EXIST::FUNCTION:CMS +SKF_PrintECCSignature 4807 1_1_0d EXIST::FUNCTION:SKF +BIO_meth_set_ctrl 4808 1_1_0d EXIST::FUNCTION: +RSA_get_default_method 4809 1_1_0d EXIST::FUNCTION:RSA +UI_process 4810 1_1_0d EXIST::FUNCTION:UI +SDF_GenerateKeyPair_ECC 4811 1_1_0d EXIST::FUNCTION: +EC_KEY_new_by_curve_name 4812 1_1_0d EXIST::FUNCTION:EC +PKCS12_add_friendlyname_uni 4813 1_1_0d EXIST::FUNCTION: +OPENSSL_sk_pop 4814 1_1_0d EXIST::FUNCTION: +EC_KEY_new_method 4815 1_1_0d EXIST::FUNCTION:EC +EC_GROUP_new_curve_GF2m 4816 1_1_0d EXIST::FUNCTION:EC,EC2M +ASN1_item_i2d_bio 4817 1_1_0d EXIST::FUNCTION: +i2d_X509_SIG 4818 1_1_0d EXIST::FUNCTION: +X509_OBJECT_new 4819 1_1_0d EXIST::FUNCTION: +ASN1_PCTX_set_flags 4820 1_1_0d EXIST::FUNCTION: +PBEPARAM_free 4821 1_1_0d EXIST::FUNCTION: +ASN1_i2d_bio 4822 1_1_0d EXIST::FUNCTION: +OpenSSL_version_num 4823 1_1_0d EXIST::FUNCTION: +i2s_ASN1_OCTET_STRING 4824 1_1_0d EXIST::FUNCTION: +X509_REQ_get_attr 4825 1_1_0d EXIST::FUNCTION: +SAF_Pkcs7_DecodeDigestedData 4826 1_1_0d EXIST::FUNCTION: +BB1IBE_extract_private_key 4827 1_1_0d EXIST::FUNCTION:BB1IBE +X509_STORE_set_get_crl 4828 1_1_0d EXIST::FUNCTION: +ERR_load_X509V3_strings 4829 1_1_0d EXIST::FUNCTION: +EVP_PKEY_CTX_get0_peerkey 4830 1_1_0d EXIST::FUNCTION: +DH_meth_get_generate_params 4831 1_1_0d EXIST::FUNCTION:DH +SHA384 4832 1_1_0d EXIST:!VMSVAX:FUNCTION: +BN_get_rfc3526_prime_1536 4833 1_1_0d EXIST::FUNCTION: +PKCS7_encrypt 4834 1_1_0d EXIST::FUNCTION: +EVP_PKEY_verify 4835 1_1_0d EXIST::FUNCTION: diff --git a/util/libssl.num b/util/libssl.num index b95c4cd1..4d0b2059 100644 --- a/util/libssl.num +++ b/util/libssl.num @@ -1,411 +1,411 @@ -SSL_CTX_free 1 1_1_0d EXIST::FUNCTION: -SSL_set_purpose 2 1_1_0d EXIST::FUNCTION: -SSL_read 3 1_1_0d EXIST::FUNCTION: -SSL_get_peer_cert_chain 4 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_find 5 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_timeout 6 1_1_0d EXIST::FUNCTION: -SSL_get_certificate 7 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_verify_dir 8 1_1_0d EXIST::FUNCTION: -SSL_CTX_get0_param 9 1_1_0d EXIST::FUNCTION: -SSL_get_rbio 10 1_1_0d EXIST::FUNCTION: -SSL_get_all_async_fds 11 1_1_0d EXIST::FUNCTION: -SSL_get_current_expansion 12 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_info_callback 13 1_1_0d EXIST::FUNCTION: -SSL_use_PrivateKey 14 1_1_0d EXIST::FUNCTION: -SSL_get_verify_callback 15 1_1_0d EXIST::FUNCTION: -DTLSv1_listen 16 1_1_0d EXIST::FUNCTION:SOCK -SSL_get_client_ciphers 17 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_set_ssl_ctx 18 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_username 19 1_1_0d EXIST::FUNCTION:SRP -SSL_get_wbio 20 1_1_0d EXIST::FUNCTION: -SSL_set_security_callback 21 1_1_0d EXIST::FUNCTION: -SSL_is_gmtls 22 1_1_0d EXIST::FUNCTION: -SSL_set0_rbio 23 1_1_0d EXIST::FUNCTION: -SSL_set0_wbio 24 1_1_0d EXIST::FUNCTION: -SSL_set_quiet_shutdown 25 1_1_0d EXIST::FUNCTION: -SSL_alert_type_string 26 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_client_CA_list 27 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cipher_list 28 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_generate_session_id 29 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_cipher_nid 30 1_1_0d EXIST::FUNCTION: -SSL_get_wfd 31 1_1_0d EXIST::FUNCTION: -SSLv3_server_method 32 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD -SSL_SESSION_new 33 1_1_0d EXIST::FUNCTION: -BIO_ssl_shutdown 34 1_1_0d EXIST::FUNCTION: -SSL_set_ct_validation_callback 35 1_1_0d EXIST::FUNCTION:CT -SSL_use_RSAPrivateKey 36 1_1_0d EXIST::FUNCTION:RSA -SSL_renegotiate 37 1_1_0d EXIST::FUNCTION: -SSL_CTX_add_client_CA 38 1_1_0d EXIST::FUNCTION: -SSL_renegotiate_abbreviated 39 1_1_0d EXIST::FUNCTION: -SSL_CTX_clear_options 40 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cert_cb 41 1_1_0d EXIST::FUNCTION: -SSL_set_not_resumable_session_callback 42 1_1_0d EXIST::FUNCTION: -SSL_srp_server_param_with_username 43 1_1_0d EXIST::FUNCTION:SRP -SSL_CIPHER_is_aead 44 1_1_0d EXIST::FUNCTION: -SSL_CTX_get0_ctlog_store 45 1_1_0d EXIST::FUNCTION:CT -SSL_CTX_use_PrivateKey_ASN1 46 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_psk_server_callback 47 1_1_0d EXIST::FUNCTION:PSK -SSL_CONF_CTX_set1_prefix 48 1_1_0d EXIST::FUNCTION: -SSL_get_current_compression 49 1_1_0d EXIST::FUNCTION: -BIO_new_ssl 50 1_1_0d EXIST::FUNCTION: -TLSv1_client_method 51 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD -SSL_accept 52 1_1_0d EXIST::FUNCTION: -SSLv3_method 53 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD -SSL_get0_dane_tlsa 54 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_PrivateKey 55 1_1_0d EXIST::FUNCTION: -d2i_SSL_SESSION 56 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_serverinfo 57 1_1_0d EXIST::FUNCTION: -SSL_get_rfd 58 1_1_0d EXIST::FUNCTION: -SSL_COMP_set0_compression_methods 59 1_1_0d EXIST::FUNCTION: -SSL_set_session_secret_cb 60 1_1_0d EXIST::FUNCTION: -SSL_new 61 1_1_0d EXIST::FUNCTION: -SSL_CTX_ctrl 62 1_1_0d EXIST::FUNCTION: -SSL_dup_CA_list 63 1_1_0d EXIST::FUNCTION: -SSL_get_privatekey 64 1_1_0d EXIST::FUNCTION: -BIO_new_buffer_ssl_connect 65 1_1_0d EXIST::FUNCTION: -SSL_state_string_long 66 1_1_0d EXIST::FUNCTION: -SSL_get_quiet_shutdown 67 1_1_0d EXIST::FUNCTION: -SSL_get_peer_finished 68 1_1_0d EXIST::FUNCTION: -BIO_new_ssl_connect 69 1_1_0d EXIST::FUNCTION: -SSL_get0_peername 70 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_set_remove_cb 71 1_1_0d EXIST::FUNCTION: -SSL_CTX_new 72 1_1_0d EXIST::FUNCTION: -SSL_CONF_cmd_argv 73 1_1_0d EXIST::FUNCTION: -SSL_test_functions 74 1_1_0d EXIST::FUNCTION:UNIT_TEST -SSL_CTX_set_srp_password 75 1_1_0d EXIST::FUNCTION:SRP -SSL_COMP_get0_name 76 1_1_0d EXIST::FUNCTION: -SSL_in_init 77 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_certificate 78 1_1_0d EXIST::FUNCTION: -SSL_alert_desc_string 79 1_1_0d EXIST::FUNCTION: -SSL_set_srp_server_param 80 1_1_0d EXIST::FUNCTION:SRP -SSL_SESSION_free 81 1_1_0d EXIST::FUNCTION: -GMTLS_client_method 82 1_1_0d EXIST::FUNCTION:GMTLS -SSL_COMP_add_compression_method 83 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_quiet_shutdown 84 1_1_0d EXIST::FUNCTION: -SSL_CTX_SRP_CTX_free 85 1_1_0d EXIST::FUNCTION:SRP -SSL_renegotiate_pending 86 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_trust 87 1_1_0d EXIST::FUNCTION: -SSL_get_info_callback 88 1_1_0d EXIST::FUNCTION: -SSL_get_options 89 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_passwd_cb 90 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_default_passwd_cb 91 1_1_0d EXIST::FUNCTION: -SSL_dane_set_flags 92 1_1_0d EXIST::FUNCTION: -SSL_get_error 93 1_1_0d EXIST::FUNCTION: -SSL_set_default_read_buffer_len 94 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_get_new_cb 95 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_finish 96 1_1_0d EXIST::FUNCTION: -SSL_is_server 97 1_1_0d EXIST::FUNCTION: -SSL_set_ex_data 98 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_psk_identity_hint 99 1_1_0d EXIST::FUNCTION:PSK -SSL_SESSION_get_protocol_version 100 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_auth_nid 101 1_1_0d EXIST::FUNCTION: -SSL_alert_desc_string_long 102 1_1_0d EXIST::FUNCTION: -SSL_enable_ct 103 1_1_0d EXIST::FUNCTION:CT -SSL_up_ref 104 1_1_0d EXIST::FUNCTION: -SSL_CTX_remove_session 105 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_msg_callback 106 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_alpn_select_cb 107 1_1_0d EXIST::FUNCTION: -SSL_get_srp_N 108 1_1_0d EXIST::FUNCTION:SRP -SSL_SESSION_get0_peer 109 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_ciphers 110 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_digest_nid 111 1_1_0d EXIST::FUNCTION: -SSL_get_read_ahead 112 1_1_0d EXIST::FUNCTION: -SSL_set_fd 113 1_1_0d EXIST::FUNCTION:SOCK -SSL_get_security_callback 114 1_1_0d EXIST::FUNCTION: -SSL_load_client_CA_file 115 1_1_0d EXIST::FUNCTION: -BIO_ssl_copy_session_id 116 1_1_0d EXIST::FUNCTION: -SSL_select_next_proto 117 1_1_0d EXIST::FUNCTION: -SSL_alert_type_string_long 118 1_1_0d EXIST::FUNCTION: -SSL_add1_host 119 1_1_0d EXIST::FUNCTION: -SSL_set_session 120 1_1_0d EXIST::FUNCTION: -TLS_client_method 121 1_1_0d EXIST::FUNCTION: -SSL_in_before 122 1_1_0d EXIST::FUNCTION: -SSL_use_PrivateKey_ASN1 123 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_set_ssl 124 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get0_hostname 125 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_cb_arg 126 1_1_0d EXIST::FUNCTION:SRP -SSL_get0_dane 127 1_1_0d EXIST::FUNCTION: -SSL_clear 128 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_info_callback 129 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_id 130 1_1_0d EXIST::FUNCTION: -SSL_CTX_sess_get_remove_cb 131 1_1_0d EXIST::FUNCTION: -SSL_CTX_add_server_custom_ext 132 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_verify_callback 133 1_1_0d EXIST::FUNCTION: -SSL_callback_ctrl 134 1_1_0d EXIST::FUNCTION: -SSL_use_RSAPrivateKey_ASN1 135 1_1_0d EXIST::FUNCTION:RSA -SSL_CTX_set_cookie_verify_cb 136 1_1_0d EXIST::FUNCTION: -SSL_set_psk_client_callback 137 1_1_0d EXIST::FUNCTION:PSK -SSL_CONF_CTX_set_flags 138 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_PrivateKey_file 139 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_security_level 140 1_1_0d EXIST::FUNCTION: -SSL_SESSION_print 141 1_1_0d EXIST::FUNCTION: -SSL_check_private_key 142 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_ex_data 143 1_1_0d EXIST::FUNCTION: -TLSv1_method 144 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD -SSL_CTX_get_verify_mode 145 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_psk_client_callback 146 1_1_0d EXIST::FUNCTION:PSK -SSL_SESSION_up_ref 147 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_next_protos_advertised_cb 148 1_1_0d EXIST::FUNCTION:NEXTPROTONEG -SSL_get_srp_g 149 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_sess_get_get_cb 150 1_1_0d EXIST::FUNCTION: -SSL_set_srp_server_param_pw 151 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_set1_param 152 1_1_0d EXIST::FUNCTION: -SSL_config 153 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_kx_nid 154 1_1_0d EXIST::FUNCTION: -SSL_dane_enable 155 1_1_0d EXIST::FUNCTION: -SSL_CTX_callback_ctrl 156 1_1_0d EXIST::FUNCTION: -SSL_get0_alpn_selected 157 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_set_flags 158 1_1_0d EXIST::FUNCTION: -SSL_trace 159 1_1_0d EXIST::FUNCTION:SSL_TRACE -SSL_ctrl 160 1_1_0d EXIST::FUNCTION: -SSL_set_default_passwd_cb_userdata 161 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_mtype_set 162 1_1_0d EXIST::FUNCTION: -SSL_set_accept_state 163 1_1_0d EXIST::FUNCTION: -SSL_SESSION_set_ex_data 164 1_1_0d EXIST::FUNCTION: -SSL_get_srp_username 165 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_set_client_cert_cb 166 1_1_0d EXIST::FUNCTION: -SSL_get0_security_ex_data 167 1_1_0d EXIST::FUNCTION: -SSL_get_SSL_CTX 168 1_1_0d EXIST::FUNCTION: -SSL_SESSION_print_fp 169 1_1_0d EXIST::FUNCTION:STDIO +SSL_SESSION_get0_id_context 1 1_1_0d EXIST::FUNCTION: +SSL_get_error 2 1_1_0d EXIST::FUNCTION: +SSL_get_ex_data_X509_STORE_CTX_idx 3 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_client_CA_list 4 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_serverinfo_file 5 1_1_0d EXIST::FUNCTION: +SSL_state_string_long 6 1_1_0d EXIST::FUNCTION: +DTLSv1_2_client_method 7 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD +SSL_CTX_set_security_callback 8 1_1_0d EXIST::FUNCTION: +SSL_accept 9 1_1_0d EXIST::FUNCTION: +SSL_use_certificate 10 1_1_0d EXIST::FUNCTION: +SSL_CTX_get0_param 11 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_tmp_dh_callback 12 1_1_0d EXIST::FUNCTION:DH +SSL_CIPHER_get_bits 13 1_1_0d EXIST::FUNCTION: +SSL_CTX_set1_param 14 1_1_0d EXIST::FUNCTION: +SSL_CTX_remove_session 15 1_1_0d EXIST::FUNCTION: +SSL_set_session_id_context 16 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_id 17 1_1_0d EXIST::FUNCTION: +SSL_session_reused 18 1_1_0d EXIST::FUNCTION: +SSL_connect 19 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set_time 20 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_passwd_cb_userdata 21 1_1_0d EXIST::FUNCTION: +SSL_get_info_callback 22 1_1_0d EXIST::FUNCTION: +SSL_set_connect_state 23 1_1_0d EXIST::FUNCTION: +SSL_test_functions 24 1_1_0d EXIST::FUNCTION:UNIT_TEST +DTLSv1_server_method 25 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD +SSL_set_client_CA_list 26 1_1_0d EXIST::FUNCTION: +TLS_client_method 27 1_1_0d EXIST::FUNCTION: +SSL_set_psk_client_callback 28 1_1_0d EXIST::FUNCTION:PSK +DTLSv1_2_server_method 29 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD +SSL_CTX_get0_security_ex_data 30 1_1_0d EXIST::FUNCTION: +GMTLS_client_method 31 1_1_0d EXIST::FUNCTION:GMTLS +SSL_SESSION_set1_id 32 1_1_0d EXIST::FUNCTION: +SSL_get_quiet_shutdown 33 1_1_0d EXIST::FUNCTION: +SSL_get_SSL_CTX 34 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_set1_prefix 35 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_clear_flags 36 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_cipher_nid 37 1_1_0d EXIST::FUNCTION: +SSL_get_srp_userinfo 38 1_1_0d EXIST::FUNCTION:SRP +SSL_add1_host 39 1_1_0d EXIST::FUNCTION: +SSL_get_default_timeout 40 1_1_0d EXIST::FUNCTION: +SSL_set1_host 41 1_1_0d EXIST::FUNCTION: +SSL_set_verify 42 1_1_0d EXIST::FUNCTION: +SSL_ctrl 43 1_1_0d EXIST::FUNCTION: +DTLSv1_client_method 44 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD +SSL_CTX_set_verify_depth 45 1_1_0d EXIST::FUNCTION: +SSL_set_verify_result 46 1_1_0d EXIST::FUNCTION: +SSL_set_tlsext_use_srtp 47 1_1_0d EXIST::FUNCTION:SRTP +BIO_new_ssl 48 1_1_0d EXIST::FUNCTION: +PEM_write_SSL_SESSION 49 1_1_0d EXIST::FUNCTION:STDIO +SSL_get_psk_identity_hint 50 1_1_0d EXIST::FUNCTION:PSK +SSL_set_fd 51 1_1_0d EXIST::FUNCTION:SOCK +SSL_get_verify_depth 52 1_1_0d EXIST::FUNCTION: +SSL_get_state 53 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_verify_callback 54 1_1_0d EXIST::FUNCTION: +SSL_CTX_set0_ctlog_store 55 1_1_0d EXIST::FUNCTION:CT +SSL_CTX_sess_get_get_cb 56 1_1_0d EXIST::FUNCTION: +SSL_CTX_sessions 57 1_1_0d EXIST::FUNCTION: +SSL_set_generate_session_id 58 1_1_0d EXIST::FUNCTION: +SSL_get_shared_sigalgs 59 1_1_0d EXIST::FUNCTION: +SSL_rstate_string_long 60 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_ssl_version 61 1_1_0d EXIST::FUNCTION: +TLSv1_2_client_method 62 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD +SSL_waiting_for_async 63 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_alpn_select_cb 64 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_cert_store 65 1_1_0d EXIST::FUNCTION: +GMTLS_server_method 66 1_1_0d EXIST::FUNCTION:GMTLS +SSL_COMP_get_name 67 1_1_0d EXIST::FUNCTION: +SSL_alert_type_string 68 1_1_0d EXIST::FUNCTION: +SSL_set_default_passwd_cb_userdata 69 1_1_0d EXIST::FUNCTION: +SSL_renegotiate 70 1_1_0d EXIST::FUNCTION: +PEM_read_SSL_SESSION 71 1_1_0d EXIST::FUNCTION:STDIO +SSL_CTX_use_serverinfo 72 1_1_0d EXIST::FUNCTION: +SSL_COMP_get0_name 73 1_1_0d EXIST::FUNCTION: +SSL_set_security_level 74 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_ct_validation_callback 75 1_1_0d EXIST::FUNCTION:CT +SSL_get_security_level 76 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_set_get_cb 77 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_verify_mode 78 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_not_resumable_session_callback 79 1_1_0d EXIST::FUNCTION: +SSL_load_client_CA_file 80 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_psk_client_callback 81 1_1_0d EXIST::FUNCTION:PSK +SSL_CIPHER_get_kx_nid 82 1_1_0d EXIST::FUNCTION: +SSL_get_srp_N 83 1_1_0d EXIST::FUNCTION:SRP +SSL_is_server 84 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_next_proto_select_cb 85 1_1_0d EXIST::FUNCTION:NEXTPROTONEG +SSL_set_accept_state 86 1_1_0d EXIST::FUNCTION: +SSL_client_version 87 1_1_0d EXIST::FUNCTION: +SSL_set_wfd 88 1_1_0d EXIST::FUNCTION:SOCK +SSL_set_read_ahead 89 1_1_0d EXIST::FUNCTION: +SSL_set0_rbio 90 1_1_0d EXIST::FUNCTION: +SSL_CONF_cmd_value_type 91 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_finish 92 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_security_callback 93 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_info_callback 94 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_id 95 1_1_0d EXIST::FUNCTION: +SSL_use_PrivateKey 96 1_1_0d EXIST::FUNCTION: +SSL_has_pending 97 1_1_0d EXIST::FUNCTION: +SSL_add_dir_cert_subjects_to_stack 98 1_1_0d EXIST::FUNCTION: +SSL_CTX_dane_set_flags 99 1_1_0d EXIST::FUNCTION: +SSL_dup_CA_list 100 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_username 101 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_use_PrivateKey_ASN1 102 1_1_0d EXIST::FUNCTION: +SSL_set_debug 103 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +SSL_renegotiate_abbreviated 104 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_ctlog_list_file 105 1_1_0d EXIST::FUNCTION:CT +SSL_CTX_use_certificate_ASN1 106 1_1_0d EXIST::FUNCTION: +SSL_get_peer_certificate 107 1_1_0d EXIST::FUNCTION: +SSL_add_client_CA 108 1_1_0d EXIST::FUNCTION: +SSL_new 109 1_1_0d EXIST::FUNCTION: +SSL_srp_server_param_with_username 110 1_1_0d EXIST::FUNCTION:SRP +SSL_get0_dane 111 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_description 112 1_1_0d EXIST::FUNCTION: +SSL_CTX_SRP_CTX_init 113 1_1_0d EXIST::FUNCTION:SRP +SSL_check_chain 114 1_1_0d EXIST::FUNCTION: +SSL_free 115 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get0_cipher 116 1_1_0d EXIST::FUNCTION: +SSL_get_session 117 1_1_0d EXIST::FUNCTION: +SSL_do_handshake 118 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_get_remove_cb 119 1_1_0d EXIST::FUNCTION: +SSL_set_tmp_dh_callback 120 1_1_0d EXIST::FUNCTION:DH +SSL_get_shutdown 121 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_PrivateKey 122 1_1_0d EXIST::FUNCTION: +SSL_CTX_ct_is_enabled 123 1_1_0d EXIST::FUNCTION:CT +SSL_set_session_ticket_ext 124 1_1_0d EXIST::FUNCTION: +BIO_ssl_shutdown 125 1_1_0d EXIST::FUNCTION: +SSL_get_certificate 126 1_1_0d EXIST::FUNCTION: +SSL_set_not_resumable_session_callback 127 1_1_0d EXIST::FUNCTION: +SSL_extension_supported 128 1_1_0d EXIST::FUNCTION: +SSLv3_client_method 129 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD +SSL_CTX_has_client_custom_ext 130 1_1_0d EXIST::FUNCTION: +BIO_new_buffer_ssl_connect 131 1_1_0d EXIST::FUNCTION: +SSL_is_init_finished 132 1_1_0d EXIST::FUNCTION: +SSL_COMP_get_compression_methods 133 1_1_0d EXIST::FUNCTION: +SSL_set_shutdown 134 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_set_new_cb 135 1_1_0d EXIST::FUNCTION: +SSL_set_ct_validation_callback 136 1_1_0d EXIST::FUNCTION:CT +SSL_use_certificate_chain_file 137 1_1_0d EXIST::FUNCTION: +SSL_check_private_key 138 1_1_0d EXIST::FUNCTION: +SSL_get_version 139 1_1_0d EXIST::FUNCTION: +SSL_CTX_add_session 140 1_1_0d EXIST::FUNCTION: +SSL_set0_security_ex_data 141 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_purpose 142 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_psk_server_callback 143 1_1_0d EXIST::FUNCTION:PSK +SSL_SESSION_set_timeout 144 1_1_0d EXIST::FUNCTION: +SSL_get_current_compression 145 1_1_0d EXIST::FUNCTION: +SSL_set_SSL_CTX 146 1_1_0d EXIST::FUNCTION: +SSL_use_RSAPrivateKey 147 1_1_0d EXIST::FUNCTION:RSA +SSL_get_peer_finished 148 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_timeout 149 1_1_0d EXIST::FUNCTION: +SSL_set_session_secret_cb 150 1_1_0d EXIST::FUNCTION: +SSL_CTX_add_server_custom_ext 151 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_password 152 1_1_0d EXIST::FUNCTION:SRP +SSL_get_security_callback 153 1_1_0d EXIST::FUNCTION: +SSL_set0_wbio 154 1_1_0d EXIST::FUNCTION: +SSL_get0_peername 155 1_1_0d EXIST::FUNCTION: +SSL_CTX_new 156 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_options 157 1_1_0d EXIST::FUNCTION: +BIO_new_ssl_connect 158 1_1_0d EXIST::FUNCTION: +SSL_get_default_passwd_cb 159 1_1_0d EXIST::FUNCTION: +SSL_dane_tlsa_add 160 1_1_0d EXIST::FUNCTION: +SSL_get0_peer_scts 161 1_1_0d EXIST::FUNCTION:CT +SSL_CTX_load_verify_locations 162 1_1_0d EXIST::FUNCTION: +SSL_get_selected_srtp_profile 163 1_1_0d EXIST::FUNCTION:SRTP +SSL_COMP_set0_compression_methods 164 1_1_0d EXIST::FUNCTION: +SSL_get_changed_async_fds 165 1_1_0d EXIST::FUNCTION: +SSL_CTX_enable_ct 166 1_1_0d EXIST::FUNCTION:CT +SSL_set_alpn_protos 167 1_1_0d EXIST::FUNCTION: +SSL_write 168 1_1_0d EXIST::FUNCTION: +TLS_method 169 1_1_0d EXIST::FUNCTION: SSL_CTX_get0_privatekey 170 1_1_0d EXIST::FUNCTION: -SSL_set_ssl_method 171 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_enable 172 1_1_0d EXIST::FUNCTION: -SSL_get_ciphers 173 1_1_0d EXIST::FUNCTION: -SSL_set_read_ahead 174 1_1_0d EXIST::FUNCTION: -SSL_COMP_get_id 175 1_1_0d EXIST::FUNCTION: -SSL_use_RSAPrivateKey_file 176 1_1_0d EXIST::FUNCTION:RSA -TLSv1_1_method 177 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD -SSL_get_srp_userinfo 178 1_1_0d EXIST::FUNCTION:SRP -SSL_free 179 1_1_0d EXIST::FUNCTION: -SSL_set1_param 180 1_1_0d EXIST::FUNCTION: -SSL_get_default_passwd_cb_userdata 181 1_1_0d EXIST::FUNCTION: -SSL_get1_supported_ciphers 182 1_1_0d EXIST::FUNCTION: -TLSv1_2_client_method 183 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD -i2d_SSL_SESSION 184 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_default_passwd_cb_userdata 185 1_1_0d EXIST::FUNCTION: -PEM_read_bio_SSL_SESSION 186 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_options 187 1_1_0d EXIST::FUNCTION: -SSL_set_alpn_protos 188 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_timeout 189 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_ct_validation_callback 190 1_1_0d EXIST::FUNCTION:CT -SSL_copy_session_id 191 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_ticket_lifetime_hint 192 1_1_0d EXIST::FUNCTION: -TLS_server_method 193 1_1_0d EXIST::FUNCTION: -SSL_get_shared_ciphers 194 1_1_0d EXIST::FUNCTION: -SSL_get_shutdown 195 1_1_0d EXIST::FUNCTION: -SSL_get_selected_srtp_profile 196 1_1_0d EXIST::FUNCTION:SRTP -DTLSv1_method 197 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD -SSL_CTX_set_alpn_protos 198 1_1_0d EXIST::FUNCTION: -SSL_set_security_level 199 1_1_0d EXIST::FUNCTION: -SSL_set_verify_result 200 1_1_0d EXIST::FUNCTION: -TLS_method 201 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cert_verify_callback 202 1_1_0d EXIST::FUNCTION: -SSL_client_version 203 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_ctlog_list_file 204 1_1_0d EXIST::FUNCTION:CT -PEM_write_SSL_SESSION 205 1_1_0d EXIST::FUNCTION:STDIO -SSL_CTX_add_client_custom_ext 206 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_RSAPrivateKey_file 207 1_1_0d EXIST::FUNCTION:RSA -SSL_SESSION_get_time 208 1_1_0d EXIST::FUNCTION: -SSL_use_certificate 209 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_verify_file 210 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_RSAPrivateKey 211 1_1_0d EXIST::FUNCTION:RSA -SSL_get_default_timeout 212 1_1_0d EXIST::FUNCTION: -SSL_use_certificate_ASN1 213 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_ex_data 214 1_1_0d EXIST::FUNCTION: -SSL_SESSION_has_ticket 215 1_1_0d EXIST::FUNCTION: -SSL_state_string 216 1_1_0d EXIST::FUNCTION: -SSL_CTX_dane_clear_flags 217 1_1_0d EXIST::FUNCTION: -SSL_add_file_cert_subjects_to_stack 218 1_1_0d EXIST::FUNCTION: -SSL_set_bio 219 1_1_0d EXIST::FUNCTION: -SSL_CONF_cmd 220 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_certificate_chain_file 221 1_1_0d EXIST::FUNCTION: -SSL_get_servername_type 222 1_1_0d EXIST::FUNCTION: -SSL_set_msg_callback 223 1_1_0d EXIST::FUNCTION: -SSL_SESSION_set_time 224 1_1_0d EXIST::FUNCTION: -SSL_CTX_SRP_CTX_init 225 1_1_0d EXIST::FUNCTION:SRP +SSL_set_options 171 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_security_level 172 1_1_0d EXIST::FUNCTION: +SSL_CTX_clear_options 173 1_1_0d EXIST::FUNCTION: +SSL_rstate_string 174 1_1_0d EXIST::FUNCTION: +DTLSv1_2_method 175 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD +SSL_get_servername 176 1_1_0d EXIST::FUNCTION: +SSL_set_default_passwd_cb 177 1_1_0d EXIST::FUNCTION: +SSL_get_psk_identity 178 1_1_0d EXIST::FUNCTION:PSK +SSL_set_ssl_method 179 1_1_0d EXIST::FUNCTION: +SSL_enable_ct 180 1_1_0d EXIST::FUNCTION:CT +SSL_get_client_ciphers 181 1_1_0d EXIST::FUNCTION: +SSL_SESSION_up_ref 182 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_set_ssl 183 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_username_callback 184 1_1_0d EXIST::FUNCTION:SRP +SSL_up_ref 185 1_1_0d EXIST::FUNCTION: +SSL_get_rbio 186 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_RSAPrivateKey_ASN1 187 1_1_0d EXIST::FUNCTION:RSA +SSL_CTX_add_client_CA 188 1_1_0d EXIST::FUNCTION: +SSL_get_srp_username 189 1_1_0d EXIST::FUNCTION:SRP +SSL_get0_dane_authority 190 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_options 191 1_1_0d EXIST::FUNCTION: +SSL_SESSION_print_keylog 192 1_1_0d EXIST::FUNCTION: +SSL_CTX_SRP_CTX_free 193 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_up_ref 194 1_1_0d EXIST::FUNCTION: +SSL_CTX_dane_mtype_set 195 1_1_0d EXIST::FUNCTION: +SSL_get_options 196 1_1_0d EXIST::FUNCTION: +SSL_get_rfd 197 1_1_0d EXIST::FUNCTION: +SSL_set_default_read_buffer_len 198 1_1_0d EXIST::FUNCTION: +SSL_set_verify_depth 199 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_client_CA_list 200 1_1_0d EXIST::FUNCTION: +DTLS_client_method 201 1_1_0d EXIST::FUNCTION: +SSL_SESSION_has_ticket 202 1_1_0d EXIST::FUNCTION: +SSL_shutdown 203 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_verify 204 1_1_0d EXIST::FUNCTION: +SSL_CTX_free 205 1_1_0d EXIST::FUNCTION: +SSL_trace 206 1_1_0d EXIST::FUNCTION:SSL_TRACE +SSL_CTX_get_ssl_method 207 1_1_0d EXIST::FUNCTION: +SSL_get_peer_cert_chain 208 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get0_peer 209 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_client_cert_cb 210 1_1_0d EXIST::FUNCTION: +SSL_get_server_random 211 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_alpn_protos 212 1_1_0d EXIST::FUNCTION: +SSL_get_current_cipher 213 1_1_0d EXIST::FUNCTION: +SSLv3_method 214 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD +SSL_CTX_ctrl 215 1_1_0d EXIST::FUNCTION: +SSL_CTX_flush_sessions 216 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cert_store 217 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_set_flags 218 1_1_0d EXIST::FUNCTION: +SSL_use_certificate_file 219 1_1_0d EXIST::FUNCTION: +SSL_set_cipher_list 220 1_1_0d EXIST::FUNCTION: +SSL_get_finished 221 1_1_0d EXIST::FUNCTION: +SSL_get_verify_result 222 1_1_0d EXIST::FUNCTION: +SSL_dane_clear_flags 223 1_1_0d EXIST::FUNCTION: +SSL_get_client_random 224 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_session_id_context 225 1_1_0d EXIST::FUNCTION: SSL_get_client_CA_list 226 1_1_0d EXIST::FUNCTION: -SSL_set_tlsext_use_srtp 227 1_1_0d EXIST::FUNCTION:SRTP -SSL_CIPHER_get_id 228 1_1_0d EXIST::FUNCTION: -SSL_get0_peer_scts 229 1_1_0d EXIST::FUNCTION:CT -SSL_get_state 230 1_1_0d EXIST::FUNCTION: -SSL_CTX_has_client_custom_ext 231 1_1_0d EXIST::FUNCTION: -SSL_CTX_set0_security_ex_data 232 1_1_0d EXIST::FUNCTION: -SSL_shutdown 233 1_1_0d EXIST::FUNCTION: -SSL_get_version 234 1_1_0d EXIST::FUNCTION: -DTLS_client_method 235 1_1_0d EXIST::FUNCTION: -SSL_CTX_set0_ctlog_store 236 1_1_0d EXIST::FUNCTION:CT -SSL_get_peer_certificate 237 1_1_0d EXIST::FUNCTION: -SSL_get_cipher_list 238 1_1_0d EXIST::FUNCTION: -SSL_CTX_flush_sessions 239 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_security_level 240 1_1_0d EXIST::FUNCTION: -SSL_want 241 1_1_0d EXIST::FUNCTION: -DTLSv1_2_method 242 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD -SSL_CIPHER_description 243 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_timeout 244 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_RSAPrivateKey_ASN1 245 1_1_0d EXIST::FUNCTION:RSA -SSL_CTX_set_srp_verify_param_callback 246 1_1_0d EXIST::FUNCTION:SRP -SSL_get_servername 247 1_1_0d EXIST::FUNCTION: -SSL_add_client_CA 248 1_1_0d EXIST::FUNCTION: -SSL_get_ex_data 249 1_1_0d EXIST::FUNCTION: -ERR_load_SSL_strings 250 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_master_key 251 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get0_id_context 252 1_1_0d EXIST::FUNCTION: -SSL_write 253 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_bits 254 1_1_0d EXIST::FUNCTION: -SSL_dane_clear_flags 255 1_1_0d EXIST::FUNCTION: -SSL_get_security_level 256 1_1_0d EXIST::FUNCTION: -SSL_dane_tlsa_add 257 1_1_0d EXIST::FUNCTION: -SSL_extension_supported 258 1_1_0d EXIST::FUNCTION: -SSL_get_verify_depth 259 1_1_0d EXIST::FUNCTION: -DTLSv1_2_server_method 260 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD -OPENSSL_init_ssl 261 1_1_0d EXIST::FUNCTION: -SSL_set_SSL_CTX 262 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_strength 263 1_1_0d EXIST::FUNCTION:SRP -SSL_get0_param 264 1_1_0d EXIST::FUNCTION: -SSL_SESSION_set_timeout 265 1_1_0d EXIST::FUNCTION: -SSLv3_client_method 266 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD -PEM_write_bio_SSL_SESSION 267 1_1_0d EXIST::FUNCTION: -SSL_SRP_CTX_free 268 1_1_0d EXIST::FUNCTION:SRP -SSL_peek 269 1_1_0d EXIST::FUNCTION: -SSL_CTX_ct_is_enabled 270 1_1_0d EXIST::FUNCTION:CT -DTLSv1_server_method 271 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD -SSL_set_cert_cb 272 1_1_0d EXIST::FUNCTION: -SSL_get_session 273 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_certificate_ASN1 274 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cert_store 275 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_cookie_generate_cb 276 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_read_buffer_len 277 1_1_0d EXIST::FUNCTION: -SSL_set0_security_ex_data 278 1_1_0d EXIST::FUNCTION: -SSL_waiting_for_async 279 1_1_0d EXIST::FUNCTION: -GMTLS_method 280 1_1_0d EXIST::FUNCTION:GMTLS -SSL_get_srtp_profiles 281 1_1_0d EXIST::FUNCTION:SRTP -SSL_CTX_get0_certificate 282 1_1_0d EXIST::FUNCTION: -SSL_set_info_callback 283 1_1_0d EXIST::FUNCTION: -SSL_pending 284 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_cert_store 285 1_1_0d EXIST::FUNCTION: -SSL_get_sigalgs 286 1_1_0d EXIST::FUNCTION: -SSL_set_cipher_list 287 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_options 288 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_username_callback 289 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_up_ref 290 1_1_0d EXIST::FUNCTION: -SSL_set_shutdown 291 1_1_0d EXIST::FUNCTION: -SSL_set_verify 292 1_1_0d EXIST::FUNCTION: -SSL_set1_host 293 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_ssl_version 294 1_1_0d EXIST::FUNCTION: -SSL_session_reused 295 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_get_name 296 1_1_0d EXIST::FUNCTION: -SSL_check_chain 297 1_1_0d EXIST::FUNCTION: -SSL_dup 298 1_1_0d EXIST::FUNCTION: -SSL_ct_is_enabled 299 1_1_0d EXIST::FUNCTION:CT -SSL_CTX_set_security_callback 300 1_1_0d EXIST::FUNCTION: -SSL_has_pending 301 1_1_0d EXIST::FUNCTION: -SSL_SRP_CTX_init 302 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_sess_set_get_cb 303 1_1_0d EXIST::FUNCTION: -SSL_is_init_finished 304 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get_compress_id 305 1_1_0d EXIST::FUNCTION: -SSL_get_current_cipher 306 1_1_0d EXIST::FUNCTION: -SSL_use_PrivateKey_file 307 1_1_0d EXIST::FUNCTION: -SSL_set_hostflags 308 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_security_callback 309 1_1_0d EXIST::FUNCTION: -SSL_SESSION_get0_ticket 310 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_client_cert_engine 311 1_1_0d EXIST::FUNCTION:ENGINE -SSL_SESSION_get0_cipher 312 1_1_0d EXIST::FUNCTION: -SSL_COMP_get_name 313 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_purpose 314 1_1_0d EXIST::FUNCTION: -SSL_CTX_load_verify_locations 315 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_srp_client_pwd_callback 316 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_use_serverinfo_file 317 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_verify_depth 318 1_1_0d EXIST::FUNCTION: -DTLS_server_method 319 1_1_0d EXIST::FUNCTION: -SSL_set_verify_depth 320 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_client_cert_cb 321 1_1_0d EXIST::FUNCTION: -SSL_get_server_random 322 1_1_0d EXIST::FUNCTION: -TLSv1_2_method 323 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD -SSL_set_session_ticket_ext_cb 324 1_1_0d EXIST::FUNCTION: -SSL_is_dtls 325 1_1_0d EXIST::FUNCTION: -SSL_clear_options 326 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_client_CA_list 327 1_1_0d EXIST::FUNCTION: -SSL_set_connect_state 328 1_1_0d EXIST::FUNCTION: -SSL_CTX_check_private_key 329 1_1_0d EXIST::FUNCTION: -SSL_get_client_random 330 1_1_0d EXIST::FUNCTION: -SSL_set_psk_server_callback 331 1_1_0d EXIST::FUNCTION:PSK -SSL_get_ssl_method 332 1_1_0d EXIST::FUNCTION: -SSL_set_session_ticket_ext 333 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_default_ctlog_list_file 334 1_1_0d EXIST::FUNCTION:CT -SSL_set_default_passwd_cb 335 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_verify 336 1_1_0d EXIST::FUNCTION: -SSL_get_fd 337 1_1_0d EXIST::FUNCTION: -TLSv1_2_server_method 338 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD -SSL_CTX_enable_ct 339 1_1_0d EXIST::FUNCTION:CT -SSL_CTX_set_not_resumable_session_callback 340 1_1_0d EXIST::FUNCTION: -SSL_COMP_get_compression_methods 341 1_1_0d EXIST::FUNCTION: -SSL_CONF_cmd_value_type 342 1_1_0d EXIST::FUNCTION: -SSL_export_keying_material 343 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_tlsext_use_srtp 344 1_1_0d EXIST::FUNCTION:SRTP -DTLS_method 345 1_1_0d EXIST::FUNCTION: -SSL_CTX_sessions 346 1_1_0d EXIST::FUNCTION: -SSL_get_changed_async_fds 347 1_1_0d EXIST::FUNCTION: -DTLSv1_client_method 348 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD -SSL_CONF_CTX_new 349 1_1_0d EXIST::FUNCTION: -SSL_get_ex_data_X509_STORE_CTX_idx 350 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_session_id_context 351 1_1_0d EXIST::FUNCTION: -TLSv1_1_server_method 352 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD -SSL_CTX_config 353 1_1_0d EXIST::FUNCTION: -SSL_CTX_add_session 354 1_1_0d EXIST::FUNCTION: -BIO_f_ssl 355 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_next_proto_select_cb 356 1_1_0d EXIST::FUNCTION:NEXTPROTONEG -SSL_CTX_set_quiet_shutdown 357 1_1_0d EXIST::FUNCTION: -SSL_set_client_CA_list 358 1_1_0d EXIST::FUNCTION: -SSL_do_handshake 359 1_1_0d EXIST::FUNCTION: -SSL_rstate_string 360 1_1_0d EXIST::FUNCTION: -GMTLS_server_method 361 1_1_0d EXIST::FUNCTION:GMTLS -SSL_CTX_sess_set_new_cb 362 1_1_0d EXIST::FUNCTION: -SSL_get0_verified_chain 363 1_1_0d EXIST::FUNCTION: -SSL_use_certificate_chain_file 364 1_1_0d EXIST::FUNCTION: -SSL_add_ssl_module 365 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_ex_data 366 1_1_0d EXIST::FUNCTION: -SSL_set_wfd 367 1_1_0d EXIST::FUNCTION:SOCK -PEM_read_SSL_SESSION 368 1_1_0d EXIST::FUNCTION:STDIO -SSL_add_dir_cert_subjects_to_stack 369 1_1_0d EXIST::FUNCTION: -SSL_get_verify_result 370 1_1_0d EXIST::FUNCTION: -SSL_CTX_get_ssl_method 371 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_clear_flags 372 1_1_0d EXIST::FUNCTION: -SSL_SESSION_set1_id 373 1_1_0d EXIST::FUNCTION: -SSL_has_matching_session_id 374 1_1_0d EXIST::FUNCTION: -TLSv1_server_method 375 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD -SSL_CTX_get0_security_ex_data 376 1_1_0d EXIST::FUNCTION: -SSL_get_verify_mode 377 1_1_0d EXIST::FUNCTION: -SSL_CIPHER_standard_name 378 1_1_0d EXIST::FUNCTION:SSL_TRACE -SSL_get_psk_identity_hint 379 1_1_0d EXIST::FUNCTION:PSK -SSL_CTX_set_default_verify_paths 380 1_1_0d EXIST::FUNCTION: -SSL_set_options 381 1_1_0d EXIST::FUNCTION: -SSL_set_session_id_context 382 1_1_0d EXIST::FUNCTION: -SSL_connect 383 1_1_0d EXIST::FUNCTION: -SSL_CTX_set_tmp_dh_callback 384 1_1_0d EXIST::FUNCTION:DH -SSL_set_rfd 385 1_1_0d EXIST::FUNCTION:SOCK -SSL_CTX_get_verify_depth 386 1_1_0d EXIST::FUNCTION: -SSL_version 387 1_1_0d EXIST::FUNCTION: -SSL_get0_next_proto_negotiated 388 1_1_0d EXIST::FUNCTION:NEXTPROTONEG -SSL_SESSION_set1_id_context 389 1_1_0d EXIST::FUNCTION: -SSL_set_tmp_dh_callback 390 1_1_0d EXIST::FUNCTION:DH -SSL_CIPHER_get_version 391 1_1_0d EXIST::FUNCTION: -SSL_CTX_use_certificate_file 392 1_1_0d EXIST::FUNCTION: -SSL_SESSION_print_keylog 393 1_1_0d EXIST::FUNCTION: -SRP_Calc_A_param 394 1_1_0d EXIST::FUNCTION:SRP -SSL_CTX_set_default_passwd_cb_userdata 395 1_1_0d EXIST::FUNCTION: -SSL_certs_clear 396 1_1_0d EXIST::FUNCTION: -SSL_get0_dane_authority 397 1_1_0d EXIST::FUNCTION: -SSL_set_trust 398 1_1_0d EXIST::FUNCTION: -SSL_get_finished 399 1_1_0d EXIST::FUNCTION: -SSL_rstate_string_long 400 1_1_0d EXIST::FUNCTION: -SSL_get_shared_sigalgs 401 1_1_0d EXIST::FUNCTION: -SSL_get_psk_identity 402 1_1_0d EXIST::FUNCTION:PSK -SSL_get_default_passwd_cb 403 1_1_0d EXIST::FUNCTION: -SSL_get1_session 404 1_1_0d EXIST::FUNCTION: -SSL_set_generate_session_id 405 1_1_0d EXIST::FUNCTION: -SSL_CONF_CTX_free 406 1_1_0d EXIST::FUNCTION: -SSL_use_psk_identity_hint 407 1_1_0d EXIST::FUNCTION:PSK -SSL_use_certificate_file 408 1_1_0d EXIST::FUNCTION: -TLSv1_1_client_method 409 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD -DTLSv1_2_client_method 410 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_2_METHOD -SSL_set_debug 411 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0 +SSL_SESSION_get_compress_id 227 1_1_0d EXIST::FUNCTION: +SSL_get_verify_mode 228 1_1_0d EXIST::FUNCTION: +d2i_SSL_SESSION 229 1_1_0d EXIST::FUNCTION: +SSL_use_psk_identity_hint 230 1_1_0d EXIST::FUNCTION:PSK +SSL_get_srp_g 231 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_set_ctlog_list_file 232 1_1_0d EXIST::FUNCTION:CT +SSL_get_read_ahead 233 1_1_0d EXIST::FUNCTION: +SSL_get_current_expansion 234 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get0_ticket 235 1_1_0d EXIST::FUNCTION: +SSL_dane_enable 236 1_1_0d EXIST::FUNCTION: +SSL_export_keying_material 237 1_1_0d EXIST::FUNCTION: +TLSv1_1_method 238 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD +SSL_SESSION_get_master_key 239 1_1_0d EXIST::FUNCTION: +SSL_add_file_cert_subjects_to_stack 240 1_1_0d EXIST::FUNCTION: +SSL_callback_ctrl 241 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_quiet_shutdown 242 1_1_0d EXIST::FUNCTION: +SSL_CTX_dane_enable 243 1_1_0d EXIST::FUNCTION: +SSL_set_hostflags 244 1_1_0d EXIST::FUNCTION: +SSL_SRP_CTX_free 245 1_1_0d EXIST::FUNCTION:SRP +SSL_alert_desc_string 246 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_psk_identity_hint 247 1_1_0d EXIST::FUNCTION:PSK +SSL_clear 248 1_1_0d EXIST::FUNCTION: +SSL_peek 249 1_1_0d EXIST::FUNCTION: +SSL_use_RSAPrivateKey_ASN1 250 1_1_0d EXIST::FUNCTION:RSA +SSL_get0_param 251 1_1_0d EXIST::FUNCTION: +PEM_read_bio_SSL_SESSION 252 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_is_aead 253 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_trust 254 1_1_0d EXIST::FUNCTION: +SSL_ct_is_enabled 255 1_1_0d EXIST::FUNCTION:CT +SSL_use_PrivateKey_file 256 1_1_0d EXIST::FUNCTION: +SSL_set_srp_server_param 257 1_1_0d EXIST::FUNCTION:SRP +SSL_CONF_CTX_new 258 1_1_0d EXIST::FUNCTION: +ERR_load_SSL_strings 259 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_set_ssl_ctx 260 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_client_cert_engine 261 1_1_0d EXIST::FUNCTION:ENGINE +SSL_CTX_set0_security_ex_data 262 1_1_0d EXIST::FUNCTION: +SSL_CTX_add_client_custom_ext 263 1_1_0d EXIST::FUNCTION: +TLSv1_1_client_method 264 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD +PEM_write_bio_SSL_SESSION 265 1_1_0d EXIST::FUNCTION: +SSL_SESSION_free 266 1_1_0d EXIST::FUNCTION: +SSL_select_next_proto 267 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_verify_paths 268 1_1_0d EXIST::FUNCTION: +SSL_get_ssl_method 269 1_1_0d EXIST::FUNCTION: +SSL_SRP_CTX_init 270 1_1_0d EXIST::FUNCTION:SRP +BIO_ssl_copy_session_id 271 1_1_0d EXIST::FUNCTION: +SSL_config 272 1_1_0d EXIST::FUNCTION: +SSL_get_ex_data 273 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set_ex_data 274 1_1_0d EXIST::FUNCTION: +SSL_set_cert_cb 275 1_1_0d EXIST::FUNCTION: +DTLSv1_method 276 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD +SSL_CTX_set_cookie_generate_cb 277 1_1_0d EXIST::FUNCTION: +SSL_CONF_CTX_free 278 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_auth_nid 279 1_1_0d EXIST::FUNCTION: +SSL_get0_next_proto_negotiated 280 1_1_0d EXIST::FUNCTION:NEXTPROTONEG +SSL_get_all_async_fds 281 1_1_0d EXIST::FUNCTION: +SSL_SESSION_new 282 1_1_0d EXIST::FUNCTION: +SSL_in_init 283 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_RSAPrivateKey_file 284 1_1_0d EXIST::FUNCTION:RSA +SSL_set_msg_callback 285 1_1_0d EXIST::FUNCTION: +SSL_alert_desc_string_long 286 1_1_0d EXIST::FUNCTION: +SSL_CTX_check_private_key 287 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_certificate 288 1_1_0d EXIST::FUNCTION: +SSL_dup 289 1_1_0d EXIST::FUNCTION: +SSL_get1_supported_ciphers 290 1_1_0d EXIST::FUNCTION: +SSL_CTX_callback_ctrl 291 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cert_verify_callback 292 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_passwd_cb 293 1_1_0d EXIST::FUNCTION: +SSL_state_string 294 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_verify_dir 295 1_1_0d EXIST::FUNCTION: +DTLS_method 296 1_1_0d EXIST::FUNCTION: +TLSv1_method 297 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD +SSL_CTX_set_default_read_buffer_len 298 1_1_0d EXIST::FUNCTION: +TLSv1_2_server_method 299 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD +SSL_pending 300 1_1_0d EXIST::FUNCTION: +SSL_CONF_cmd_argv 301 1_1_0d EXIST::FUNCTION: +SSL_CTX_config 302 1_1_0d EXIST::FUNCTION: +BIO_f_ssl 303 1_1_0d EXIST::FUNCTION: +SSL_COMP_get_id 304 1_1_0d EXIST::FUNCTION: +SSL_get0_alpn_selected 305 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cookie_verify_cb 306 1_1_0d EXIST::FUNCTION: +SSL_set_security_callback 307 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_cb_arg 308 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_set_ex_data 309 1_1_0d EXIST::FUNCTION: +SSL_CTX_get0_certificate 310 1_1_0d EXIST::FUNCTION: +SSLv3_server_method 311 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,SSL3_METHOD +SSL_set_srp_server_param_pw 312 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_get0_ctlog_store 313 1_1_0d EXIST::FUNCTION:CT +SSL_use_RSAPrivateKey_file 314 1_1_0d EXIST::FUNCTION:RSA +SSL_get_servername_type 315 1_1_0d EXIST::FUNCTION: +SSL_has_matching_session_id 316 1_1_0d EXIST::FUNCTION: +SSL_set1_param 317 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_protocol_version 318 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_generate_session_id 319 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_certificate_chain_file 320 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_timeout 321 1_1_0d EXIST::FUNCTION: +GMTLS_method 322 1_1_0d EXIST::FUNCTION:GMTLS +SSL_CTX_get_security_level 323 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_default_passwd_cb_userdata 324 1_1_0d EXIST::FUNCTION: +SSL_get_wfd 325 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get_ex_data 326 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_info_callback 327 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_standard_name 328 1_1_0d EXIST::FUNCTION:SSL_TRACE +SSL_SESSION_print_fp 329 1_1_0d EXIST::FUNCTION:STDIO +SSL_set_psk_server_callback 330 1_1_0d EXIST::FUNCTION:PSK +i2d_SSL_SESSION 331 1_1_0d EXIST::FUNCTION: +SSL_set_session_ticket_ext_cb 332 1_1_0d EXIST::FUNCTION: +SSL_get_sigalgs 333 1_1_0d EXIST::FUNCTION: +SSL_set_session 334 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_get_new_cb 335 1_1_0d EXIST::FUNCTION: +SSL_use_certificate_ASN1 336 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_RSAPrivateKey 337 1_1_0d EXIST::FUNCTION:RSA +SSL_dane_set_flags 338 1_1_0d EXIST::FUNCTION: +SSL_add_ssl_module 339 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_timeout 340 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_next_protos_advertised_cb 341 1_1_0d EXIST::FUNCTION:NEXTPROTONEG +SSL_CTX_set_cert_cb 342 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_ciphers 343 1_1_0d EXIST::FUNCTION: +SSL_set_trust 344 1_1_0d EXIST::FUNCTION: +SSL_get_privatekey 345 1_1_0d EXIST::FUNCTION: +OPENSSL_init_ssl 346 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_certificate_file 347 1_1_0d EXIST::FUNCTION: +SSL_certs_clear 348 1_1_0d EXIST::FUNCTION: +SSL_get_verify_callback 349 1_1_0d EXIST::FUNCTION: +TLSv1_2_method 350 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_2_METHOD +TLSv1_server_method 351 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD +DTLSv1_listen 352 1_1_0d EXIST::FUNCTION:SOCK +SSL_SESSION_get_ticket_lifetime_hint 353 1_1_0d EXIST::FUNCTION: +SSL_SESSION_get0_hostname 354 1_1_0d EXIST::FUNCTION: +SSL_COMP_add_compression_method 355 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_verify_param_callback 356 1_1_0d EXIST::FUNCTION:SRP +SSL_SESSION_get_time 357 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_ex_data 358 1_1_0d EXIST::FUNCTION: +SSL_CTX_dane_clear_flags 359 1_1_0d EXIST::FUNCTION: +SSL_is_gmtls 360 1_1_0d EXIST::FUNCTION: +SSL_get0_dane_tlsa 361 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_strength 362 1_1_0d EXIST::FUNCTION:SRP +SSL_set_ex_data 363 1_1_0d EXIST::FUNCTION: +TLSv1_1_server_method 364 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_1_METHOD +SSL_in_before 365 1_1_0d EXIST::FUNCTION: +SSL_get1_session 366 1_1_0d EXIST::FUNCTION: +SSL_use_PrivateKey_ASN1 367 1_1_0d EXIST::FUNCTION: +SSL_SESSION_print 368 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_srp_client_pwd_callback 369 1_1_0d EXIST::FUNCTION:SRP +SSL_CTX_set_client_cert_cb 370 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_cipher_list 371 1_1_0d EXIST::FUNCTION: +SSL_set_info_callback 372 1_1_0d EXIST::FUNCTION: +SSL_SESSION_set1_id_context 373 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_default_passwd_cb 374 1_1_0d EXIST::FUNCTION: +SSL_clear_options 375 1_1_0d EXIST::FUNCTION: +SSL_CTX_use_PrivateKey_file 376 1_1_0d EXIST::FUNCTION: +SSL_set_bio 377 1_1_0d EXIST::FUNCTION: +SSL_read 378 1_1_0d EXIST::FUNCTION: +SSL_copy_session_id 379 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_version 380 1_1_0d EXIST::FUNCTION: +SSL_set_quiet_shutdown 381 1_1_0d EXIST::FUNCTION: +SSL_get_cipher_list 382 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_default_verify_file 383 1_1_0d EXIST::FUNCTION: +SSL_get_default_passwd_cb_userdata 384 1_1_0d EXIST::FUNCTION: +SSL_set_purpose 385 1_1_0d EXIST::FUNCTION: +DTLS_server_method 386 1_1_0d EXIST::FUNCTION: +SSL_get_fd 387 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_digest_nid 388 1_1_0d EXIST::FUNCTION: +SSL_set_rfd 389 1_1_0d EXIST::FUNCTION:SOCK +SRP_Calc_A_param 390 1_1_0d EXIST::FUNCTION:SRP +SSL_version 391 1_1_0d EXIST::FUNCTION: +SSL_CONF_cmd 392 1_1_0d EXIST::FUNCTION: +SSL_CTX_get_verify_depth 393 1_1_0d EXIST::FUNCTION: +SSL_get_wbio 394 1_1_0d EXIST::FUNCTION: +SSL_get0_verified_chain 395 1_1_0d EXIST::FUNCTION: +SSL_want 396 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_get_name 397 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_msg_callback 398 1_1_0d EXIST::FUNCTION: +SSL_CTX_sess_set_remove_cb 399 1_1_0d EXIST::FUNCTION: +SSL_alert_type_string_long 400 1_1_0d EXIST::FUNCTION: +SSL_CIPHER_find 401 1_1_0d EXIST::FUNCTION: +SSL_get0_security_ex_data 402 1_1_0d EXIST::FUNCTION: +SSL_is_dtls 403 1_1_0d EXIST::FUNCTION: +SSL_get_shared_ciphers 404 1_1_0d EXIST::FUNCTION: +SSL_CTX_set_tlsext_use_srtp 405 1_1_0d EXIST::FUNCTION:SRTP +SSL_get_ciphers 406 1_1_0d EXIST::FUNCTION: +TLSv1_client_method 407 1_1_0d EXIST::FUNCTION:DEPRECATEDIN_1_1_0,TLS1_METHOD +SSL_renegotiate_pending 408 1_1_0d EXIST::FUNCTION: +SSL_get_srtp_profiles 409 1_1_0d EXIST::FUNCTION:SRTP +SSL_CTX_get_quiet_shutdown 410 1_1_0d EXIST::FUNCTION: +TLS_server_method 411 1_1_0d EXIST::FUNCTION: