pkcs5.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. /**
  2. * \file pkcs5.c
  3. *
  4. * \brief PKCS#5 functions
  5. *
  6. * \author Mathias Olsson <mathias@kompetensum.com>
  7. *
  8. * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
  9. * SPDX-License-Identifier: GPL-2.0
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License along
  22. * with this program; if not, write to the Free Software Foundation, Inc.,
  23. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  24. *
  25. * This file is part of mbed TLS (https://tls.mbed.org)
  26. */
  27. /*
  28. * PKCS#5 includes PBKDF2 and more
  29. *
  30. * http://tools.ietf.org/html/rfc2898 (Specification)
  31. * http://tools.ietf.org/html/rfc6070 (Test vectors)
  32. */
  33. #if !defined(MBEDTLS_CONFIG_FILE)
  34. #include "mbedtls/config.h"
  35. #else
  36. #include MBEDTLS_CONFIG_FILE
  37. #endif
  38. #if defined(MBEDTLS_PKCS5_C)
  39. #include "mbedtls/pkcs5.h"
  40. #include "mbedtls/asn1.h"
  41. #include "mbedtls/cipher.h"
  42. #include "mbedtls/oid.h"
  43. #include <string.h>
  44. #if defined(MBEDTLS_PLATFORM_C)
  45. #include "mbedtls/platform.h"
  46. #else
  47. #include <stdio.h>
  48. #define mbedtls_printf printf
  49. #endif
  50. static int pkcs5_parse_pbkdf2_params( const mbedtls_asn1_buf *params,
  51. mbedtls_asn1_buf *salt, int *iterations,
  52. int *keylen, mbedtls_md_type_t *md_type )
  53. {
  54. int ret;
  55. mbedtls_asn1_buf prf_alg_oid;
  56. unsigned char *p = params->p;
  57. const unsigned char *end = params->p + params->len;
  58. if( params->tag != ( MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) )
  59. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT +
  60. MBEDTLS_ERR_ASN1_UNEXPECTED_TAG );
  61. /*
  62. * PBKDF2-params ::= SEQUENCE {
  63. * salt OCTET STRING,
  64. * iterationCount INTEGER,
  65. * keyLength INTEGER OPTIONAL
  66. * prf AlgorithmIdentifier DEFAULT algid-hmacWithSHA1
  67. * }
  68. *
  69. */
  70. if( ( ret = mbedtls_asn1_get_tag( &p, end, &salt->len, MBEDTLS_ASN1_OCTET_STRING ) ) != 0 )
  71. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT + ret );
  72. salt->p = p;
  73. p += salt->len;
  74. if( ( ret = mbedtls_asn1_get_int( &p, end, iterations ) ) != 0 )
  75. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT + ret );
  76. if( p == end )
  77. return( 0 );
  78. if( ( ret = mbedtls_asn1_get_int( &p, end, keylen ) ) != 0 )
  79. {
  80. if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
  81. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT + ret );
  82. }
  83. if( p == end )
  84. return( 0 );
  85. if( ( ret = mbedtls_asn1_get_alg_null( &p, end, &prf_alg_oid ) ) != 0 )
  86. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT + ret );
  87. if( MBEDTLS_OID_CMP( MBEDTLS_OID_HMAC_SHA1, &prf_alg_oid ) != 0 )
  88. return( MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE );
  89. *md_type = MBEDTLS_MD_SHA1;
  90. if( p != end )
  91. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT +
  92. MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
  93. return( 0 );
  94. }
  95. int mbedtls_pkcs5_pbes2( const mbedtls_asn1_buf *pbe_params, int mode,
  96. const unsigned char *pwd, size_t pwdlen,
  97. const unsigned char *data, size_t datalen,
  98. unsigned char *output )
  99. {
  100. int ret, iterations = 0, keylen = 0;
  101. unsigned char *p, *end;
  102. mbedtls_asn1_buf kdf_alg_oid, enc_scheme_oid, kdf_alg_params, enc_scheme_params;
  103. mbedtls_asn1_buf salt;
  104. mbedtls_md_type_t md_type = MBEDTLS_MD_SHA1;
  105. unsigned char key[32], iv[32];
  106. size_t olen = 0;
  107. const mbedtls_md_info_t *md_info;
  108. const mbedtls_cipher_info_t *cipher_info;
  109. mbedtls_md_context_t md_ctx;
  110. mbedtls_cipher_type_t cipher_alg;
  111. mbedtls_cipher_context_t cipher_ctx;
  112. p = pbe_params->p;
  113. end = p + pbe_params->len;
  114. /*
  115. * PBES2-params ::= SEQUENCE {
  116. * keyDerivationFunc AlgorithmIdentifier {{PBES2-KDFs}},
  117. * encryptionScheme AlgorithmIdentifier {{PBES2-Encs}}
  118. * }
  119. */
  120. if( pbe_params->tag != ( MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) )
  121. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT +
  122. MBEDTLS_ERR_ASN1_UNEXPECTED_TAG );
  123. if( ( ret = mbedtls_asn1_get_alg( &p, end, &kdf_alg_oid, &kdf_alg_params ) ) != 0 )
  124. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT + ret );
  125. // Only PBKDF2 supported at the moment
  126. //
  127. if( MBEDTLS_OID_CMP( MBEDTLS_OID_PKCS5_PBKDF2, &kdf_alg_oid ) != 0 )
  128. return( MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE );
  129. if( ( ret = pkcs5_parse_pbkdf2_params( &kdf_alg_params,
  130. &salt, &iterations, &keylen,
  131. &md_type ) ) != 0 )
  132. {
  133. return( ret );
  134. }
  135. md_info = mbedtls_md_info_from_type( md_type );
  136. if( md_info == NULL )
  137. return( MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE );
  138. if( ( ret = mbedtls_asn1_get_alg( &p, end, &enc_scheme_oid,
  139. &enc_scheme_params ) ) != 0 )
  140. {
  141. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT + ret );
  142. }
  143. if( mbedtls_oid_get_cipher_alg( &enc_scheme_oid, &cipher_alg ) != 0 )
  144. return( MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE );
  145. cipher_info = mbedtls_cipher_info_from_type( cipher_alg );
  146. if( cipher_info == NULL )
  147. return( MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE );
  148. /*
  149. * The value of keylen from pkcs5_parse_pbkdf2_params() is ignored
  150. * since it is optional and we don't know if it was set or not
  151. */
  152. keylen = cipher_info->key_bitlen / 8;
  153. if( enc_scheme_params.tag != MBEDTLS_ASN1_OCTET_STRING ||
  154. enc_scheme_params.len != cipher_info->iv_size )
  155. {
  156. return( MBEDTLS_ERR_PKCS5_INVALID_FORMAT );
  157. }
  158. mbedtls_md_init( &md_ctx );
  159. mbedtls_cipher_init( &cipher_ctx );
  160. memcpy( iv, enc_scheme_params.p, enc_scheme_params.len );
  161. if( ( ret = mbedtls_md_setup( &md_ctx, md_info, 1 ) ) != 0 )
  162. goto exit;
  163. if( ( ret = mbedtls_pkcs5_pbkdf2_hmac( &md_ctx, pwd, pwdlen, salt.p, salt.len,
  164. iterations, keylen, key ) ) != 0 )
  165. {
  166. goto exit;
  167. }
  168. if( ( ret = mbedtls_cipher_setup( &cipher_ctx, cipher_info ) ) != 0 )
  169. goto exit;
  170. if( ( ret = mbedtls_cipher_setkey( &cipher_ctx, key, 8 * keylen, (mbedtls_operation_t) mode ) ) != 0 )
  171. goto exit;
  172. if( ( ret = mbedtls_cipher_crypt( &cipher_ctx, iv, enc_scheme_params.len,
  173. data, datalen, output, &olen ) ) != 0 )
  174. ret = MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH;
  175. exit:
  176. mbedtls_md_free( &md_ctx );
  177. mbedtls_cipher_free( &cipher_ctx );
  178. return( ret );
  179. }
  180. int mbedtls_pkcs5_pbkdf2_hmac( mbedtls_md_context_t *ctx, const unsigned char *password,
  181. size_t plen, const unsigned char *salt, size_t slen,
  182. unsigned int iteration_count,
  183. uint32_t key_length, unsigned char *output )
  184. {
  185. int ret, j;
  186. unsigned int i;
  187. unsigned char md1[MBEDTLS_MD_MAX_SIZE];
  188. unsigned char work[MBEDTLS_MD_MAX_SIZE];
  189. unsigned char md_size = mbedtls_md_get_size( ctx->md_info );
  190. size_t use_len;
  191. unsigned char *out_p = output;
  192. unsigned char counter[4];
  193. memset( counter, 0, 4 );
  194. counter[3] = 1;
  195. if( iteration_count > 0xFFFFFFFF )
  196. return( MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA );
  197. while( key_length )
  198. {
  199. // U1 ends up in work
  200. //
  201. if( ( ret = mbedtls_md_hmac_starts( ctx, password, plen ) ) != 0 )
  202. return( ret );
  203. if( ( ret = mbedtls_md_hmac_update( ctx, salt, slen ) ) != 0 )
  204. return( ret );
  205. if( ( ret = mbedtls_md_hmac_update( ctx, counter, 4 ) ) != 0 )
  206. return( ret );
  207. if( ( ret = mbedtls_md_hmac_finish( ctx, work ) ) != 0 )
  208. return( ret );
  209. memcpy( md1, work, md_size );
  210. for( i = 1; i < iteration_count; i++ )
  211. {
  212. // U2 ends up in md1
  213. //
  214. if( ( ret = mbedtls_md_hmac_starts( ctx, password, plen ) ) != 0 )
  215. return( ret );
  216. if( ( ret = mbedtls_md_hmac_update( ctx, md1, md_size ) ) != 0 )
  217. return( ret );
  218. if( ( ret = mbedtls_md_hmac_finish( ctx, md1 ) ) != 0 )
  219. return( ret );
  220. // U1 xor U2
  221. //
  222. for( j = 0; j < md_size; j++ )
  223. work[j] ^= md1[j];
  224. }
  225. use_len = ( key_length < md_size ) ? key_length : md_size;
  226. memcpy( out_p, work, use_len );
  227. key_length -= (uint32_t) use_len;
  228. out_p += use_len;
  229. for( i = 4; i > 0; i-- )
  230. if( ++counter[i - 1] != 0 )
  231. break;
  232. }
  233. return( 0 );
  234. }
  235. #if defined(MBEDTLS_SELF_TEST)
  236. #if !defined(MBEDTLS_SHA1_C)
  237. int mbedtls_pkcs5_self_test( int verbose )
  238. {
  239. if( verbose != 0 )
  240. mbedtls_printf( " PBKDF2 (SHA1): skipped\n\n" );
  241. return( 0 );
  242. }
  243. #else
  244. #define MAX_TESTS 6
  245. static const size_t plen[MAX_TESTS] =
  246. { 8, 8, 8, 24, 9 };
  247. static const unsigned char password[MAX_TESTS][32] =
  248. {
  249. "password",
  250. "password",
  251. "password",
  252. "passwordPASSWORDpassword",
  253. "pass\0word",
  254. };
  255. static const size_t slen[MAX_TESTS] =
  256. { 4, 4, 4, 36, 5 };
  257. static const unsigned char salt[MAX_TESTS][40] =
  258. {
  259. "salt",
  260. "salt",
  261. "salt",
  262. "saltSALTsaltSALTsaltSALTsaltSALTsalt",
  263. "sa\0lt",
  264. };
  265. static const uint32_t it_cnt[MAX_TESTS] =
  266. { 1, 2, 4096, 4096, 4096 };
  267. static const uint32_t key_len[MAX_TESTS] =
  268. { 20, 20, 20, 25, 16 };
  269. static const unsigned char result_key[MAX_TESTS][32] =
  270. {
  271. { 0x0c, 0x60, 0xc8, 0x0f, 0x96, 0x1f, 0x0e, 0x71,
  272. 0xf3, 0xa9, 0xb5, 0x24, 0xaf, 0x60, 0x12, 0x06,
  273. 0x2f, 0xe0, 0x37, 0xa6 },
  274. { 0xea, 0x6c, 0x01, 0x4d, 0xc7, 0x2d, 0x6f, 0x8c,
  275. 0xcd, 0x1e, 0xd9, 0x2a, 0xce, 0x1d, 0x41, 0xf0,
  276. 0xd8, 0xde, 0x89, 0x57 },
  277. { 0x4b, 0x00, 0x79, 0x01, 0xb7, 0x65, 0x48, 0x9a,
  278. 0xbe, 0xad, 0x49, 0xd9, 0x26, 0xf7, 0x21, 0xd0,
  279. 0x65, 0xa4, 0x29, 0xc1 },
  280. { 0x3d, 0x2e, 0xec, 0x4f, 0xe4, 0x1c, 0x84, 0x9b,
  281. 0x80, 0xc8, 0xd8, 0x36, 0x62, 0xc0, 0xe4, 0x4a,
  282. 0x8b, 0x29, 0x1a, 0x96, 0x4c, 0xf2, 0xf0, 0x70,
  283. 0x38 },
  284. { 0x56, 0xfa, 0x6a, 0xa7, 0x55, 0x48, 0x09, 0x9d,
  285. 0xcc, 0x37, 0xd7, 0xf0, 0x34, 0x25, 0xe0, 0xc3 },
  286. };
  287. int mbedtls_pkcs5_self_test( int verbose )
  288. {
  289. mbedtls_md_context_t sha1_ctx;
  290. const mbedtls_md_info_t *info_sha1;
  291. int ret, i;
  292. unsigned char key[64];
  293. mbedtls_md_init( &sha1_ctx );
  294. info_sha1 = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 );
  295. if( info_sha1 == NULL )
  296. {
  297. ret = 1;
  298. goto exit;
  299. }
  300. if( ( ret = mbedtls_md_setup( &sha1_ctx, info_sha1, 1 ) ) != 0 )
  301. {
  302. ret = 1;
  303. goto exit;
  304. }
  305. for( i = 0; i < MAX_TESTS; i++ )
  306. {
  307. if( verbose != 0 )
  308. mbedtls_printf( " PBKDF2 (SHA1) #%d: ", i );
  309. ret = mbedtls_pkcs5_pbkdf2_hmac( &sha1_ctx, password[i], plen[i], salt[i],
  310. slen[i], it_cnt[i], key_len[i], key );
  311. if( ret != 0 ||
  312. memcmp( result_key[i], key, key_len[i] ) != 0 )
  313. {
  314. if( verbose != 0 )
  315. mbedtls_printf( "failed\n" );
  316. ret = 1;
  317. goto exit;
  318. }
  319. if( verbose != 0 )
  320. mbedtls_printf( "passed\n" );
  321. }
  322. if( verbose != 0 )
  323. mbedtls_printf( "\n" );
  324. exit:
  325. mbedtls_md_free( &sha1_ctx );
  326. return( ret );
  327. }
  328. #endif /* MBEDTLS_SHA1_C */
  329. #endif /* MBEDTLS_SELF_TEST */
  330. #endif /* MBEDTLS_PKCS5_C */