Searched refs:fe25519_mul (Results 1 - 4 of 4) sorted by relevance

/openbsd-current/usr.bin/signify/
H A Dfe25519.c194 void fe25519_mul(fe25519 *r, const fe25519 *x, const fe25519 *y) function
213 fe25519_mul(r, x, x);
233 /* 9 */ fe25519_mul(&z9,&t0,x);
234 /* 11 */ fe25519_mul(&z11,&z9,&z2);
236 /* 2^5 - 2^0 = 31 */ fe25519_mul(&z2_5_0,&t0,&z9);
243 /* 2^10 - 2^0 */ fe25519_mul(&z2_10_0,&t0,&z2_5_0);
248 /* 2^20 - 2^0 */ fe25519_mul(&z2_20_0,&t1,&z2_10_0);
253 /* 2^40 - 2^0 */ fe25519_mul(&t0,&t1,&z2_20_0);
258 /* 2^50 - 2^0 */ fe25519_mul(&z2_50_0,&t0,&z2_10_0);
263 /* 2^100 - 2^0 */ fe25519_mul(
[all...]
H A Dmod_ge25519.c72 fe25519_mul(&r->x, &p->x, &p->t);
73 fe25519_mul(&r->y, &p->y, &p->z);
74 fe25519_mul(&r->z, &p->z, &p->t);
80 fe25519_mul(&r->t, &p->x, &p->y);
87 fe25519_mul(&qt, &q->x, &q->y);
92 fe25519_mul(&a, &a, &t1);
93 fe25519_mul(&b, &b, &t2);
96 fe25519_mul(&c, &r->t, &qt); /* C = T1*k*T2 */
97 fe25519_mul(&c, &c, &ge25519_ec2d);
101 fe25519_mul(
[all...]
H A Dfe25519.h27 #define fe25519_mul crypto_sign_ed25519_ref_fe25519_mul macro
62 void fe25519_mul(fe25519 *r, const fe25519 *x, const fe25519 *y);
/openbsd-current/usr.bin/ssh/
H A Ded25519.c83 #define fe25519_mul crypto_sign_ed25519_ref_fe25519_mul macro
118 static void fe25519_mul(fe25519 *r, const fe25519 *x, const fe25519 *y);
312 static void fe25519_mul(fe25519 *r, const fe25519 *x, const fe25519 *y) function
331 fe25519_mul(r, x, x);
351 /* 9 */ fe25519_mul(&z9,&t0,x);
352 /* 11 */ fe25519_mul(&z11,&z9,&z2);
354 /* 2^5 - 2^0 = 31 */ fe25519_mul(&z2_5_0,&t0,&z9);
361 /* 2^10 - 2^0 */ fe25519_mul(&z2_10_0,&t0,&z2_5_0);
366 /* 2^20 - 2^0 */ fe25519_mul(&z2_20_0,&t1,&z2_10_0);
371 /* 2^40 - 2^0 */ fe25519_mul(
[all...]

Completed in 121 milliseconds