summaryrefslogtreecommitdiff
path: root/twofish.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 /twofish.h
parente3d79bf98c3d068c4be602c544a0b2dec207d5a1 (diff)
downloadcryptopp-git-c9b00c14fd9c238ac3a797a53b3c01c4ab92f00e.tar.gz
Update documentation
Diffstat (limited to 'twofish.h')
-rw-r--r--twofish.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/twofish.h b/twofish.h
index 84b2bb53..16284b48 100644
--- a/twofish.h
+++ b/twofish.h
@@ -12,13 +12,15 @@
NAMESPACE_BEGIN(CryptoPP)
/// \brief Twofish block cipher information
+/// \since Crypto++ 3.1
struct Twofish_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, FixedRounds<16>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Twofish";}
};
/// \brief Twofish block cipher
-//~ \sa <a href="http://www.cryptopp.com/wiki/Twofish">Twofish</a>
+/// \sa <a href="http://www.cryptopp.com/wiki/Twofish">Twofish</a>
+/// \since Crypto++ 3.1
class Twofish : public Twofish_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Twofish_Info>