2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/pkcs5.h"
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_HEADER */
|
2013-06-24 17:26:38 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 10:49:31 +00:00
|
|
|
* depends_on:MBEDTLS_PKCS5_C
|
2013-08-20 09:48:36 +00:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2013-06-24 17:26:38 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 13:23:15 +00:00
|
|
|
void pbkdf2_hmac( int hash, uint8_t * pw_str, uint32_t pw_len,
|
|
|
|
uint8_t * salt_str, uint32_t salt_len, int it_cnt,
|
|
|
|
int key_len, uint8_t * result_key_string,
|
|
|
|
uint32_t result_key_string_len )
|
2013-06-24 17:26:38 +00:00
|
|
|
{
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_md_context_t ctx;
|
|
|
|
const mbedtls_md_info_t *info;
|
2013-06-24 17:26:38 +00:00
|
|
|
|
|
|
|
unsigned char key[100];
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_md_init( &ctx );
|
2014-07-01 13:45:49 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
info = mbedtls_md_info_from_type( hash );
|
2013-06-24 17:26:38 +00:00
|
|
|
TEST_ASSERT( info != NULL );
|
2015-04-08 10:49:31 +00:00
|
|
|
TEST_ASSERT( mbedtls_md_setup( &ctx, info, 1 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_pkcs5_pbkdf2_hmac( &ctx, pw_str, pw_len, salt_str, salt_len,
|
2013-08-20 09:48:36 +00:00
|
|
|
it_cnt, key_len, key ) == 0 );
|
2013-06-24 17:26:38 +00:00
|
|
|
|
2017-05-30 13:23:15 +00:00
|
|
|
TEST_ASSERT( hexcmp( key, result_key_string, key_len, result_key_string_len ) == 0 );
|
2014-07-10 13:26:12 +00:00
|
|
|
|
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_md_free( &ctx );
|
2013-06-24 17:26:38 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2014-06-12 11:14:55 +00:00
|
|
|
|
2018-03-27 19:53:56 +00:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C */
|
2015-04-08 10:49:31 +00:00
|
|
|
void mbedtls_pkcs5_pbes2( int params_tag, char *params_hex, char *pw_hex,
|
2014-06-12 11:14:55 +00:00
|
|
|
char *data_hex, int ref_ret, char *ref_out_hex )
|
|
|
|
{
|
|
|
|
int my_ret;
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_asn1_buf params;
|
2014-07-10 13:26:12 +00:00
|
|
|
unsigned char *my_out = NULL, *ref_out = NULL, *data = NULL, *pw = NULL;
|
2014-06-12 11:14:55 +00:00
|
|
|
size_t ref_out_len, data_len, pw_len;
|
|
|
|
|
|
|
|
params.tag = params_tag;
|
|
|
|
params.p = unhexify_alloc( params_hex, ¶ms.len );
|
|
|
|
|
|
|
|
data = unhexify_alloc( data_hex, &data_len );
|
|
|
|
pw = unhexify_alloc( pw_hex, &pw_len );
|
|
|
|
ref_out = unhexify_alloc( ref_out_hex, &ref_out_len );
|
2014-06-13 19:09:26 +00:00
|
|
|
my_out = zero_alloc( ref_out_len );
|
2014-06-12 11:14:55 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
my_ret = mbedtls_pkcs5_pbes2( ¶ms, MBEDTLS_PKCS5_DECRYPT,
|
2014-06-12 11:14:55 +00:00
|
|
|
pw, pw_len, data, data_len, my_out );
|
|
|
|
TEST_ASSERT( my_ret == ref_ret );
|
|
|
|
|
|
|
|
if( ref_ret == 0 )
|
|
|
|
TEST_ASSERT( memcmp( my_out, ref_out, ref_out_len ) == 0 );
|
|
|
|
|
2014-07-10 13:26:12 +00:00
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_free( params.p );
|
|
|
|
mbedtls_free( data );
|
|
|
|
mbedtls_free( pw );
|
|
|
|
mbedtls_free( ref_out );
|
|
|
|
mbedtls_free( my_out );
|
2014-06-12 11:14:55 +00:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
2016-07-19 13:54:57 +00:00
|
|
|
|
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
2017-05-30 13:23:15 +00:00
|
|
|
void pkcs5_selftest( )
|
2016-07-19 13:54:57 +00:00
|
|
|
{
|
2016-09-09 08:10:28 +00:00
|
|
|
TEST_ASSERT( mbedtls_pkcs5_self_test( 1 ) == 0 );
|
2016-07-19 13:54:57 +00:00
|
|
|
}
|
|
|
|
/* END_CASE */
|