summaryrefslogtreecommitdiff
path: root/sha.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-05-19 18:10:09 -0400
committerJeffrey Walton <noloader@gmail.com>2019-05-19 18:10:09 -0400
commit6528561cb313c3143668410e032afdf4cd8b6677 (patch)
tree7be797ed6f9c2bd40cf917e0cb077dc386f4a1dc /sha.cpp
parente19a6152b5b45a40a9380766309299872791ecdd (diff)
downloadcryptopp-git-6528561cb313c3143668410e032afdf4cd8b6677.tar.gz
Update comments
Diffstat (limited to 'sha.cpp')
-rw-r--r--sha.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/sha.cpp b/sha.cpp
index d50ad628..969f28ce 100644
--- a/sha.cpp
+++ b/sha.cpp
@@ -2,9 +2,10 @@
// Steve Reid implemented SHA-1. Wei Dai implemented SHA-2. Jeffrey
// Walton implemented Intel SHA extensions based on Intel articles and code
-// by Sean Gulley. Jeffrey Walton implemented ARM SHA based on ARM code and
-// code from Johannes Schneiders, Skip Hovsmith and Barry O'Rourke. All
-// code is in the public domain.
+// by Sean Gulley. Jeffrey Walton implemented ARM SHA-1 and SHA-256 based
+// on ARM code and code from Johannes Schneiders, Skip Hovsmith and
+// Barry O'Rourke. Jeffrey Walton and Bill Schmidt implemented Power8
+// SHA-256 and SHA-512. All code is in the public domain.
// In August 2017 JW reworked the internals to align all the
// implementations. Formerly all hashes were software based, IterHashBase