From c4e9ba925ffd758aaa3feee2ccfc0b76f26fe207 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 5 Oct 2019 15:09:28 +0200 Subject: global reindent, now with uncrustify hook enabled --- src/nse/perf_kdf.c | 48 +++++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 23 deletions(-) (limited to 'src/nse/perf_kdf.c') diff --git a/src/nse/perf_kdf.c b/src/nse/perf_kdf.c index bf4dbe0b2..a6c1432c8 100644 --- a/src/nse/perf_kdf.c +++ b/src/nse/perf_kdf.c @@ -38,47 +38,49 @@ * @param result where to write the resulting hash */ static void -pow_hash(const void *buf, - size_t buf_len, - struct GNUNET_HashCode *result) +pow_hash (const void *buf, + size_t buf_len, + struct GNUNET_HashCode *result) { - GNUNET_break(0 == - gcry_kdf_derive(buf, buf_len, - GCRY_KDF_SCRYPT, - 1 /* subalgo */, - "gnunet-proof-of-work", strlen("gnunet-proof-of-work"), - 2 /* iterations; keep cost of individual op small */, - sizeof(struct GNUNET_HashCode), result)); + GNUNET_break (0 == + gcry_kdf_derive (buf, buf_len, + GCRY_KDF_SCRYPT, + 1 /* subalgo */, + "gnunet-proof-of-work", strlen ( + "gnunet-proof-of-work"), + 2 /* iterations; keep cost of individual op small */, + sizeof(struct GNUNET_HashCode), result)); } static void -perfHash() +perfHash () { struct GNUNET_HashCode hc; unsigned int i; char buf[64]; - memset(buf, 1, sizeof(buf)); + memset (buf, 1, sizeof(buf)); for (i = 0; i < 1024; i++) - pow_hash(buf, sizeof(buf), &hc); + pow_hash (buf, sizeof(buf), &hc); } int -main(int argc, char *argv[]) +main (int argc, char *argv[]) { struct GNUNET_TIME_Absolute start; - start = GNUNET_TIME_absolute_get(); - perfHash(); - printf("Hash perf took %s\n", - GNUNET_STRINGS_relative_time_to_string(GNUNET_TIME_absolute_get_duration(start), - GNUNET_YES)); - GAUGER("NSE", "Proof-of-work hashing", - 1024.0 / (1.0 + - GNUNET_TIME_absolute_get_duration - (start).rel_value_us / 1000.0), "hashes/ms"); + start = GNUNET_TIME_absolute_get (); + perfHash (); + printf ("Hash perf took %s\n", + GNUNET_STRINGS_relative_time_to_string ( + GNUNET_TIME_absolute_get_duration (start), + GNUNET_YES)); + GAUGER ("NSE", "Proof-of-work hashing", + 1024.0 / (1.0 + + GNUNET_TIME_absolute_get_duration + (start).rel_value_us / 1000.0), "hashes/ms"); return 0; } -- cgit v1.2.3