mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 04:05:30 +00:00
Merge pull request #248 from RonEld/stack_overflow_in_hmac_fix
Fix a buffer overflow in hmac_setup_internal
This commit is contained in:
commit
cc5aeee278
|
@ -2735,7 +2735,7 @@ static psa_status_t psa_hmac_setup_internal( psa_hmac_internal_data *hmac,
|
||||||
status = psa_hash_update( &hmac->hash_ctx, ipad, block_size );
|
status = psa_hash_update( &hmac->hash_ctx, ipad, block_size );
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
mbedtls_platform_zeroize( ipad, key_length );
|
mbedtls_platform_zeroize( ipad, sizeof(ipad) );
|
||||||
|
|
||||||
return( status );
|
return( status );
|
||||||
}
|
}
|
||||||
|
|
|
@ -799,6 +799,14 @@ depends_on:MBEDTLS_CMAC_C
|
||||||
# Either INVALID_ARGUMENT or NOT_SUPPORTED would be reasonable here
|
# Either INVALID_ARGUMENT or NOT_SUPPORTED would be reasonable here
|
||||||
mac_setup:PSA_KEY_TYPE_HMAC:"000102030405060708090a0b0c0d0e0f":PSA_ALG_CMAC:PSA_ERROR_NOT_SUPPORTED
|
mac_setup:PSA_KEY_TYPE_HMAC:"000102030405060708090a0b0c0d0e0f":PSA_ALG_CMAC:PSA_ERROR_NOT_SUPPORTED
|
||||||
|
|
||||||
|
PSA MAC setup: algorithm known but not supported, long key
|
||||||
|
depends_on:!MBEDTLS_MD5_C
|
||||||
|
mac_setup:PSA_KEY_TYPE_HMAC:"000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f":PSA_ALG_HMAC(PSA_ALG_MD5):PSA_ERROR_NOT_SUPPORTED
|
||||||
|
|
||||||
|
PSA MAC setup: algorithm known but not supported, short key
|
||||||
|
depends_on:!MBEDTLS_MD5_C
|
||||||
|
mac_setup:PSA_KEY_TYPE_HMAC:"000102030405060708":PSA_ALG_HMAC(PSA_ALG_MD5):PSA_ERROR_NOT_SUPPORTED
|
||||||
|
|
||||||
PSA MAC: bad order function calls
|
PSA MAC: bad order function calls
|
||||||
depends_on:MBEDTLS_MD_C:MBEDTLS_SHA256_C
|
depends_on:MBEDTLS_MD_C:MBEDTLS_SHA256_C
|
||||||
mac_bad_order:
|
mac_bad_order:
|
||||||
|
|
Loading…
Reference in a new issue