Searched refs:md1 (Results 1 – 2 of 2) sorted by relevance
/mbedtls-development/library/ |
A D | pkcs5.c | 227 unsigned char md1[MBEDTLS_MD_MAX_SIZE]; in mbedtls_pkcs5_pbkdf2_hmac() local 260 memcpy( md1, work, md_size ); in mbedtls_pkcs5_pbkdf2_hmac() 266 if( ( ret = mbedtls_md_hmac_update( ctx, md1, md_size ) ) != 0 ) in mbedtls_pkcs5_pbkdf2_hmac() 269 if( ( ret = mbedtls_md_hmac_finish( ctx, md1 ) ) != 0 ) in mbedtls_pkcs5_pbkdf2_hmac() 278 work[j] ^= md1[j]; in mbedtls_pkcs5_pbkdf2_hmac() 295 mbedtls_platform_zeroize( md1, MBEDTLS_MD_MAX_SIZE ); in mbedtls_pkcs5_pbkdf2_hmac()
|
/mbedtls-development/tests/suites/ |
A D | test_suite_ssl.function | 1201 unsigned char *md0 = NULL, *md1 = NULL; 1276 CHK( ( md1 = mbedtls_calloc( 1, maclen ) ) != NULL ); 1278 memset( md1, 0x6, maclen ); 1288 md1, maclen ) == 0 ); 1290 md1, maclen ) == 0 ); 1429 mbedtls_free( md1 );
|
Completed in 8 milliseconds