summaryrefslogtreecommitdiff
path: root/seckey.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-03-15 00:51:46 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-03-15 00:51:46 +0000
commit02df6c04ecd6ac6ca2580c23dd4282a556cd55c5 (patch)
treeb51f3b33ebdc60255c8c3736cb468841c35082f1 /seckey.h
parent6fb7127451e29c3ef6fb51ad608eb3125722c76a (diff)
downloadcryptopp-02df6c04ecd6ac6ca2580c23dd4282a556cd55c5.tar.gz
fix documentation
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@456 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'seckey.h')
-rw-r--r--seckey.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/seckey.h b/seckey.h
index a918f75..35046a6 100644
--- a/seckey.h
+++ b/seckey.h
@@ -206,12 +206,13 @@ struct SymmetricCipherDocumentation
typedef SymmetricCipher Decryption;
};
-//! Authenticated encryption modes documentation.
-struct AuthenticatedSymmetricCipherDocumentation : public SymmetricCipherDocumentation
+/*! \brief Each class derived from this one defines two types, Encryption and Decryption,
+ both of which implement the AuthenticatedSymmetricCipher interface. */
+struct AuthenticatedSymmetricCipherDocumentation
{
- //! implements the SymmetricCipher interface
+ //! implements the AuthenticatedSymmetricCipher interface
typedef AuthenticatedSymmetricCipher Encryption;
- //! implements the SymmetricCipher interface
+ //! implements the AuthenticatedSymmetricCipher interface
typedef AuthenticatedSymmetricCipher Decryption;
};