gauger api changes (:
[oweals/gnunet.git] / src / util / perf_crypto_hash.c
1 /*
2      This file is part of GNUnet.
3      (C) 2002, 2003, 2004, 2006 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @author Christian Grothoff
23  * @file util/perf_crypto_hash.c
24  * @brief measure performance of hash function
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_crypto_lib.h"
29 #include "gnunet_time_lib.h"
30 #include <gauger.h>
31
32 static void
33 perfHash ()
34 {
35   GNUNET_HashCode hc1;
36   GNUNET_HashCode hc2;
37   GNUNET_HashCode hc3;
38   int i;
39   char *buf;
40
41   buf = GNUNET_malloc (1024 * 64);
42   memset (buf, 1, 1024 * 64);
43   GNUNET_CRYPTO_hash ("foo", 3, &hc1);
44   for (i = 0; i < 1024; i++)
45     {
46       GNUNET_CRYPTO_hash (&hc1, sizeof (GNUNET_HashCode), &hc2);
47       GNUNET_CRYPTO_hash (&hc2, sizeof (GNUNET_HashCode), &hc1);
48       GNUNET_CRYPTO_hash (buf, 1024 * 64, &hc3);
49     }
50   GNUNET_free (buf);
51 }
52
53 int
54 main (int argc, char *argv[])
55 {
56   struct GNUNET_TIME_Absolute start;
57
58   start = GNUNET_TIME_absolute_get ();
59   perfHash ();
60   printf ("Hash perf took %llu ms\n",
61           (unsigned long long)
62           GNUNET_TIME_absolute_get_duration (start).rel_value);
63   GAUGER ("UTIL", "Cryptographic hashing", 1024 * 64 * 1024 / (1+GNUNET_TIME_absolute_get_duration (start).rel_value), "kb/s");
64   return 0;
65 }
66
67 /* end of hashperf.c */