summaryrefslogtreecommitdiff
path: root/des.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-28 05:03:55 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-28 05:03:55 -0400
commitb2b65d6376ff268d1d49bd3e8f8d0899c6bac783 (patch)
tree70fc4b0bcf31f9c3822ea845dff01f34b7e58c89 /des.h
parent1e822b063676353504142c9c82088a8b2f49cc7d (diff)
downloadcryptopp-git-b2b65d6376ff268d1d49bd3e8f8d0899c6bac783.tar.gz
Update documentation
Diffstat (limited to 'des.h')
-rw-r--r--des.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/des.h b/des.h
index 1fd5c32a..e526ede5 100644
--- a/des.h
+++ b/des.h
@@ -38,7 +38,7 @@ struct DES_Info : public FixedBlockSize<8>, public FixedKeyLength<8>
//! \details The DES implementation in Crypto++ ignores the parity bits
//! (the least significant bits of each byte) in the key. However you can use CheckKeyParityBits()
//! and CorrectKeyParityBits() to check or correct the parity bits if you wish.
-//! \sa <a href="http://www.cryptopp.com/wiki/DES">DES</a>
+//! \sa <a href="http://www.cryptopp.com/wiki/TripleDES">DES</a>
//! \since Crypto++ 1.0
class DES : public DES_Info, public BlockCipherDocumentation
{
@@ -70,7 +70,7 @@ struct DES_EDE2_Info : public FixedBlockSize<8>, public FixedKeyLength<16>
//! \class DES_EDE2
//! \brief 2-key TripleDES block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/DESede">DES-EDE2</a>
+//! \sa <a href="http://www.cryptopp.com/wiki/TripleDES">DES-EDE2</a>
//! \since Crypto++ 1.0
class DES_EDE2 : public DES_EDE2_Info, public BlockCipherDocumentation
{
@@ -100,7 +100,7 @@ struct DES_EDE3_Info : public FixedBlockSize<8>, public FixedKeyLength<24>
//! \class DES_EDE3
//! \brief 3-key TripleDES block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/DESede">DES-EDE3</a>
+//! \sa <a href="http://www.cryptopp.com/wiki/TripleDES">DES-EDE3</a>
//! \since Crypto++ 1.0
class DES_EDE3 : public DES_EDE3_Info, public BlockCipherDocumentation
{
@@ -130,7 +130,7 @@ struct DES_XEX3_Info : public FixedBlockSize<8>, public FixedKeyLength<24>
//! \class DES_XEX3
//! \brief DESX block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/DESX">DES-XEX3</a>, AKA DESX
+//! \sa <a href="http://www.cryptopp.com/wiki/TripleDES">DES-XEX3</a>, AKA DESX
//! \since Crypto++ 1.0
class DES_XEX3 : public DES_XEX3_Info, public BlockCipherDocumentation
{