Update comments

pull/461/head
Jeffrey Walton 2017-08-16 22:16:34 -04:00
parent df178bd8ee
commit 371ec39b4f
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 7 additions and 7 deletions

View File

@ -1,11 +1,11 @@
// shacla2-simd.cpp - written and placed in the public domain by // shacla2-simd.cpp - written and placed in the public domain by
// Jeffrey Walton and Jack Lloyd // Jeffrey Walton and Jack Lloyd
// //
// Jack Lloyd is the author of Botan and allowed Crypto++ to use parts of // Jack Lloyd and the Botan team allowed Crypto++ to use parts of
// Botan's implementation under the same license as Crypto++ is released. // Botan's implementation under the same license as Crypto++
// The code for SHACAL2_Enc_ProcessAndXorBlock_SHANI below is Botan's // is released. The code for SHACAL2_Enc_ProcessAndXorBlock_SHANI
// x86_encrypt_blocks with minor tweaks. Many thanks to the Botan team. // below is Botan's x86_encrypt_blocks with minor tweaks. Many thanks
// Also see https://github.com/randombit/botan/pull/1151/files. // to the Botan team. Also see http://github.com/randombit/botan/.
// //
// This source file uses intrinsics to gain access to SHA-NI and // This source file uses intrinsics to gain access to SHA-NI and
// ARMv8a SHA instructions. A separate source file is needed because // ARMv8a SHA instructions. A separate source file is needed because

View File

@ -3,8 +3,8 @@
// Portions of this code were derived from // Portions of this code were derived from
// Wei Dai's implementation of SHA-2 // Wei Dai's implementation of SHA-2
// //
// Jack Lloyd is the author of Botan and allowed Crypto++ to use // Jack Lloyd and the Botan team allowed Crypto++ to use parts of
// parts of Botan's implementation under the same license as Crypto++ // Botan's implementation under the same license as Crypto++
// is released. The code for SHACAL2_Enc_ProcessAndXorBlock_SHANI // is released. The code for SHACAL2_Enc_ProcessAndXorBlock_SHANI
// below is Botan's x86_encrypt_blocks with minor tweaks. Many thanks // below is Botan's x86_encrypt_blocks with minor tweaks. Many thanks
// to the Botan team. Also see http://github.com/randombit/botan/. // to the Botan team. Also see http://github.com/randombit/botan/.