summaryrefslogtreecommitdiff
path: root/strciphr.h
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-01-04 12:06:35 +0200
committerGitHub <noreply@github.com>2022-01-04 05:06:35 -0500
commit715a0bcce3316a3785eb41a5080853120f9e1f41 (patch)
tree7ac00f38e562d8c2d113ca8a30f861c10476d228 /strciphr.h
parentd994989cda15fe92c10bd7638d98968b1dc17c05 (diff)
downloadcryptopp-git-715a0bcce3316a3785eb41a5080853120f9e1f41.tar.gz
Fix typos (PR# 1099)
Diffstat (limited to 'strciphr.h')
-rw-r--r--strciphr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/strciphr.h b/strciphr.h
index ec703c34..ad905eeb 100644
--- a/strciphr.h
+++ b/strciphr.h
@@ -86,9 +86,9 @@ enum KeystreamOperationFlags {
/// \sa AdditiveCipherAbstractPolicy::GetBytesPerIteration(), AdditiveCipherAbstractPolicy::GetOptimalBlockSize()
/// and AdditiveCipherAbstractPolicy::GetAlignment()
enum KeystreamOperation {
- /// \brief Wirte the keystream to the output buffer, input is NULL
+ /// \brief Write the keystream to the output buffer, input is NULL
WRITE_KEYSTREAM = INPUT_NULL,
- /// \brief Wirte the keystream to the aligned output buffer, input is NULL
+ /// \brief Write the keystream to the aligned output buffer, input is NULL
WRITE_KEYSTREAM_ALIGNED = INPUT_NULL | OUTPUT_ALIGNED,
/// \brief XOR the input buffer and keystream, write to the output buffer
XOR_KEYSTREAM = 0,
@@ -399,7 +399,7 @@ protected:
size_t m_leftOver;
};
-/// \brief Policy object for feeback based stream ciphers
+/// \brief Policy object for feedback based stream ciphers
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CFB_CipherAbstractPolicy
{
public: