aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/secp256k1/LICENSE
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-07-24 08:47:47 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-07-24 08:47:47 +0800
commitafd8b847060eed094cd7c6e0d133338a33cf4631 (patch)
treecbcce0616333b5b0ce5c03a0935a5b88ae971767 /crypto/secp256k1/LICENSE
parentf6206efe5bcf28942990e35ef373d273e9785372 (diff)
downloadgo-tangerine-afd8b847060eed094cd7c6e0d133338a33cf4631.tar
go-tangerine-afd8b847060eed094cd7c6e0d133338a33cf4631.tar.gz
go-tangerine-afd8b847060eed094cd7c6e0d133338a33cf4631.tar.bz2
go-tangerine-afd8b847060eed094cd7c6e0d133338a33cf4631.tar.lz
go-tangerine-afd8b847060eed094cd7c6e0d133338a33cf4631.tar.xz
go-tangerine-afd8b847060eed094cd7c6e0d133338a33cf4631.tar.zst
go-tangerine-afd8b847060eed094cd7c6e0d133338a33cf4631.zip
crypto/secp256k1: unify the package license to 3-Clause BSD (#17225)
Our original wrapper code had two parts. One taken from a third party repository (who took it from upstream Go) licensed under BSD-3. The second written by Jeff, Felix and Gustav, licensed under LGPL. This made this package problematic to use from the outside. With the agreement of the original copyright holders, this commit changes the license of the LGPL portions of the code to BSD-3: --- I agree changing from LGPL to a BSD style license. Jeff --- Hey guys, My preference would be to relicense to GNUBL, but I'm also OK with BSD. Cheers, Gustav --- Felix Lange (fjl): I would approve anything that makes our licensing less complicated ---
Diffstat (limited to 'crypto/secp256k1/LICENSE')
-rw-r--r--crypto/secp256k1/LICENSE31
1 files changed, 31 insertions, 0 deletions
diff --git a/crypto/secp256k1/LICENSE b/crypto/secp256k1/LICENSE
new file mode 100644
index 000000000..f9090e142
--- /dev/null
+++ b/crypto/secp256k1/LICENSE
@@ -0,0 +1,31 @@
+Copyright (c) 2010 The Go Authors. All rights reserved.
+Copyright (c) 2011 ThePiachu. All rights reserved.
+Copyright (c) 2015 Jeffrey Wilcke. All rights reserved.
+Copyright (c) 2015 Felix Lange. All rights reserved.
+Copyright (c) 2015 Gustav Simonsson. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+ * Neither the name of the copyright holder. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.