Skip to content

Commit

Permalink
fix crypto sign benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Mar 21, 2019
1 parent d765a17 commit 42ad78d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crypto_sign/speed.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ int main(void)
t0 = hal_get_time();
crypto_sign_keypair(pk, sk);
t1 = hal_get_time();
printcycles("keypair cycles:", t1-t0;
printcycles("keypair cycles:", t1-t0);

// Signing
t0 = hal_get_time();
Expand Down
2 changes: 1 addition & 1 deletion crypto_sign/stack.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static int test_sign(void) {
}

int main(void) {
hal_setup(CLOCK_FAST)
hal_setup(CLOCK_FAST);

// marker for automated benchmarks
hal_send_str("==========================");
Expand Down

0 comments on commit 42ad78d

Please sign in to comment.