mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-02 16:11:01 +00:00
Merge remote-tracking branch 'myfork/pr_726' into mbedtls-2.7-proposed
This commit is contained in:
commit
8980da5caf
|
@ -1,5 +1,11 @@
|
||||||
mbed TLS ChangeLog (Sorted per branch, date)
|
mbed TLS ChangeLog (Sorted per branch, date)
|
||||||
|
|
||||||
|
= mbed TLS x.x.x branch released xxxx-xx-xx
|
||||||
|
|
||||||
|
Bugfix
|
||||||
|
* Fix spurious uninitialized variable warning in cmac.c. Fix independently
|
||||||
|
contributed by Brian J Murray and David Brown.
|
||||||
|
|
||||||
= mbed TLS 2.7.2 branch released 2018-03-16
|
= mbed TLS 2.7.2 branch released 2018-03-16
|
||||||
|
|
||||||
Security
|
Security
|
||||||
|
|
|
@ -771,7 +771,7 @@ static int cmac_test_subkeys( int verbose,
|
||||||
int block_size,
|
int block_size,
|
||||||
int num_tests )
|
int num_tests )
|
||||||
{
|
{
|
||||||
int i, ret;
|
int i, ret = 0;
|
||||||
mbedtls_cipher_context_t ctx;
|
mbedtls_cipher_context_t ctx;
|
||||||
const mbedtls_cipher_info_t *cipher_info;
|
const mbedtls_cipher_info_t *cipher_info;
|
||||||
unsigned char K1[MBEDTLS_CIPHER_BLKSIZE_MAX];
|
unsigned char K1[MBEDTLS_CIPHER_BLKSIZE_MAX];
|
||||||
|
@ -853,7 +853,7 @@ static int cmac_test_wth_cipher( int verbose,
|
||||||
int num_tests )
|
int num_tests )
|
||||||
{
|
{
|
||||||
const mbedtls_cipher_info_t *cipher_info;
|
const mbedtls_cipher_info_t *cipher_info;
|
||||||
int i, ret;
|
int i, ret = 0;
|
||||||
unsigned char output[MBEDTLS_CIPHER_BLKSIZE_MAX];
|
unsigned char output[MBEDTLS_CIPHER_BLKSIZE_MAX];
|
||||||
|
|
||||||
cipher_info = mbedtls_cipher_info_from_type( cipher_type );
|
cipher_info = mbedtls_cipher_info_from_type( cipher_type );
|
||||||
|
|
Loading…
Reference in a new issue