Home
last modified time | relevance | path

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

/freebsd-11-stable/crypto/openssl/crypto/ec/
HDec2_smpl.c515 if (!BN_GF2m_add(t, x0, x1)) in ec_GF2m_simple_add()
517 if (!BN_GF2m_add(s, y0, y1)) in ec_GF2m_simple_add()
523 if (!BN_GF2m_add(x2, x2, &group->a)) in ec_GF2m_simple_add()
525 if (!BN_GF2m_add(x2, x2, s)) in ec_GF2m_simple_add()
527 if (!BN_GF2m_add(x2, x2, t)) in ec_GF2m_simple_add()
538 if (!BN_GF2m_add(s, s, x1)) in ec_GF2m_simple_add()
543 if (!BN_GF2m_add(x2, x2, s)) in ec_GF2m_simple_add()
545 if (!BN_GF2m_add(x2, x2, &group->a)) in ec_GF2m_simple_add()
549 if (!BN_GF2m_add(y2, x1, x2)) in ec_GF2m_simple_add()
553 if (!BN_GF2m_add(y2, y2, x2)) in ec_GF2m_simple_add()
[all …]
HDec2_mult.c108 if (!BN_GF2m_add(x, x, t1)) in gf2m_Mdouble()
147 if (!BN_GF2m_add(z1, z1, x1)) in gf2m_Madd()
153 if (!BN_GF2m_add(x1, x1, t2)) in gf2m_Madd()
189 if (!BN_GF2m_add(z2, x, y)) in gf2m_Mxy()
210 if (!BN_GF2m_add(z1, z1, x1)) in gf2m_Mxy()
216 if (!BN_GF2m_add(z2, z2, x2)) in gf2m_Mxy()
223 if (!BN_GF2m_add(t4, t4, y)) in gf2m_Mxy()
227 if (!BN_GF2m_add(t4, t4, z2)) in gf2m_Mxy()
238 if (!BN_GF2m_add(z2, x2, x)) in gf2m_Mxy()
243 if (!BN_GF2m_add(z2, z2, y)) in gf2m_Mxy()
[all …]
HDec2_oct.c130 if (!BN_GF2m_add(tmp, &group->a, tmp)) in ec_GF2m_simple_set_compressed_coordinates()
132 if (!BN_GF2m_add(tmp, x, tmp)) in ec_GF2m_simple_set_compressed_coordinates()
151 if (!BN_GF2m_add(y, y, x)) in ec_GF2m_simple_set_compressed_coordinates()
/freebsd-11-stable/crypto/openssl/crypto/bn/
HDbn_gf2m.c333 int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_GF2m_add() function
672 if (!BN_GF2m_add(b, b, p)) in BN_GF2m_mod_inv()
691 if (!BN_GF2m_add(u, u, v)) in BN_GF2m_mod_inv()
693 if (!BN_GF2m_add(b, b, c)) in BN_GF2m_mod_inv()
899 if (!BN_GF2m_add(u, u, p)) in BN_GF2m_mod_div()
907 if (!BN_GF2m_add(b, b, a)) in BN_GF2m_mod_div()
909 if (!BN_GF2m_add(v, v, u)) in BN_GF2m_mod_div()
915 if (!BN_GF2m_add(v, v, p)) in BN_GF2m_mod_div()
923 if (!BN_GF2m_add(a, a, b)) in BN_GF2m_mod_div()
925 if (!BN_GF2m_add(u, u, v)) in BN_GF2m_mod_div()
[all …]
HDbntest.c1260 BN_GF2m_add(&c, &a, &b); in test_gf2m_add()
1280 BN_GF2m_add(&c, &c, &c); in test_gf2m_add()
1329 BN_GF2m_add(d, a, c); in test_gf2m_mod()
1390 BN_GF2m_add(f, a, d); in test_gf2m_mod_mul()
1393 BN_GF2m_add(f, e, g); in test_gf2m_mod_mul()
1394 BN_GF2m_add(f, f, h); in test_gf2m_mod_mul()
1454 BN_GF2m_add(d, c, d); in test_gf2m_mod_sqr()
1629 BN_GF2m_add(f, e, f); in test_gf2m_mod_exp()
1685 BN_GF2m_add(f, c, e); in test_gf2m_mod_sqrt()
1729 BN_GF2m_add(d, c, d); in test_gf2m_mod_solve_quad()
[all …]
HDbn.h699 int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
700 # define BN_GF2m_sub(r, a, b) BN_GF2m_add(r, a, b)
/freebsd-11-stable/crypto/openssl/util/
HDlibeay.num3161 BN_GF2m_add 3574 EXIST::FUNCTION:EC2M
/freebsd-11-stable/crypto/openssl/
HDCHANGES4755 BN_GF2m_add
4756 BN_GF2m_sub [= BN_GF2m_add]
4767 BN_GF2m_add() is misnomer, but this is for the sake of consistency.)