summaryrefslogtreecommitdiff
path: root/rc2.h
diff options
context:
space:
mode:
Diffstat (limited to 'rc2.h')
-rw-r--r--rc2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc2.h b/rc2.h
index 96ed6d4d..b917abfb 100644
--- a/rc2.h
+++ b/rc2.h
@@ -13,7 +13,7 @@
NAMESPACE_BEGIN(CryptoPP)
//! \class RC2_Info
-//! \brief The RC2 cipher's key, iv, block size and name information.
+//! \brief RC2 block cipher information
struct RC2_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 1, 128>
{
CRYPTOPP_CONSTANT(DEFAULT_EFFECTIVE_KEYLENGTH = 1024)
@@ -22,7 +22,7 @@ struct RC2_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 1, 128>
};
//! \class RC2
-//! \brief The RC2 stream cipher
+//! \brief RC2 block cipher
//! \sa <a href="http://www.weidai.com/scan-mirror/cs.html#RC2">RC2</a> on the Crypto Lounge.
class RC2 : public RC2_Info, public BlockCipherDocumentation
{