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