-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc448.h
52 lines (37 loc) · 1.58 KB
/
sc448.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef SC448_H
#define SC448_H
#include "defs.h"
#define sc448 crypto_sign_sc448
#define sc448_from57bytes crypto_sign_sc448_from57bytes
#define sc448_from114bytes crypto_sign_sc448_from114bytes
#define sc448_to57bytes crypto_sign_sc448_to57bytes
#define sc448_iszero_vartime crypto_sign_sc448_iszero_vartime
#define sc448_isshort_vartime crypto_sign_sc448_isshort_vartime
#define sc448_lt_vartime crypto_sign_sc448_lt_vartime
#define sc448_add crypto_sign_sc448_add
#define sc448_sub_nored crypto_sign_sc448_sub_nored
#define sc448_mul crypto_sign_sc448_mul
#define sc448_window3 crypto_sign_sc448_window3
#define sc448_2interleave2 crypto_sign_sc448_2interleave2
typedef struct
{
crypto_uint32 v[57];
}
sc448;
void sc448_from57bytes(sc448 *r, const unsigned char x[57]);
void sc448_from114bytes(sc448 *r, const unsigned char x[114]);
void sc448_to57bytes(unsigned char r[57], const sc448 *x);
int sc448_iszero_vartime(const sc448 *x);
int sc448_isshort_vartime(const sc448 *x);
int sc448_lt_vartime(const sc448 *x, const sc448 *y);
void sc448_add(sc448 *r, const sc448 *x, const sc448 *y);
void sc448_sub_nored(sc448 *r, const sc448 *x, const sc448 *y);
void sc448_mul(sc448 *r, const sc448 *x, const sc448 *y);
/*
* Convert s into a representation of the form \sum_{i=0}^{150}r[i]2^3
* with r[i] in {-4,...,3}
* need 150 bytes, because the r[148] may be 4
*/
void sc448_window3(signed char r[150], const sc448 *s);
void sc448_2interleave2(unsigned char r[223], const sc448 *s1, const sc448 *s2);
#endif