summaryrefslogtreecommitdiff
path: root/rc2.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-04 00:17:37 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-04 00:17:37 +0000
commit572fe07633123ce38abf28c6426356e37aef3a99 (patch)
tree0536d87e504a82920156c239bc5ae6aa43e70ebc /rc2.h
parent3e8c979ddc194e043567c036321e67c89f847362 (diff)
downloadcryptopp-572fe07633123ce38abf28c6426356e37aef3a99.tar.gz
create DLL version, fix GetNextIV() bug in CTR and OFB modes
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@87 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'rc2.h')
-rw-r--r--rc2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc2.h b/rc2.h
index 963f17c..20b5ac1 100644
--- a/rc2.h
+++ b/rc2.h
@@ -18,7 +18,7 @@ struct RC2_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 1, 128>
/// <a href="http://www.weidai.com/scan-mirror/cs.html#RC2">RC2</a>
class RC2 : public RC2_Info, public BlockCipherDocumentation
{
- class CRYPTOPP_NO_VTABLE Base : public BlockCipherBaseTemplate<RC2_Info>
+ class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<RC2_Info>
{
public:
void UncheckedSetKey(CipherDir direction, const byte *key, unsigned int length, unsigned int effectiveKeyLength);
@@ -49,7 +49,7 @@ class RC2 : public RC2_Info, public BlockCipherDocumentation
};
public:
- class Encryption : public BlockCipherTemplate<ENCRYPTION, Enc>
+ class Encryption : public BlockCipherFinal<ENCRYPTION, Enc>
{
public:
Encryption() {}
@@ -57,7 +57,7 @@ public:
{SetKeyWithEffectiveKeyLength(key, keyLen, effectiveLen);}
};
- class Decryption : public BlockCipherTemplate<DECRYPTION, Dec>
+ class Decryption : public BlockCipherFinal<DECRYPTION, Dec>
{
public:
Decryption() {}