File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -748,6 +748,17 @@ The externally maintained libraries used by Node.js are:
748
748
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
749
749
"""
750
750
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
+
751
762
- zlib, located at deps/zlib, is licensed as follows:
752
763
"""
753
764
zlib.h -- interface of the 'zlib' general purpose compression library
Original file line number Diff line number Diff line change @@ -63,6 +63,8 @@ addlicense "OpenSSL" "deps/openssl" \
63
63
addlicense " Punycode.js" " lib/punycode.js" \
64
64
" $( curl -sL https://raw.githubusercontent.com/bestiejs/punycode.js/master/LICENSE-MIT.txt) "
65
65
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) "
66
68
addlicense " zlib" " deps/zlib" \
67
69
" $( sed -e ' /The data format used by the zlib library/,$d' -e ' s/^\/\* *//' -e ' s/^ *//' ${rootdir} /deps/zlib/zlib.h) "
68
70
You can’t perform that action at this time.
0 commit comments