Lines Matching refs:mont
894 ScopedBN_MONT_CTX mont(BN_MONT_CTX_new()); in test_mont() local
895 if (!a || !b || !c || !d || !A || !B || !n || !mont) { in test_mont()
900 if (BN_MONT_CTX_set(mont.get(), n.get(), ctx)) { in test_mont()
909 if (BN_MONT_CTX_set(mont.get(), n.get(), ctx)) { in test_mont()
927 !BN_MONT_CTX_set(mont.get(), n.get(), ctx) || in test_mont()
930 !BN_to_montgomery(A.get(), a.get(), mont.get(), ctx) || in test_mont()
931 !BN_to_montgomery(B.get(), b.get(), mont.get(), ctx) || in test_mont()
932 !BN_mod_mul_montgomery(c.get(), A.get(), B.get(), mont.get(), ctx) || in test_mont()
933 !BN_from_montgomery(A.get(), c.get(), mont.get(), ctx)) { in test_mont()
941 BN_print_fp(fp, &mont->N); in test_mont()
1245 ScopedBN_MONT_CTX mont(BN_MONT_CTX_new()); in test_mod_exp_mont5() local
1246 if (!mont || !BN_one(a.get()) || in test_mod_exp_mont5()
1247 !BN_MONT_CTX_set(mont.get(), m.get(), ctx) || in test_mod_exp_mont5()
1248 !BN_from_montgomery(e.get(), a.get(), mont.get(), ctx) || in test_mod_exp_mont5()