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 --- wake.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wake.h') diff --git a/wake.h b/wake.h index 2fa00a8..e3c9390 100644 --- a/wake.h +++ b/wake.h @@ -44,7 +44,7 @@ protected: void Iterate(byte *output, const byte *input, CipherDir dir, size_t iterationCount); // OFB void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount); - bool IsRandomAccess() const {return false;} + bool CipherIsRandomAccess() const {return false;} }; namespace Weak { -- cgit v1.2.1