mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 14:48:38 +00:00
- Added missing semicolon
This commit is contained in:
parent
dcca6b74dc
commit
02722ea867
1 changed files with 3 additions and 1 deletions
|
@ -207,6 +207,7 @@ des3_encrypt_cbc:key_count:hex_key_string:hex_iv_string:hex_src_string:hex_dst_s
|
|||
TEST_ASSERT( 0 );
|
||||
|
||||
TEST_ASSERT( des3_crypt_cbc( &ctx, DES_ENCRYPT, src_len, iv_str, src_str, output ) == {cbc_result} );
|
||||
|
||||
if( {cbc_result} == 0 )
|
||||
{
|
||||
hexify( dst_str, output, src_len );
|
||||
|
@ -244,7 +245,8 @@ des3_decrypt_cbc:key_count:hex_key_string:hex_iv_string:hex_src_string:hex_dst_s
|
|||
else
|
||||
TEST_ASSERT( 0 );
|
||||
|
||||
TEST_ASSERT( des3_crypt_cbc( &ctx, DES_DECRYPT, src_len, iv_str, src_str, output ) == {cbc_result} )
|
||||
TEST_ASSERT( des3_crypt_cbc( &ctx, DES_DECRYPT, src_len, iv_str, src_str, output ) == {cbc_result} );
|
||||
|
||||
if( {cbc_result} == 0 )
|
||||
{
|
||||
hexify( dst_str, output, src_len );
|
||||
|
|
Loading…
Reference in a new issue