summaryrefslogtreecommitdiff
path: root/blowfish.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-12-13 23:53:50 -0500
committerJeffrey Walton <noloader@gmail.com>2015-12-13 23:53:50 -0500
commitd9502a6ea93d7d5a5de6a0c8c28d807efeb1559b (patch)
tree488173a182613a9a21f71e3197dbdd9cd6882e44 /blowfish.h
parent5a28b8e184f54e71a4148601f7da78d67a7e9590 (diff)
downloadcryptopp-git-d9502a6ea93d7d5a5de6a0c8c28d807efeb1559b.tar.gz
Updated documentation
Diffstat (limited to 'blowfish.h')
-rw-r--r--blowfish.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/blowfish.h b/blowfish.h
index 98336b45..41497a66 100644
--- a/blowfish.h
+++ b/blowfish.h
@@ -12,7 +12,7 @@
NAMESPACE_BEGIN(CryptoPP)
//! \class Blowfish_Info
-//! \brief The cipher's key, iv, block size and name information.
+//! \brief Blowfish block cipher information
struct Blowfish_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 4, 56>, public FixedRounds<16>
{
static const char *StaticAlgorithmName() {return "Blowfish";}
@@ -20,8 +20,8 @@ struct Blowfish_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 4,
// <a href="http://www.weidai.com/scan-mirror/cs.html#Blowfish">Blowfish</a>
-//! \class Blowfish
-//! \brief Provides Blowfish encryption and decryption
+//! \class Blowfish_Info
+//! \brief Blowfish block cipher
class Blowfish : public Blowfish_Info, public BlockCipherDocumentation
{
//! \class Base