From 715a0bcce3316a3785eb41a5080853120f9e1f41 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Tue, 4 Jan 2022 12:06:35 +0200 Subject: Fix typos (PR# 1099) --- filters.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'filters.h') diff --git a/filters.h b/filters.h index ee89c37a..d81be6c3 100644 --- a/filters.h +++ b/filters.h @@ -25,7 +25,7 @@ NAMESPACE_BEGIN(CryptoPP) /// \brief Implementation of BufferedTransformation's attachment interface -/// \details Filter is a cornerstone of the Pipeline trinitiy. Data flows from +/// \details Filter is a cornerstone of the Pipeline trinity. Data flows from /// Sources, through Filters, and then terminates in Sinks. The difference /// between a Source and Filter is a Source \a pumps data, while a Filter does /// not. The difference between a Filter and a Sink is a Filter allows an @@ -222,7 +222,7 @@ struct CRYPTOPP_DLL FilterPutSpaceHelper byte *HelpCreatePutSpace(BufferedTransformation &target, const std::string &channel, size_t minSize, size_t bufferSize) {return HelpCreatePutSpace(target, channel, minSize, minSize, bufferSize);} - /// \brief Temporay working space + /// \brief Temporary working space SecByteBlock m_tempSpace; }; @@ -537,7 +537,7 @@ public: /// \param c reference to a StreamTransformation /// \param attachment an optional attached transformation /// \param padding the \ref BlockPaddingSchemeDef "padding scheme" - /// \details This contructor creates a StreamTransformationFilter() for stream ciphers and + /// \details This constructor creates a StreamTransformationFilter() for stream ciphers and /// confidentiality-only block cipher modes of operation. If you are using an authenticated /// encryption mode of operation, then use either AuthenticatedEncryptionFilter() or /// AuthenticatedDecryptionFilter(). @@ -1191,7 +1191,7 @@ private: /// \brief Copy input to a memory buffer /// \details ArraySink wraps a fixed size buffer. The buffer is full once Put returns non-0. -/// When used in a pipleline, ArraySink silently discards input if the buffer is full. +/// When used in a pipeline, ArraySink silently discards input if the buffer is full. /// AvailableSize() can be used to determine how much space remains in the buffer. /// TotalPutLength() can be used to determine how many bytes were processed. /// \sa StringSink, ArrayXorSink @@ -1233,7 +1233,7 @@ protected: /// \brief Xor input to a memory buffer /// \details ArrayXorSink wraps a fixed size buffer. The buffer is full once Put returns non-0. -/// When used in a pipleline, ArrayXorSink silently discards input if the buffer is full. +/// When used in a pipeline, ArrayXorSink silently discards input if the buffer is full. /// AvailableSize() can be used to determine how much space remains in the buffer. /// TotalPutLength() can be used to determine how many bytes were processed. /// \sa StringSink, ArraySink -- cgit v1.2.1