diff --git a/modes.h b/modes.h index 10782e77..2dbe5357 100644 --- a/modes.h +++ b/modes.h @@ -436,7 +436,8 @@ struct ECB_Mode_ExternalCipher : public CipherModeDocumentation typedef Encryption Decryption; }; -//! CBC mode +//! \class CBC_Mode +//! \brief CBC mode template struct CBC_Mode : public CipherModeDocumentation { @@ -447,14 +448,16 @@ struct CBC_Mode : public CipherModeDocumentation CRYPTOPP_DLL_TEMPLATE_CLASS CipherModeFinalTemplate_ExternalCipher; CRYPTOPP_DLL_TEMPLATE_CLASS CipherModeFinalTemplate_ExternalCipher; -//! CBC mode, external cipher +//! \class CBC_Mode_ExternalCipher +//! \brief CBC mode, external cipher struct CBC_Mode_ExternalCipher : public CipherModeDocumentation { typedef CipherModeFinalTemplate_ExternalCipher Encryption; typedef CipherModeFinalTemplate_ExternalCipher Decryption; }; -//! CBC mode with ciphertext stealing +//! \class CBC_CTS_Mode +//! \brief CBC mode with ciphertext stealing template struct CBC_CTS_Mode : public CipherModeDocumentation {