From 26d41818ad8f252f9e97c3e1553890ff5b86d34d Mon Sep 17 00:00:00 2001 From: str4d Date: Thu, 21 Jul 2022 09:37:03 +0100 Subject: [PATCH] Minor fixes to documentation Co-authored-by: Daira Hopwood --- src/bench/merkle_root.cpp | 2 +- src/crypto/sha256_shani.cpp | 2 +- src/crypto/sha256_sse4.cpp | 7 ++----- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/src/bench/merkle_root.cpp b/src/bench/merkle_root.cpp index d4b03d4fe..abaa33a21 100644 --- a/src/bench/merkle_root.cpp +++ b/src/bench/merkle_root.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying -// file COPYING or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or https://www.opensource.org/licenses/mit-license.php . #include "bench.h" diff --git a/src/crypto/sha256_shani.cpp b/src/crypto/sha256_shani.cpp index 017f8d20e..770fe5fa0 100644 --- a/src/crypto/sha256_shani.cpp +++ b/src/crypto/sha256_shani.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2018 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying -// file COPYING or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or https://www.opensource.org/licenses/mit-license.php . // // Based on https://github.com/noloader/SHA-Intrinsics/blob/master/sha256-x86.c, // Written and placed in public domain by Jeffrey Walton. diff --git a/src/crypto/sha256_sse4.cpp b/src/crypto/sha256_sse4.cpp index 89f529a3a..5ddf6de08 100644 --- a/src/crypto/sha256_sse4.cpp +++ b/src/crypto/sha256_sse4.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2017 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying -// file COPYING or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or https://www.opensource.org/licenses/mit-license.php . // // This is a translation to GCC extended asm syntax from YASM code by Intel // (available at the bottom of this file). @@ -1000,10 +1000,7 @@ void Transform(uint32_t* s, const unsigned char* chunk, size_t blocks) ; ; This code is described in an Intel White-Paper: ; "Fast SHA-256 Implementations on Intel Architecture Processors" -; -; To find it, surf to http://www.intel.com/p/en_US/embedded -; and search for that title. -; The paper is expected to be released roughly at the end of April, 2012 +; at . ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; This code schedules 1 blocks at a time, with 4 lanes per block