adjust indentation per Mbed TLS standards

This commit is contained in:
Moran Peker 2018-04-22 20:15:31 +03:00 committed by itayzafrir
parent b152d4d8b6
commit 4c80d8331a

View file

@ -1358,7 +1358,7 @@ static psa_status_t psa_cipher_setup(psa_cipher_operation_t *operation,
return ( PSA_ERROR_INVALID_ARGUMENT );
}
ret = mbedtls_cipher_set_padding_mode( &operation->ctx.cipher, mode );
if( ret != 0 )
if (ret != 0)
return( mbedtls_to_psa_error( ret ) );
}
#endif //MBEDTLS_CIPHER_MODE_WITH_PADDING
@ -1413,7 +1413,7 @@ psa_status_t psa_encrypt_generate_iv(psa_cipher_operation_t *operation,
exit:
if( ret != PSA_SUCCESS )
psa_cipher_abort( operation );
psa_cipher_abort( operation );
return( ret );
}
@ -1478,7 +1478,7 @@ psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation,
return( mbedtls_to_psa_error( ret ) );
}
return ( PSA_SUCCESS );
return( PSA_SUCCESS );
}
psa_status_t psa_cipher_abort(psa_cipher_operation_t *operation)