- fix
[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
99   if (GNUNET_CRYPTO_AES_KEY_LENGTH !=
100       GNUNET_CRYPTO_aes_encrypt (plain, GNUNET_CRYPTO_AES_KEY_LENGTH, &key,
101                                  (const struct
102                                   GNUNET_CRYPTO_AesInitializationVector *)
103                                  "testtesttesttest", result))
104   {
105     printf ("Wrong return value from encrypt block.\n");
106     ret = 1;
107     goto error;
108   }
109
110   if (memcmp (encrresult, result, GNUNET_CRYPTO_AES_KEY_LENGTH) != 0)
111   {
112     printf ("Encrypted result wrong.\n");
113     ret = 1;
114     goto error;
115   }
116
117   res = GNUNET_malloc (GNUNET_CRYPTO_AES_KEY_LENGTH);
118
119   if (GNUNET_CRYPTO_AES_KEY_LENGTH !=
120       GNUNET_CRYPTO_aes_decrypt (result, GNUNET_CRYPTO_AES_KEY_LENGTH, &key,
121                                  (const struct
122                                   GNUNET_CRYPTO_AesInitializationVector *)
123                                  "testtesttesttest", res))
124   {
125     printf ("Wrong return value from decrypt block.\n");
126     ret = 1;
127     goto error;
128   }
129
130   if (memcmp (res, plain, GNUNET_CRYPTO_AES_KEY_LENGTH) != 0)
131   {
132     printf ("Decrypted result does not match input.\n");
133
134     ret = 1;
135   }
136
137 error:
138
139   GNUNET_free_non_null (res);
140
141   return ret;
142 }
143
144 int
145 main (int argc, char *argv[])
146 {
147   int failureCount = 0;
148
149   GNUNET_log_setup ("test-crypto-aes", "WARNING", NULL);
150   GNUNET_assert (strlen (INITVALUE) >
151                  sizeof (struct GNUNET_CRYPTO_AesInitializationVector));
152   failureCount += testSymcipher ();
153   failureCount += verifyCrypto ();
154
155   if (failureCount != 0)
156   {
157     printf ("%d TESTS FAILED!\n", failureCount);
158     return -1;
159   }
160   return 0;
161 }
162
163 /* end of test_crypto_aes.c */