Home
last modified time | relevance | path

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

/mcuboot-latest/ext/fiat/src/
Dcurve25519_tables.h26 static const fe d = {{
31 static const fe sqrtm1 = {{
36 static const fe d2 = {{
Dcurve25519.c116 _Static_assert(sizeof(fe) == sizeof(fe_limb_t) * FE_NUM_LIMBS,
119 static void fe_frombytes_strict(fe *h, const uint8_t s[32]) { in fe_frombytes_strict()
126 static void fe_frombytes(fe *h, const uint8_t s[32]) { in fe_frombytes()
133 static void fe_tobytes(uint8_t s[32], const fe *f) { in fe_tobytes()
139 static void fe_0(fe *h) { in fe_0()
141 mbedtls_platform_zeroize(h, sizeof(fe)); in fe_0()
143 _set(h, 0, sizeof(fe)); in fe_0()
148 static void fe_1(fe *h) { in fe_1()
150 mbedtls_platform_zeroize(h, sizeof(fe)); in fe_1()
152 _set(h, 0, sizeof(fe)); in fe_1()
[all …]
Dcurve25519.h26 typedef struct fe { uint32_t v[10]; } fe; struct
45 fe X;
46 fe Y;
47 fe Z;
51 fe X;
52 fe Y;
53 fe Z;
54 fe T;