From e5c19aab6ebd4eb40af81b5a8d219a00a2bdb911 Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Wed, 8 Jul 2009 06:43:40 +0000 Subject: [PATCH] - Fixed name of xtea_crypt_ecb() --- include/polarssl/xtea.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/polarssl/xtea.h b/include/polarssl/xtea.h index fe16ba3e9..86b51d817 100644 --- a/include/polarssl/xtea.h +++ b/include/polarssl/xtea.h @@ -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] );