summaryrefslogtreecommitdiff
path: root/sha.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-10-13 22:15:41 -0400
committerJeffrey Walton <noloader@gmail.com>2018-10-13 22:15:41 -0400
commit1acbedd4f8d0fec017f66b35434c9da7f4a3ec2c (patch)
treee73235f1d58f6f5f03a050a8758f2ec7c1078563 /sha.cpp
parentcc5baa9c335a8c7b2aabfd30b0e23c81ccbde3c4 (diff)
downloadcryptopp-git-1acbedd4f8d0fec017f66b35434c9da7f4a3ec2c.tar.gz
Fix spelling and grammar
Diffstat (limited to 'sha.cpp')
-rw-r--r--sha.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha.cpp b/sha.cpp
index b3ec31a7..93391be9 100644
--- a/sha.cpp
+++ b/sha.cpp
@@ -20,7 +20,7 @@
// big endian, so SHA{N}_HashMultipleBlock accepts a ByteOrder for the incoming data
// arrangement. Hardware based SHA{N}_HashMultipleBlock can often perform the endian
// swap much easier by setting an EPI mask. Endian swap incurs no penalty on Intel SHA,
-// and 4-instruction penaly on ARM SHA. Under C++ the full software based swap penalty
+// and 4-instruction penalty on ARM SHA. Under C++ the full software based swap penalty
// is incurred due to use of ReverseBytes().
//
// The rework also removed the hacked-in pointers to implementations.