Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pqcrypto
faster-csidh
Commits
798241ae
Commit
798241ae
authored
Feb 24, 2020
by
Fabio Campos
Browse files
bug fixing@benchmarking
parent
08d5c77d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
798241ae
...
...
@@ -20,6 +20,19 @@ debug:
main.c
\
-o
main
bench
:
@
gcc
\
-Wall
-Wextra
\
-O3
-funroll-loops
\
rng.c
\
u512.s fp.s
\
mont.c
\
csidh.c
\
bench.c
\
-o
bench
clean
:
rm
-f
main
rm
-f
bench
bench.c
View file @
798241ae
...
...
@@ -19,7 +19,7 @@ static __inline__ uint64_t rdtsc(void)
return
lo
|
(
uint64_t
)
hi
<<
32
;
}
unsigned
long
its
=
1000
0
;
unsigned
long
its
=
1000
;
int
main
()
{
...
...
csidh.h
View file @
798241ae
...
...
@@ -23,4 +23,8 @@ extern const public_key base;
void
csidh_private
(
private_key
*
priv
);
bool
csidh
(
public_key
*
out
,
public_key
const
*
in
,
private_key
const
*
priv
);
bool
validate
(
public_key
const
*
in
);
void
action
(
public_key
*
out
,
public_key
const
*
in
,
private_key
const
*
priv
);
#endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment