summaryrefslogtreecommitdiff
path: root/des.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-28 05:00:13 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-28 05:00:13 -0400
commit1e822b063676353504142c9c82088a8b2f49cc7d (patch)
treeee4898be011ed00d7028a8fdc3000f11003a0870 /des.h
parentdb641b9258c41c93fc922197cb20aac9f6ff2fa4 (diff)
downloadcryptopp-git-1e822b063676353504142c9c82088a8b2f49cc7d.tar.gz
Update documentation links
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 3ef8c837..1fd5c32a 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.weidai.com/scan-mirror/cs.html#DES">DES</a>
+//! \sa <a href="http://www.cryptopp.com/wiki/DES">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.weidai.com/scan-mirror/cs.html#DESede">DES-EDE2</a>
+//! \sa <a href="http://www.cryptopp.com/wiki/DESede">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.weidai.com/scan-mirror/cs.html#DESede">DES-EDE3</a>
+//! \sa <a href="http://www.cryptopp.com/wiki/DESede">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.weidai.com/scan-mirror/cs.html#DESX">DES-XEX3</a>, AKA DESX
+//! \sa <a href="http://www.cryptopp.com/wiki/DESX">DES-XEX3</a>, AKA DESX
//! \since Crypto++ 1.0
class DES_XEX3 : public DES_XEX3_Info, public BlockCipherDocumentation
{