Make error messages in crypt_and_hash better.
diff --git a/programs/aes/crypt_and_hash.c b/programs/aes/crypt_and_hash.c
index 4af39a5..a14d20c 100644
--- a/programs/aes/crypt_and_hash.c
+++ b/programs/aes/crypt_and_hash.c
@@ -187,7 +187,7 @@
if( mbedtls_md_setup( &md_ctx, md_info, 1 ) != 0 )
{
- mbedtls_fprintf( stderr, "mbedtls_md_setup unsuccessful: This shouldn't happen.\n" );
+ mbedtls_fprintf( stderr, "mbedtls_md_setup failed\n" );
goto exit;
}
@@ -404,12 +404,9 @@
goto exit;
}
- /*
- * Make coverity happy.
- */
if( mbedtls_cipher_get_block_size( &cipher_ctx ) == 0 )
{
- mbedtls_fprintf( stderr, "mbedtls_cipher_get_block_size returned with 0. This shouldn't happen.\n" );
+ mbedtls_fprintf( stderr, "Invalid cipher block size: 0. \n" );
goto exit;
}