summaryrefslogtreecommitdiff
path: root/seal.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-25 00:15:52 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-25 00:15:52 +0000
commit58d9f812c149943cc18bd5b926b22fcc7b9b8b27 (patch)
tree9227398b87250aa1eca81b0853a967fe9d003103 /seal.h
parent60ae2279fbb3b8082a7963ce73dcd2b6b2d4a50e (diff)
downloadcryptopp-58d9f812c149943cc18bd5b926b22fcc7b9b8b27.tar.gz
fix bugs in 64-bit CPU support
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@112 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'seal.h')
-rw-r--r--seal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/seal.h b/seal.h
index 2e19002..9157720 100644
--- a/seal.h
+++ b/seal.h
@@ -23,7 +23,7 @@ protected:
void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, unsigned int iterationCount);
void CipherResynchronize(byte *keystreamBuffer, const byte *IV);
bool IsRandomAccess() const {return true;}
- void SeekToIteration(dword iterationCount);
+ void SeekToIteration(lword iterationCount);
private:
FixedSizeSecBlock<word32, 512> m_T;