From 371ec39b4f6e5f8b4ac18d9c476ea6951e4b14bb Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 16 Aug 2017 22:16:34 -0400 Subject: [PATCH] Update comments --- shacal2-simd.cpp | 10 +++++----- shacal2.cpp | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/shacal2-simd.cpp b/shacal2-simd.cpp index 80907c44..9597cc90 100644 --- a/shacal2-simd.cpp +++ b/shacal2-simd.cpp @@ -1,11 +1,11 @@ // shacla2-simd.cpp - written and placed in the public domain by // Jeffrey Walton and Jack Lloyd // -// Jack Lloyd is the author of Botan and allowed Crypto++ to use parts of -// Botan's implementation under the same license as Crypto++ is released. -// The code for SHACAL2_Enc_ProcessAndXorBlock_SHANI below is Botan's -// x86_encrypt_blocks with minor tweaks. Many thanks to the Botan team. -// Also see https://github.com/randombit/botan/pull/1151/files. +// Jack Lloyd and the Botan team allowed Crypto++ to use parts of +// Botan's implementation under the same license as Crypto++ +// is released. The code for SHACAL2_Enc_ProcessAndXorBlock_SHANI +// below is Botan's x86_encrypt_blocks with minor tweaks. Many thanks +// to the Botan team. Also see http://github.com/randombit/botan/. // // This source file uses intrinsics to gain access to SHA-NI and // ARMv8a SHA instructions. A separate source file is needed because diff --git a/shacal2.cpp b/shacal2.cpp index 6770c8a3..afb5f4d8 100644 --- a/shacal2.cpp +++ b/shacal2.cpp @@ -3,8 +3,8 @@ // Portions of this code were derived from // Wei Dai's implementation of SHA-2 // -// Jack Lloyd is the author of Botan and allowed Crypto++ to use -// parts of Botan's implementation under the same license as Crypto++ +// Jack Lloyd and the Botan team allowed Crypto++ to use parts of +// Botan's implementation under the same license as Crypto++ // is released. The code for SHACAL2_Enc_ProcessAndXorBlock_SHANI // below is Botan's x86_encrypt_blocks with minor tweaks. Many thanks // to the Botan team. Also see http://github.com/randombit/botan/.