summaryrefslogtreecommitdiff
path: root/threefish.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-17 19:48:40 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-17 19:48:40 -0500
commit7f7c8485151db26b29e7417bd509e56c71218161 (patch)
tree03efa45dd63cc0650ba84d33a7d8bfdb789f0e7e /threefish.h
parentb9bd51f7a61b1e1a8d5f9885e6a58ff44b12a787 (diff)
downloadcryptopp-git-7f7c8485151db26b29e7417bd509e56c71218161.tar.gz
Update documentation
Diffstat (limited to 'threefish.h')
-rw-r--r--threefish.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/threefish.h b/threefish.h
index b06dd029..d9167fee 100644
--- a/threefish.h
+++ b/threefish.h
@@ -74,7 +74,7 @@ struct CRYPTOPP_NO_VTABLE Threefish_Base : public Threefish_Info<BS>
class CRYPTOPP_NO_VTABLE Threefish256 : public Threefish_Base<32>, public BlockCipherDocumentation
{
public:
- //! \brief Threefish block cipher data processing functions
+ //! \brief Threefish block cipher transformation functions
//! \details Provides implementation common to encryption and decryption
//! \since Crypto++ 6.0
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Threefish_Base<32> >
@@ -119,7 +119,7 @@ typedef Threefish256::Decryption Threefish256Decryption;
class CRYPTOPP_NO_VTABLE Threefish512 : public Threefish_Base<64>, public BlockCipherDocumentation
{
public:
- //! \brief Threefish block cipher data processing functions
+ //! \brief Threefish block cipher transformation functions
//! \details Provides implementation common to encryption and decryption
//! \since Crypto++ 6.0
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Threefish_Base<64> >
@@ -164,7 +164,7 @@ typedef Threefish512::Decryption Threefish512Decryption;
class CRYPTOPP_NO_VTABLE Threefish1024 : public Threefish_Base<128>, public BlockCipherDocumentation
{
public:
- //! \brief Threefish block cipher data processing functions
+ //! \brief Threefish block cipher transformation functions
//! \details Provides implementation common to encryption and decryption
//! \since Crypto++ 6.0
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Threefish_Base<128> >