summaryrefslogtreecommitdiff
path: root/hc256.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-27 18:30:38 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-27 18:30:38 -0500
commit5e48cfd0c9d9c44a60c6ea14faddb122f2dab07d (patch)
treeb70fc6e41908c364a8c1786dd2baf37262ec1bac /hc256.h
parent5ace5e478add7e1f0d73503f649fa27376829740 (diff)
downloadcryptopp-git-5e48cfd0c9d9c44a60c6ea14faddb122f2dab07d.tar.gz
Prepare for Crypto++ 8.0 release
Diffstat (limited to 'hc256.h')
-rw-r--r--hc256.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/hc256.h b/hc256.h
index e6271b1a..ccd1ca05 100644
--- a/hc256.h
+++ b/hc256.h
@@ -9,7 +9,7 @@
/// \sa <A HREF="http://www.ecrypt.eu.org/stream/hc256.html">The
/// eSTREAM Project | HC-256</A> and
/// <A HREF="https://www.cryptopp.com/wiki/HC-128">Crypto++ Wiki | HC-128</A>.
-/// \since Crypto++ 7.1
+/// \since Crypto++ 8.0
#ifndef CRYPTOPP_HC256_H
#define CRYPTOPP_HC256_H
@@ -20,14 +20,14 @@
NAMESPACE_BEGIN(CryptoPP)
/// \brief HC-256 stream cipher information
-/// \since Crypto++ 7.1
+/// \since Crypto++ 8.0
struct HC256Info : public FixedKeyLength<32, SimpleKeyingInterface::UNIQUE_IV, 32>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() { return "HC-256"; }
};
/// \brief HC-256 stream cipher implementation
-/// \since Crypto++ 7.1
+/// \since Crypto++ 8.0
class HC256Policy : public AdditiveCipherConcretePolicy<word32, 4>, public HC256Info
{
protected:
@@ -55,7 +55,7 @@ private:
/// \sa <A HREF="http://www.ecrypt.eu.org/stream/hc256.html">The
/// eSTREAM Project | HC-256</A> and
/// <A HREF="https://www.cryptopp.com/wiki/HC-128">Crypto++ Wiki | HC-128</A>.
-/// \since Crypto++ 7.1
+/// \since Crypto++ 8.0
struct HC256 : public HC256Info, public SymmetricCipherDocumentation
{
typedef SymmetricCipherFinal<ConcretePolicyHolder<HC256Policy, AdditiveCipherTemplate<> >, HC256Info> Encryption;