1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

- Fixed name of xtea_crypt_ecb()

This commit is contained in:
Paul Bakker
2009-07-08 06:43:40 +00:00
parent f725a88e54
commit e5c19aab6e

View File

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