Whitespace normalization
No semantic change.
This commit is contained in:
parent
5351420b3e
commit
2c5219a06d
1 changed files with 5 additions and 4 deletions
|
@ -1502,7 +1502,8 @@ psa_status_t psa_cipher_finish( psa_cipher_operation_t *operation,
|
||||||
psa_cipher_abort( operation );
|
psa_cipher_abort( operation );
|
||||||
return( PSA_ERROR_BAD_STATE );
|
return( PSA_ERROR_BAD_STATE );
|
||||||
}
|
}
|
||||||
if( ( operation->ctx.cipher.operation == MBEDTLS_ENCRYPT ) && PSA_ALG_IS_BLOCK_CIPHER( operation->alg ) )
|
if( operation->ctx.cipher.operation == MBEDTLS_ENCRYPT &&
|
||||||
|
PSA_ALG_IS_BLOCK_CIPHER( operation->alg ) )
|
||||||
{
|
{
|
||||||
psa_algorithm_t padding_mode =
|
psa_algorithm_t padding_mode =
|
||||||
operation->alg & PSA_ALG_BLOCK_CIPHER_PADDING_MASK;
|
operation->alg & PSA_ALG_BLOCK_CIPHER_PADDING_MASK;
|
||||||
|
|
Loading…
Reference in a new issue