From 58d9f812c149943cc18bd5b926b22fcc7b9b8b27 Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 25 Jul 2003 00:15:52 +0000 Subject: 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 --- blumshub.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'blumshub.cpp') diff --git a/blumshub.cpp b/blumshub.cpp index 40c654a..6e1854d 100644 --- a/blumshub.cpp +++ b/blumshub.cpp @@ -39,9 +39,9 @@ BlumBlumShub::BlumBlumShub(const Integer &p, const Integer &q, const Integer &se { } -void BlumBlumShub::Seek(dword index) +void BlumBlumShub::Seek(lword index) { - Integer i(Integer::POSITIVE, HIGH_WORD(index), word(index)); + Integer i(Integer::POSITIVE, index); i *= 8; Integer e = a_exp_b_mod_c (2, i / maxBits + 1, (p-1)*(q-1)); current = modn.Exponentiate(x0, e); -- cgit v1.2.1