Update documentation
parent
1e822b0636
commit
b2b65d6376
8
des.h
8
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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue