repo.or.cz
/
brdnet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Include ed25519 and sha512 C language implementation.
[brdnet.git]
/
ed25519
/
sc.h
blob
e29e7fa5af2fec309668104c18fe8ab619928580
1
#ifndef SC_H
2
#define SC_H
3
4
/*
5
The set of scalars is \Z/l
6
where l = 2^252 + 27742317777372353535851937790883648493.
7
*/
8
9
void
sc_reduce
(
unsigned char
*
s
);
10
void
sc_muladd
(
unsigned char
*
s
,
const unsigned char
*
a
,
const unsigned char
*
b
,
const unsigned char
*
c
);
11
12
#endif