Add build option to remove all internal RC4 uses
[mech_eap.git] / src / crypto / crypto_openssl.c
1 /*
2  * Wrapper functions for OpenSSL libcrypto
3  * Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #include "includes.h"
10 #include <openssl/opensslv.h>
11 #include <openssl/err.h>
12 #include <openssl/des.h>
13 #include <openssl/aes.h>
14 #include <openssl/bn.h>
15 #include <openssl/evp.h>
16 #include <openssl/dh.h>
17 #include <openssl/hmac.h>
18 #include <openssl/rand.h>
19 #ifdef CONFIG_OPENSSL_CMAC
20 #include <openssl/cmac.h>
21 #endif /* CONFIG_OPENSSL_CMAC */
22 #ifdef CONFIG_ECC
23 #include <openssl/ec.h>
24 #endif /* CONFIG_ECC */
25
26 #include "common.h"
27 #include "wpabuf.h"
28 #include "dh_group5.h"
29 #include "sha1.h"
30 #include "sha256.h"
31 #include "sha384.h"
32 #include "crypto.h"
33
34 static BIGNUM * get_group5_prime(void)
35 {
36 #ifdef OPENSSL_IS_BORINGSSL
37         static const unsigned char RFC3526_PRIME_1536[] = {
38                 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xC9,0x0F,0xDA,0xA2,
39                 0x21,0x68,0xC2,0x34,0xC4,0xC6,0x62,0x8B,0x80,0xDC,0x1C,0xD1,
40                 0x29,0x02,0x4E,0x08,0x8A,0x67,0xCC,0x74,0x02,0x0B,0xBE,0xA6,
41                 0x3B,0x13,0x9B,0x22,0x51,0x4A,0x08,0x79,0x8E,0x34,0x04,0xDD,
42                 0xEF,0x95,0x19,0xB3,0xCD,0x3A,0x43,0x1B,0x30,0x2B,0x0A,0x6D,
43                 0xF2,0x5F,0x14,0x37,0x4F,0xE1,0x35,0x6D,0x6D,0x51,0xC2,0x45,
44                 0xE4,0x85,0xB5,0x76,0x62,0x5E,0x7E,0xC6,0xF4,0x4C,0x42,0xE9,
45                 0xA6,0x37,0xED,0x6B,0x0B,0xFF,0x5C,0xB6,0xF4,0x06,0xB7,0xED,
46                 0xEE,0x38,0x6B,0xFB,0x5A,0x89,0x9F,0xA5,0xAE,0x9F,0x24,0x11,
47                 0x7C,0x4B,0x1F,0xE6,0x49,0x28,0x66,0x51,0xEC,0xE4,0x5B,0x3D,
48                 0xC2,0x00,0x7C,0xB8,0xA1,0x63,0xBF,0x05,0x98,0xDA,0x48,0x36,
49                 0x1C,0x55,0xD3,0x9A,0x69,0x16,0x3F,0xA8,0xFD,0x24,0xCF,0x5F,
50                 0x83,0x65,0x5D,0x23,0xDC,0xA3,0xAD,0x96,0x1C,0x62,0xF3,0x56,
51                 0x20,0x85,0x52,0xBB,0x9E,0xD5,0x29,0x07,0x70,0x96,0x96,0x6D,
52                 0x67,0x0C,0x35,0x4E,0x4A,0xBC,0x98,0x04,0xF1,0x74,0x6C,0x08,
53                 0xCA,0x23,0x73,0x27,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
54         };
55         return BN_bin2bn(RFC3526_PRIME_1536, sizeof(RFC3526_PRIME_1536), NULL);
56 #else /* OPENSSL_IS_BORINGSSL */
57         return get_rfc3526_prime_1536(NULL);
58 #endif /* OPENSSL_IS_BORINGSSL */
59 }
60
61 #ifdef OPENSSL_NO_SHA256
62 #define NO_SHA256_WRAPPER
63 #endif
64
65 static int openssl_digest_vector(const EVP_MD *type, size_t num_elem,
66                                  const u8 *addr[], const size_t *len, u8 *mac)
67 {
68         EVP_MD_CTX ctx;
69         size_t i;
70         unsigned int mac_len;
71
72         EVP_MD_CTX_init(&ctx);
73         if (!EVP_DigestInit_ex(&ctx, type, NULL)) {
74                 wpa_printf(MSG_ERROR, "OpenSSL: EVP_DigestInit_ex failed: %s",
75                            ERR_error_string(ERR_get_error(), NULL));
76                 return -1;
77         }
78         for (i = 0; i < num_elem; i++) {
79                 if (!EVP_DigestUpdate(&ctx, addr[i], len[i])) {
80                         wpa_printf(MSG_ERROR, "OpenSSL: EVP_DigestUpdate "
81                                    "failed: %s",
82                                    ERR_error_string(ERR_get_error(), NULL));
83                         return -1;
84                 }
85         }
86         if (!EVP_DigestFinal(&ctx, mac, &mac_len)) {
87                 wpa_printf(MSG_ERROR, "OpenSSL: EVP_DigestFinal failed: %s",
88                            ERR_error_string(ERR_get_error(), NULL));
89                 return -1;
90         }
91
92         return 0;
93 }
94
95
96 #ifndef CONFIG_FIPS
97 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
98 {
99         return openssl_digest_vector(EVP_md4(), num_elem, addr, len, mac);
100 }
101 #endif /* CONFIG_FIPS */
102
103
104 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
105 {
106         u8 pkey[8], next, tmp;
107         int i;
108         DES_key_schedule ks;
109
110         /* Add parity bits to the key */
111         next = 0;
112         for (i = 0; i < 7; i++) {
113                 tmp = key[i];
114                 pkey[i] = (tmp >> i) | next | 1;
115                 next = tmp << (7 - i);
116         }
117         pkey[i] = next | 1;
118
119         DES_set_key((DES_cblock *) &pkey, &ks);
120         DES_ecb_encrypt((DES_cblock *) clear, (DES_cblock *) cypher, &ks,
121                         DES_ENCRYPT);
122 }
123
124
125 #ifndef CONFIG_NO_RC4
126 int rc4_skip(const u8 *key, size_t keylen, size_t skip,
127              u8 *data, size_t data_len)
128 {
129 #ifdef OPENSSL_NO_RC4
130         return -1;
131 #else /* OPENSSL_NO_RC4 */
132         EVP_CIPHER_CTX ctx;
133         int outl;
134         int res = -1;
135         unsigned char skip_buf[16];
136
137         EVP_CIPHER_CTX_init(&ctx);
138         if (!EVP_CIPHER_CTX_set_padding(&ctx, 0) ||
139             !EVP_CipherInit_ex(&ctx, EVP_rc4(), NULL, NULL, NULL, 1) ||
140             !EVP_CIPHER_CTX_set_key_length(&ctx, keylen) ||
141             !EVP_CipherInit_ex(&ctx, NULL, NULL, key, NULL, 1))
142                 goto out;
143
144         while (skip >= sizeof(skip_buf)) {
145                 size_t len = skip;
146                 if (len > sizeof(skip_buf))
147                         len = sizeof(skip_buf);
148                 if (!EVP_CipherUpdate(&ctx, skip_buf, &outl, skip_buf, len))
149                         goto out;
150                 skip -= len;
151         }
152
153         if (EVP_CipherUpdate(&ctx, data, &outl, data, data_len))
154                 res = 0;
155
156 out:
157         EVP_CIPHER_CTX_cleanup(&ctx);
158         return res;
159 #endif /* OPENSSL_NO_RC4 */
160 }
161 #endif /* CONFIG_NO_RC4 */
162
163
164 #ifndef CONFIG_FIPS
165 int md5_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
166 {
167         return openssl_digest_vector(EVP_md5(), num_elem, addr, len, mac);
168 }
169 #endif /* CONFIG_FIPS */
170
171
172 int sha1_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
173 {
174         return openssl_digest_vector(EVP_sha1(), num_elem, addr, len, mac);
175 }
176
177
178 #ifndef NO_SHA256_WRAPPER
179 int sha256_vector(size_t num_elem, const u8 *addr[], const size_t *len,
180                   u8 *mac)
181 {
182         return openssl_digest_vector(EVP_sha256(), num_elem, addr, len, mac);
183 }
184 #endif /* NO_SHA256_WRAPPER */
185
186
187 static const EVP_CIPHER * aes_get_evp_cipher(size_t keylen)
188 {
189         switch (keylen) {
190         case 16:
191                 return EVP_aes_128_ecb();
192 #ifndef OPENSSL_IS_BORINGSSL
193         case 24:
194                 return EVP_aes_192_ecb();
195 #endif /* OPENSSL_IS_BORINGSSL */
196         case 32:
197                 return EVP_aes_256_ecb();
198         }
199
200         return NULL;
201 }
202
203
204 void * aes_encrypt_init(const u8 *key, size_t len)
205 {
206         EVP_CIPHER_CTX *ctx;
207         const EVP_CIPHER *type;
208
209         type = aes_get_evp_cipher(len);
210         if (type == NULL)
211                 return NULL;
212
213         ctx = os_malloc(sizeof(*ctx));
214         if (ctx == NULL)
215                 return NULL;
216         EVP_CIPHER_CTX_init(ctx);
217         if (EVP_EncryptInit_ex(ctx, type, NULL, key, NULL) != 1) {
218                 os_free(ctx);
219                 return NULL;
220         }
221         EVP_CIPHER_CTX_set_padding(ctx, 0);
222         return ctx;
223 }
224
225
226 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
227 {
228         EVP_CIPHER_CTX *c = ctx;
229         int clen = 16;
230         if (EVP_EncryptUpdate(c, crypt, &clen, plain, 16) != 1) {
231                 wpa_printf(MSG_ERROR, "OpenSSL: EVP_EncryptUpdate failed: %s",
232                            ERR_error_string(ERR_get_error(), NULL));
233         }
234 }
235
236
237 void aes_encrypt_deinit(void *ctx)
238 {
239         EVP_CIPHER_CTX *c = ctx;
240         u8 buf[16];
241         int len = sizeof(buf);
242         if (EVP_EncryptFinal_ex(c, buf, &len) != 1) {
243                 wpa_printf(MSG_ERROR, "OpenSSL: EVP_EncryptFinal_ex failed: "
244                            "%s", ERR_error_string(ERR_get_error(), NULL));
245         }
246         if (len != 0) {
247                 wpa_printf(MSG_ERROR, "OpenSSL: Unexpected padding length %d "
248                            "in AES encrypt", len);
249         }
250         EVP_CIPHER_CTX_cleanup(c);
251         bin_clear_free(c, sizeof(*c));
252 }
253
254
255 void * aes_decrypt_init(const u8 *key, size_t len)
256 {
257         EVP_CIPHER_CTX *ctx;
258         const EVP_CIPHER *type;
259
260         type = aes_get_evp_cipher(len);
261         if (type == NULL)
262                 return NULL;
263
264         ctx = os_malloc(sizeof(*ctx));
265         if (ctx == NULL)
266                 return NULL;
267         EVP_CIPHER_CTX_init(ctx);
268         if (EVP_DecryptInit_ex(ctx, type, NULL, key, NULL) != 1) {
269                 os_free(ctx);
270                 return NULL;
271         }
272         EVP_CIPHER_CTX_set_padding(ctx, 0);
273         return ctx;
274 }
275
276
277 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
278 {
279         EVP_CIPHER_CTX *c = ctx;
280         int plen = 16;
281         if (EVP_DecryptUpdate(c, plain, &plen, crypt, 16) != 1) {
282                 wpa_printf(MSG_ERROR, "OpenSSL: EVP_DecryptUpdate failed: %s",
283                            ERR_error_string(ERR_get_error(), NULL));
284         }
285 }
286
287
288 void aes_decrypt_deinit(void *ctx)
289 {
290         EVP_CIPHER_CTX *c = ctx;
291         u8 buf[16];
292         int len = sizeof(buf);
293         if (EVP_DecryptFinal_ex(c, buf, &len) != 1) {
294                 wpa_printf(MSG_ERROR, "OpenSSL: EVP_DecryptFinal_ex failed: "
295                            "%s", ERR_error_string(ERR_get_error(), NULL));
296         }
297         if (len != 0) {
298                 wpa_printf(MSG_ERROR, "OpenSSL: Unexpected padding length %d "
299                            "in AES decrypt", len);
300         }
301         EVP_CIPHER_CTX_cleanup(c);
302         bin_clear_free(c, sizeof(*c));
303 }
304
305
306 #ifndef CONFIG_FIPS
307
308 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher)
309 {
310         AES_KEY actx;
311         int res;
312
313         if (AES_set_encrypt_key(kek, kek_len << 3, &actx))
314                 return -1;
315         res = AES_wrap_key(&actx, NULL, cipher, plain, n * 8);
316         OPENSSL_cleanse(&actx, sizeof(actx));
317         return res <= 0 ? -1 : 0;
318 }
319
320
321 int aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher,
322                u8 *plain)
323 {
324         AES_KEY actx;
325         int res;
326
327         if (AES_set_decrypt_key(kek, kek_len << 3, &actx))
328                 return -1;
329         res = AES_unwrap_key(&actx, NULL, plain, cipher, (n + 1) * 8);
330         OPENSSL_cleanse(&actx, sizeof(actx));
331         return res <= 0 ? -1 : 0;
332 }
333
334 #endif /* CONFIG_FIPS */
335
336
337 int aes_128_cbc_encrypt(const u8 *key, const u8 *iv, u8 *data, size_t data_len)
338 {
339         EVP_CIPHER_CTX ctx;
340         int clen, len;
341         u8 buf[16];
342
343         EVP_CIPHER_CTX_init(&ctx);
344         if (EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key, iv) != 1)
345                 return -1;
346         EVP_CIPHER_CTX_set_padding(&ctx, 0);
347
348         clen = data_len;
349         if (EVP_EncryptUpdate(&ctx, data, &clen, data, data_len) != 1 ||
350             clen != (int) data_len)
351                 return -1;
352
353         len = sizeof(buf);
354         if (EVP_EncryptFinal_ex(&ctx, buf, &len) != 1 || len != 0)
355                 return -1;
356         EVP_CIPHER_CTX_cleanup(&ctx);
357
358         return 0;
359 }
360
361
362 int aes_128_cbc_decrypt(const u8 *key, const u8 *iv, u8 *data, size_t data_len)
363 {
364         EVP_CIPHER_CTX ctx;
365         int plen, len;
366         u8 buf[16];
367
368         EVP_CIPHER_CTX_init(&ctx);
369         if (EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key, iv) != 1)
370                 return -1;
371         EVP_CIPHER_CTX_set_padding(&ctx, 0);
372
373         plen = data_len;
374         if (EVP_DecryptUpdate(&ctx, data, &plen, data, data_len) != 1 ||
375             plen != (int) data_len)
376                 return -1;
377
378         len = sizeof(buf);
379         if (EVP_DecryptFinal_ex(&ctx, buf, &len) != 1 || len != 0)
380                 return -1;
381         EVP_CIPHER_CTX_cleanup(&ctx);
382
383         return 0;
384 }
385
386
387 int crypto_mod_exp(const u8 *base, size_t base_len,
388                    const u8 *power, size_t power_len,
389                    const u8 *modulus, size_t modulus_len,
390                    u8 *result, size_t *result_len)
391 {
392         BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result;
393         int ret = -1;
394         BN_CTX *ctx;
395
396         ctx = BN_CTX_new();
397         if (ctx == NULL)
398                 return -1;
399
400         bn_base = BN_bin2bn(base, base_len, NULL);
401         bn_exp = BN_bin2bn(power, power_len, NULL);
402         bn_modulus = BN_bin2bn(modulus, modulus_len, NULL);
403         bn_result = BN_new();
404
405         if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
406             bn_result == NULL)
407                 goto error;
408
409         if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
410                 goto error;
411
412         *result_len = BN_bn2bin(bn_result, result);
413         ret = 0;
414
415 error:
416         BN_clear_free(bn_base);
417         BN_clear_free(bn_exp);
418         BN_clear_free(bn_modulus);
419         BN_clear_free(bn_result);
420         BN_CTX_free(ctx);
421         return ret;
422 }
423
424
425 struct crypto_cipher {
426         EVP_CIPHER_CTX enc;
427         EVP_CIPHER_CTX dec;
428 };
429
430
431 struct crypto_cipher * crypto_cipher_init(enum crypto_cipher_alg alg,
432                                           const u8 *iv, const u8 *key,
433                                           size_t key_len)
434 {
435         struct crypto_cipher *ctx;
436         const EVP_CIPHER *cipher;
437
438         ctx = os_zalloc(sizeof(*ctx));
439         if (ctx == NULL)
440                 return NULL;
441
442         switch (alg) {
443 #ifndef CONFIG_NO_RC4
444 #ifndef OPENSSL_NO_RC4
445         case CRYPTO_CIPHER_ALG_RC4:
446                 cipher = EVP_rc4();
447                 break;
448 #endif /* OPENSSL_NO_RC4 */
449 #endif /* CONFIG_NO_RC4 */
450 #ifndef OPENSSL_NO_AES
451         case CRYPTO_CIPHER_ALG_AES:
452                 switch (key_len) {
453                 case 16:
454                         cipher = EVP_aes_128_cbc();
455                         break;
456 #ifndef OPENSSL_IS_BORINGSSL
457                 case 24:
458                         cipher = EVP_aes_192_cbc();
459                         break;
460 #endif /* OPENSSL_IS_BORINGSSL */
461                 case 32:
462                         cipher = EVP_aes_256_cbc();
463                         break;
464                 default:
465                         os_free(ctx);
466                         return NULL;
467                 }
468                 break;
469 #endif /* OPENSSL_NO_AES */
470 #ifndef OPENSSL_NO_DES
471         case CRYPTO_CIPHER_ALG_3DES:
472                 cipher = EVP_des_ede3_cbc();
473                 break;
474         case CRYPTO_CIPHER_ALG_DES:
475                 cipher = EVP_des_cbc();
476                 break;
477 #endif /* OPENSSL_NO_DES */
478 #ifndef OPENSSL_NO_RC2
479         case CRYPTO_CIPHER_ALG_RC2:
480                 cipher = EVP_rc2_ecb();
481                 break;
482 #endif /* OPENSSL_NO_RC2 */
483         default:
484                 os_free(ctx);
485                 return NULL;
486         }
487
488         EVP_CIPHER_CTX_init(&ctx->enc);
489         EVP_CIPHER_CTX_set_padding(&ctx->enc, 0);
490         if (!EVP_EncryptInit_ex(&ctx->enc, cipher, NULL, NULL, NULL) ||
491             !EVP_CIPHER_CTX_set_key_length(&ctx->enc, key_len) ||
492             !EVP_EncryptInit_ex(&ctx->enc, NULL, NULL, key, iv)) {
493                 EVP_CIPHER_CTX_cleanup(&ctx->enc);
494                 os_free(ctx);
495                 return NULL;
496         }
497
498         EVP_CIPHER_CTX_init(&ctx->dec);
499         EVP_CIPHER_CTX_set_padding(&ctx->dec, 0);
500         if (!EVP_DecryptInit_ex(&ctx->dec, cipher, NULL, NULL, NULL) ||
501             !EVP_CIPHER_CTX_set_key_length(&ctx->dec, key_len) ||
502             !EVP_DecryptInit_ex(&ctx->dec, NULL, NULL, key, iv)) {
503                 EVP_CIPHER_CTX_cleanup(&ctx->enc);
504                 EVP_CIPHER_CTX_cleanup(&ctx->dec);
505                 os_free(ctx);
506                 return NULL;
507         }
508
509         return ctx;
510 }
511
512
513 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
514                           u8 *crypt, size_t len)
515 {
516         int outl;
517         if (!EVP_EncryptUpdate(&ctx->enc, crypt, &outl, plain, len))
518                 return -1;
519         return 0;
520 }
521
522
523 int crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt,
524                           u8 *plain, size_t len)
525 {
526         int outl;
527         outl = len;
528         if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len))
529                 return -1;
530         return 0;
531 }
532
533
534 void crypto_cipher_deinit(struct crypto_cipher *ctx)
535 {
536         EVP_CIPHER_CTX_cleanup(&ctx->enc);
537         EVP_CIPHER_CTX_cleanup(&ctx->dec);
538         os_free(ctx);
539 }
540
541
542 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ)
543 {
544         DH *dh;
545         struct wpabuf *pubkey = NULL, *privkey = NULL;
546         size_t publen, privlen;
547
548         *priv = NULL;
549         *publ = NULL;
550
551         dh = DH_new();
552         if (dh == NULL)
553                 return NULL;
554
555         dh->g = BN_new();
556         if (dh->g == NULL || BN_set_word(dh->g, 2) != 1)
557                 goto err;
558
559         dh->p = get_group5_prime();
560         if (dh->p == NULL)
561                 goto err;
562
563         if (DH_generate_key(dh) != 1)
564                 goto err;
565
566         publen = BN_num_bytes(dh->pub_key);
567         pubkey = wpabuf_alloc(publen);
568         if (pubkey == NULL)
569                 goto err;
570         privlen = BN_num_bytes(dh->priv_key);
571         privkey = wpabuf_alloc(privlen);
572         if (privkey == NULL)
573                 goto err;
574
575         BN_bn2bin(dh->pub_key, wpabuf_put(pubkey, publen));
576         BN_bn2bin(dh->priv_key, wpabuf_put(privkey, privlen));
577
578         *priv = privkey;
579         *publ = pubkey;
580         return dh;
581
582 err:
583         wpabuf_clear_free(pubkey);
584         wpabuf_clear_free(privkey);
585         DH_free(dh);
586         return NULL;
587 }
588
589
590 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ)
591 {
592         DH *dh;
593
594         dh = DH_new();
595         if (dh == NULL)
596                 return NULL;
597
598         dh->g = BN_new();
599         if (dh->g == NULL || BN_set_word(dh->g, 2) != 1)
600                 goto err;
601
602         dh->p = get_group5_prime();
603         if (dh->p == NULL)
604                 goto err;
605
606         dh->priv_key = BN_bin2bn(wpabuf_head(priv), wpabuf_len(priv), NULL);
607         if (dh->priv_key == NULL)
608                 goto err;
609
610         dh->pub_key = BN_bin2bn(wpabuf_head(publ), wpabuf_len(publ), NULL);
611         if (dh->pub_key == NULL)
612                 goto err;
613
614         if (DH_generate_key(dh) != 1)
615                 goto err;
616
617         return dh;
618
619 err:
620         DH_free(dh);
621         return NULL;
622 }
623
624
625 struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public,
626                                   const struct wpabuf *own_private)
627 {
628         BIGNUM *pub_key;
629         struct wpabuf *res = NULL;
630         size_t rlen;
631         DH *dh = ctx;
632         int keylen;
633
634         if (ctx == NULL)
635                 return NULL;
636
637         pub_key = BN_bin2bn(wpabuf_head(peer_public), wpabuf_len(peer_public),
638                             NULL);
639         if (pub_key == NULL)
640                 return NULL;
641
642         rlen = DH_size(dh);
643         res = wpabuf_alloc(rlen);
644         if (res == NULL)
645                 goto err;
646
647         keylen = DH_compute_key(wpabuf_mhead(res), pub_key, dh);
648         if (keylen < 0)
649                 goto err;
650         wpabuf_put(res, keylen);
651         BN_clear_free(pub_key);
652
653         return res;
654
655 err:
656         BN_clear_free(pub_key);
657         wpabuf_clear_free(res);
658         return NULL;
659 }
660
661
662 void dh5_free(void *ctx)
663 {
664         DH *dh;
665         if (ctx == NULL)
666                 return;
667         dh = ctx;
668         DH_free(dh);
669 }
670
671
672 struct crypto_hash {
673         HMAC_CTX ctx;
674 };
675
676
677 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key,
678                                       size_t key_len)
679 {
680         struct crypto_hash *ctx;
681         const EVP_MD *md;
682
683         switch (alg) {
684 #ifndef OPENSSL_NO_MD5
685         case CRYPTO_HASH_ALG_HMAC_MD5:
686                 md = EVP_md5();
687                 break;
688 #endif /* OPENSSL_NO_MD5 */
689 #ifndef OPENSSL_NO_SHA
690         case CRYPTO_HASH_ALG_HMAC_SHA1:
691                 md = EVP_sha1();
692                 break;
693 #endif /* OPENSSL_NO_SHA */
694 #ifndef OPENSSL_NO_SHA256
695 #ifdef CONFIG_SHA256
696         case CRYPTO_HASH_ALG_HMAC_SHA256:
697                 md = EVP_sha256();
698                 break;
699 #endif /* CONFIG_SHA256 */
700 #endif /* OPENSSL_NO_SHA256 */
701         default:
702                 return NULL;
703         }
704
705         ctx = os_zalloc(sizeof(*ctx));
706         if (ctx == NULL)
707                 return NULL;
708         HMAC_CTX_init(&ctx->ctx);
709
710 #if OPENSSL_VERSION_NUMBER < 0x00909000
711         HMAC_Init_ex(&ctx->ctx, key, key_len, md, NULL);
712 #else /* openssl < 0.9.9 */
713         if (HMAC_Init_ex(&ctx->ctx, key, key_len, md, NULL) != 1) {
714                 bin_clear_free(ctx, sizeof(*ctx));
715                 return NULL;
716         }
717 #endif /* openssl < 0.9.9 */
718
719         return ctx;
720 }
721
722
723 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len)
724 {
725         if (ctx == NULL)
726                 return;
727         HMAC_Update(&ctx->ctx, data, len);
728 }
729
730
731 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len)
732 {
733         unsigned int mdlen;
734         int res;
735
736         if (ctx == NULL)
737                 return -2;
738
739         if (mac == NULL || len == NULL) {
740                 bin_clear_free(ctx, sizeof(*ctx));
741                 return 0;
742         }
743
744         mdlen = *len;
745 #if OPENSSL_VERSION_NUMBER < 0x00909000
746         HMAC_Final(&ctx->ctx, mac, &mdlen);
747         res = 1;
748 #else /* openssl < 0.9.9 */
749         res = HMAC_Final(&ctx->ctx, mac, &mdlen);
750 #endif /* openssl < 0.9.9 */
751         HMAC_CTX_cleanup(&ctx->ctx);
752         bin_clear_free(ctx, sizeof(*ctx));
753
754         if (res == 1) {
755                 *len = mdlen;
756                 return 0;
757         }
758
759         return -1;
760 }
761
762
763 static int openssl_hmac_vector(const EVP_MD *type, const u8 *key,
764                                size_t key_len, size_t num_elem,
765                                const u8 *addr[], const size_t *len, u8 *mac,
766                                unsigned int mdlen)
767 {
768         HMAC_CTX ctx;
769         size_t i;
770         int res;
771
772         HMAC_CTX_init(&ctx);
773 #if OPENSSL_VERSION_NUMBER < 0x00909000
774         HMAC_Init_ex(&ctx, key, key_len, type, NULL);
775 #else /* openssl < 0.9.9 */
776         if (HMAC_Init_ex(&ctx, key, key_len, type, NULL) != 1)
777                 return -1;
778 #endif /* openssl < 0.9.9 */
779
780         for (i = 0; i < num_elem; i++)
781                 HMAC_Update(&ctx, addr[i], len[i]);
782
783 #if OPENSSL_VERSION_NUMBER < 0x00909000
784         HMAC_Final(&ctx, mac, &mdlen);
785         res = 1;
786 #else /* openssl < 0.9.9 */
787         res = HMAC_Final(&ctx, mac, &mdlen);
788 #endif /* openssl < 0.9.9 */
789         HMAC_CTX_cleanup(&ctx);
790
791         return res == 1 ? 0 : -1;
792 }
793
794
795 #ifndef CONFIG_FIPS
796
797 int hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem,
798                     const u8 *addr[], const size_t *len, u8 *mac)
799 {
800         return openssl_hmac_vector(EVP_md5(), key ,key_len, num_elem, addr, len,
801                                    mac, 16);
802 }
803
804
805 int hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len,
806              u8 *mac)
807 {
808         return hmac_md5_vector(key, key_len, 1, &data, &data_len, mac);
809 }
810
811 #endif /* CONFIG_FIPS */
812
813
814 int pbkdf2_sha1(const char *passphrase, const u8 *ssid, size_t ssid_len,
815                 int iterations, u8 *buf, size_t buflen)
816 {
817         if (PKCS5_PBKDF2_HMAC_SHA1(passphrase, os_strlen(passphrase), ssid,
818                                    ssid_len, iterations, buflen, buf) != 1)
819                 return -1;
820         return 0;
821 }
822
823
824 int hmac_sha1_vector(const u8 *key, size_t key_len, size_t num_elem,
825                      const u8 *addr[], const size_t *len, u8 *mac)
826 {
827         return openssl_hmac_vector(EVP_sha1(), key, key_len, num_elem, addr,
828                                    len, mac, 20);
829 }
830
831
832 int hmac_sha1(const u8 *key, size_t key_len, const u8 *data, size_t data_len,
833                u8 *mac)
834 {
835         return hmac_sha1_vector(key, key_len, 1, &data, &data_len, mac);
836 }
837
838
839 #ifdef CONFIG_SHA256
840
841 int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem,
842                        const u8 *addr[], const size_t *len, u8 *mac)
843 {
844         return openssl_hmac_vector(EVP_sha256(), key, key_len, num_elem, addr,
845                                    len, mac, 32);
846 }
847
848
849 int hmac_sha256(const u8 *key, size_t key_len, const u8 *data,
850                 size_t data_len, u8 *mac)
851 {
852         return hmac_sha256_vector(key, key_len, 1, &data, &data_len, mac);
853 }
854
855 #endif /* CONFIG_SHA256 */
856
857
858 #ifdef CONFIG_SHA384
859
860 int hmac_sha384_vector(const u8 *key, size_t key_len, size_t num_elem,
861                        const u8 *addr[], const size_t *len, u8 *mac)
862 {
863         return openssl_hmac_vector(EVP_sha384(), key, key_len, num_elem, addr,
864                                    len, mac, 32);
865 }
866
867
868 int hmac_sha384(const u8 *key, size_t key_len, const u8 *data,
869                 size_t data_len, u8 *mac)
870 {
871         return hmac_sha384_vector(key, key_len, 1, &data, &data_len, mac);
872 }
873
874 #endif /* CONFIG_SHA384 */
875
876
877 int crypto_get_random(void *buf, size_t len)
878 {
879         if (RAND_bytes(buf, len) != 1)
880                 return -1;
881         return 0;
882 }
883
884
885 #ifdef CONFIG_OPENSSL_CMAC
886 int omac1_aes_vector(const u8 *key, size_t key_len, size_t num_elem,
887                      const u8 *addr[], const size_t *len, u8 *mac)
888 {
889         CMAC_CTX *ctx;
890         int ret = -1;
891         size_t outlen, i;
892
893         ctx = CMAC_CTX_new();
894         if (ctx == NULL)
895                 return -1;
896
897         if (key_len == 32) {
898                 if (!CMAC_Init(ctx, key, 32, EVP_aes_256_cbc(), NULL))
899                         goto fail;
900         } else if (key_len == 16) {
901                 if (!CMAC_Init(ctx, key, 16, EVP_aes_128_cbc(), NULL))
902                         goto fail;
903         } else {
904                 goto fail;
905         }
906         for (i = 0; i < num_elem; i++) {
907                 if (!CMAC_Update(ctx, addr[i], len[i]))
908                         goto fail;
909         }
910         if (!CMAC_Final(ctx, mac, &outlen) || outlen != 16)
911                 goto fail;
912
913         ret = 0;
914 fail:
915         CMAC_CTX_free(ctx);
916         return ret;
917 }
918
919
920 int omac1_aes_128_vector(const u8 *key, size_t num_elem,
921                          const u8 *addr[], const size_t *len, u8 *mac)
922 {
923         return omac1_aes_vector(key, 16, num_elem, addr, len, mac);
924 }
925
926
927 int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac)
928 {
929         return omac1_aes_128_vector(key, 1, &data, &data_len, mac);
930 }
931
932
933 int omac1_aes_256(const u8 *key, const u8 *data, size_t data_len, u8 *mac)
934 {
935         return omac1_aes_vector(key, 32, 1, &data, &data_len, mac);
936 }
937 #endif /* CONFIG_OPENSSL_CMAC */
938
939
940 struct crypto_bignum * crypto_bignum_init(void)
941 {
942         return (struct crypto_bignum *) BN_new();
943 }
944
945
946 struct crypto_bignum * crypto_bignum_init_set(const u8 *buf, size_t len)
947 {
948         BIGNUM *bn = BN_bin2bn(buf, len, NULL);
949         return (struct crypto_bignum *) bn;
950 }
951
952
953 void crypto_bignum_deinit(struct crypto_bignum *n, int clear)
954 {
955         if (clear)
956                 BN_clear_free((BIGNUM *) n);
957         else
958                 BN_free((BIGNUM *) n);
959 }
960
961
962 int crypto_bignum_to_bin(const struct crypto_bignum *a,
963                          u8 *buf, size_t buflen, size_t padlen)
964 {
965         int num_bytes, offset;
966
967         if (padlen > buflen)
968                 return -1;
969
970         num_bytes = BN_num_bytes((const BIGNUM *) a);
971         if ((size_t) num_bytes > buflen)
972                 return -1;
973         if (padlen > (size_t) num_bytes)
974                 offset = padlen - num_bytes;
975         else
976                 offset = 0;
977
978         os_memset(buf, 0, offset);
979         BN_bn2bin((const BIGNUM *) a, buf + offset);
980
981         return num_bytes + offset;
982 }
983
984
985 int crypto_bignum_add(const struct crypto_bignum *a,
986                       const struct crypto_bignum *b,
987                       struct crypto_bignum *c)
988 {
989         return BN_add((BIGNUM *) c, (const BIGNUM *) a, (const BIGNUM *) b) ?
990                 0 : -1;
991 }
992
993
994 int crypto_bignum_mod(const struct crypto_bignum *a,
995                       const struct crypto_bignum *b,
996                       struct crypto_bignum *c)
997 {
998         int res;
999         BN_CTX *bnctx;
1000
1001         bnctx = BN_CTX_new();
1002         if (bnctx == NULL)
1003                 return -1;
1004         res = BN_mod((BIGNUM *) c, (const BIGNUM *) a, (const BIGNUM *) b,
1005                      bnctx);
1006         BN_CTX_free(bnctx);
1007
1008         return res ? 0 : -1;
1009 }
1010
1011
1012 int crypto_bignum_exptmod(const struct crypto_bignum *a,
1013                           const struct crypto_bignum *b,
1014                           const struct crypto_bignum *c,
1015                           struct crypto_bignum *d)
1016 {
1017         int res;
1018         BN_CTX *bnctx;
1019
1020         bnctx = BN_CTX_new();
1021         if (bnctx == NULL)
1022                 return -1;
1023         res = BN_mod_exp((BIGNUM *) d, (const BIGNUM *) a, (const BIGNUM *) b,
1024                          (const BIGNUM *) c, bnctx);
1025         BN_CTX_free(bnctx);
1026
1027         return res ? 0 : -1;
1028 }
1029
1030
1031 int crypto_bignum_inverse(const struct crypto_bignum *a,
1032                           const struct crypto_bignum *b,
1033                           struct crypto_bignum *c)
1034 {
1035         BIGNUM *res;
1036         BN_CTX *bnctx;
1037
1038         bnctx = BN_CTX_new();
1039         if (bnctx == NULL)
1040                 return -1;
1041         res = BN_mod_inverse((BIGNUM *) c, (const BIGNUM *) a,
1042                              (const BIGNUM *) b, bnctx);
1043         BN_CTX_free(bnctx);
1044
1045         return res ? 0 : -1;
1046 }
1047
1048
1049 int crypto_bignum_sub(const struct crypto_bignum *a,
1050                       const struct crypto_bignum *b,
1051                       struct crypto_bignum *c)
1052 {
1053         return BN_sub((BIGNUM *) c, (const BIGNUM *) a, (const BIGNUM *) b) ?
1054                 0 : -1;
1055 }
1056
1057
1058 int crypto_bignum_div(const struct crypto_bignum *a,
1059                       const struct crypto_bignum *b,
1060                       struct crypto_bignum *c)
1061 {
1062         int res;
1063
1064         BN_CTX *bnctx;
1065
1066         bnctx = BN_CTX_new();
1067         if (bnctx == NULL)
1068                 return -1;
1069         res = BN_div((BIGNUM *) c, NULL, (const BIGNUM *) a,
1070                      (const BIGNUM *) b, bnctx);
1071         BN_CTX_free(bnctx);
1072
1073         return res ? 0 : -1;
1074 }
1075
1076
1077 int crypto_bignum_mulmod(const struct crypto_bignum *a,
1078                          const struct crypto_bignum *b,
1079                          const struct crypto_bignum *c,
1080                          struct crypto_bignum *d)
1081 {
1082         int res;
1083
1084         BN_CTX *bnctx;
1085
1086         bnctx = BN_CTX_new();
1087         if (bnctx == NULL)
1088                 return -1;
1089         res = BN_mod_mul((BIGNUM *) d, (const BIGNUM *) a, (const BIGNUM *) b,
1090                          (const BIGNUM *) c, bnctx);
1091         BN_CTX_free(bnctx);
1092
1093         return res ? 0 : -1;
1094 }
1095
1096
1097 int crypto_bignum_cmp(const struct crypto_bignum *a,
1098                       const struct crypto_bignum *b)
1099 {
1100         return BN_cmp((const BIGNUM *) a, (const BIGNUM *) b);
1101 }
1102
1103
1104 int crypto_bignum_bits(const struct crypto_bignum *a)
1105 {
1106         return BN_num_bits((const BIGNUM *) a);
1107 }
1108
1109
1110 int crypto_bignum_is_zero(const struct crypto_bignum *a)
1111 {
1112         return BN_is_zero((const BIGNUM *) a);
1113 }
1114
1115
1116 int crypto_bignum_is_one(const struct crypto_bignum *a)
1117 {
1118         return BN_is_one((const BIGNUM *) a);
1119 }
1120
1121
1122 int crypto_bignum_legendre(const struct crypto_bignum *a,
1123                            const struct crypto_bignum *p)
1124 {
1125         BN_CTX *bnctx;
1126         BIGNUM *exp = NULL, *tmp = NULL;
1127         int res = -2;
1128
1129         bnctx = BN_CTX_new();
1130         if (bnctx == NULL)
1131                 return -2;
1132
1133         exp = BN_new();
1134         tmp = BN_new();
1135         if (!exp || !tmp ||
1136             /* exp = (p-1) / 2 */
1137             !BN_sub(exp, (const BIGNUM *) p, BN_value_one()) ||
1138             !BN_rshift1(exp, exp) ||
1139             !BN_mod_exp(tmp, (const BIGNUM *) a, exp, (const BIGNUM *) p,
1140                         bnctx))
1141                 goto fail;
1142
1143         if (BN_is_word(tmp, 1))
1144                 res = 1;
1145         else if (BN_is_zero(tmp))
1146                 res = 0;
1147         else
1148                 res = -1;
1149
1150 fail:
1151         BN_clear_free(tmp);
1152         BN_clear_free(exp);
1153         BN_CTX_free(bnctx);
1154         return res;
1155 }
1156
1157
1158 #ifdef CONFIG_ECC
1159
1160 struct crypto_ec {
1161         EC_GROUP *group;
1162         BN_CTX *bnctx;
1163         BIGNUM *prime;
1164         BIGNUM *order;
1165         BIGNUM *a;
1166         BIGNUM *b;
1167 };
1168
1169 struct crypto_ec * crypto_ec_init(int group)
1170 {
1171         struct crypto_ec *e;
1172         int nid;
1173
1174         /* Map from IANA registry for IKE D-H groups to OpenSSL NID */
1175         switch (group) {
1176         case 19:
1177                 nid = NID_X9_62_prime256v1;
1178                 break;
1179         case 20:
1180                 nid = NID_secp384r1;
1181                 break;
1182         case 21:
1183                 nid = NID_secp521r1;
1184                 break;
1185         case 25:
1186                 nid = NID_X9_62_prime192v1;
1187                 break;
1188         case 26:
1189                 nid = NID_secp224r1;
1190                 break;
1191 #ifdef NID_brainpoolP224r1
1192         case 27:
1193                 nid = NID_brainpoolP224r1;
1194                 break;
1195 #endif /* NID_brainpoolP224r1 */
1196 #ifdef NID_brainpoolP256r1
1197         case 28:
1198                 nid = NID_brainpoolP256r1;
1199                 break;
1200 #endif /* NID_brainpoolP256r1 */
1201 #ifdef NID_brainpoolP384r1
1202         case 29:
1203                 nid = NID_brainpoolP384r1;
1204                 break;
1205 #endif /* NID_brainpoolP384r1 */
1206 #ifdef NID_brainpoolP512r1
1207         case 30:
1208                 nid = NID_brainpoolP512r1;
1209                 break;
1210 #endif /* NID_brainpoolP512r1 */
1211         default:
1212                 return NULL;
1213         }
1214
1215         e = os_zalloc(sizeof(*e));
1216         if (e == NULL)
1217                 return NULL;
1218
1219         e->bnctx = BN_CTX_new();
1220         e->group = EC_GROUP_new_by_curve_name(nid);
1221         e->prime = BN_new();
1222         e->order = BN_new();
1223         e->a = BN_new();
1224         e->b = BN_new();
1225         if (e->group == NULL || e->bnctx == NULL || e->prime == NULL ||
1226             e->order == NULL || e->a == NULL || e->b == NULL ||
1227             !EC_GROUP_get_curve_GFp(e->group, e->prime, e->a, e->b, e->bnctx) ||
1228             !EC_GROUP_get_order(e->group, e->order, e->bnctx)) {
1229                 crypto_ec_deinit(e);
1230                 e = NULL;
1231         }
1232
1233         return e;
1234 }
1235
1236
1237 void crypto_ec_deinit(struct crypto_ec *e)
1238 {
1239         if (e == NULL)
1240                 return;
1241         BN_clear_free(e->b);
1242         BN_clear_free(e->a);
1243         BN_clear_free(e->order);
1244         BN_clear_free(e->prime);
1245         EC_GROUP_free(e->group);
1246         BN_CTX_free(e->bnctx);
1247         os_free(e);
1248 }
1249
1250
1251 struct crypto_ec_point * crypto_ec_point_init(struct crypto_ec *e)
1252 {
1253         if (e == NULL)
1254                 return NULL;
1255         return (struct crypto_ec_point *) EC_POINT_new(e->group);
1256 }
1257
1258
1259 size_t crypto_ec_prime_len(struct crypto_ec *e)
1260 {
1261         return BN_num_bytes(e->prime);
1262 }
1263
1264
1265 size_t crypto_ec_prime_len_bits(struct crypto_ec *e)
1266 {
1267         return BN_num_bits(e->prime);
1268 }
1269
1270
1271 const struct crypto_bignum * crypto_ec_get_prime(struct crypto_ec *e)
1272 {
1273         return (const struct crypto_bignum *) e->prime;
1274 }
1275
1276
1277 const struct crypto_bignum * crypto_ec_get_order(struct crypto_ec *e)
1278 {
1279         return (const struct crypto_bignum *) e->order;
1280 }
1281
1282
1283 void crypto_ec_point_deinit(struct crypto_ec_point *p, int clear)
1284 {
1285         if (clear)
1286                 EC_POINT_clear_free((EC_POINT *) p);
1287         else
1288                 EC_POINT_free((EC_POINT *) p);
1289 }
1290
1291
1292 int crypto_ec_point_to_bin(struct crypto_ec *e,
1293                            const struct crypto_ec_point *point, u8 *x, u8 *y)
1294 {
1295         BIGNUM *x_bn, *y_bn;
1296         int ret = -1;
1297         int len = BN_num_bytes(e->prime);
1298
1299         x_bn = BN_new();
1300         y_bn = BN_new();
1301
1302         if (x_bn && y_bn &&
1303             EC_POINT_get_affine_coordinates_GFp(e->group, (EC_POINT *) point,
1304                                                 x_bn, y_bn, e->bnctx)) {
1305                 if (x) {
1306                         crypto_bignum_to_bin((struct crypto_bignum *) x_bn,
1307                                              x, len, len);
1308                 }
1309                 if (y) {
1310                         crypto_bignum_to_bin((struct crypto_bignum *) y_bn,
1311                                              y, len, len);
1312                 }
1313                 ret = 0;
1314         }
1315
1316         BN_clear_free(x_bn);
1317         BN_clear_free(y_bn);
1318         return ret;
1319 }
1320
1321
1322 struct crypto_ec_point * crypto_ec_point_from_bin(struct crypto_ec *e,
1323                                                   const u8 *val)
1324 {
1325         BIGNUM *x, *y;
1326         EC_POINT *elem;
1327         int len = BN_num_bytes(e->prime);
1328
1329         x = BN_bin2bn(val, len, NULL);
1330         y = BN_bin2bn(val + len, len, NULL);
1331         elem = EC_POINT_new(e->group);
1332         if (x == NULL || y == NULL || elem == NULL) {
1333                 BN_clear_free(x);
1334                 BN_clear_free(y);
1335                 EC_POINT_clear_free(elem);
1336                 return NULL;
1337         }
1338
1339         if (!EC_POINT_set_affine_coordinates_GFp(e->group, elem, x, y,
1340                                                  e->bnctx)) {
1341                 EC_POINT_clear_free(elem);
1342                 elem = NULL;
1343         }
1344
1345         BN_clear_free(x);
1346         BN_clear_free(y);
1347
1348         return (struct crypto_ec_point *) elem;
1349 }
1350
1351
1352 int crypto_ec_point_add(struct crypto_ec *e, const struct crypto_ec_point *a,
1353                         const struct crypto_ec_point *b,
1354                         struct crypto_ec_point *c)
1355 {
1356         return EC_POINT_add(e->group, (EC_POINT *) c, (const EC_POINT *) a,
1357                             (const EC_POINT *) b, e->bnctx) ? 0 : -1;
1358 }
1359
1360
1361 int crypto_ec_point_mul(struct crypto_ec *e, const struct crypto_ec_point *p,
1362                         const struct crypto_bignum *b,
1363                         struct crypto_ec_point *res)
1364 {
1365         return EC_POINT_mul(e->group, (EC_POINT *) res, NULL,
1366                             (const EC_POINT *) p, (const BIGNUM *) b, e->bnctx)
1367                 ? 0 : -1;
1368 }
1369
1370
1371 int crypto_ec_point_invert(struct crypto_ec *e, struct crypto_ec_point *p)
1372 {
1373         return EC_POINT_invert(e->group, (EC_POINT *) p, e->bnctx) ? 0 : -1;
1374 }
1375
1376
1377 int crypto_ec_point_solve_y_coord(struct crypto_ec *e,
1378                                   struct crypto_ec_point *p,
1379                                   const struct crypto_bignum *x, int y_bit)
1380 {
1381         if (!EC_POINT_set_compressed_coordinates_GFp(e->group, (EC_POINT *) p,
1382                                                      (const BIGNUM *) x, y_bit,
1383                                                      e->bnctx) ||
1384             !EC_POINT_is_on_curve(e->group, (EC_POINT *) p, e->bnctx))
1385                 return -1;
1386         return 0;
1387 }
1388
1389
1390 struct crypto_bignum *
1391 crypto_ec_point_compute_y_sqr(struct crypto_ec *e,
1392                               const struct crypto_bignum *x)
1393 {
1394         BIGNUM *tmp, *tmp2, *y_sqr = NULL;
1395
1396         tmp = BN_new();
1397         tmp2 = BN_new();
1398
1399         /* y^2 = x^3 + ax + b */
1400         if (tmp && tmp2 &&
1401             BN_mod_sqr(tmp, (const BIGNUM *) x, e->prime, e->bnctx) &&
1402             BN_mod_mul(tmp, tmp, (const BIGNUM *) x, e->prime, e->bnctx) &&
1403             BN_mod_mul(tmp2, e->a, (const BIGNUM *) x, e->prime, e->bnctx) &&
1404             BN_mod_add_quick(tmp2, tmp2, tmp, e->prime) &&
1405             BN_mod_add_quick(tmp2, tmp2, e->b, e->prime)) {
1406                 y_sqr = tmp2;
1407                 tmp2 = NULL;
1408         }
1409
1410         BN_clear_free(tmp);
1411         BN_clear_free(tmp2);
1412
1413         return (struct crypto_bignum *) y_sqr;
1414 }
1415
1416
1417 int crypto_ec_point_is_at_infinity(struct crypto_ec *e,
1418                                    const struct crypto_ec_point *p)
1419 {
1420         return EC_POINT_is_at_infinity(e->group, (const EC_POINT *) p);
1421 }
1422
1423
1424 int crypto_ec_point_is_on_curve(struct crypto_ec *e,
1425                                 const struct crypto_ec_point *p)
1426 {
1427         return EC_POINT_is_on_curve(e->group, (const EC_POINT *) p,
1428                                     e->bnctx) == 1;
1429 }
1430
1431
1432 int crypto_ec_point_cmp(const struct crypto_ec *e,
1433                         const struct crypto_ec_point *a,
1434                         const struct crypto_ec_point *b)
1435 {
1436         return EC_POINT_cmp(e->group, (const EC_POINT *) a,
1437                             (const EC_POINT *) b, e->bnctx);
1438 }
1439
1440 #endif /* CONFIG_ECC */