Symbol: fe51
crypto/openssl/crypto/ec/curve25519.c
309
static void fe51_frombytes(fe51 h, const uint8_t *s)
crypto/openssl/crypto/ec/curve25519.c
333
static void fe51_tobytes(uint8_t *s, const fe51 h)
crypto/openssl/crypto/ec/curve25519.c
397
void x25519_fe51_mul(fe51 h, const fe51 f, const fe51 g);
crypto/openssl/crypto/ec/curve25519.c
398
void x25519_fe51_sqr(fe51 h, const fe51 f);
crypto/openssl/crypto/ec/curve25519.c
399
void x25519_fe51_mul121666(fe51 h, fe51 f);
crypto/openssl/crypto/ec/curve25519.c
407
static void fe51_mul(fe51 h, const fe51 f, const fe51 g)
crypto/openssl/crypto/ec/curve25519.c
472
static void fe51_sq(fe51 h, const fe51 f)
crypto/openssl/crypto/ec/curve25519.c
536
static void fe51_mul121666(fe51 h, fe51 f)
crypto/openssl/crypto/ec/curve25519.c
570
static void fe51_add(fe51 h, const fe51 f, const fe51 g)
crypto/openssl/crypto/ec/curve25519.c
579
static void fe51_sub(fe51 h, const fe51 f, const fe51 g)
crypto/openssl/crypto/ec/curve25519.c
592
static void fe51_0(fe51 h)
crypto/openssl/crypto/ec/curve25519.c
601
static void fe51_1(fe51 h)
crypto/openssl/crypto/ec/curve25519.c
610
static void fe51_copy(fe51 h, const fe51 f)
crypto/openssl/crypto/ec/curve25519.c
619
static void fe51_cswap(fe51 f, fe51 g, unsigned int b)
crypto/openssl/crypto/ec/curve25519.c
632
static void fe51_invert(fe51 out, const fe51 z)
crypto/openssl/crypto/ec/curve25519.c
634
fe51 t0;
crypto/openssl/crypto/ec/curve25519.c
635
fe51 t1;
crypto/openssl/crypto/ec/curve25519.c
636
fe51 t2;
crypto/openssl/crypto/ec/curve25519.c
637
fe51 t3;
crypto/openssl/crypto/ec/curve25519.c
730
fe51 x1, x2, z2, x3, z3, tmp0, tmp1;