From fed5890194f50d587a9dc57f20d89e3369af125a Mon Sep 17 00:00:00 2001 From: weidai Date: Sat, 2 Feb 2008 08:40:27 +0000 Subject: fix infinite recursive call in IsRandomAccess (reported by ASBai) git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@421 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- panama.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'panama.h') diff --git a/panama.h b/panama.h index 672076d..466e528 100644 --- a/panama.h +++ b/panama.h @@ -122,7 +122,7 @@ class PanamaCipherPolicy : public AdditiveCipherConcretePolicy, protected: void CipherSetKey(const NameValuePairs ¶ms, const byte *key, size_t length); void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount); - bool IsRandomAccess() const {return false;} + bool CipherIsRandomAccess() const {return false;} void CipherResynchronize(byte *keystreamBuffer, const byte *iv); #if CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X64 unsigned int GetAlignment() const; -- cgit v1.2.1