Searched refs:val1 (Results 1 – 4 of 4) sorted by relevance
/openssl/crypto/bn/ |
H A D | bn_exp2.c | 26 BIGNUM *val1[TABLE_SIZE], *val2[TABLE_SIZE]; in BN_mod_exp2_mont() local 51 val1[0] = BN_CTX_get(ctx); in BN_mod_exp2_mont() 72 if (!BN_mod(val1[0], a1, m, ctx)) in BN_mod_exp2_mont() 74 a_mod_m = val1[0]; in BN_mod_exp2_mont() 83 if (!BN_to_montgomery(val1[0], a_mod_m, mont, ctx)) in BN_mod_exp2_mont() 86 if (!BN_mod_mul_montgomery(d, val1[0], val1[0], mont, ctx)) in BN_mod_exp2_mont() 91 if (((val1[i] = BN_CTX_get(ctx)) == NULL) || in BN_mod_exp2_mont() 92 !BN_mod_mul_montgomery(val1[i], val1[i - 1], d, mont, ctx)) in BN_mod_exp2_mont() 178 if (!BN_mod_mul_montgomery(r, r, val1[wvalue1 >> 1], mont, ctx)) in BN_mod_exp2_mont()
|
/openssl/test/ |
H A D | v3ext.c | 45 ASN1_INTEGER *val1 = NULL, *val2 = NULL; in test_asid() local 55 if (!TEST_ptr(val1 = ASN1_INTEGER_new()) in test_asid() 56 || !TEST_true(ASN1_INTEGER_set_int64(val1, 64496))) in test_asid() 59 if (!TEST_true(X509v3_asid_add_id_or_range(asid1, V3_ASID_ASNUM, val1, NULL))) in test_asid() 62 val1 = NULL; in test_asid() 71 if (!TEST_ptr(val1 = ASN1_INTEGER_new()) in test_asid() 72 || !TEST_true(ASN1_INTEGER_set_int64(val1, 64496)) in test_asid() 81 if (!TEST_true(X509v3_asid_add_id_or_range(asid3, V3_ASID_ASNUM, val1, val2))) in test_asid() 83 val1 = val2 = NULL; in test_asid() 111 ASN1_INTEGER_free(val1); in test_asid()
|
H A D | cmp_ctx_test.c | 361 TYPE val1 = val1_to_free; \ 390 if (!(*set_fn)(ctx, val1)) { \ 401 if (val1_read != val1) { \ 406 if (DUP && val1_read == val1) { \ 440 if (val2 == val1) { \ 646 TYPE val1 = val1_to_free; \ 655 if ((*push_fn)(NULL, val1) || ERR_peek_error() == 0) { \ 668 if (!(*push_fn)(ctx, val1)) { \ 681 if (val1_read != val1) { \ 686 if (DUP && val1_read == val1) { \ [all …]
|
/openssl/test/recipes/ |
H A D | 25-test_req.t | 43 my $val1 = "subjectAltName=otherName:1.2.3.4;UTF8:test,email:info\@example.com"; 48 ok( run(app([@addext_args, "-addext", $val1]))); 49 $val1 =~ s/UTF8/XXXX/; # execute the error handling in do_othername 50 ok(!run(app([@addext_args, "-addext", $val1])));
|
Completed in 10 milliseconds