/third_party/ffmpeg/libavformat/ |
H A D | rtmpdh.c | 63 #define bn_new(bn) \ 65 bn = av_malloc(sizeof(*bn)); \ 66 if (bn) \ 67 mpz_init2(bn, 1); \ 69 #define bn_free(bn) \ 71 mpz_clear(bn); \ 72 av_free(bn); \ 74 #define bn_set_word(bn, w) mpz_set_ui(bn, 110 bn_modexp(FFBigNum bn, FFBigNum y, FFBigNum q, FFBigNum p) bn_modexp() argument 137 bn_modexp(FFBigNum bn, FFBigNum y, FFBigNum q, FFBigNum p) bn_modexp() argument 155 bn_modexp(FFBigNum bn, FFBigNum y, FFBigNum q, FFBigNum p) bn_modexp() argument 282 FFBigNum bn = NULL; dh_is_valid_public_key() local [all...] |
/third_party/openssl/test/ |
H A D | bntests.pl | 17 sub bn subroutine 33 my $sum = bn($s{'Sum'}); 34 my $a = bn($s{'A'}); 35 my $b = bn($s{'B'}); 39 my $lshift1 = bn($s{'LShift1'}); 40 my $a = bn($s{'A'}); 44 my $lshift = bn($s{'LShift'}); 45 my $a = bn($s{'A'}); 46 my $n = bn($s{'N'}); 50 my $rshift = bn( [all...] |
H A D | bn_internal_test.c | 15 #include <openssl/bn.h> 23 #include "crypto/bn.h" 31 BIGNUM *bn = NULL; in test_is_prime_enhanced() local 33 ret = TEST_ptr(bn = BN_new()) in test_is_prime_enhanced() 35 && TEST_true(BN_set_word(bn, 11)) in test_is_prime_enhanced() 37 && TEST_true(ossl_bn_miller_rabin_is_prime(bn, 10, ctx, NULL, 1, in test_is_prime_enhanced() 40 BN_free(bn); in test_is_prime_enhanced() 52 BIGNUM *bn = NULL; in test_is_composite_enhanced() local 54 ret = TEST_ptr(bn = BN_new()) in test_is_composite_enhanced() 56 && TEST_true(BN_set_word(bn, composite in test_is_composite_enhanced() [all...] |
H A D | bntest.c | 15 #include <openssl/bn.h> 314 BIGNUM *bn = BN_new(); in set_signed_bn() local 316 if (bn == NULL) in set_signed_bn() 318 if (!BN_set_word(bn, value < 0 ? -value : value)) { in set_signed_bn() 319 BN_free(bn); in set_signed_bn() 322 BN_set_negative(bn, value < 0); in set_signed_bn() 323 return bn; in set_signed_bn() 1841 BIGNUM *bn = NULL; in test_dec2bn() local 1844 if (!TEST_int_eq(parsedecBN(&bn, "0"), 1) in test_dec2bn() 1845 || !TEST_BN_eq_word(bn, in test_dec2bn() 1910 BIGNUM *bn = NULL; test_hex2bn() local 1976 BIGNUM *bn = NULL; test_asc2bn() local 2042 BIGNUM *bn = NULL; test_mpi() local 2074 BIGNUM *bn = NULL; test_rand() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_const.c | 10 #include <openssl/bn.h> 25 BIGNUM *BN_get_rfc2409_prime_768(BIGNUM *bn) in BN_get_rfc2409_prime_768() argument 41 return BN_bin2bn(RFC2409_PRIME_768, sizeof(RFC2409_PRIME_768), bn); in BN_get_rfc2409_prime_768() 53 BIGNUM *BN_get_rfc2409_prime_1024(BIGNUM *bn) in BN_get_rfc2409_prime_1024() argument 73 return BN_bin2bn(RFC2409_PRIME_1024, sizeof(RFC2409_PRIME_1024), bn); in BN_get_rfc2409_prime_1024() 85 BIGNUM *BN_get_rfc3526_prime_1536(BIGNUM *bn) in BN_get_rfc3526_prime_1536() argument 87 return COPY_BN(bn, ossl_bignum_modp_1536_p); in BN_get_rfc3526_prime_1536() 98 BIGNUM *BN_get_rfc3526_prime_2048(BIGNUM *bn) in BN_get_rfc3526_prime_2048() argument 100 return COPY_BN(bn, ossl_bignum_modp_2048_p); in BN_get_rfc3526_prime_2048() 111 BIGNUM *BN_get_rfc3526_prime_3072(BIGNUM *bn) in BN_get_rfc3526_prime_3072() argument 124 BN_get_rfc3526_prime_4096(BIGNUM *bn) BN_get_rfc3526_prime_4096() argument 137 BN_get_rfc3526_prime_6144(BIGNUM *bn) BN_get_rfc3526_prime_6144() argument 150 BN_get_rfc3526_prime_8192(BIGNUM *bn) BN_get_rfc3526_prime_8192() argument [all...] |
H A D | bn_conv.c | 126 int BN_hex2bn(BIGNUM **bn, const char *a) in BN_hex2bn() argument 148 if (bn == NULL) in BN_hex2bn() 152 if (*bn == NULL) { in BN_hex2bn() 156 ret = *bn; in BN_hex2bn() 191 *bn = ret; in BN_hex2bn() 198 if (*bn == NULL) in BN_hex2bn() 203 int BN_dec2bn(BIGNUM **bn, const char *a) in BN_dec2bn() argument 224 if (bn == NULL) in BN_dec2bn() 231 if (*bn == NULL) { in BN_dec2bn() 235 ret = *bn; in BN_dec2bn() 273 BN_asc2bn(BIGNUM **bn, const char *a) BN_asc2bn() argument [all...] |
H A D | bn_nist.c | 358 BN_ULONG bn[BN_NIST_192_TOP]; in BN_nist_mod_192() member 390 nist_cp_bn_0(buf.bn, a_d + BN_NIST_192_TOP, top - BN_NIST_192_TOP, in BN_nist_mod_192() 442 nist_set_192(t_d, buf.bn, 0, 3, 3); in BN_nist_mod_192() 444 nist_set_192(t_d, buf.bn, 4, 4, 0); in BN_nist_mod_192() 446 nist_set_192(t_d, buf.bn, 5, 5, 5) in BN_nist_mod_192() 494 BN_ULONG bn[BN_NIST_224_TOP]; in BN_nist_mod_224() member 532 nist_set_224(buf.bn, c_d, 14, 13, 12, 11, 10, 9, 8); in BN_nist_mod_224() 536 nist_cp_bn_0(buf.bn, a_d + BN_NIST_224_TOP, top - BN_NIST_224_TOP, in BN_nist_mod_224() 599 nist_set_224(t_d, buf.bn, 10, 9, 8, 7, 0, 0, 0); in BN_nist_mod_224() 601 nist_set_224(t_d, buf.bn, in BN_nist_mod_224() 666 BN_ULONG bn[BN_NIST_256_TOP]; BN_nist_mod_256() member 903 BN_ULONG bn[BN_NIST_384_TOP]; BN_nist_mod_384() member [all...] |
/third_party/openssl/crypto/bn/ |
H A D | bn_const.c | 10 #include <openssl/bn.h> 25 BIGNUM *BN_get_rfc2409_prime_768(BIGNUM *bn) in BN_get_rfc2409_prime_768() argument 41 return BN_bin2bn(RFC2409_PRIME_768, sizeof(RFC2409_PRIME_768), bn); in BN_get_rfc2409_prime_768() 53 BIGNUM *BN_get_rfc2409_prime_1024(BIGNUM *bn) in BN_get_rfc2409_prime_1024() argument 73 return BN_bin2bn(RFC2409_PRIME_1024, sizeof(RFC2409_PRIME_1024), bn); in BN_get_rfc2409_prime_1024() 85 BIGNUM *BN_get_rfc3526_prime_1536(BIGNUM *bn) in BN_get_rfc3526_prime_1536() argument 87 return COPY_BN(bn, ossl_bignum_modp_1536_p); in BN_get_rfc3526_prime_1536() 98 BIGNUM *BN_get_rfc3526_prime_2048(BIGNUM *bn) in BN_get_rfc3526_prime_2048() argument 100 return COPY_BN(bn, ossl_bignum_modp_2048_p); in BN_get_rfc3526_prime_2048() 111 BIGNUM *BN_get_rfc3526_prime_3072(BIGNUM *bn) in BN_get_rfc3526_prime_3072() argument 124 BN_get_rfc3526_prime_4096(BIGNUM *bn) BN_get_rfc3526_prime_4096() argument 137 BN_get_rfc3526_prime_6144(BIGNUM *bn) BN_get_rfc3526_prime_6144() argument 150 BN_get_rfc3526_prime_8192(BIGNUM *bn) BN_get_rfc3526_prime_8192() argument [all...] |
H A D | bn_conv.c | 126 int BN_hex2bn(BIGNUM **bn, const char *a) in BN_hex2bn() argument 148 if (bn == NULL) in BN_hex2bn() 152 if (*bn == NULL) { in BN_hex2bn() 156 ret = *bn; in BN_hex2bn() 191 *bn = ret; in BN_hex2bn() 198 if (*bn == NULL) in BN_hex2bn() 203 int BN_dec2bn(BIGNUM **bn, const char *a) in BN_dec2bn() argument 224 if (bn == NULL) in BN_dec2bn() 231 if (*bn == NULL) { in BN_dec2bn() 235 ret = *bn; in BN_dec2bn() 273 BN_asc2bn(BIGNUM **bn, const char *a) BN_asc2bn() argument [all...] |
H A D | bn_nist.c | 336 BN_ULONG bn[BN_NIST_192_TOP]; in BN_nist_mod_192() member 368 nist_cp_bn_0(buf.bn, a_d + BN_NIST_192_TOP, top - BN_NIST_192_TOP, in BN_nist_mod_192() 420 nist_set_192(t_d, buf.bn, 0, 3, 3); in BN_nist_mod_192() 422 nist_set_192(t_d, buf.bn, 4, 4, 0); in BN_nist_mod_192() 424 nist_set_192(t_d, buf.bn, 5, 5, 5) in BN_nist_mod_192() 472 BN_ULONG bn[BN_NIST_224_TOP]; in BN_nist_mod_224() member 510 nist_set_224(buf.bn, c_d, 14, 13, 12, 11, 10, 9, 8); in BN_nist_mod_224() 514 nist_cp_bn_0(buf.bn, a_d + BN_NIST_224_TOP, top - BN_NIST_224_TOP, in BN_nist_mod_224() 577 nist_set_224(t_d, buf.bn, 10, 9, 8, 7, 0, 0, 0); in BN_nist_mod_224() 579 nist_set_224(t_d, buf.bn, in BN_nist_mod_224() 644 BN_ULONG bn[BN_NIST_256_TOP]; BN_nist_mod_256() member 881 BN_ULONG bn[BN_NIST_384_TOP]; BN_nist_mod_384() member [all...] |
/third_party/node/deps/openssl/openssl/apps/ |
H A D | prime.c | 14 #include <openssl/bn.h> 45 BIGNUM *bn = NULL; in prime_main() local 102 bn = BN_new(); in prime_main() 103 if (bn == NULL) { in prime_main() 107 if (!BN_generate_prime_ex(bn, bits, safe, NULL, NULL, NULL)) { in prime_main() 111 s = hex ? BN_bn2hex(bn) : BN_bn2dec(bn); in prime_main() 123 r = BN_hex2bn(&bn, argv[0]); in prime_main() 125 r = BN_dec2bn(&bn, argv[0]); in prime_main() 132 BN_print(bio_out, bn); in prime_main() [all...] |
/third_party/openssl/apps/ |
H A D | prime.c | 14 #include <openssl/bn.h> 45 BIGNUM *bn = NULL; in prime_main() local 102 bn = BN_new(); in prime_main() 103 if (bn == NULL) { in prime_main() 107 if (!BN_generate_prime_ex(bn, bits, safe, NULL, NULL, NULL)) { in prime_main() 111 s = hex ? BN_bn2hex(bn) : BN_bn2dec(bn); in prime_main() 123 r = BN_hex2bn(&bn, argv[0]); in prime_main() 125 r = BN_dec2bn(&bn, argv[0]); in prime_main() 132 BN_print(bio_out, bn); in prime_main() [all...] |
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | param_build_set.c | 70 const char *key, const BIGNUM *bn, size_t sz) in ossl_param_build_set_bn_pad() 73 return OSSL_PARAM_BLD_push_BN_pad(bld, key, bn, sz); in ossl_param_build_set_bn_pad() 79 return OSSL_PARAM_set_BN(p, bn); in ossl_param_build_set_bn_pad() 85 const char *key, const BIGNUM *bn) in ossl_param_build_set_bn() 88 return OSSL_PARAM_BLD_push_BN(bld, key, bn); in ossl_param_build_set_bn() 92 return OSSL_PARAM_set_BN(p, bn) > 0; in ossl_param_build_set_bn() 102 const BIGNUM *bn; in ossl_param_build_set_multi_key_bn() local 106 bn = sk_BIGNUM_const_value(stk, i); in ossl_param_build_set_multi_key_bn() 107 if (bn != NULL && !OSSL_PARAM_BLD_push_BN(bld, names[i], bn)) in ossl_param_build_set_multi_key_bn() 69 ossl_param_build_set_bn_pad(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, const char *key, const BIGNUM *bn, size_t sz) ossl_param_build_set_bn_pad() argument 84 ossl_param_build_set_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, const char *key, const BIGNUM *bn) ossl_param_build_set_bn() argument [all...] |
H A D | param_build.c | 30 const BIGNUM *bn; member 194 const BIGNUM *bn) in OSSL_PARAM_BLD_push_BN() 196 return OSSL_PARAM_BLD_push_BN_pad(bld, key, bn, in OSSL_PARAM_BLD_push_BN() 197 bn == NULL ? 0 : BN_num_bytes(bn)); in OSSL_PARAM_BLD_push_BN() 201 const BIGNUM *bn, size_t sz) in OSSL_PARAM_BLD_push_BN_pad() 206 if (bn != NULL) { in OSSL_PARAM_BLD_push_BN_pad() 207 if (BN_is_negative(bn)) { in OSSL_PARAM_BLD_push_BN_pad() 213 n = BN_num_bytes(bn); in OSSL_PARAM_BLD_push_BN_pad() 222 if (BN_get_flags(bn, BN_FLG_SECUR in OSSL_PARAM_BLD_push_BN_pad() 193 OSSL_PARAM_BLD_push_BN(OSSL_PARAM_BLD *bld, const char *key, const BIGNUM *bn) OSSL_PARAM_BLD_push_BN() argument 200 OSSL_PARAM_BLD_push_BN_pad(OSSL_PARAM_BLD *bld, const char *key, const BIGNUM *bn, size_t sz) OSSL_PARAM_BLD_push_BN_pad() argument [all...] |
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | lws-genrsa.c | 97 ctx->bn[n] = BN_bin2bn(el[n].buf, (int)el[n].len, NULL); in lws_genrsa_create() 98 if (!ctx->bn[n]) { in lws_genrsa_create() 116 if (RSA_set0_key(ctx->rsa, ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_N], in lws_genrsa_create() 117 ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_E], in lws_genrsa_create() 118 ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_D]) != 1) { in lws_genrsa_create() 122 RSA_set0_factors(ctx->rsa, ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_P], in lws_genrsa_create() 123 ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_Q]); in lws_genrsa_create() 125 ctx->rsa->e = ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_E]; in lws_genrsa_create() 126 ctx->rsa->n = ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_N]; in lws_genrsa_create() 127 ctx->rsa->d = ctx->bn[LWS_GENCRYPTO_RSA_KEYEL_ in lws_genrsa_create() 155 BIGNUM *bn; global() local [all...] |
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | bn.rs | 22 pub fn BN_num_bits(bn: *const BIGNUM) -> c_int; in BN_num_bits() 23 pub fn BN_clear_free(bn: *mut BIGNUM); in BN_clear_free() 32 pub fn BN_set_negative(bn: *mut BIGNUM, n: c_int); in BN_set_negative() 91 pub fn BN_set_word(bn: *mut BIGNUM, n: BN_ULONG) -> c_int; in BN_set_word() 94 pub fn BN_free(bn: *mut BIGNUM); in BN_free() 122 pub fn BN_clear(bn: *mut BIGNUM); in BN_clear() 156 pub fn BN_get_rfc2409_prime_768(bn: *mut BIGNUM) -> *mut BIGNUM; in BN_get_rfc2409_prime_768() 157 pub fn BN_get_rfc2409_prime_1024(bn: *mut BIGNUM) -> *mut BIGNUM; in BN_get_rfc2409_prime_1024() 158 pub fn BN_get_rfc3526_prime_1536(bn: *mut BIGNUM) -> *mut BIGNUM; in BN_get_rfc3526_prime_1536() 159 pub fn BN_get_rfc3526_prime_2048(bn in BN_get_rfc3526_prime_1536() [all...] |
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | x_bignum.c | 13 #include <openssl/bn.h> 97 BIGNUM *bn; in bn_i2c() local 101 bn = (BIGNUM *)*pval; in bn_i2c() 103 if (BN_num_bits(bn) & 0x7) in bn_i2c() 110 BN_bn2bin(bn, cont); in bn_i2c() 112 return pad + BN_num_bytes(bn); in bn_i2c() 118 BIGNUM *bn; in bn_c2i() local 122 bn = (BIGNUM *)*pval; in bn_c2i() 123 if (!BN_bin2bn(cont, len, bn)) { in bn_c2i() 134 BIGNUM *bn; in bn_secure_c2i() local [all...] |
H A D | a_int.c | 15 #include <openssl/bn.h> 461 static ASN1_STRING *bn_to_asn1_string(const BIGNUM *bn, ASN1_STRING *ai, in bn_to_asn1_string() argument 479 if (BN_is_negative(bn) && !BN_is_zero(bn)) in bn_to_asn1_string() 482 len = BN_num_bytes(bn); in bn_to_asn1_string() 493 if (BN_is_zero(bn)) in bn_to_asn1_string() 496 len = BN_bn2bin(bn, ret->data); in bn_to_asn1_string() 505 static BIGNUM *asn1_string_to_bn(const ASN1_INTEGER *ai, BIGNUM *bn, in asn1_string_to_bn() argument 515 ret = BN_bin2bn(ai->data, ai->length, bn); in asn1_string_to_bn() 564 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGE argument 569 ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn) ASN1_INTEGER_to_BN() argument 607 BN_to_ASN1_ENUMERATED(const BIGNUM *bn, ASN1_ENUMERATED *ai) BN_to_ASN1_ENUMERATED() argument 612 ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai, BIGNUM *bn) ASN1_ENUMERATED_to_BN() argument [all...] |
/third_party/openssl/crypto/asn1/ |
H A D | x_bignum.c | 13 #include <openssl/bn.h> 97 BIGNUM *bn; in bn_i2c() local 101 bn = (BIGNUM *)*pval; in bn_i2c() 103 if (BN_num_bits(bn) & 0x7) in bn_i2c() 110 BN_bn2bin(bn, cont); in bn_i2c() 112 return pad + BN_num_bytes(bn); in bn_i2c() 118 BIGNUM *bn; in bn_c2i() local 122 bn = (BIGNUM *)*pval; in bn_c2i() 123 if (!BN_bin2bn(cont, len, bn)) { in bn_c2i() 134 BIGNUM *bn; in bn_secure_c2i() local [all...] |
H A D | a_int.c | 15 #include <openssl/bn.h> 461 static ASN1_STRING *bn_to_asn1_string(const BIGNUM *bn, ASN1_STRING *ai, in bn_to_asn1_string() argument 479 if (BN_is_negative(bn) && !BN_is_zero(bn)) in bn_to_asn1_string() 482 len = BN_num_bytes(bn); in bn_to_asn1_string() 493 if (BN_is_zero(bn)) in bn_to_asn1_string() 496 len = BN_bn2bin(bn, ret->data); in bn_to_asn1_string() 505 static BIGNUM *asn1_string_to_bn(const ASN1_INTEGER *ai, BIGNUM *bn, in asn1_string_to_bn() argument 515 ret = BN_bin2bn(ai->data, ai->length, bn); in asn1_string_to_bn() 564 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGE argument 569 ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn) ASN1_INTEGER_to_BN() argument 607 BN_to_ASN1_ENUMERATED(const BIGNUM *bn, ASN1_ENUMERATED *ai) BN_to_ASN1_ENUMERATED() argument 612 ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai, BIGNUM *bn) ASN1_ENUMERATED_to_BN() argument [all...] |
/third_party/openssl/test/testutil/ |
H A D | format_output.c | 184 static const char *test_bignum_zero_null(const BIGNUM *bn) in test_bignum_zero_null() argument 186 if (bn != NULL) in test_bignum_zero_null() 187 return BN_is_negative(bn) ? "-0" : "0"; in test_bignum_zero_null() 195 static void test_bignum_zero_print(const BIGNUM *bn, char sep) in test_bignum_zero_print() argument 197 const char *v = test_bignum_zero_null(bn); in test_bignum_zero_print() 198 const char *suf = bn != NULL ? ": 0" : ""; in test_bignum_zero_print() 208 char *out, int *lz, const BIGNUM *bn) in convert_bn_memory() 214 if (bn != NULL && !BN_is_zero(bn)) { in convert_bn_memory() 228 if ((in[bytes] & 0xf0) != 0 && BN_is_negative(bn)) { in convert_bn_memory() 207 convert_bn_memory(const unsigned char *in, size_t bytes, char *out, int *lz, const BIGNUM *bn) convert_bn_memory() argument 377 test_fail_bignum_mono_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const BIGNUM *bn) test_fail_bignum_mono_message() argument 386 test_output_bignum(const char *name, const BIGNUM *bn) test_output_bignum() argument [all...] |
/third_party/icu/icu4c/source/test/testdata/ |
H A D | BUILDRULES.py | 63 input_files = [InFile("%s.txt" % bn) for bn in basenames], 64 output_files = [OutFile("%s.res" % bn) for bn in basenames], 167 input_files = [InFile("%s.ucm" % bn) for bn in basenames], 168 output_files = [OutFile("%s.cnv" % bn) for bn in basenames],
|
/third_party/python/PC/layout/support/ |
H A D | filesets.py | 28 bn = self._make_name(f) 30 bn in self._names 31 or any(map(bn.startswith, self._prefixes)) 32 or any(map(bn.endswith, self._suffixes)) 62 bn = self._make_name(f) 64 bn in self._names 65 or any(map(bn.startswith, self._prefixes)) 66 or any(map(bn.endswith, self._suffixes))
|
/third_party/typescript/tests/baselines/reference/ |
H A D | objectLiteralEnumPropertyNames.js | 45 const bn = 1; 48 [bn]: 6 52 [bn]: 8 100 var bn = 1;
variable 103 _h[bn] = 6,
107 _j[bn] = 8,
|
/third_party/openssl/crypto/ |
H A D | param_build_set.c | 70 const char *key, const BIGNUM *bn, size_t sz) in ossl_param_build_set_bn_pad() 73 return OSSL_PARAM_BLD_push_BN_pad(bld, key, bn, sz); in ossl_param_build_set_bn_pad() 79 return OSSL_PARAM_set_BN(p, bn); in ossl_param_build_set_bn_pad() 85 const char *key, const BIGNUM *bn) in ossl_param_build_set_bn() 88 return OSSL_PARAM_BLD_push_BN(bld, key, bn); in ossl_param_build_set_bn() 92 return OSSL_PARAM_set_BN(p, bn) > 0; in ossl_param_build_set_bn() 69 ossl_param_build_set_bn_pad(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, const char *key, const BIGNUM *bn, size_t sz) ossl_param_build_set_bn_pad() argument 84 ossl_param_build_set_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, const char *key, const BIGNUM *bn) ossl_param_build_set_bn() argument
|