• Home
  • Raw
  • Download

Lines Matching refs:mont

457     BN_MONT_CTX *mont = NULL;  in test_modexp_mont5()  local
468 || !TEST_ptr(mont = BN_MONT_CTX_new())) in test_modexp_mont5()
501 if (!(TEST_true(BN_MONT_CTX_set(mont, n, ctx)) in test_modexp_mont5()
502 && TEST_true(BN_mod_mul_montgomery(c, a, b, mont, ctx)) in test_modexp_mont5()
503 && TEST_true(BN_mod_mul_montgomery(d, b, a, mont, ctx)) in test_modexp_mont5()
513 && TEST_true(BN_MONT_CTX_set(mont, n, ctx)) in test_modexp_mont5()
514 && TEST_true(BN_mod_mul_montgomery(c, a, a, mont, ctx)) in test_modexp_mont5()
515 && TEST_true(BN_mod_mul_montgomery(d, a, b, mont, ctx)) in test_modexp_mont5()
558 && TEST_true(BN_MONT_CTX_set(mont, n, ctx)))) in test_modexp_mont5()
561 if (!TEST_true(BN_mod_mul_montgomery(c, a, a, mont, ctx)) in test_modexp_mont5()
562 || !TEST_true(BN_mod_mul_montgomery(d, a, b, mont, ctx)) in test_modexp_mont5()
574 && TEST_true(BN_MONT_CTX_set(mont, n, ctx)) in test_modexp_mont5()
575 && TEST_false(BN_mod_mul_montgomery(d, a, a, mont, ctx)))) in test_modexp_mont5()
594 && TEST_true(BN_MONT_CTX_set(mont, n, ctx)) in test_modexp_mont5()
595 && TEST_true(BN_mod_exp_mont_consttime(c, a, b, n, ctx, mont)) in test_modexp_mont5()
596 && TEST_true(BN_mod_exp_mont(d, a, b, n, ctx, mont)) in test_modexp_mont5()
619 && TEST_true(BN_MONT_CTX_set(mont, n, ctx)) in test_modexp_mont5()
620 && TEST_true(BN_mod_exp_mont_consttime(c, a, b, n, ctx, mont)))) in test_modexp_mont5()
685 && TEST_true(BN_MONT_CTX_set(mont, m, ctx)))) in test_modexp_mont5()
687 if (!TEST_true(BN_from_montgomery(e, a, mont, ctx)) in test_modexp_mont5()
703 BN_MONT_CTX_free(mont); in test_modexp_mont5()
1603 BN_MONT_CTX *mont = BN_MONT_CTX_new(); in file_modmul() local
1607 if (mont == NULL || a_tmp == NULL || b_tmp == NULL in file_modmul()
1608 || !TEST_true(BN_MONT_CTX_set(mont, m, ctx)) in file_modmul()
1611 || !TEST_true(BN_to_montgomery(a_tmp, a_tmp, mont, ctx)) in file_modmul()
1612 || !TEST_true(BN_to_montgomery(b_tmp, b_tmp, mont, ctx)) in file_modmul()
1614 mont, ctx)) in file_modmul()
1615 || !TEST_true(BN_from_montgomery(ret, ret, mont, ctx)) in file_modmul()
1620 BN_MONT_CTX_free(mont); in file_modmul()
2250 BN_MONT_CTX *mont = NULL; in test_badmod() local
2256 || !TEST_ptr(mont = BN_MONT_CTX_new())) in test_badmod()
2282 if (!TEST_false(BN_MONT_CTX_set(mont, zero, ctx))) in test_badmod()
2290 if (!TEST_false(BN_MONT_CTX_set(mont, b, ctx))) in test_badmod()
2309 BN_MONT_CTX_free(mont); in test_badmod()