- Changed text for return 0 lines

This commit is contained in:
Paul Bakker 2010-03-21 15:43:59 +00:00
parent baad6504d4
commit 27caa8a17e
5 changed files with 7 additions and 7 deletions

View file

@ -74,7 +74,7 @@ int aes_setkey_dec( aes_context *ctx, const unsigned char *key, int keysize );
* \param input 16-byte input block
* \param output 16-byte output block
*
* \return 0
* \return 0 if successful
*/
int aes_crypt_ecb( aes_context *ctx,
int mode,
@ -113,7 +113,7 @@ int aes_crypt_cbc( aes_context *ctx,
* \param input buffer holding the input data
* \param output buffer holding the output data
*
* \return 0
* \return 0 if successful
*/
int aes_crypt_cfb128( aes_context *ctx,
int mode,

View file

@ -55,7 +55,7 @@ void arc4_setup( arc4_context *ctx, const unsigned char *key, int keylen );
* \param input buffer holding the input data
* \param output buffer for the output data
*
* \return 0
* \return 0 if successful
*/
int arc4_crypt( arc4_context *ctx, int length, const unsigned char *input,
unsigned char *output );

View file

@ -78,7 +78,7 @@ int camellia_setkey_dec( camellia_context *ctx, const unsigned char *key, int ke
* \param input 16-byte input block
* \param output 16-byte output block
*
* \return 0
* \return 0 if successful
*/
int camellia_crypt_ecb( camellia_context *ctx,
int mode,

View file

@ -107,7 +107,7 @@ void des3_set3key_dec( des3_context *ctx, const unsigned char key[24] );
* \param input 64-bit input block
* \param output 64-bit output block
*
* \return 0
* \return 0 if successful
*/
int des_crypt_ecb( des_context *ctx,
const unsigned char input[8],
@ -137,7 +137,7 @@ int des_crypt_cbc( des_context *ctx,
* \param input 64-bit input block
* \param output 64-bit output block
*
* \return 0
* \return 0 if successful
*/
int des3_crypt_ecb( des3_context *ctx,
const unsigned char input[8],

View file

@ -61,7 +61,7 @@ void xtea_setup( xtea_context *ctx, unsigned char key[16] );
* \param input 8-byte input block
* \param output 8-byte output block
*
* \return 0
* \return 0 if successful
*/
int xtea_crypt_ecb( xtea_context *ctx,
int mode,