LICENCE revision 69587
1210409SkibThis file is part of the ssh software.
2210409Skib
3210409SkibThe licences which components of this software falls under are as
4210409Skibfollows.  First, we will summarize and say that that all components
5210409Skibare under a BSD licence, or a licence more free than that.
6210409Skib
7210409SkibOpenSSH contains no GPL code.
8210409Skib
9210409Skib1)
10210409Skib     * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
11210409Skib     *                    All rights reserved
12210409Skib     *
13210409Skib     * As far as I am concerned, the code I have written for this software
14210409Skib     * can be used freely for any purpose.  Any derived versions of this
15210409Skib     * software must be clearly marked as such, and if the derived work is
16210409Skib     * incompatible with the protocol description in the RFC file, it must be
17210409Skib     * called by a name other than "ssh" or "Secure Shell".
18210409Skib
19210409Skib    [Tatu continues]
20210409Skib     *  However, I am not implying to give any licenses to any patents or
21210409Skib     * copyrights held by third parties, and the software includes parts that
22210409Skib     * are not under my direct control.  As far as I know, all included
23210409Skib     * source code is used in accordance with the relevant license agreements
24210409Skib     * and can be used freely for any purpose (the GNU license being the most
25210409Skib     * restrictive); see below for details.
26210409Skib
27210409Skib    [However, none of that term is relevant at this point in time.  All of
28210409Skib    these restrictively licenced software components which he talks about
29210409Skib    have been removed from OpenSSH, ie.
30210409Skib
31210409Skib     - RSA is no longer included, found in the OpenSSL library
32210409Skib     - IDEA is no longer included, it's use is depricated
33210409Skib     - DES is now external, in the OpenSSL library
34210409Skib     - GMP is no longer used, and instead we call BN code from OpenSSL
35210409Skib     - Zlib is now external, in a library
36210409Skib     - The make-ssh-known-hosts script is no longer included
37210409Skib     - TSS has been removed
38210409Skib     - MD5 is now external, in the OpenSSL library
39210409Skib     - RC4 support has been replaced with ARC4 support from OpenSSL
40210409Skib     - Blowfish is now external, in the OpenSSL library
41210409Skib
42210409Skib    [The licence continues]
43210409Skib
44210409Skib    Note that any information and cryptographic algorithms used in this
45210409Skib    software are publicly available on the Internet and at any major
46210409Skib    bookstore, scientific library, and patent office worldwide.  More
47210409Skib    information can be found e.g. at "http://www.cs.hut.fi/crypto".
48210409Skib    
49210409Skib    The legal status of this program is some combination of all these
50210409Skib    permissions and restrictions.  Use only at your own responsibility.
51210409Skib    You will be responsible for any legal consequences yourself; I am not
52210409Skib    making any claims whether possessing or using this is legal or not in
53210409Skib    your country, and I am not taking any responsibility on your behalf.
54210409Skib    
55210409Skib    
56210409Skib    			    NO WARRANTY
57210409Skib    
58210409Skib    BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
59210409Skib    FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
60210409Skib    OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
61210409Skib    PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
62210409Skib    OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
63210409Skib    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
64210409Skib    TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
65210409Skib    PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
66210409Skib    REPAIR OR CORRECTION.
67210409Skib    
68210409Skib    IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
69210409Skib    WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
70210409Skib    REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
71210409Skib    INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
72210409Skib    OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
73210409Skib    TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
74210409Skib    YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
75210409Skib    PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
76210409Skib    POSSIBILITY OF SUCH DAMAGES.
77213069Spjd
78210409Skib2)
79210409Skib    The 32-bit CRC implementation in crc32.c is due to Gary S. Brown.
80210409Skib    Comments in the file indicate it may be used for any purpose without
81210409Skib    restrictions:
82210409Skib
83210409Skib     * COPYRIGHT (C) 1986 Gary S. Brown.  You may use this program, or
84210409Skib     * code or tables extracted from it, as desired without restriction.
85210409Skib
86210409Skib3)
87210409Skib    The 32-bit CRC compensation attack detector in deattack.c was
88210409Skib    contributed by CORE SDI S.A. under a BSD-style license. See
89210409Skib    http://www.core-sdi.com/english/ssh/ for details.
90210409Skib
91210409Skib     * Cryptographic attack detector for ssh - source code
92210409Skib     *
93210409Skib     * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.
94210409Skib     *
95210409Skib     * All rights reserved. Redistribution and use in source and binary
96210409Skib     * forms, with or without modification, are permitted provided that
97213069Spjd     * this copyright notice is retained.
98210409Skib     *
99210409Skib     * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
100210409Skib     * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE
101210409Skib     * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR
102210409Skib     * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS
103210409Skib     * SOFTWARE.
104210409Skib     *
105210409Skib     * Ariel Futoransky <futo@core-sdi.com>
106210409Skib     * <http://www.core-sdi.com>
107210409Skib    
108210409Skib4)
109210409Skib    Remaining components of the software are provided under a standard
110210409Skib    2-term BSD licence with the following names as copyright holders:
111210409Skib
112210409Skib	Markus Friedl
113210409Skib	Theo de Raadt
114210409Skib	Niels Provos
115210409Skib	Dug Song
116210409Skib	Aaron Campbell
117210409Skib
118210409Skib     * Redistribution and use in source and binary forms, with or without
119231979Skib     * modification, are permitted provided that the following conditions
120210409Skib     * are met:
121210409Skib     * 1. Redistributions of source code must retain the above copyright
122210409Skib     *    notice, this list of conditions and the following disclaimer.
123210409Skib     * 2. Redistributions in binary form must reproduce the above copyright
124210409Skib     *    notice, this list of conditions and the following disclaimer in the
125210409Skib     *    documentation and/or other materials provided with the distribution.
126210409Skib     *
127210409Skib     * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
128210409Skib     * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
129210409Skib     * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
130210409Skib     * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
131210409Skib     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
132210409Skib     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
133210409Skib     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
134210409Skib     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
135210409Skib     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
136210409Skib     * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
137210409Skib