From b2b65d6376ff268d1d49bd3e8f8d0899c6bac783 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 28 Sep 2017 05:03:55 -0400 Subject: [PATCH] Update documentation --- des.h | 8 ++++---- 1 file 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 DES +//! \sa DES //! \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 DES-EDE2 +//! \sa DES-EDE2 //! \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 DES-EDE3 +//! \sa DES-EDE3 //! \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 DES-XEX3, AKA DESX +//! \sa DES-XEX3, AKA DESX //! \since Crypto++ 1.0 class DES_XEX3 : public DES_XEX3_Info, public BlockCipherDocumentation {