176259SgreenThis file is part of the OpenSSH software.
265668Skris
376259SgreenThe licences which components of this software fall under are as
476259Sgreenfollows.  First, we will summarize and say that all components
565668Skrisare under a BSD licence, or a licence more free than that.
665668Skris
765668SkrisOpenSSH contains no GPL code.
865668Skris
965668Skris1)
1065668Skris     * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
1165668Skris     *                    All rights reserved
1265668Skris     *
1365668Skris     * As far as I am concerned, the code I have written for this software
1465668Skris     * can be used freely for any purpose.  Any derived versions of this
1565668Skris     * software must be clearly marked as such, and if the derived work is
1665668Skris     * incompatible with the protocol description in the RFC file, it must be
1765668Skris     * called by a name other than "ssh" or "Secure Shell".
1865668Skris
1965668Skris    [Tatu continues]
2065668Skris     *  However, I am not implying to give any licenses to any patents or
2165668Skris     * copyrights held by third parties, and the software includes parts that
2265668Skris     * are not under my direct control.  As far as I know, all included
2365668Skris     * source code is used in accordance with the relevant license agreements
2465668Skris     * and can be used freely for any purpose (the GNU license being the most
2565668Skris     * restrictive); see below for details.
2665668Skris
2765668Skris    [However, none of that term is relevant at this point in time.  All of
2865668Skris    these restrictively licenced software components which he talks about
2992555Sdes    have been removed from OpenSSH, i.e.,
3065668Skris
3165668Skris     - RSA is no longer included, found in the OpenSSL library
3276259Sgreen     - IDEA is no longer included, its use is deprecated
3365668Skris     - DES is now external, in the OpenSSL library
3465668Skris     - GMP is no longer used, and instead we call BN code from OpenSSL
3565668Skris     - Zlib is now external, in a library
3665668Skris     - The make-ssh-known-hosts script is no longer included
3765668Skris     - TSS has been removed
3865668Skris     - MD5 is now external, in the OpenSSL library
3969587Sgreen     - RC4 support has been replaced with ARC4 support from OpenSSL
4065668Skris     - Blowfish is now external, in the OpenSSL library
4165668Skris
4265668Skris    [The licence continues]
4365668Skris
4465668Skris    Note that any information and cryptographic algorithms used in this
4565668Skris    software are publicly available on the Internet and at any major
4665668Skris    bookstore, scientific library, and patent office worldwide.  More
4765668Skris    information can be found e.g. at "http://www.cs.hut.fi/crypto".
48126277Sdes
4965668Skris    The legal status of this program is some combination of all these
5065668Skris    permissions and restrictions.  Use only at your own responsibility.
5165668Skris    You will be responsible for any legal consequences yourself; I am not
5265668Skris    making any claims whether possessing or using this is legal or not in
5365668Skris    your country, and I am not taking any responsibility on your behalf.
54126277Sdes
55126277Sdes
56126277Sdes			    NO WARRANTY
57126277Sdes
5865668Skris    BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
5965668Skris    FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
6065668Skris    OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
6165668Skris    PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
6265668Skris    OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
6365668Skris    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
6465668Skris    TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
6565668Skris    PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
6665668Skris    REPAIR OR CORRECTION.
67126277Sdes
6865668Skris    IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
6965668Skris    WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
7065668Skris    REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
7165668Skris    INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
7265668Skris    OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
7365668Skris    TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
7465668Skris    YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
7565668Skris    PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
7665668Skris    POSSIBILITY OF SUCH DAMAGES.
7765668Skris
7865668Skris2)
7965668Skris    The 32-bit CRC compensation attack detector in deattack.c was
8092555Sdes    contributed by CORE SDI S.A. under a BSD-style license.
8165668Skris
8265668Skris     * Cryptographic attack detector for ssh - source code
8365668Skris     *
8465668Skris     * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.
8565668Skris     *
8665668Skris     * All rights reserved. Redistribution and use in source and binary
8765668Skris     * forms, with or without modification, are permitted provided that
8865668Skris     * this copyright notice is retained.
8965668Skris     *
9065668Skris     * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
9165668Skris     * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE
9265668Skris     * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR
9365668Skris     * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS
9465668Skris     * SOFTWARE.
9565668Skris     *
9665668Skris     * Ariel Futoransky <futo@core-sdi.com>
9765668Skris     * <http://www.core-sdi.com>
9892555Sdes
99124211Sdes3)
100147005Sdes    ssh-keyscan was contributed by David Mazieres under a BSD-style
10192555Sdes    license.
10292555Sdes
10392555Sdes     * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
10492555Sdes     *
10592555Sdes     * Modification and redistribution in source and binary forms is
10692555Sdes     * permitted provided that due credit is given to the author and the
10792555Sdes     * OpenBSD project by leaving this copyright notice intact.
10892555Sdes
109124211Sdes4)
11092555Sdes    The Rijndael implementation by Vincent Rijmen, Antoon Bosselaers
11192555Sdes    and Paulo Barreto is in the public domain and distributed
11292555Sdes    with the following license:
11392555Sdes
11492555Sdes     * @version 3.0 (December 2000)
115126277Sdes     *
11692555Sdes     * Optimised ANSI C code for the Rijndael cipher (now AES)
117126277Sdes     *
11892555Sdes     * @author Vincent Rijmen <vincent.rijmen@esat.kuleuven.ac.be>
11992555Sdes     * @author Antoon Bosselaers <antoon.bosselaers@esat.kuleuven.ac.be>
12092555Sdes     * @author Paulo Barreto <paulo.barreto@terra.com.br>
121126277Sdes     *
12292555Sdes     * This code is hereby placed in the public domain.
123126277Sdes     *
12492555Sdes     * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
12592555Sdes     * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
12692555Sdes     * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
12792555Sdes     * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
12892555Sdes     * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
12992555Sdes     * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
13092555Sdes     * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
13192555Sdes     * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
13292555Sdes     * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
13392555Sdes     * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
13492555Sdes     * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13592555Sdes
136124211Sdes5)
137124211Sdes    One component of the ssh source code is under a 3-clause BSD license,
13892555Sdes    held by the University of California, since we pulled these parts from
139124211Sdes    original Berkeley code.
14092555Sdes
14192555Sdes     * Copyright (c) 1983, 1990, 1992, 1993, 1995
14292555Sdes     *      The Regents of the University of California.  All rights reserved.
14392555Sdes     *
14492555Sdes     * Redistribution and use in source and binary forms, with or without
14592555Sdes     * modification, are permitted provided that the following conditions
14692555Sdes     * are met:
14792555Sdes     * 1. Redistributions of source code must retain the above copyright
14892555Sdes     *    notice, this list of conditions and the following disclaimer.
14992555Sdes     * 2. Redistributions in binary form must reproduce the above copyright
15092555Sdes     *    notice, this list of conditions and the following disclaimer in the
15192555Sdes     *    documentation and/or other materials provided with the distribution.
152124211Sdes     * 3. Neither the name of the University nor the names of its contributors
15392555Sdes     *    may be used to endorse or promote products derived from this software
15492555Sdes     *    without specific prior written permission.
15592555Sdes     *
15692555Sdes     * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
15792555Sdes     * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15892555Sdes     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
15992555Sdes     * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
16092555Sdes     * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
16192555Sdes     * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
16292555Sdes     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
16392555Sdes     * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
16492555Sdes     * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
16592555Sdes     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
16692555Sdes     * SUCH DAMAGE.
16792555Sdes
168124211Sdes6)
16965668Skris    Remaining components of the software are provided under a standard
17065668Skris    2-term BSD licence with the following names as copyright holders:
17165668Skris
17265668Skris	Markus Friedl
17365668Skris	Theo de Raadt
17465668Skris	Niels Provos
17565668Skris	Dug Song
17665668Skris	Aaron Campbell
17792555Sdes	Damien Miller
17892555Sdes	Kevin Steves
17998684Sdes	Daniel Kouril
180124211Sdes	Wesley Griffin
181124211Sdes	Per Allansson
182124211Sdes	Nils Nordman
183124211Sdes	Simon Wilkinson
18465668Skris
185126277Sdes    Portable OpenSSH additionally includes code from the following copyright
186124211Sdes    holders, also under the 2-term BSD license:
187124211Sdes
188124211Sdes	Ben Lindstrom
189124211Sdes	Tim Rice
190124211Sdes	Andre Lucas
191124211Sdes	Chris Adams
192124211Sdes	Corinna Vinschen
193124211Sdes	Cray Inc.
194124211Sdes	Denis Parker
195124211Sdes	Gert Doering
196124211Sdes	Jakob Schlyter
197124211Sdes	Jason Downs
198124211Sdes	Juha Yrj�l�
199124211Sdes	Michael Stone
200124211Sdes	Networks Associates Technology, Inc.
201124211Sdes	Solar Designer
202124211Sdes	Todd C. Miller
203124211Sdes	Wayne Schroeder
204124211Sdes	William Jones
205126277Sdes	Darren Tucker
206147005Sdes	Sun Microsystems
207149753Sdes	The SCO Group
208181111Sdes	Daniel Walsh
209221420Sdes	Red Hat, Inc
210240075Sdes	Simon Vallet / Genoscope
211124211Sdes
21265668Skris     * Redistribution and use in source and binary forms, with or without
21365668Skris     * modification, are permitted provided that the following conditions
21465668Skris     * are met:
21565668Skris     * 1. Redistributions of source code must retain the above copyright
21665668Skris     *    notice, this list of conditions and the following disclaimer.
21765668Skris     * 2. Redistributions in binary form must reproduce the above copyright
21865668Skris     *    notice, this list of conditions and the following disclaimer in the
21965668Skris     *    documentation and/or other materials provided with the distribution.
22065668Skris     *
22165668Skris     * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22265668Skris     * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22365668Skris     * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22465668Skris     * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22565668Skris     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22665668Skris     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22765668Skris     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22865668Skris     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22965668Skris     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23065668Skris     * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
231124211Sdes
232124211Sdes8) Portable OpenSSH contains the following additional licenses:
233124211Sdes
234124211Sdes    a) md5crypt.c, md5crypt.h
235124211Sdes
236124211Sdes	 * "THE BEER-WARE LICENSE" (Revision 42):
237126277Sdes	 * <phk@login.dknet.dk> wrote this file.  As long as you retain this
238126277Sdes	 * notice you can do whatever you want with this stuff. If we meet
239126277Sdes	 * some day, and you think this stuff is worth it, you can buy me a
240124211Sdes	 * beer in return.   Poul-Henning Kamp
241124211Sdes
242124211Sdes    b) snprintf replacement
243124211Sdes
244124211Sdes	* Copyright Patrick Powell 1995
245126277Sdes	* This code is based on code written by Patrick Powell
246126277Sdes	* (papowell@astart.com) It may be used for any purpose as long as this
247124211Sdes	* notice remains intact on all source code distributions
248124211Sdes
249124211Sdes    c) Compatibility code (openbsd-compat)
250124211Sdes
251126277Sdes       Apart from the previously mentioned licenses, various pieces of code
252124211Sdes       in the openbsd-compat/ subdirectory are licensed as follows:
253124211Sdes
254126277Sdes       Some code is licensed under a 3-term BSD license, to the following
255124211Sdes       copyright holders:
256124211Sdes
257124211Sdes	Todd C. Miller
258124211Sdes	Theo de Raadt
259124211Sdes	Damien Miller
260124211Sdes	Eric P. Allman
261124211Sdes	The Regents of the University of California
262149753Sdes	Constantin S. Svintsoff
263124211Sdes
264124211Sdes	* Redistribution and use in source and binary forms, with or without
265124211Sdes	* modification, are permitted provided that the following conditions
266124211Sdes	* are met:
267124211Sdes	* 1. Redistributions of source code must retain the above copyright
268124211Sdes	*    notice, this list of conditions and the following disclaimer.
269124211Sdes	* 2. Redistributions in binary form must reproduce the above copyright
270124211Sdes	*    notice, this list of conditions and the following disclaimer in the
271124211Sdes	*    documentation and/or other materials provided with the distribution.
272124211Sdes	* 3. Neither the name of the University nor the names of its contributors
273124211Sdes	*    may be used to endorse or promote products derived from this software
274124211Sdes	*    without specific prior written permission.
275124211Sdes	*
276124211Sdes	* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
277124211Sdes	* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
278124211Sdes	* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
279124211Sdes	* ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
280124211Sdes	* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
281124211Sdes	* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
282124211Sdes	* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
283124211Sdes	* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
284124211Sdes	* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
285124211Sdes	* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
286124211Sdes	* SUCH DAMAGE.
287124211Sdes
288126277Sdes       Some code is licensed under an ISC-style license, to the following
289124211Sdes       copyright holders:
290124211Sdes
291124211Sdes	Internet Software Consortium.
292124211Sdes	Todd C. Miller
293162856Sdes	Reyk Floeter
294162856Sdes	Chad Mynhier
295124211Sdes
296124211Sdes	* Permission to use, copy, modify, and distribute this software for any
297124211Sdes	* purpose with or without fee is hereby granted, provided that the above
298124211Sdes	* copyright notice and this permission notice appear in all copies.
299124211Sdes	*
300124211Sdes	* THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL
301124211Sdes	* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
302124211Sdes	* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE
303124211Sdes	* FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
304124211Sdes	* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
305124211Sdes	* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
306124211Sdes	* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
307124211Sdes
308126277Sdes       Some code is licensed under a MIT-style license to the following
309124211Sdes       copyright holders:
310124211Sdes
311124211Sdes	Free Software Foundation, Inc.
312124211Sdes
313124211Sdes	* Permission is hereby granted, free of charge, to any person obtaining a  *
314124211Sdes	* copy of this software and associated documentation files (the            *
315124211Sdes	* "Software"), to deal in the Software without restriction, including      *
316124211Sdes	* without limitation the rights to use, copy, modify, merge, publish,      *
317124211Sdes	* distribute, distribute with modifications, sublicense, and/or sell       *
318124211Sdes	* copies of the Software, and to permit persons to whom the Software is    *
319124211Sdes	* furnished to do so, subject to the following conditions:                 *
320124211Sdes	*                                                                          *
321124211Sdes	* The above copyright notice and this permission notice shall be included  *
322124211Sdes	* in all copies or substantial portions of the Software.                   *
323124211Sdes	*                                                                          *
324124211Sdes	* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
325124211Sdes	* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
326124211Sdes	* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
327124211Sdes	* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
328124211Sdes	* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
329124211Sdes	* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
330124211Sdes	* THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
331124211Sdes	*                                                                          *
332124211Sdes	* Except as contained in this notice, the name(s) of the above copyright   *
333124211Sdes	* holders shall not be used in advertising or otherwise to promote the     *
334124211Sdes	* sale, use or other dealings in this Software without prior written       *
335124211Sdes	* authorization.                                                           *
336124211Sdes	****************************************************************************/
337124211Sdes
338124211Sdes
339124211Sdes------
340147005Sdes$OpenBSD: LICENCE,v 1.19 2004/08/30 09:18:08 markus Exp $
341