From 5a5c6330735798ed7670cfe1d28986d0a88fb6a9 Mon Sep 17 00:00:00 2001 From: klemens Date: Tue, 27 Dec 2016 18:34:57 +0100 Subject: spelling fixes --- cryptlib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cryptlib.cpp') 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) -- cgit v1.2.1