summaryrefslogtreecommitdiff
path: root/cryptlib.cpp
diff options
context:
space:
mode:
authorklemens <ka7@github.com>2016-12-27 18:34:57 +0100
committerklemens <ka7@github.com>2016-12-27 18:34:57 +0100
commit5a5c6330735798ed7670cfe1d28986d0a88fb6a9 (patch)
tree5c351b3fbc98cfeeb3d9c7fdd0fc926724223e30 /cryptlib.cpp
parent06f79d904d5d4a801910e31bcca2846e5afbeaff (diff)
downloadcryptopp-git-5a5c6330735798ed7670cfe1d28986d0a88fb6a9.tar.gz
spelling fixes
Diffstat (limited to 'cryptlib.cpp')
-rw-r--r--cryptlib.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptlib.cpp b/cryptlib.cpp
index 3bd064ed..0c4f7703 100644
--- a/cryptlib.cpp
+++ b/cryptlib.cpp
@@ -243,12 +243,12 @@ unsigned int HashTransformation::OptimalDataAlignment() const
void StreamTransformation::ProcessLastBlock(byte *outString, const byte *inString, size_t length)
{
- CRYPTOPP_ASSERT(MinLastBlockSize() == 0); // this function should be overriden otherwise
+ CRYPTOPP_ASSERT(MinLastBlockSize() == 0); // this function should be overridden otherwise
if (length == MandatoryBlockSize())
ProcessData(outString, inString, length);
else if (length != 0)
- throw NotImplemented(AlgorithmName() + ": this object does't support a special last block");
+ throw NotImplemented(AlgorithmName() + ": this object doesn't support a special last block");
}
void AuthenticatedSymmetricCipher::SpecifyDataLengths(lword headerLength, lword messageLength, lword footerLength)