aboutsummaryrefslogtreecommitdiff
path: root/src/service/nse/perf_kdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/nse/perf_kdf.c')
-rw-r--r--src/service/nse/perf_kdf.c67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/service/nse/perf_kdf.c b/src/service/nse/perf_kdf.c
new file mode 100644
index 000000000..10207675f
--- /dev/null
+++ b/src/service/nse/perf_kdf.c
@@ -0,0 +1,67 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2002, 2003, 2004, 2006, 2013 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
21/**
22 * @author Christian Grothoff
23 * @file nse/perf_kdf.c
24 * @brief measure performance of KDF hash function
25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include <gcrypt.h>
29#include <gauger.h>
30
31
32static void
33perfHash ()
34{
35 struct GNUNET_HashCode hc;
36 char buf[64];
37 struct GNUNET_CRYPTO_PowSalt salt = { "gnunet-nse-proof" };
38
39 memset (buf, 1, sizeof(buf));
40 for (unsigned int i = 0; i < 1024; i++)
41 GNUNET_CRYPTO_pow_hash (&salt,
42 buf,
43 sizeof(buf),
44 &hc);
45}
46
47
48int
49main (int argc, char *argv[])
50{
51 struct GNUNET_TIME_Absolute start;
52
53 start = GNUNET_TIME_absolute_get ();
54 perfHash ();
55 printf ("Hash perf took %s\n",
56 GNUNET_STRINGS_relative_time_to_string (
57 GNUNET_TIME_absolute_get_duration (start),
58 GNUNET_YES));
59 GAUGER ("NSE", "Proof-of-work hashing",
60 1024.0 / (1.0
61 + GNUNET_TIME_absolute_get_duration
62 (start).rel_value_us / 1000.0), "hashes/ms");
63 return 0;
64}
65
66
67/* end of perf_kdf.c */