mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
Fix missing semicolon for HAL_CRYP_AESECB_Decrypt
call. Fix for NO_MULTIBYTE_PRINT
in test.h. These fixes were pulled in from PR #1974.
This commit is contained in:
@ -397,7 +397,7 @@
|
|||||||
outBlock, STM32_HAL_TIMEOUT);
|
outBlock, STM32_HAL_TIMEOUT);
|
||||||
#else
|
#else
|
||||||
ret = HAL_CRYP_AESECB_Decrypt(&hcryp, (uint8_t*)inBlock, AES_BLOCK_SIZE,
|
ret = HAL_CRYP_AESECB_Decrypt(&hcryp, (uint8_t*)inBlock, AES_BLOCK_SIZE,
|
||||||
outBlock, STM32_HAL_TIMEOUT)
|
outBlock, STM32_HAL_TIMEOUT);
|
||||||
#endif
|
#endif
|
||||||
if (ret != HAL_OK) {
|
if (ret != HAL_OK) {
|
||||||
ret = WC_TIMEOUT_E;
|
ret = WC_TIMEOUT_E;
|
||||||
|
@ -525,6 +525,7 @@ static const char* client_showpeer_msg[][8] = {
|
|||||||
"peer's cert info:",
|
"peer's cert info:",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
#ifndef NO_MULTIBYTE_PRINT
|
||||||
/* Japanese */
|
/* Japanese */
|
||||||
{
|
{
|
||||||
"SSL バージョンは",
|
"SSL バージョンは",
|
||||||
@ -535,7 +536,8 @@ static const char* client_showpeer_msg[][8] = {
|
|||||||
"代替証明チェーンを使用",
|
"代替証明チェーンを使用",
|
||||||
"相手方証明書情報",
|
"相手方証明書情報",
|
||||||
NULL
|
NULL
|
||||||
}
|
},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(KEEP_PEER_CERT) || defined(SESSION_CERTS)
|
#if defined(KEEP_PEER_CERT) || defined(SESSION_CERTS)
|
||||||
@ -548,6 +550,7 @@ static const char* client_showx509_msg[][5] = {
|
|||||||
"serial number",
|
"serial number",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
#ifndef NO_MULTIBYTE_PRINT
|
||||||
/* Japanese */
|
/* Japanese */
|
||||||
{
|
{
|
||||||
"発行者",
|
"発行者",
|
||||||
@ -556,6 +559,7 @@ static const char* client_showx509_msg[][5] = {
|
|||||||
"シリアル番号",
|
"シリアル番号",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
/* lng_index is to specify the language for displaying message. */
|
/* lng_index is to specify the language for displaying message. */
|
||||||
|
Reference in New Issue
Block a user