Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Sep 29, 2017
1 parent b2b65d6 commit 8e67eb5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions modes.h
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,8 @@ struct ECB_Mode_ExternalCipher : public CipherModeDocumentation
typedef Encryption Decryption;
};

//! CBC mode
//! \class CBC_Mode
//! \brief CBC mode
template <class CIPHER>
struct CBC_Mode : public CipherModeDocumentation
{
Expand All @@ -447,14 +448,16 @@ struct CBC_Mode : public CipherModeDocumentation
CRYPTOPP_DLL_TEMPLATE_CLASS CipherModeFinalTemplate_ExternalCipher<CBC_Encryption>;
CRYPTOPP_DLL_TEMPLATE_CLASS CipherModeFinalTemplate_ExternalCipher<CBC_Decryption>;

//! CBC mode, external cipher
//! \class CBC_Mode_ExternalCipher
//! \brief CBC mode, external cipher
struct CBC_Mode_ExternalCipher : public CipherModeDocumentation
{
typedef CipherModeFinalTemplate_ExternalCipher<CBC_Encryption> Encryption;
typedef CipherModeFinalTemplate_ExternalCipher<CBC_Decryption> Decryption;
};

//! CBC mode with ciphertext stealing
//! \class CBC_CTS_Mode
//! \brief CBC mode with ciphertext stealing
template <class CIPHER>
struct CBC_CTS_Mode : public CipherModeDocumentation
{
Expand Down

0 comments on commit 8e67eb5

Please sign in to comment.