handling replies continuously from server
[oweals/gnunet.git] / src / util / test_crypto_aes.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 3, 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/test_crypto_aes.c
24  * @brief test for AES ciphers
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_crypto_lib.h"
29
30 #define TESTSTRING "Hello World!"
31 #define INITVALUE "InitializationVectorValue"
32
33 static int
34 testSymcipher ()
35 {
36   struct GNUNET_CRYPTO_AesSessionKey key;
37   char result[100];
38   int size;
39   char res[100];
40
41   GNUNET_CRYPTO_aes_create_session_key (&key);
42   size =
43       GNUNET_CRYPTO_aes_encrypt (TESTSTRING, strlen (TESTSTRING) + 1, &key,
44                                  (const struct
45                                   GNUNET_CRYPTO_AesInitializationVector *)
46                                  INITVALUE, result);
47   if (size == -1)
48   {
49     printf ("symciphertest failed: encryptBlock returned %d\n", size);
50     return 1;
51   }
52   size =
53       GNUNET_CRYPTO_aes_decrypt (result, size, &key,
54                                  (const struct
55                                   GNUNET_CRYPTO_AesInitializationVector *)
56                                  INITVALUE, res);
57   if (strlen (TESTSTRING) + 1 != size)
58   {
59     printf ("symciphertest failed: decryptBlock returned %d\n", size);
60     return 1;
61   }
62   if (0 != strcmp (res, TESTSTRING))
63   {
64     printf ("symciphertest failed: %s != %s\n", res, TESTSTRING);
65     return 1;
66   }
67   else
68     return 0;
69 }
70
71 int
72 verifyCrypto ()
73 {
74   struct GNUNET_CRYPTO_AesSessionKey key;
75   char result[GNUNET_CRYPTO_AES_KEY_LENGTH];
76   char *res;
77   int ret;
78
79   unsigned char plain[] =
80       { 29, 128, 192, 253, 74, 171, 38, 187, 84, 219, 76, 76, 209, 118, 33, 249,
81     172, 124, 96, 9, 157, 110, 8, 215, 200, 63, 69, 230, 157, 104, 247, 164
82   };
83   unsigned char raw_key[] =
84       { 106, 74, 209, 88, 145, 55, 189, 135, 125, 180, 225, 108, 183, 54, 25,
85     169, 129, 188, 131, 75, 227, 245, 105, 10, 225, 15, 115, 159, 148, 184,
86     34, 191
87   };
88   unsigned char encrresult[] =
89       { 167, 102, 230, 233, 127, 195, 176, 107, 17, 91, 199, 127, 96, 113, 75,
90     195, 245, 217, 61, 236, 159, 165, 103, 121, 203, 99, 202, 41, 23, 222, 25,
91     102
92   };
93
94   res = NULL;
95   ret = 0;
96
97   memcpy (key.key, raw_key, GNUNET_CRYPTO_AES_KEY_LENGTH);
98   key.crc32 =
99       htonl (GNUNET_CRYPTO_crc32_n (&key, GNUNET_CRYPTO_AES_KEY_LENGTH));
100
101   if (ntohl (key.crc32) != (unsigned int) 38125195LL)
102   {
103     printf ("Static key has different CRC: %u - %u\n", ntohl (key.crc32),
104             key.crc32);
105
106     ret = 1;
107     goto error;
108   }
109
110   if (GNUNET_CRYPTO_AES_KEY_LENGTH !=
111       GNUNET_CRYPTO_aes_encrypt (plain, GNUNET_CRYPTO_AES_KEY_LENGTH, &key,
112                                  (const struct
113                                   GNUNET_CRYPTO_AesInitializationVector *)
114                                  "testtesttesttest", result))
115   {
116     printf ("Wrong return value from encrypt block.\n");
117     ret = 1;
118     goto error;
119   }
120
121   if (memcmp (encrresult, result, GNUNET_CRYPTO_AES_KEY_LENGTH) != 0)
122   {
123     printf ("Encrypted result wrong.\n");
124     ret = 1;
125     goto error;
126   }
127
128   res = GNUNET_malloc (GNUNET_CRYPTO_AES_KEY_LENGTH);
129
130   if (GNUNET_CRYPTO_AES_KEY_LENGTH !=
131       GNUNET_CRYPTO_aes_decrypt (result, GNUNET_CRYPTO_AES_KEY_LENGTH, &key,
132                                  (const struct
133                                   GNUNET_CRYPTO_AesInitializationVector *)
134                                  "testtesttesttest", res))
135   {
136     printf ("Wrong return value from decrypt block.\n");
137     ret = 1;
138     goto error;
139   }
140
141   if (memcmp (res, plain, GNUNET_CRYPTO_AES_KEY_LENGTH) != 0)
142   {
143     printf ("Decrypted result does not match input.\n");
144
145     ret = 1;
146   }
147
148 error:
149
150   GNUNET_free_non_null (res);
151
152   return ret;
153 }
154
155 int
156 main (int argc, char *argv[])
157 {
158   int failureCount = 0;
159
160   GNUNET_log_setup ("test-crypto-aes", "WARNING", NULL);
161   GNUNET_CRYPTO_random_disable_entropy_gathering ();
162   GNUNET_assert (strlen (INITVALUE) >
163                  sizeof (struct GNUNET_CRYPTO_AesInitializationVector));
164   failureCount += testSymcipher ();
165   failureCount += verifyCrypto ();
166
167   if (failureCount != 0)
168   {
169     printf ("%d TESTS FAILED!\n", failureCount);
170     return -1;
171   }
172   return 0;
173 }
174
175 /* end of test_crypto_aes.c */