Whitespce normalization
No semantic change.
This commit is contained in:
parent
2c5219a06d
commit
691dfb3e3a
1 changed files with 24 additions and 23 deletions
|
@ -637,7 +637,8 @@ void cipher_test_encrypt_multipart( int alg_arg, int key_type_arg,
|
|||
TEST_ASSERT( psa_cipher_update( &operation, input, first_part_size,
|
||||
output, output_size,
|
||||
&output_length) == PSA_SUCCESS );
|
||||
TEST_ASSERT( psa_cipher_update( &operation, input + first_part_size, input_size - first_part_size,
|
||||
TEST_ASSERT( psa_cipher_update( &operation, input + first_part_size,
|
||||
input_size - first_part_size,
|
||||
output, output_size,
|
||||
&output_length) == PSA_SUCCESS );
|
||||
TEST_ASSERT( psa_cipher_finish( &operation, output + output_length,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue