summaryrefslogtreecommitdiff
path: root/rijndael.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-07-13 09:54:06 -0400
committerJeffrey Walton <noloader@gmail.com>2018-07-13 09:54:06 -0400
commit380829284c41d3cebff05dfd03c1eb4dbc95bf7a (patch)
tree735e79587765811ea8d28ecfa8755b335180f720 /rijndael.h
parent678bdb1735409b2e0a6727959e9f97f785fd19da (diff)
downloadcryptopp-git-380829284c41d3cebff05dfd03c1eb4dbc95bf7a.tar.gz
Update documentation
Diffstat (limited to 'rijndael.h')
-rw-r--r--rijndael.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rijndael.h b/rijndael.h
index 4a23b979..325c3114 100644
--- a/rijndael.h
+++ b/rijndael.h
@@ -62,7 +62,7 @@ class CRYPTOPP_DLL Rijndael : public Rijndael_Info, public BlockCipherDocumentat
mutable SecByteBlock m_aliasBlock;
};
- /// \brief Provides implementation for encryption transformation
+ /// \brief Encryption transformation
/// \details Enc provides implementation for encryption transformation. All key sizes are supported.
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
@@ -76,7 +76,7 @@ class CRYPTOPP_DLL Rijndael : public Rijndael_Info, public BlockCipherDocumentat
#endif
};
- /// \brief Provides implementation for decryption transformation
+ /// \brief Decryption transformation
/// \details Dec provides implementation for decryption transformation. All key sizes are supported.
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,