mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 01:15:31 +00:00
aria: fix more whitespace
This commit is contained in:
parent
906bc90b30
commit
d82d79154c
|
@ -9,7 +9,7 @@
|
|||
|
||||
/* BEGIN_CASE */
|
||||
void aria_encrypt_ecb( char *hex_key_string, char *hex_src_string,
|
||||
char *hex_dst_string, int setkey_result )
|
||||
char *hex_dst_string, int setkey_result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char src_str[1000];
|
||||
|
@ -48,7 +48,7 @@ exit:
|
|||
|
||||
/* BEGIN_CASE */
|
||||
void aria_decrypt_ecb( char *hex_key_string, char *hex_src_string,
|
||||
char *hex_dst_string, int setkey_result )
|
||||
char *hex_dst_string, int setkey_result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char src_str[1000];
|
||||
|
@ -87,8 +87,8 @@ exit:
|
|||
|
||||
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
||||
void aria_encrypt_cbc( char *hex_key_string, char *hex_iv_string,
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int cbc_result )
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int cbc_result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char iv_str[1000];
|
||||
|
@ -127,8 +127,8 @@ exit:
|
|||
|
||||
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
||||
void aria_decrypt_cbc( char *hex_key_string, char *hex_iv_string,
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int cbc_result )
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int cbc_result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char iv_str[1000];
|
||||
|
@ -167,8 +167,8 @@ exit:
|
|||
|
||||
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
||||
void aria_encrypt_cfb128( char *hex_key_string, char *hex_iv_string,
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char iv_str[1000];
|
||||
|
@ -205,8 +205,8 @@ exit:
|
|||
|
||||
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
||||
void aria_decrypt_cfb128( char *hex_key_string, char *hex_iv_string,
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char iv_str[1000];
|
||||
|
@ -243,8 +243,8 @@ exit:
|
|||
|
||||
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CTR */
|
||||
void aria_encrypt_ctr( char *hex_key_string, char *hex_iv_string,
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char iv_str[1000];
|
||||
|
@ -281,8 +281,8 @@ exit:
|
|||
|
||||
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CTR */
|
||||
void aria_decrypt_ctr( char *hex_key_string, char *hex_iv_string,
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
char *hex_src_string, char *hex_dst_string,
|
||||
int result )
|
||||
{
|
||||
unsigned char key_str[1000];
|
||||
unsigned char iv_str[1000];
|
||||
|
|
Loading…
Reference in a new issue