Crypto build cleanup: remove NEED_FIPS186_2_PRF
[libeap.git] / src / crypto / crypto_gnutls.c
1 /*
2  * WPA Supplicant / wrapper functions for libgcrypt
3  * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16 #include <gcrypt.h>
17
18 #include "common.h"
19 #include "crypto.h"
20
21 void md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
22 {
23         gcry_md_hd_t hd;
24         unsigned char *p;
25         size_t i;
26
27         if (gcry_md_open(&hd, GCRY_MD_MD4, 0) != GPG_ERR_NO_ERROR)
28                 return;
29         for (i = 0; i < num_elem; i++)
30                 gcry_md_write(hd, addr[i], len[i]);
31         p = gcry_md_read(hd, GCRY_MD_MD4);
32         if (p)
33                 memcpy(mac, p, gcry_md_get_algo_dlen(GCRY_MD_MD4));
34         gcry_md_close(hd);
35 }
36
37
38 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
39 {
40         gcry_cipher_hd_t hd;
41         u8 pkey[8], next, tmp;
42         int i;
43
44         /* Add parity bits to the key */
45         next = 0;
46         for (i = 0; i < 7; i++) {
47                 tmp = key[i];
48                 pkey[i] = (tmp >> i) | next | 1;
49                 next = tmp << (7 - i);
50         }
51         pkey[i] = next | 1;
52
53         gcry_cipher_open(&hd, GCRY_CIPHER_DES, GCRY_CIPHER_MODE_ECB, 0);
54         gcry_err_code(gcry_cipher_setkey(hd, pkey, 8));
55         gcry_cipher_encrypt(hd, cypher, 8, clear, 8);
56         gcry_cipher_close(hd);
57 }
58
59
60 void md5_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
61 {
62         gcry_md_hd_t hd;
63         unsigned char *p;
64         size_t i;
65
66         if (gcry_md_open(&hd, GCRY_MD_MD5, 0) != GPG_ERR_NO_ERROR)
67                 return;
68         for (i = 0; i < num_elem; i++)
69                 gcry_md_write(hd, addr[i], len[i]);
70         p = gcry_md_read(hd, GCRY_MD_MD5);
71         if (p)
72                 memcpy(mac, p, gcry_md_get_algo_dlen(GCRY_MD_MD5));
73         gcry_md_close(hd);
74 }
75
76
77 void sha1_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
78 {
79         gcry_md_hd_t hd;
80         unsigned char *p;
81         size_t i;
82
83         if (gcry_md_open(&hd, GCRY_MD_SHA1, 0) != GPG_ERR_NO_ERROR)
84                 return;
85         for (i = 0; i < num_elem; i++)
86                 gcry_md_write(hd, addr[i], len[i]);
87         p = gcry_md_read(hd, GCRY_MD_SHA1);
88         if (p)
89                 memcpy(mac, p, gcry_md_get_algo_dlen(GCRY_MD_SHA1));
90         gcry_md_close(hd);
91 }
92
93
94 void * aes_encrypt_init(const u8 *key, size_t len)
95 {
96         gcry_cipher_hd_t hd;
97
98         if (gcry_cipher_open(&hd, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_ECB, 0) !=
99             GPG_ERR_NO_ERROR) {
100                 printf("cipher open failed\n");
101                 return NULL;
102         }
103         if (gcry_cipher_setkey(hd, key, len) != GPG_ERR_NO_ERROR) {
104                 printf("setkey failed\n");
105                 gcry_cipher_close(hd);
106                 return NULL;
107         }
108
109         return hd;
110 }
111
112
113 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
114 {
115         gcry_cipher_hd_t hd = ctx;
116         gcry_cipher_encrypt(hd, crypt, 16, plain, 16);
117 }
118
119
120 void aes_encrypt_deinit(void *ctx)
121 {
122         gcry_cipher_hd_t hd = ctx;
123         gcry_cipher_close(hd);
124 }
125
126
127 void * aes_decrypt_init(const u8 *key, size_t len)
128 {
129         gcry_cipher_hd_t hd;
130
131         if (gcry_cipher_open(&hd, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_ECB, 0) !=
132             GPG_ERR_NO_ERROR)
133                 return NULL;
134         if (gcry_cipher_setkey(hd, key, len) != GPG_ERR_NO_ERROR) {
135                 gcry_cipher_close(hd);
136                 return NULL;
137         }
138
139         return hd;
140 }
141
142
143 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
144 {
145         gcry_cipher_hd_t hd = ctx;
146         gcry_cipher_decrypt(hd, plain, 16, crypt, 16);
147 }
148
149
150 void aes_decrypt_deinit(void *ctx)
151 {
152         gcry_cipher_hd_t hd = ctx;
153         gcry_cipher_close(hd);
154 }
155
156
157 int crypto_mod_exp(const u8 *base, size_t base_len,
158                    const u8 *power, size_t power_len,
159                    const u8 *modulus, size_t modulus_len,
160                    u8 *result, size_t *result_len)
161 {
162         gcry_mpi_t bn_base = NULL, bn_exp = NULL, bn_modulus = NULL,
163                 bn_result = NULL;
164         int ret = -1;
165
166         if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) !=
167             GPG_ERR_NO_ERROR ||
168             gcry_mpi_scan(&bn_exp, GCRYMPI_FMT_USG, power, power_len, NULL) !=
169             GPG_ERR_NO_ERROR ||
170             gcry_mpi_scan(&bn_modulus, GCRYMPI_FMT_USG, modulus, modulus_len,
171                           NULL) != GPG_ERR_NO_ERROR)
172                 goto error;
173         bn_result = gcry_mpi_new(modulus_len * 8);
174
175         gcry_mpi_powm(bn_result, bn_base, bn_exp, bn_modulus);
176
177         if (gcry_mpi_print(GCRYMPI_FMT_USG, result, *result_len, result_len,
178                            bn_result) != GPG_ERR_NO_ERROR)
179                 goto error;
180
181         ret = 0;
182
183 error:
184         gcry_mpi_release(bn_base);
185         gcry_mpi_release(bn_exp);
186         gcry_mpi_release(bn_modulus);
187         gcry_mpi_release(bn_result);
188         return ret;
189 }
190
191
192 struct crypto_cipher {
193         gcry_cipher_hd_t enc;
194         gcry_cipher_hd_t dec;
195 };
196
197
198 struct crypto_cipher * crypto_cipher_init(enum crypto_cipher_alg alg,
199                                           const u8 *iv, const u8 *key,
200                                           size_t key_len)
201 {
202         struct crypto_cipher *ctx;
203         gcry_error_t res;
204         enum gcry_cipher_algos a;
205         int ivlen;
206
207         ctx = os_zalloc(sizeof(*ctx));
208         if (ctx == NULL)
209                 return NULL;
210
211         switch (alg) {
212         case CRYPTO_CIPHER_ALG_RC4:
213                 a = GCRY_CIPHER_ARCFOUR;
214                 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_STREAM,
215                                        0);
216                 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
217                 break;
218         case CRYPTO_CIPHER_ALG_AES:
219                 if (key_len == 24)
220                         a = GCRY_CIPHER_AES192;
221                 else if (key_len == 32)
222                         a = GCRY_CIPHER_AES256;
223                 else
224                         a = GCRY_CIPHER_AES;
225                 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
226                 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
227                 break;
228         case CRYPTO_CIPHER_ALG_3DES:
229                 a = GCRY_CIPHER_3DES;
230                 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
231                 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
232                 break;
233         case CRYPTO_CIPHER_ALG_DES:
234                 a = GCRY_CIPHER_DES;
235                 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
236                 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
237                 break;
238         case CRYPTO_CIPHER_ALG_RC2:
239                 if (key_len == 5)
240                         a = GCRY_CIPHER_RFC2268_40;
241                 else
242                         a = GCRY_CIPHER_RFC2268_128;
243                 res = gcry_cipher_open(&ctx->enc, a, GCRY_CIPHER_MODE_CBC, 0);
244                 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
245                 break;
246         default:
247                 os_free(ctx);
248                 return NULL;
249         }
250
251         if (res != GPG_ERR_NO_ERROR) {
252                 os_free(ctx);
253                 return NULL;
254         }
255
256         if (gcry_cipher_setkey(ctx->enc, key, key_len) != GPG_ERR_NO_ERROR ||
257             gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
258                 gcry_cipher_close(ctx->enc);
259                 gcry_cipher_close(ctx->dec);
260                 os_free(ctx);
261                 return NULL;
262         }
263
264         ivlen = gcry_cipher_get_algo_blklen(a);
265         if (gcry_cipher_setiv(ctx->enc, iv, ivlen) != GPG_ERR_NO_ERROR ||
266             gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
267                 gcry_cipher_close(ctx->enc);
268                 gcry_cipher_close(ctx->dec);
269                 os_free(ctx);
270                 return NULL;
271         }
272
273         return ctx;
274 }
275
276
277 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
278                           u8 *crypt, size_t len)
279 {
280         if (gcry_cipher_encrypt(ctx->enc, crypt, len, plain, len) !=
281             GPG_ERR_NO_ERROR)
282                 return -1;
283         return 0;
284 }
285
286
287 int crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt,
288                           u8 *plain, size_t len)
289 {
290         if (gcry_cipher_decrypt(ctx->dec, plain, len, crypt, len) !=
291             GPG_ERR_NO_ERROR)
292                 return -1;
293         return 0;
294 }
295
296
297 void crypto_cipher_deinit(struct crypto_cipher *ctx)
298 {
299         gcry_cipher_close(ctx->enc);
300         gcry_cipher_close(ctx->dec);
301         os_free(ctx);
302 }