summaryrefslogtreecommitdiff
path: root/aria.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 /aria.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 'aria.h')
-rw-r--r--aria.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/aria.h b/aria.h
index 46990f45..e4eaee99 100644
--- a/aria.h
+++ b/aria.h
@@ -1,14 +1,14 @@
// aria.h - written and placed in the public domain by Jeffrey Walton
-//! \file aria.h
-//! \brief Classes for the ARIA block cipher
-//! \details The Crypto++ ARIA implementation is based on the 32-bit implementation by Aaram Yun
-//! from the National Security Research Institute, KOREA. Aaram Yun's implementation is based on
-//! the 8-bit implementation by Jin Hong. The source files are available in ARIA.zip from the Korea
-//! Internet & Security Agency website.
-//! \sa <A HREF="http://tools.ietf.org/html/rfc5794">RFC 5794, A Description of the ARIA Encryption Algorithm</A>,
-//! <A HREF="http://seed.kisa.or.kr/iwt/ko/bbs/EgovReferenceList.do?bbsId=BBSMSTR_000000000002">Korea
-//! Internet & Security Agency homepage</A>
+/// \file aria.h
+/// \brief Classes for the ARIA block cipher
+/// \details The Crypto++ ARIA implementation is based on the 32-bit implementation by Aaram Yun
+/// from the National Security Research Institute, KOREA. Aaram Yun's implementation is based on
+/// the 8-bit implementation by Jin Hong. The source files are available in ARIA.zip from the Korea
+/// Internet & Security Agency website.
+/// \sa <A HREF="http://tools.ietf.org/html/rfc5794">RFC 5794, A Description of the ARIA Encryption Algorithm</A>,
+/// <A HREF="http://seed.kisa.or.kr/iwt/ko/bbs/EgovReferenceList.do?bbsId=BBSMSTR_000000000002">Korea
+/// Internet & Security Agency homepage</A>
#ifndef CRYPTOPP_ARIA_H
#define CRYPTOPP_ARIA_H
@@ -19,25 +19,25 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class ARIA_Info
-//! \brief ARIA block cipher information
-//! \since Crypto++ 6.0
+/// \class ARIA_Info
+/// \brief ARIA block cipher information
+/// \since Crypto++ 6.0
struct ARIA_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "ARIA";}
};
-//! \class ARIA
-//! \brief ARIA block cipher
-//! \details The Crypto++ ARIA implementation is based on the 32-bit implementation by Aaram Yun
-//! from the National Security Research Institute, KOREA. Aaram Yun's implementation is based on
-//! the 8-bit implementation by Jin Hong. The source files are available in ARIA.zip from the Korea
-//! Internet & Security Agency website.
-//! \sa <A HREF="http://tools.ietf.org/html/rfc5794">RFC 5794, A Description of the ARIA Encryption Algorithm</A>,
-//! <A HREF="http://seed.kisa.or.kr/iwt/ko/bbs/EgovReferenceList.do?bbsId=BBSMSTR_000000000002">Korea
-//! Internet & Security Agency homepage</A>
-//! \sa <a href="http://www.cryptopp.com/wiki/ARIA">ARIA</a>
-//! \since Crypto++ 6.0
+/// \class ARIA
+/// \brief ARIA block cipher
+/// \details The Crypto++ ARIA implementation is based on the 32-bit implementation by Aaram Yun
+/// from the National Security Research Institute, KOREA. Aaram Yun's implementation is based on
+/// the 8-bit implementation by Jin Hong. The source files are available in ARIA.zip from the Korea
+/// Internet & Security Agency website.
+/// \sa <A HREF="http://tools.ietf.org/html/rfc5794">RFC 5794, A Description of the ARIA Encryption Algorithm</A>,
+/// <A HREF="http://seed.kisa.or.kr/iwt/ko/bbs/EgovReferenceList.do?bbsId=BBSMSTR_000000000002">Korea
+/// Internet & Security Agency homepage</A>
+/// \sa <a href="http://www.cryptopp.com/wiki/ARIA">ARIA</a>
+/// \since Crypto++ 6.0
class ARIA : public ARIA_Info, public BlockCipherDocumentation
{
public: