summaryrefslogtreecommitdiff
path: root/seckey.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2009-03-15 00:51:46 +0000
committerweidai <weidai11@users.noreply.github.com>2009-03-15 00:51:46 +0000
commit2f070fe411282915c78d0d068f64e6a6ab7abd30 (patch)
treeb51f3b33ebdc60255c8c3736cb468841c35082f1 /seckey.h
parent63c53605a5d75d4326134c97cf190c32278e74e2 (diff)
downloadcryptopp-git-2f070fe411282915c78d0d068f64e6a6ab7abd30.tar.gz
fix documentation
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 a918f75b..35046a61 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;
};