summaryrefslogtreecommitdiff
path: root/mars.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-22 20:13:18 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-22 20:13:18 -0500
commitc9b00c14fd9c238ac3a797a53b3c01c4ab92f00e (patch)
treec1b079d0bc66e3d641121fe09831cd746e9913ba /mars.h
parente3d79bf98c3d068c4be602c544a0b2dec207d5a1 (diff)
downloadcryptopp-git-c9b00c14fd9c238ac3a797a53b3c01c4ab92f00e.tar.gz
Update documentation
Diffstat (limited to 'mars.h')
-rw-r--r--mars.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/mars.h b/mars.h
index b27fe1a6..1a1f2019 100644
--- a/mars.h
+++ b/mars.h
@@ -2,6 +2,7 @@
/// \file mars.h
/// \brief Classes for the MARS block cipher (IBM AES submission)
+/// \since Crypto++ 3.0
#ifndef CRYPTOPP_MARS_H
#define CRYPTOPP_MARS_H
@@ -12,6 +13,7 @@
NAMESPACE_BEGIN(CryptoPP)
/// \brief MARS block cipher information
+/// \since Crypto++ 3.0
struct MARS_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 56, 8>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "MARS";}
@@ -19,6 +21,7 @@ struct MARS_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 5
/// \brief MARS block cipher
/// \sa <a href="http://www.cryptopp.com/wiki/MARS">MARS</a>
+/// \since Crypto++ 3.0
class MARS : public MARS_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<MARS_Info>