Home
last modified time | relevance | path

Searched refs:fe25519_sub (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Dge25519.c87 fe25519_sub(&a, &r->y, &r->x); /* A = (Y1-X1)*(Y2-X2) */ in ge25519_mixadd2()
89 fe25519_sub(&t1, &q->y, &q->x); in ge25519_mixadd2()
93 fe25519_sub(&e, &b, &a); /* E = B-A */ in ge25519_mixadd2()
98 fe25519_sub(&f, &d, &c); /* F = D-C */ in ge25519_mixadd2()
110 fe25519_sub(&a, &p->y, &p->x); /* A = (Y1-X1)*(Y2-X2) */ in add_p1p1()
111 fe25519_sub(&t, &q->y, &q->x); in add_p1p1()
120 fe25519_sub(&r->x, &b, &a); /* E = B-A */ in add_p1p1()
121 fe25519_sub(&r->t, &d, &c); /* F = D-C */ in add_p1p1()
138 fe25519_sub(&r->x, &r->x, &a); in dbl_p1p1()
139 fe25519_sub(&r->x, &r->x, &b); in dbl_p1p1()
[all …]
Dfe25519.h26 #define fe25519_sub crypto_sign_ed25519_ref_fe25519_sub macro
60 void fe25519_sub(fe25519 *r, const fe25519 *x, const fe25519 *y);
Dfe25519.c175 fe25519_sub(r, r, &t); in fe25519_neg()
185 void fe25519_sub(fe25519 *r, const fe25519 *x, const fe25519 *y) in fe25519_sub() function