Searched refs:fe51 (Results 1 – 1 of 1) sorted by relevance
/linux/arch/powerpc/crypto/ |
H A D | curve25519-ppc64le-core.c | 22 typedef uint64_t fe51[5]; typedef 24 asmlinkage void x25519_fe51_mul(fe51 h, const fe51 f, const fe51 g); 25 asmlinkage void x25519_fe51_sqr(fe51 h, const fe51 f); 26 asmlinkage void x25519_fe51_mul121666(fe51 h, fe51 f); 27 asmlinkage void x25519_fe51_sqr_times(fe51 h, const fe51 f, int n); 28 asmlinkage void x25519_fe51_frombytes(fe51 h, const uint8_t *s); 29 asmlinkage void x25519_fe51_tobytes(uint8_t *s, const fe51 h); 30 asmlinkage void x25519_cswap(fe51 p, fe51 q, unsigned int bit); 37 static void fadd(fe51 h, const fe51 f, const fe51 g) in fadd() 52 static fe51 prime51 = { 0x7ffffffffffed, 0x7ffffffffffff, 0x7ffffffffffff, 0x7ffffffffffff, 0x7ffff… [all …]
|