~zooko/cryptopp/trunk

« back to all changes in this revision

Viewing changes to rabin.h

  • Committer: weidai
  • Date: 2005-01-20 04:19:35 UTC
  • Revision ID: svn-v4:57ff6487-cd31-0410-9ec3-f628ee90f5f0:trunk/c5:195
changes done for FIPS-140 lab code drop

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
{
98
98
};
99
99
 
100
 
class SHA;
101
 
 
102
100
// More typedefs for backwards compatibility
103
 
 
104
 
typedef RabinES<OAEP<SHA> >::Decryptor RabinDecryptor;
105
 
typedef RabinES<OAEP<SHA> >::Encryptor RabinEncryptor;
 
101
class SHA1;
 
102
typedef RabinES<OAEP<SHA1> >::Decryptor RabinDecryptor;
 
103
typedef RabinES<OAEP<SHA1> >::Encryptor RabinEncryptor;
106
104
 
107
105
NAMESPACE_END
108
106