Spelling fixes

Spelling errors found using github.com/lucasdemarchi/codespell
A tool to fix common misspellings.
This tool is licensed under GNU General Public License, version 2.

Change-Id: I30765c0f799dabdb44b705a9720014db9a1b21df
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/crypt_algo.cpp b/crypt_algo.cpp
index a10fd56..21a2ff6 100644
--- a/crypt_algo.cpp
+++ b/crypt_algo.cpp
@@ -28,7 +28,7 @@
     /*
      * The confidentiality pad length is the last byte in the payload, it would
      * tell the number of pad bytes in the payload. We added a condition, so
-     * that buffer overrun does't happen.
+     * that buffer overrun doesn't happen.
      */
     size_t confPadLength = plainPayload.back();
     auto padLength = std::min(plainPayload.size() -1, confPadLength);