1
2        COPYRIGHT NOTICES
3
4Copyright (c) 1986-2001 Patrick Powell
5
6THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
7ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
8IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
9ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
10FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
11DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
12OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
13HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
14LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
15OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
16SUCH DAMAGE.
17
18Copyright 1986-2000, Patrick Powell, San Diego, CA.
19    All rights reserved.
20The following notice is included to satisfy the requirements of the
21  BSD 4.4 Software Distribution.
22
23Copyright (c) 1988 The Regents of the University of California.
24 All rights reserved.
25
26Redistribution and use in source and binary forms, with or without
27modification, are permitted provided that the following conditions
28are met:
291. Redistributions of source code must retain the above copyright
30   notice, this list of conditions and the following disclaimer.
312. Redistributions in binary form must reproduce the above copyright
32   notice, this list of conditions and the following disclaimer in the
33   documentation and/or other materials provided with the distribution.
34
353. All advertising materials mentioning features or use of this software
36   must display the following acknowledgement:
37     This product includes software developed by the University of
38     California, Berkeley and its contributors.
394. Neither the name of the University nor the names of its contributors
40   may be used to endorse or promote products derived from this software
41   without specific prior written permission.
42
43July 22, 1999
44
45To All Licensees, Distributors of Any Version of BSD:
46
47As you know, certain of the Berkeley Software Distribution ("BSD") source
48code files require that further distributions of products containing all or
49portions of the software, acknowledge within their advertising materials
50that such products contain software developed by UC Berkeley and its
51contributors.
52
53Specifically, the provision reads:
54
55"     * 3. All advertising materials mentioning features or use of this software
56      *    must display the following acknowledgement:
57      *    This product includes software developed by the University of
58      *    California, Berkeley and its contributors."
59
60Effective immediately, licensees and distributors are no longer required to
61include the acknowledgement within advertising materials.  Accordingly, the
62foregoing paragraph of those BSD Unix files containing it is hereby deleted
63in its entirety.
64
65William Hoskins
66Director, Office of Technology Licensing
67University of California, Berkeley
68
69THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
70ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
71IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
72ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
73FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
74DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
75OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
76HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
77LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
78OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
79SUCH DAMAGE.
80
81src/common/md5.c contains code which states:
82 * This code implements the MD5 message-digest algorithm.
83 * The algorithm is due to Ron Rivest.  This code was
84 * written by Colin Plumb in 1993, no copyright is claimed.
85 * This code is in the public domain; do with it what you wish.
86
87-----------------------------------------------------------------------
88
89                  Addendum Fri Jun 21 17:06:33 PDT 2002
90
91Under the terms of the OpenSSL license, the following statement is included:
92
93This product includes software developed by the OpenSSL Project
94for use in the OpenSSL Toolkit (http://www.openssl.org/)
95
96If you wish  to distribute the LPRng source code or binaries of any
97of the programs in the LPRng packages under terms of the GNU license,
98then when any package or portion of the LPRng is configured to use
99any facility or utility of the OpenSSL distribution, the additional
100following clause will be applied, as recommended in the OpenSSL
1010.9.6c release FAQ:
102
103"This program is released under the GPL with the additional exemption that
104compiling, linking, and/or using OpenSSL is allowed."
105
106-----------------------------------------------------------------------
107