xref: /dflybsd-src/crypto/libressl/COPYING (revision f5b1c8a1e6dbe9333aed363dba27c2ff58be6174)
1*f5b1c8a1SJohn Marino
2*f5b1c8a1SJohn Marino  LibReSSL files are retained under the copyright of the authors. New
3*f5b1c8a1SJohn Marino  additions are ISC licensed as per OpenBSD's normal licensing policy,
4*f5b1c8a1SJohn Marino  or are placed in the public domain.
5*f5b1c8a1SJohn Marino
6*f5b1c8a1SJohn Marino  The OpenSSL code is distributed under the terms of the original OpenSSL
7*f5b1c8a1SJohn Marino  licenses which follow:
8*f5b1c8a1SJohn Marino
9*f5b1c8a1SJohn Marino  LICENSE ISSUES
10*f5b1c8a1SJohn Marino  ==============
11*f5b1c8a1SJohn Marino
12*f5b1c8a1SJohn Marino  The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
13*f5b1c8a1SJohn Marino  the OpenSSL License and the original SSLeay license apply to the toolkit.
14*f5b1c8a1SJohn Marino  See below for the actual license texts.  In case of any license issues
15*f5b1c8a1SJohn Marino  related to OpenSSL please contact openssl-core@openssl.org.
16*f5b1c8a1SJohn Marino
17*f5b1c8a1SJohn Marino  OpenSSL License
18*f5b1c8a1SJohn Marino  ---------------
19*f5b1c8a1SJohn Marino
20*f5b1c8a1SJohn Marino/* ====================================================================
21*f5b1c8a1SJohn Marino * Copyright (c) 1998-2011 The OpenSSL Project.  All rights reserved.
22*f5b1c8a1SJohn Marino *
23*f5b1c8a1SJohn Marino * Redistribution and use in source and binary forms, with or without
24*f5b1c8a1SJohn Marino * modification, are permitted provided that the following conditions
25*f5b1c8a1SJohn Marino * are met:
26*f5b1c8a1SJohn Marino *
27*f5b1c8a1SJohn Marino * 1. Redistributions of source code must retain the above copyright
28*f5b1c8a1SJohn Marino *    notice, this list of conditions and the following disclaimer.
29*f5b1c8a1SJohn Marino *
30*f5b1c8a1SJohn Marino * 2. Redistributions in binary form must reproduce the above copyright
31*f5b1c8a1SJohn Marino *    notice, this list of conditions and the following disclaimer in
32*f5b1c8a1SJohn Marino *    the documentation and/or other materials provided with the
33*f5b1c8a1SJohn Marino *    distribution.
34*f5b1c8a1SJohn Marino *
35*f5b1c8a1SJohn Marino * 3. All advertising materials mentioning features or use of this
36*f5b1c8a1SJohn Marino *    software must display the following acknowledgment:
37*f5b1c8a1SJohn Marino *    "This product includes software developed by the OpenSSL Project
38*f5b1c8a1SJohn Marino *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
39*f5b1c8a1SJohn Marino *
40*f5b1c8a1SJohn Marino * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
41*f5b1c8a1SJohn Marino *    endorse or promote products derived from this software without
42*f5b1c8a1SJohn Marino *    prior written permission. For written permission, please contact
43*f5b1c8a1SJohn Marino *    openssl-core@openssl.org.
44*f5b1c8a1SJohn Marino *
45*f5b1c8a1SJohn Marino * 5. Products derived from this software may not be called "OpenSSL"
46*f5b1c8a1SJohn Marino *    nor may "OpenSSL" appear in their names without prior written
47*f5b1c8a1SJohn Marino *    permission of the OpenSSL Project.
48*f5b1c8a1SJohn Marino *
49*f5b1c8a1SJohn Marino * 6. Redistributions of any form whatsoever must retain the following
50*f5b1c8a1SJohn Marino *    acknowledgment:
51*f5b1c8a1SJohn Marino *    "This product includes software developed by the OpenSSL Project
52*f5b1c8a1SJohn Marino *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
53*f5b1c8a1SJohn Marino *
54*f5b1c8a1SJohn Marino * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
55*f5b1c8a1SJohn Marino * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56*f5b1c8a1SJohn Marino * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
57*f5b1c8a1SJohn Marino * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
58*f5b1c8a1SJohn Marino * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59*f5b1c8a1SJohn Marino * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
60*f5b1c8a1SJohn Marino * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
61*f5b1c8a1SJohn Marino * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62*f5b1c8a1SJohn Marino * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
63*f5b1c8a1SJohn Marino * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
64*f5b1c8a1SJohn Marino * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
65*f5b1c8a1SJohn Marino * OF THE POSSIBILITY OF SUCH DAMAGE.
66*f5b1c8a1SJohn Marino * ====================================================================
67*f5b1c8a1SJohn Marino *
68*f5b1c8a1SJohn Marino * This product includes cryptographic software written by Eric Young
69*f5b1c8a1SJohn Marino * (eay@cryptsoft.com).  This product includes software written by Tim
70*f5b1c8a1SJohn Marino * Hudson (tjh@cryptsoft.com).
71*f5b1c8a1SJohn Marino *
72*f5b1c8a1SJohn Marino */
73*f5b1c8a1SJohn Marino
74*f5b1c8a1SJohn Marino Original SSLeay License
75*f5b1c8a1SJohn Marino -----------------------
76*f5b1c8a1SJohn Marino
77*f5b1c8a1SJohn Marino/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
78*f5b1c8a1SJohn Marino * All rights reserved.
79*f5b1c8a1SJohn Marino *
80*f5b1c8a1SJohn Marino * This package is an SSL implementation written
81*f5b1c8a1SJohn Marino * by Eric Young (eay@cryptsoft.com).
82*f5b1c8a1SJohn Marino * The implementation was written so as to conform with Netscapes SSL.
83*f5b1c8a1SJohn Marino *
84*f5b1c8a1SJohn Marino * This library is free for commercial and non-commercial use as long as
85*f5b1c8a1SJohn Marino * the following conditions are aheared to.  The following conditions
86*f5b1c8a1SJohn Marino * apply to all code found in this distribution, be it the RC4, RSA,
87*f5b1c8a1SJohn Marino * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
88*f5b1c8a1SJohn Marino * included with this distribution is covered by the same copyright terms
89*f5b1c8a1SJohn Marino * except that the holder is Tim Hudson (tjh@cryptsoft.com).
90*f5b1c8a1SJohn Marino *
91*f5b1c8a1SJohn Marino * Copyright remains Eric Young's, and as such any Copyright notices in
92*f5b1c8a1SJohn Marino * the code are not to be removed.
93*f5b1c8a1SJohn Marino * If this package is used in a product, Eric Young should be given attribution
94*f5b1c8a1SJohn Marino * as the author of the parts of the library used.
95*f5b1c8a1SJohn Marino * This can be in the form of a textual message at program startup or
96*f5b1c8a1SJohn Marino * in documentation (online or textual) provided with the package.
97*f5b1c8a1SJohn Marino *
98*f5b1c8a1SJohn Marino * Redistribution and use in source and binary forms, with or without
99*f5b1c8a1SJohn Marino * modification, are permitted provided that the following conditions
100*f5b1c8a1SJohn Marino * are met:
101*f5b1c8a1SJohn Marino * 1. Redistributions of source code must retain the copyright
102*f5b1c8a1SJohn Marino *    notice, this list of conditions and the following disclaimer.
103*f5b1c8a1SJohn Marino * 2. Redistributions in binary form must reproduce the above copyright
104*f5b1c8a1SJohn Marino *    notice, this list of conditions and the following disclaimer in the
105*f5b1c8a1SJohn Marino *    documentation and/or other materials provided with the distribution.
106*f5b1c8a1SJohn Marino * 3. All advertising materials mentioning features or use of this software
107*f5b1c8a1SJohn Marino *    must display the following acknowledgement:
108*f5b1c8a1SJohn Marino *    "This product includes cryptographic software written by
109*f5b1c8a1SJohn Marino *     Eric Young (eay@cryptsoft.com)"
110*f5b1c8a1SJohn Marino *    The word 'cryptographic' can be left out if the rouines from the library
111*f5b1c8a1SJohn Marino *    being used are not cryptographic related :-).
112*f5b1c8a1SJohn Marino * 4. If you include any Windows specific code (or a derivative thereof) from
113*f5b1c8a1SJohn Marino *    the apps directory (application code) you must include an acknowledgement:
114*f5b1c8a1SJohn Marino *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
115*f5b1c8a1SJohn Marino *
116*f5b1c8a1SJohn Marino * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
117*f5b1c8a1SJohn Marino * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
118*f5b1c8a1SJohn Marino * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
119*f5b1c8a1SJohn Marino * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
120*f5b1c8a1SJohn Marino * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
121*f5b1c8a1SJohn Marino * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
122*f5b1c8a1SJohn Marino * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
123*f5b1c8a1SJohn Marino * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
124*f5b1c8a1SJohn Marino * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
125*f5b1c8a1SJohn Marino * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
126*f5b1c8a1SJohn Marino * SUCH DAMAGE.
127*f5b1c8a1SJohn Marino *
128*f5b1c8a1SJohn Marino * The licence and distribution terms for any publically available version or
129*f5b1c8a1SJohn Marino * derivative of this code cannot be changed.  i.e. this code cannot simply be
130*f5b1c8a1SJohn Marino * copied and put under another distribution licence
131*f5b1c8a1SJohn Marino * [including the GNU Public Licence.]
132*f5b1c8a1SJohn Marino */
133*f5b1c8a1SJohn Marino
134