pkcs5.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. /*
  2. * PKCS #5 (Password-based Encryption)
  3. * Copyright (c) 2009-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. #include "includes.h"
  9. #include "common.h"
  10. #include "crypto/crypto.h"
  11. #include "crypto/md5.h"
  12. #include "crypto/sha1.h"
  13. #include "asn1.h"
  14. #include "pkcs5.h"
  15. struct pkcs5_params {
  16. enum pkcs5_alg {
  17. PKCS5_ALG_UNKNOWN,
  18. PKCS5_ALG_MD5_DES_CBC,
  19. PKCS5_ALG_PBES2,
  20. PKCS5_ALG_SHA1_3DES_CBC,
  21. } alg;
  22. u8 salt[64];
  23. size_t salt_len;
  24. unsigned int iter_count;
  25. enum pbes2_enc_alg {
  26. PBES2_ENC_ALG_UNKNOWN,
  27. PBES2_ENC_ALG_DES_EDE3_CBC,
  28. } enc_alg;
  29. u8 iv[8];
  30. size_t iv_len;
  31. };
  32. static int oid_is_rsadsi(struct asn1_oid *oid)
  33. {
  34. return oid->len >= 4 &&
  35. oid->oid[0] == 1 /* iso */ &&
  36. oid->oid[1] == 2 /* member-body */ &&
  37. oid->oid[2] == 840 /* us */ &&
  38. oid->oid[3] == 113549 /* rsadsi */;
  39. }
  40. static int pkcs5_is_oid(struct asn1_oid *oid, unsigned long alg)
  41. {
  42. return oid->len == 7 &&
  43. oid_is_rsadsi(oid) &&
  44. oid->oid[4] == 1 /* pkcs */ &&
  45. oid->oid[5] == 5 /* pkcs-5 */ &&
  46. oid->oid[6] == alg;
  47. }
  48. static int enc_alg_is_oid(struct asn1_oid *oid, unsigned long alg)
  49. {
  50. return oid->len == 6 &&
  51. oid_is_rsadsi(oid) &&
  52. oid->oid[4] == 3 /* encryptionAlgorithm */ &&
  53. oid->oid[5] == alg;
  54. }
  55. static int pkcs12_is_pbe_oid(struct asn1_oid *oid, unsigned long alg)
  56. {
  57. return oid->len == 8 &&
  58. oid_is_rsadsi(oid) &&
  59. oid->oid[4] == 1 /* pkcs */ &&
  60. oid->oid[5] == 12 /* pkcs-12 */ &&
  61. oid->oid[6] == 1 /* pkcs-12PbeIds */ &&
  62. oid->oid[7] == alg;
  63. }
  64. static enum pkcs5_alg pkcs5_get_alg(struct asn1_oid *oid)
  65. {
  66. if (pkcs5_is_oid(oid, 3)) /* pbeWithMD5AndDES-CBC (PBES1) */
  67. return PKCS5_ALG_MD5_DES_CBC;
  68. if (pkcs12_is_pbe_oid(oid, 3)) /* pbeWithSHAAnd3-KeyTripleDES-CBC */
  69. return PKCS5_ALG_SHA1_3DES_CBC;
  70. if (pkcs5_is_oid(oid, 13)) /* id-PBES2 (PBES2) */
  71. return PKCS5_ALG_PBES2;
  72. return PKCS5_ALG_UNKNOWN;
  73. }
  74. static int pkcs5_get_params_pbes2(struct pkcs5_params *params, const u8 *pos,
  75. const u8 *enc_alg_end)
  76. {
  77. struct asn1_hdr hdr;
  78. const u8 *end, *kdf_end;
  79. struct asn1_oid oid;
  80. char obuf[80];
  81. /*
  82. * RFC 2898, Ch. A.4
  83. *
  84. * PBES2-params ::= SEQUENCE {
  85. * keyDerivationFunc AlgorithmIdentifier {{PBES2-KDFs}},
  86. * encryptionScheme AlgorithmIdentifier {{PBES2-Encs}} }
  87. *
  88. * PBES2-KDFs ALGORITHM-IDENTIFIER ::=
  89. * { {PBKDF2-params IDENTIFIED BY id-PBKDF2}, ... }
  90. */
  91. if (asn1_get_next(pos, enc_alg_end - pos, &hdr) < 0 ||
  92. hdr.class != ASN1_CLASS_UNIVERSAL ||
  93. hdr.tag != ASN1_TAG_SEQUENCE) {
  94. wpa_printf(MSG_DEBUG,
  95. "PKCS #5: Expected SEQUENCE (PBES2-params) - found class %d tag 0x%x",
  96. hdr.class, hdr.tag);
  97. return -1;
  98. }
  99. pos = hdr.payload;
  100. end = hdr.payload + hdr.length;
  101. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  102. hdr.class != ASN1_CLASS_UNIVERSAL ||
  103. hdr.tag != ASN1_TAG_SEQUENCE) {
  104. wpa_printf(MSG_DEBUG,
  105. "PKCS #5: Expected SEQUENCE (keyDerivationFunc) - found class %d tag 0x%x",
  106. hdr.class, hdr.tag);
  107. return -1;
  108. }
  109. pos = hdr.payload;
  110. kdf_end = end = hdr.payload + hdr.length;
  111. if (asn1_get_oid(pos, end - pos, &oid, &pos)) {
  112. wpa_printf(MSG_DEBUG,
  113. "PKCS #5: Failed to parse OID (keyDerivationFunc algorithm)");
  114. return -1;
  115. }
  116. asn1_oid_to_str(&oid, obuf, sizeof(obuf));
  117. wpa_printf(MSG_DEBUG, "PKCS #5: PBES2 keyDerivationFunc algorithm %s",
  118. obuf);
  119. if (!pkcs5_is_oid(&oid, 12)) /* id-PBKDF2 */ {
  120. wpa_printf(MSG_DEBUG,
  121. "PKCS #5: Unsupported PBES2 keyDerivationFunc algorithm %s",
  122. obuf);
  123. return -1;
  124. }
  125. /*
  126. * RFC 2898, C.
  127. *
  128. * PBKDF2-params ::= SEQUENCE {
  129. * salt CHOICE {
  130. * specified OCTET STRING,
  131. * otherSource AlgorithmIdentifier {{PBKDF2-SaltSources}}
  132. * },
  133. * iterationCount INTEGER (1..MAX),
  134. * keyLength INTEGER (1..MAX) OPTIONAL,
  135. * prf AlgorithmIdentifier {{PBKDF2-PRFs}} DEFAULT
  136. * algid-hmacWithSHA1
  137. * }
  138. */
  139. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  140. hdr.class != ASN1_CLASS_UNIVERSAL ||
  141. hdr.tag != ASN1_TAG_SEQUENCE) {
  142. wpa_printf(MSG_DEBUG,
  143. "PKCS #5: Expected SEQUENCE (PBKDF2-params) - found class %d tag 0x%x",
  144. hdr.class, hdr.tag);
  145. return -1;
  146. }
  147. pos = hdr.payload;
  148. end = hdr.payload + hdr.length;
  149. /* For now, only support the salt CHOICE specified (OCTET STRING) */
  150. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  151. hdr.class != ASN1_CLASS_UNIVERSAL ||
  152. hdr.tag != ASN1_TAG_OCTETSTRING ||
  153. hdr.length > sizeof(params->salt)) {
  154. wpa_printf(MSG_DEBUG,
  155. "PKCS #5: Expected OCTET STRING (salt.specified) - found class %d tag 0x%x size %d",
  156. hdr.class, hdr.tag, hdr.length);
  157. return -1;
  158. }
  159. pos = hdr.payload + hdr.length;
  160. os_memcpy(params->salt, hdr.payload, hdr.length);
  161. params->salt_len = hdr.length;
  162. wpa_hexdump(MSG_DEBUG, "PKCS #5: salt", params->salt, params->salt_len);
  163. /* iterationCount INTEGER */
  164. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  165. hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_INTEGER) {
  166. wpa_printf(MSG_DEBUG,
  167. "PKCS #5: Expected INTEGER - found class %d tag 0x%x",
  168. hdr.class, hdr.tag);
  169. return -1;
  170. }
  171. if (hdr.length == 1) {
  172. params->iter_count = *hdr.payload;
  173. } else if (hdr.length == 2) {
  174. params->iter_count = WPA_GET_BE16(hdr.payload);
  175. } else if (hdr.length == 4) {
  176. params->iter_count = WPA_GET_BE32(hdr.payload);
  177. } else {
  178. wpa_hexdump(MSG_DEBUG,
  179. "PKCS #5: Unsupported INTEGER value (iterationCount)",
  180. hdr.payload, hdr.length);
  181. return -1;
  182. }
  183. wpa_printf(MSG_DEBUG, "PKCS #5: iterationCount=0x%x",
  184. params->iter_count);
  185. if (params->iter_count == 0 || params->iter_count > 0xffff) {
  186. wpa_printf(MSG_INFO, "PKCS #5: Unsupported iterationCount=0x%x",
  187. params->iter_count);
  188. return -1;
  189. }
  190. /* For now, ignore optional keyLength and prf */
  191. pos = kdf_end;
  192. /* encryptionScheme AlgorithmIdentifier {{PBES2-Encs}} */
  193. if (asn1_get_next(pos, enc_alg_end - pos, &hdr) < 0 ||
  194. hdr.class != ASN1_CLASS_UNIVERSAL ||
  195. hdr.tag != ASN1_TAG_SEQUENCE) {
  196. wpa_printf(MSG_DEBUG,
  197. "PKCS #5: Expected SEQUENCE (encryptionScheme) - found class %d tag 0x%x",
  198. hdr.class, hdr.tag);
  199. return -1;
  200. }
  201. pos = hdr.payload;
  202. end = hdr.payload + hdr.length;
  203. if (asn1_get_oid(pos, end - pos, &oid, &pos)) {
  204. wpa_printf(MSG_DEBUG,
  205. "PKCS #5: Failed to parse OID (encryptionScheme algorithm)");
  206. return -1;
  207. }
  208. asn1_oid_to_str(&oid, obuf, sizeof(obuf));
  209. wpa_printf(MSG_DEBUG, "PKCS #5: PBES2 encryptionScheme algorithm %s",
  210. obuf);
  211. if (enc_alg_is_oid(&oid, 7)) {
  212. params->enc_alg = PBES2_ENC_ALG_DES_EDE3_CBC;
  213. } else {
  214. wpa_printf(MSG_DEBUG,
  215. "PKCS #5: Unsupported PBES2 encryptionScheme algorithm %s",
  216. obuf);
  217. return -1;
  218. }
  219. /*
  220. * RFC 2898, B.2.2:
  221. * The parameters field associated with this OID in an
  222. * AlgorithmIdentifier shall have type OCTET STRING (SIZE(8)),
  223. * specifying the initialization vector for CBC mode.
  224. */
  225. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  226. hdr.class != ASN1_CLASS_UNIVERSAL ||
  227. hdr.tag != ASN1_TAG_OCTETSTRING ||
  228. hdr.length != 8) {
  229. wpa_printf(MSG_DEBUG,
  230. "PKCS #5: Expected OCTET STRING (SIZE(8)) (IV) - found class %d tag 0x%x size %d",
  231. hdr.class, hdr.tag, hdr.length);
  232. return -1;
  233. }
  234. os_memcpy(params->iv, hdr.payload, hdr.length);
  235. params->iv_len = hdr.length;
  236. wpa_hexdump(MSG_DEBUG, "PKCS #5: IV", params->iv, params->iv_len);
  237. return 0;
  238. }
  239. static int pkcs5_get_params(const u8 *enc_alg, size_t enc_alg_len,
  240. struct pkcs5_params *params)
  241. {
  242. struct asn1_hdr hdr;
  243. const u8 *enc_alg_end, *pos, *end;
  244. struct asn1_oid oid;
  245. char obuf[80];
  246. /* AlgorithmIdentifier */
  247. enc_alg_end = enc_alg + enc_alg_len;
  248. os_memset(params, 0, sizeof(*params));
  249. if (asn1_get_oid(enc_alg, enc_alg_end - enc_alg, &oid, &pos)) {
  250. wpa_printf(MSG_DEBUG, "PKCS #5: Failed to parse OID "
  251. "(algorithm)");
  252. return -1;
  253. }
  254. asn1_oid_to_str(&oid, obuf, sizeof(obuf));
  255. wpa_printf(MSG_DEBUG, "PKCS #5: encryption algorithm %s", obuf);
  256. params->alg = pkcs5_get_alg(&oid);
  257. if (params->alg == PKCS5_ALG_UNKNOWN) {
  258. wpa_printf(MSG_INFO, "PKCS #5: unsupported encryption "
  259. "algorithm %s", obuf);
  260. return -1;
  261. }
  262. if (params->alg == PKCS5_ALG_PBES2)
  263. return pkcs5_get_params_pbes2(params, pos, enc_alg_end);
  264. /* PBES1 */
  265. /*
  266. * PKCS#5, Section 8
  267. * PBEParameter ::= SEQUENCE {
  268. * salt OCTET STRING SIZE(8),
  269. * iterationCount INTEGER }
  270. *
  271. * Note: The same implementation can be used to parse the PKCS #12
  272. * version described in RFC 7292, C:
  273. * pkcs-12PbeParams ::= SEQUENCE {
  274. * salt OCTET STRING,
  275. * iterations INTEGER
  276. * }
  277. */
  278. if (asn1_get_next(pos, enc_alg_end - pos, &hdr) < 0 ||
  279. hdr.class != ASN1_CLASS_UNIVERSAL ||
  280. hdr.tag != ASN1_TAG_SEQUENCE) {
  281. wpa_printf(MSG_DEBUG, "PKCS #5: Expected SEQUENCE "
  282. "(PBEParameter) - found class %d tag 0x%x",
  283. hdr.class, hdr.tag);
  284. return -1;
  285. }
  286. pos = hdr.payload;
  287. end = hdr.payload + hdr.length;
  288. /* salt OCTET STRING SIZE(8) (PKCS #5) or OCTET STRING (PKCS #12) */
  289. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  290. hdr.class != ASN1_CLASS_UNIVERSAL ||
  291. hdr.tag != ASN1_TAG_OCTETSTRING ||
  292. hdr.length > sizeof(params->salt)) {
  293. wpa_printf(MSG_DEBUG, "PKCS #5: Expected OCTETSTRING SIZE(8) "
  294. "(salt) - found class %d tag 0x%x size %d",
  295. hdr.class, hdr.tag, hdr.length);
  296. return -1;
  297. }
  298. pos = hdr.payload + hdr.length;
  299. os_memcpy(params->salt, hdr.payload, hdr.length);
  300. params->salt_len = hdr.length;
  301. wpa_hexdump(MSG_DEBUG, "PKCS #5: salt",
  302. params->salt, params->salt_len);
  303. /* iterationCount INTEGER */
  304. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  305. hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_INTEGER) {
  306. wpa_printf(MSG_DEBUG, "PKCS #5: Expected INTEGER - found "
  307. "class %d tag 0x%x", hdr.class, hdr.tag);
  308. return -1;
  309. }
  310. if (hdr.length == 1)
  311. params->iter_count = *hdr.payload;
  312. else if (hdr.length == 2)
  313. params->iter_count = WPA_GET_BE16(hdr.payload);
  314. else if (hdr.length == 4)
  315. params->iter_count = WPA_GET_BE32(hdr.payload);
  316. else {
  317. wpa_hexdump(MSG_DEBUG, "PKCS #5: Unsupported INTEGER value "
  318. " (iterationCount)",
  319. hdr.payload, hdr.length);
  320. return -1;
  321. }
  322. wpa_printf(MSG_DEBUG, "PKCS #5: iterationCount=0x%x",
  323. params->iter_count);
  324. if (params->iter_count == 0 || params->iter_count > 0xffff) {
  325. wpa_printf(MSG_INFO, "PKCS #5: Unsupported "
  326. "iterationCount=0x%x", params->iter_count);
  327. return -1;
  328. }
  329. return 0;
  330. }
  331. static struct crypto_cipher *
  332. pkcs5_crypto_init_pbes2(struct pkcs5_params *params, const char *passwd)
  333. {
  334. u8 key[24];
  335. if (params->enc_alg != PBES2_ENC_ALG_DES_EDE3_CBC ||
  336. params->iv_len != 8)
  337. return NULL;
  338. wpa_hexdump_ascii_key(MSG_DEBUG, "PKCS #5: PBES2 password for PBKDF2",
  339. passwd, os_strlen(passwd));
  340. wpa_hexdump(MSG_DEBUG, "PKCS #5: PBES2 salt for PBKDF2",
  341. params->salt, params->salt_len);
  342. wpa_printf(MSG_DEBUG, "PKCS #5: PBES2 PBKDF2 iterations: %u",
  343. params->iter_count);
  344. if (pbkdf2_sha1(passwd, params->salt, params->salt_len,
  345. params->iter_count, key, sizeof(key)) < 0)
  346. return NULL;
  347. wpa_hexdump_key(MSG_DEBUG, "PKCS #5: DES EDE3 key", key, sizeof(key));
  348. wpa_hexdump(MSG_DEBUG, "PKCS #5: DES IV", params->iv, params->iv_len);
  349. return crypto_cipher_init(CRYPTO_CIPHER_ALG_3DES, params->iv,
  350. key, sizeof(key));
  351. }
  352. static void add_byte_array_mod(u8 *a, const u8 *b, size_t len)
  353. {
  354. size_t i;
  355. unsigned int carry = 0;
  356. for (i = len - 1; i < len; i--) {
  357. carry = carry + a[i] + b[i];
  358. a[i] = carry & 0xff;
  359. carry >>= 8;
  360. }
  361. }
  362. static int pkcs12_key_gen(const u8 *pw, size_t pw_len, const u8 *salt,
  363. size_t salt_len, u8 id, unsigned int iter,
  364. size_t out_len, u8 *out)
  365. {
  366. unsigned int u, v, S_len, P_len, i;
  367. u8 *D = NULL, *I = NULL, *B = NULL, *pos;
  368. int res = -1;
  369. /* RFC 7292, B.2 */
  370. u = SHA1_MAC_LEN;
  371. v = 64;
  372. /* D = copies of ID */
  373. D = os_malloc(v);
  374. if (!D)
  375. goto done;
  376. os_memset(D, id, v);
  377. /* S = copies of salt; P = copies of password, I = S || P */
  378. S_len = v * ((salt_len + v - 1) / v);
  379. P_len = v * ((pw_len + v - 1) / v);
  380. I = os_malloc(S_len + P_len);
  381. if (!I)
  382. goto done;
  383. pos = I;
  384. if (salt_len) {
  385. for (i = 0; i < S_len; i++)
  386. *pos++ = salt[i % salt_len];
  387. }
  388. if (pw_len) {
  389. for (i = 0; i < P_len; i++)
  390. *pos++ = pw[i % pw_len];
  391. }
  392. B = os_malloc(v);
  393. if (!B)
  394. goto done;
  395. for (;;) {
  396. u8 hash[SHA1_MAC_LEN];
  397. const u8 *addr[2];
  398. size_t len[2];
  399. addr[0] = D;
  400. len[0] = v;
  401. addr[1] = I;
  402. len[1] = S_len + P_len;
  403. if (sha1_vector(2, addr, len, hash) < 0)
  404. goto done;
  405. addr[0] = hash;
  406. len[0] = SHA1_MAC_LEN;
  407. for (i = 1; i < iter; i++) {
  408. if (sha1_vector(1, addr, len, hash) < 0)
  409. goto done;
  410. }
  411. if (out_len <= u) {
  412. os_memcpy(out, hash, out_len);
  413. res = 0;
  414. goto done;
  415. }
  416. os_memcpy(out, hash, u);
  417. out += u;
  418. out_len -= u;
  419. /* I_j = (I_j + B + 1) mod 2^(v*8) */
  420. /* B = copies of Ai (final hash value) */
  421. for (i = 0; i < v; i++)
  422. B[i] = hash[i % u];
  423. inc_byte_array(B, v);
  424. for (i = 0; i < S_len + P_len; i += v)
  425. add_byte_array_mod(&I[i], B, v);
  426. }
  427. done:
  428. os_free(B);
  429. os_free(I);
  430. os_free(D);
  431. return res;
  432. }
  433. #define PKCS12_ID_ENC 1
  434. #define PKCS12_ID_IV 2
  435. #define PKCS12_ID_MAC 3
  436. static struct crypto_cipher *
  437. pkcs12_crypto_init_sha1(struct pkcs5_params *params, const char *passwd)
  438. {
  439. unsigned int i;
  440. u8 *pw;
  441. size_t pw_len;
  442. u8 key[24];
  443. u8 iv[8];
  444. if (params->alg != PKCS5_ALG_SHA1_3DES_CBC)
  445. return NULL;
  446. pw_len = passwd ? os_strlen(passwd) : 0;
  447. pw = os_malloc(2 * (pw_len + 1));
  448. if (!pw)
  449. return NULL;
  450. if (pw_len) {
  451. for (i = 0; i <= pw_len; i++)
  452. WPA_PUT_BE16(&pw[2 * i], passwd[i]);
  453. pw_len = 2 * (pw_len + 1);
  454. }
  455. if (pkcs12_key_gen(pw, pw_len, params->salt, params->salt_len,
  456. PKCS12_ID_ENC, params->iter_count,
  457. sizeof(key), key) < 0 ||
  458. pkcs12_key_gen(pw, pw_len, params->salt, params->salt_len,
  459. PKCS12_ID_IV, params->iter_count,
  460. sizeof(iv), iv) < 0) {
  461. os_free(pw);
  462. return NULL;
  463. }
  464. os_free(pw);
  465. wpa_hexdump_key(MSG_DEBUG, "PKCS #12: DES key", key, sizeof(key));
  466. wpa_hexdump_key(MSG_DEBUG, "PKCS #12: DES IV", iv, sizeof(iv));
  467. return crypto_cipher_init(CRYPTO_CIPHER_ALG_3DES, iv, key, sizeof(key));
  468. }
  469. static struct crypto_cipher * pkcs5_crypto_init(struct pkcs5_params *params,
  470. const char *passwd)
  471. {
  472. unsigned int i;
  473. u8 hash[MD5_MAC_LEN];
  474. const u8 *addr[2];
  475. size_t len[2];
  476. if (params->alg == PKCS5_ALG_PBES2)
  477. return pkcs5_crypto_init_pbes2(params, passwd);
  478. if (params->alg == PKCS5_ALG_SHA1_3DES_CBC)
  479. return pkcs12_crypto_init_sha1(params, passwd);
  480. if (params->alg != PKCS5_ALG_MD5_DES_CBC)
  481. return NULL;
  482. addr[0] = (const u8 *) passwd;
  483. len[0] = os_strlen(passwd);
  484. addr[1] = params->salt;
  485. len[1] = params->salt_len;
  486. if (md5_vector(2, addr, len, hash) < 0)
  487. return NULL;
  488. addr[0] = hash;
  489. len[0] = MD5_MAC_LEN;
  490. for (i = 1; i < params->iter_count; i++) {
  491. if (md5_vector(1, addr, len, hash) < 0)
  492. return NULL;
  493. }
  494. /* TODO: DES key parity bits(?) */
  495. wpa_hexdump_key(MSG_DEBUG, "PKCS #5: DES key", hash, 8);
  496. wpa_hexdump_key(MSG_DEBUG, "PKCS #5: DES IV", hash + 8, 8);
  497. return crypto_cipher_init(CRYPTO_CIPHER_ALG_DES, hash + 8, hash, 8);
  498. }
  499. u8 * pkcs5_decrypt(const u8 *enc_alg, size_t enc_alg_len,
  500. const u8 *enc_data, size_t enc_data_len,
  501. const char *passwd, size_t *data_len)
  502. {
  503. struct crypto_cipher *ctx;
  504. u8 *eb, pad;
  505. struct pkcs5_params params;
  506. unsigned int i;
  507. if (pkcs5_get_params(enc_alg, enc_alg_len, &params) < 0) {
  508. wpa_printf(MSG_DEBUG, "PKCS #5: Unsupported parameters");
  509. return NULL;
  510. }
  511. ctx = pkcs5_crypto_init(&params, passwd);
  512. if (ctx == NULL) {
  513. wpa_printf(MSG_DEBUG, "PKCS #5: Failed to initialize crypto");
  514. return NULL;
  515. }
  516. /* PKCS #5, Section 7 - Decryption process */
  517. if (enc_data_len < 16 || enc_data_len % 8) {
  518. wpa_printf(MSG_INFO, "PKCS #5: invalid length of ciphertext "
  519. "%d", (int) enc_data_len);
  520. crypto_cipher_deinit(ctx);
  521. return NULL;
  522. }
  523. eb = os_malloc(enc_data_len);
  524. if (eb == NULL) {
  525. crypto_cipher_deinit(ctx);
  526. return NULL;
  527. }
  528. if (crypto_cipher_decrypt(ctx, enc_data, eb, enc_data_len) < 0) {
  529. wpa_printf(MSG_DEBUG, "PKCS #5: Failed to decrypt EB");
  530. crypto_cipher_deinit(ctx);
  531. os_free(eb);
  532. return NULL;
  533. }
  534. crypto_cipher_deinit(ctx);
  535. pad = eb[enc_data_len - 1];
  536. if (pad > 8) {
  537. wpa_printf(MSG_INFO, "PKCS #5: Invalid PS octet 0x%x", pad);
  538. os_free(eb);
  539. return NULL;
  540. }
  541. for (i = enc_data_len - pad; i < enc_data_len; i++) {
  542. if (eb[i] != pad) {
  543. wpa_hexdump(MSG_INFO, "PKCS #5: Invalid PS",
  544. eb + enc_data_len - pad, pad);
  545. os_free(eb);
  546. return NULL;
  547. }
  548. }
  549. wpa_hexdump_key(MSG_MSGDUMP, "PKCS #5: message M (encrypted key)",
  550. eb, enc_data_len - pad);
  551. *data_len = enc_data_len - pad;
  552. return eb;
  553. }