Searched refs:bn2 (Results 1 – 9 of 9) sorted by relevance
/third_party/openssl/test/ |
D | keymgmt_internal_test.c | 147 BIGNUM *bn1 = NULL, *bn2 = NULL, *bn3 = NULL; in test_pass_rsa() local 182 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa() 183 || !TEST_true(BN_set_word(bn2, expected[E])) in test_pass_rsa() 186 || !TEST_true(RSA_set0_key(rsa, bn1, bn2, bn3))) in test_pass_rsa() 191 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa() 192 || !TEST_true(BN_set_word(bn2, expected[Q])) in test_pass_rsa() 193 || !TEST_true(RSA_set0_factors(rsa, bn1, bn2))) in test_pass_rsa() 198 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa() 199 || !TEST_true(BN_set_word(bn2, expected[DQ])) in test_pass_rsa() 202 || !TEST_true(RSA_set0_crt_params(rsa, bn1, bn2, bn3))) in test_pass_rsa() [all …]
|
D | params_api_test.c | 489 BIGNUM *bn = NULL, *bn2 = NULL; in test_param_construct() local 623 if(!TEST_true(OSSL_PARAM_get_BN(cp, &bn2)) in test_param_construct() 624 || !TEST_BN_eq(bn, bn2)) in test_param_construct() 633 BN_free(bn2); in test_param_construct()
|
D | bntest.c | 2043 BIGNUM *bn2 = NULL; in test_mpi() local 2057 if (!TEST_ptr(bn2 = BN_mpi2bn(scratch, mpi_len, NULL))) in test_mpi() 2060 if (!TEST_BN_eq(bn, bn2)) { in test_mpi() 2061 BN_free(bn2); in test_mpi() 2064 BN_free(bn2); in test_mpi()
|
/third_party/openssl/test/testutil/ |
D | format_output.c | 270 const BIGNUM *bn1, const BIGNUM *bn2) in test_fail_bignum_common() argument 283 l2 = bn2 == NULL ? 0 : (BN_num_bytes(bn2) + (BN_is_negative(bn2) ? 1 : 0)); in test_fail_bignum_common() 285 if ((bn1 == NULL) == (bn2 == NULL)) { in test_fail_bignum_common() 292 test_bignum_zero_print(bn2, '+'); in test_fail_bignum_common() 297 if (l1 != l2 || bn1 == NULL || bn2 == NULL || BN_cmp(bn1, bn2) != 0) in test_fail_bignum_common() 313 if (bn2 != NULL) { in test_fail_bignum_common() 315 BN_bn2binpad(bn2, m2, len); in test_fail_bignum_common() 321 n2 = convert_bn_memory(m2, bytes, b2, &lz2, bn2); in test_fail_bignum_common() 342 if (cnt == 0 && bn2 == NULL) in test_fail_bignum_common() 347 && bn1 != NULL && bn2 != NULL) in test_fail_bignum_common() [all …]
|
D | tu_local.h | 36 const BIGNUM *bn1, const BIGNUM *bn2);
|
/third_party/typescript/tests/baselines/reference/ |
D | contextuallyTypedBooleanLiterals.js | 12 const bn2: Box<number> = box(0); // Ok constant 34 var bn2 = box(0); // Ok variable 47 declare const bn2: Box<number>;
|
D | contextuallyTypedBooleanLiterals.symbols | 30 const bn2: Box<number> = box(0); // Ok 31 >bn2 : Symbol(bn2, Decl(contextuallyTypedBooleanLiterals.ts, 10, 5))
|
D | contextuallyTypedBooleanLiterals.types | 25 const bn2: Box<number> = box(0); // Ok 26 >bn2 : Box<number>
|
/third_party/typescript/tests/cases/compiler/ |
D | contextuallyTypedBooleanLiterals.ts | 17 const bn2: Box<number> = box(0); // Ok
|