summaryrefslogtreecommitdiff
path: root/rabbit.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 /rabbit.cpp
parent23c8bfde7e4212703e3d5925a47cbb38ed0c3fd4 (diff)
downloadcryptopp-git-fd5dc95f96a08d2397bfef2ce1db6755861aabff.tar.gz
Fix spelling
Diffstat (limited to 'rabbit.cpp')
-rw-r--r--rabbit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rabbit.cpp b/rabbit.cpp
index f7d9d3b0..505f07ac 100644
--- a/rabbit.cpp
+++ b/rabbit.cpp
@@ -139,7 +139,7 @@ void RabbitPolicy::OperateKeystream(KeystreamOperation operation, byte *output,
PutWord(false, LITTLE_ENDIAN_ORDER, output + 8, m_wx[4] ^ (m_wx[1] >> 16) ^ (m_wx[7] << 16));
PutWord(false, LITTLE_ENDIAN_ORDER, output + 12, m_wx[6] ^ (m_wx[3] >> 16) ^ (m_wx[1] << 16));
- // 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)
@@ -243,7 +243,7 @@ void RabbitWithIVPolicy::OperateKeystream(KeystreamOperation operation, byte *ou
PutWord(false, LITTLE_ENDIAN_ORDER, output + 8, m_wx[4] ^ (m_wx[1] >> 16) ^ (m_wx[7] << 16));
PutWord(false, LITTLE_ENDIAN_ORDER, output + 12, m_wx[6] ^ (m_wx[3] >> 16) ^ (m_wx[1] << 16));
- // 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)