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 --- seal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'seal.h') diff --git a/seal.h b/seal.h index c175a64..f914253 100644 --- a/seal.h +++ b/seal.h @@ -19,7 +19,7 @@ protected: void CipherSetKey(const NameValuePairs ¶ms, const byte *key, size_t length); void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount); void CipherResynchronize(byte *keystreamBuffer, const byte *IV); - bool IsRandomAccess() const {return true;} + bool CipherIsRandomAccess() const {return true;} void SeekToIteration(lword iterationCount); private: -- cgit v1.2.1