summaryrefslogtreecommitdiff
path: root/sosemanuk.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2008-02-02 08:40:27 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2008-02-02 08:40:27 +0000
commitfed5890194f50d587a9dc57f20d89e3369af125a (patch)
tree847503be51751e8e42fa6e5ed20c34d79dd76f4c /sosemanuk.h
parentb261da65cbee4c18036f0f98748b924b10500f6b (diff)
downloadcryptopp-fed5890194f50d587a9dc57f20d89e3369af125a.tar.gz
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
Diffstat (limited to 'sosemanuk.h')
-rwxr-xr-xsosemanuk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sosemanuk.h b/sosemanuk.h
index c68144c..ee78914 100755
--- a/sosemanuk.h
+++ b/sosemanuk.h
@@ -18,7 +18,7 @@ protected:
void CipherSetKey(const NameValuePairs &params, 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 false;}
+ bool CipherIsRandomAccess() const {return false;}
#if CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X64
unsigned int GetAlignment() const;
unsigned int GetOptimalBlockSize() const;