summaryrefslogtreecommitdiff
path: root/hc256.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-07-05 07:13:04 -0400
committerJeffrey Walton <noloader@gmail.com>2018-07-05 07:13:04 -0400
commitfd5dc95f96a08d2397bfef2ce1db6755861aabff (patch)
treeddb78581d6d5f84ca2c7bf73888b52f93959e7cc /hc256.cpp
parent23c8bfde7e4212703e3d5925a47cbb38ed0c3fd4 (diff)
downloadcryptopp-git-fd5dc95f96a08d2397bfef2ce1db6755861aabff.tar.gz
Fix spelling
Diffstat (limited to 'hc256.cpp')
-rw-r--r--hc256.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/hc256.cpp b/hc256.cpp
index c0bf48cc..d77b5d45 100644
--- a/hc256.cpp
+++ b/hc256.cpp
@@ -99,7 +99,7 @@ void HC256Policy::OperateKeystream(KeystreamOperation operation, byte *output, c
for (unsigned int i = 0; i < (msglen >> 2); i++, in += 4, out += 4)
PutWord(false, LITTLE_ENDIAN_ORDER, out, Generate());
- // If AdditiveCipherTemplate does not have an acculated keystream
+ // If AdditiveCipherTemplate does not have an accumulated keystream
// then it will ask OperateKeystream to XOR the plaintext with
// the keystream and write it to the ciphertext buffer.
if ((operation & INPUT_NULL) != INPUT_NULL)