Home
last modified time | relevance | path

Searched refs:BN_GF2m_add (Results 1 – 7 of 7) sorted by relevance

/external/openssl/crypto/ec/
Dec2_smpl.c479 if (!BN_GF2m_add(t, x0, x1)) goto err; in ec_GF2m_simple_add()
480 if (!BN_GF2m_add(s, y0, y1)) goto err; in ec_GF2m_simple_add()
483 if (!BN_GF2m_add(x2, x2, &group->a)) goto err; in ec_GF2m_simple_add()
484 if (!BN_GF2m_add(x2, x2, s)) goto err; in ec_GF2m_simple_add()
485 if (!BN_GF2m_add(x2, x2, t)) goto err; in ec_GF2m_simple_add()
496 if (!BN_GF2m_add(s, s, x1)) goto err; in ec_GF2m_simple_add()
499 if (!BN_GF2m_add(x2, x2, s)) goto err; in ec_GF2m_simple_add()
500 if (!BN_GF2m_add(x2, x2, &group->a)) goto err; in ec_GF2m_simple_add()
503 if (!BN_GF2m_add(y2, x1, x2)) goto err; in ec_GF2m_simple_add()
505 if (!BN_GF2m_add(y2, y2, x2)) goto err; in ec_GF2m_simple_add()
[all …]
Dec2_mult.c100 if (!BN_GF2m_add(x, x, t1)) goto err; in gf2m_Mdouble()
131 if (!BN_GF2m_add(z1, z1, x1)) goto err; in gf2m_Madd()
134 if (!BN_GF2m_add(x1, x1, t2)) goto err; in gf2m_Madd()
168 if (!BN_GF2m_add(z2, x, y)) return 0; in gf2m_Mxy()
184 if (!BN_GF2m_add(z1, z1, x1)) goto err; in gf2m_Mxy()
187 if (!BN_GF2m_add(z2, z2, x2)) goto err; in gf2m_Mxy()
191 if (!BN_GF2m_add(t4, t4, y)) goto err; in gf2m_Mxy()
193 if (!BN_GF2m_add(t4, t4, z2)) goto err; in gf2m_Mxy()
199 if (!BN_GF2m_add(z2, x2, x)) goto err; in gf2m_Mxy()
202 if (!BN_GF2m_add(z2, z2, y)) goto err; in gf2m_Mxy()
[all …]
Dec2_oct.c126 if (!BN_GF2m_add(tmp, &group->a, tmp)) goto err; in ec_GF2m_simple_set_compressed_coordinates()
127 if (!BN_GF2m_add(tmp, x, tmp)) goto err; in ec_GF2m_simple_set_compressed_coordinates()
145 if (!BN_GF2m_add(y, y, x)) goto err; in ec_GF2m_simple_set_compressed_coordinates()
/external/openssl/crypto/bn/
Dbn_gf2m.c229 int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_GF2m_add() function
553 if (!BN_GF2m_add(b, b, p)) goto err; in BN_GF2m_mod_inv()
566 if (!BN_GF2m_add(u, u, v)) goto err; in BN_GF2m_mod_inv()
567 if (!BN_GF2m_add(b, b, c)) goto err; in BN_GF2m_mod_inv()
739 if (BN_is_odd(u)) if (!BN_GF2m_add(u, u, p)) goto err; in BN_GF2m_mod_div()
747 if (!BN_GF2m_add(b, b, a)) goto err; in BN_GF2m_mod_div()
748 if (!BN_GF2m_add(v, v, u)) goto err; in BN_GF2m_mod_div()
752 if (BN_is_odd(v)) if (!BN_GF2m_add(v, v, p)) goto err; in BN_GF2m_mod_div()
760 if (!BN_GF2m_add(a, a, b)) goto err; in BN_GF2m_mod_div()
761 if (!BN_GF2m_add(u, u, v)) goto err; in BN_GF2m_mod_div()
[all …]
Dbntest.c1080 BN_GF2m_add(&c,&a,&b); in test_gf2m_add()
1101 BN_GF2m_add(&c,&c,&c); in test_gf2m_add()
1154 BN_GF2m_add(d, a, c); in test_gf2m_mod()
1219 BN_GF2m_add(f, a, d); in test_gf2m_mod_mul()
1222 BN_GF2m_add(f, e, g); in test_gf2m_mod_mul()
1223 BN_GF2m_add(f, f, h); in test_gf2m_mod_mul()
1286 BN_GF2m_add(d, c, d); in test_gf2m_mod_sqr()
1473 BN_GF2m_add(f, e, f); in test_gf2m_mod_exp()
1532 BN_GF2m_add(f, c, e); in test_gf2m_mod_sqrt()
1580 BN_GF2m_add(d, c, d); in test_gf2m_mod_solve_quad()
[all …]
Dbn.h639 int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); /*r = a + b*/
640 #define BN_GF2m_sub(r, a, b) BN_GF2m_add(r, a, b)
/external/openssl/include/openssl/
Dbn.h639 int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); /*r = a + b*/
640 #define BN_GF2m_sub(r, a, b) BN_GF2m_add(r, a, b)