summaryrefslogtreecommitdiff
path: root/rc2.h
diff options
context:
space:
mode:
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() {}