~zooko/cryptopp/trunk

« back to all changes in this revision

Viewing changes to gf2_32.cpp

  • Committer: weidai
  • Date: 2007-05-04 15:04:58 UTC
  • Revision ID: svn-v4:57ff6487-cd31-0410-9ec3-f628ee90f5f0:trunk/c5:328
reduce risk of random number reuse after VM rollback

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
                table[3] = m_modulus ^ (a<<1);
23
23
        }
24
24
 
25
 
#ifdef FAST_ROTATE
 
25
#if CRYPTOPP_FAST_ROTATE(32)
26
26
        b = rotrFixed(b, 30U);
27
27
        word32 result = table[b&2];
28
28