From 63325cfd06af62288e1173c1c2833ecc89831bbe Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 8 Jan 2012 01:00:02 +0900 Subject: [PATCH] Fixed compile error without libnettle, libgcrypt and openssl. --- src/ARC4Encryptor.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ARC4Encryptor.h b/src/ARC4Encryptor.h index c9df2d50..1eb101ad 100644 --- a/src/ARC4Encryptor.h +++ b/src/ARC4Encryptor.h @@ -56,8 +56,7 @@ public: void init(const unsigned char* key, size_t keyLength) {} - void encrypt(unsigned char* out, size_t outLength, - const unsigned char* in, size_t inLength) {} + void encrypt(size_t len, unsigned char* out, const unsigned char* in); }; } // namespace aria2