Skip to content

Commit b7dd0b8

Browse files
rvaggBethGriggs
authored andcommitted
deps,tools: include SipHash in LICENSE
PR-URL: #26367 Refs: #23259 Refs: https://darksi.de/12.hashwick-v8-vulnerability/ Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Fedor Indutny <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yang Guo <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]>
1 parent 4fed47a commit b7dd0b8

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

LICENSE

+11
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,17 @@ The externally maintained libraries used by Node.js are:
748748
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
749749
"""
750750

751+
- SipHash, located at deps/v8/src/third_party/siphash, is licensed as follows:
752+
"""
753+
SipHash reference C implementation
754+
755+
Copyright (c) 2016 Jean-Philippe Aumasson <[email protected]>
756+
757+
To the extent possible under law, the author(s) have dedicated all
758+
copyright and related and neighboring rights to this software to the public
759+
domain worldwide. This software is distributed without any warranty.
760+
"""
761+
751762
- zlib, located at deps/zlib, is licensed as follows:
752763
"""
753764
zlib.h -- interface of the 'zlib' general purpose compression library

tools/license-builder.sh

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ addlicense "OpenSSL" "deps/openssl" \
6363
addlicense "Punycode.js" "lib/punycode.js" \
6464
"$(curl -sL https://raw.githubusercontent.com/bestiejs/punycode.js/master/LICENSE-MIT.txt)"
6565
addlicense "V8" "deps/v8" "$(cat ${rootdir}/deps/v8/LICENSE)"
66+
addlicense "SipHash" "deps/v8/src/third_party/siphash" \
67+
"$(sed -e '/You should have received a copy of the CC0/,$d' -e 's/^\/\* *//' -e 's/^ \* *//' deps/v8/src/third_party/siphash/halfsiphash.cc)"
6668
addlicense "zlib" "deps/zlib" \
6769
"$(sed -e '/The data format used by the zlib library/,$d' -e 's/^\/\* *//' -e 's/^ *//' ${rootdir}/deps/zlib/zlib.h)"
6870

0 commit comments

Comments
 (0)