~drizzle-trunk/drizzle/development

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