summaryrefslogtreecommitdiff
path: root/cbcmac.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
commit61ec50dabe14c5d4582ac187706ea27645b3562b (patch)
tree18a2eebb7adc8c9556ce132d7081a105fa058d6b /cbcmac.h
parent16ebfa72bf130c4725e652e4d3688d97d3feb0ee (diff)
downloadcryptopp-git-61ec50dabe14c5d4582ac187706ea27645b3562b.tar.gz
Change Doxygen comment style from //! to ///
Also see https://groups.google.com/forum/#!topic/cryptopp-users/A7-Xt5Knlzw
Diffstat (limited to 'cbcmac.h')
-rw-r--r--cbcmac.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cbcmac.h b/cbcmac.h
index 985a34d1..2e0a4037 100644
--- a/cbcmac.h
+++ b/cbcmac.h
@@ -1,8 +1,8 @@
// cbcmac.h - originally written and placed in the public domain by Wei Dai
-//! \file
-//! \headerfile cbcmac.h
-//! \brief Classes for CBC MAC
+/// \file
+/// \headerfile cbcmac.h
+/// \brief Classes for CBC MAC
#ifndef CRYPTOPP_CBCMAC_H
#define CRYPTOPP_CBCMAC_H
@@ -12,7 +12,7 @@
NAMESPACE_BEGIN(CryptoPP)
-//! _
+/// _
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CBC_MAC_Base : public MessageAuthenticationCode
{
public:
@@ -32,7 +32,7 @@ private:
unsigned int m_counter;
};
-//! <a href="http://www.weidai.com/scan-mirror/mac.html#CBC-MAC">CBC-MAC</a>
+/// <a href="http://www.weidai.com/scan-mirror/mac.html#CBC-MAC">CBC-MAC</a>
/*! Compatible with FIPS 113. T should be a class derived from BlockCipherDocumentation.
Secure only for fixed length messages. For variable length messages use CMAC or DMAC.
*/