From 8e67eb51532c20b647d86e7633c5672d39ad0834 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 29 Sep 2017 03:22:03 -0400 Subject: [PATCH] Update documentation --- modes.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modes.h b/modes.h index 10782e775..2dbe53576 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 {