HomeSort by relevance Sort by last modified time
    Searched defs:fe25519_mul (Results 1 - 2 of 2) sorted by null

  /external/openssh/
fe25519.h 27 #define fe25519_mul crypto_sign_ed25519_ref_fe25519_mul macro
62 void fe25519_mul(fe25519 *r, const fe25519 *x, const fe25519 *y);
fe25519.c 196 void fe25519_mul(fe25519 *r, const fe25519 *x, const fe25519 *y) function
215 fe25519_mul(r, x, x);
235 /* 9 */ fe25519_mul(&z9,&t0,x);
236 /* 11 */ fe25519_mul(&z11,&z9,&z2);
238 /* 2^5 - 2^0 = 31 */ fe25519_mul(&z2_5_0,&t0,&z9);
245 /* 2^10 - 2^0 */ fe25519_mul(&z2_10_0,&t0,&z2_5_0);
250 /* 2^20 - 2^0 */ fe25519_mul(&z2_20_0,&t1,&z2_10_0);
255 /* 2^40 - 2^0 */ fe25519_mul(&t0,&t1,&z2_20_0);
260 /* 2^50 - 2^0 */ fe25519_mul(&z2_50_0,&t0,&z2_10_0);
265 /* 2^100 - 2^0 */ fe25519_mul(&z2_100_0,&t1,&z2_50_0)
    [all...]

Completed in 23 milliseconds