libsignal-protocol-c  master
gen_crypto_additions.h
1 
2 #ifndef __GEN_CRYPTO_ADDITIONS__
3 #define __GEN_CRYPTO_ADDITIONS__
4 
5 #include "crypto_uint32.h"
6 #include "fe.h"
7 #include "ge.h"
8 
9 int sc_isreduced(const unsigned char* s);
10 
11 int point_isreduced(const unsigned char* p);
12 
13 void ge_p3_add(ge_p3 *r, const ge_p3 *p, const ge_p3 *q);
14 
15 #endif
16 
Definition: ge.h:26