X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fnse%2Fperf_kdf.c;h=bdc9be22186c35d78b8faec6fd24ebed1d82ff83;hb=bfdb0abc074a99a7d24ca408f38cfda128d4132b;hp=fbc846ac2c537204b136354bdb361482284ebc06;hpb=f215983130428573f83a99628f8e450c2a761f65;p=oweals%2Fgnunet.git diff --git a/src/nse/perf_kdf.c b/src/nse/perf_kdf.c index fbc846ac2..bdc9be221 100644 --- a/src/nse/perf_kdf.c +++ b/src/nse/perf_kdf.c @@ -4,7 +4,7 @@ GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published - by the Free Software Foundation; either version 2, or (at your + by the Free Software Foundation; either version 3, or (at your option) any later version. GNUnet is distributed in the hope that it will be useful, but @@ -24,7 +24,6 @@ * @brief measure performance of KDF hash function */ #include "platform.h" -#include "gnunet_common.h" #include "gnunet_util_lib.h" #include #include @@ -43,7 +42,7 @@ pow_hash (const void *buf, size_t buf_len, struct GNUNET_HashCode *result) { - GNUNET_break (0 == + GNUNET_break (0 == gcry_kdf_derive (buf, buf_len, GCRY_KDF_SCRYPT, 1 /* subalgo */, @@ -79,7 +78,7 @@ main (int argc, char *argv[]) GAUGER ("NSE", "Proof-of-work hashing", 1024 / (1 + GNUNET_TIME_absolute_get_duration - (start).rel_value), "hashes/s"); + (start).rel_value_us / 1000LL), "hashes/ms"); return 0; }