17c478bd9Sstevel@tonic-gateThis file is part of the ssh software. 27c478bd9Sstevel@tonic-gate 37c478bd9Sstevel@tonic-gateThe licences which components of this software falls under are as 47c478bd9Sstevel@tonic-gatefollows. First, we will summarize and say that that all components 57c478bd9Sstevel@tonic-gateare under a BSD licence, or a licence more free than that. 67c478bd9Sstevel@tonic-gate 77c478bd9Sstevel@tonic-gateOpenSSH contains no GPL code. 87c478bd9Sstevel@tonic-gate 97c478bd9Sstevel@tonic-gate1) 107c478bd9Sstevel@tonic-gate * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 117c478bd9Sstevel@tonic-gate * All rights reserved 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * As far as I am concerned, the code I have written for this software 147c478bd9Sstevel@tonic-gate * can be used freely for any purpose. Any derived versions of this 157c478bd9Sstevel@tonic-gate * software must be clearly marked as such, and if the derived work is 167c478bd9Sstevel@tonic-gate * incompatible with the protocol description in the RFC file, it must be 177c478bd9Sstevel@tonic-gate * called by a name other than "ssh" or "Secure Shell". 187c478bd9Sstevel@tonic-gate 197c478bd9Sstevel@tonic-gate [Tatu continues] 207c478bd9Sstevel@tonic-gate * However, I am not implying to give any licenses to any patents or 217c478bd9Sstevel@tonic-gate * copyrights held by third parties, and the software includes parts that 227c478bd9Sstevel@tonic-gate * are not under my direct control. As far as I know, all included 237c478bd9Sstevel@tonic-gate * source code is used in accordance with the relevant license agreements 247c478bd9Sstevel@tonic-gate * and can be used freely for any purpose (the GNU license being the most 257c478bd9Sstevel@tonic-gate * restrictive); see below for details. 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate [However, none of that term is relevant at this point in time. All of 287c478bd9Sstevel@tonic-gate these restrictively licenced software components which he talks about 297c478bd9Sstevel@tonic-gate have been removed from OpenSSH, ie. 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gate - RSA is no longer included, found in the OpenSSL library 327c478bd9Sstevel@tonic-gate - IDEA is no longer included, it's use is depricated 337c478bd9Sstevel@tonic-gate - DES is now external, in the OpenSSL library 347c478bd9Sstevel@tonic-gate - GMP is no longer used, and instead we call BN code from OpenSSL 357c478bd9Sstevel@tonic-gate - Zlib is now external, in a library 367c478bd9Sstevel@tonic-gate - The make-ssh-known-hosts script is no longer included 377c478bd9Sstevel@tonic-gate - TSS has been removed 387c478bd9Sstevel@tonic-gate - MD5 is now external, in the OpenSSL library 397c478bd9Sstevel@tonic-gate - RC4 support has been replaced with ARC4 support from OpenSSL 407c478bd9Sstevel@tonic-gate - Blowfish is now external, in the OpenSSL library 417c478bd9Sstevel@tonic-gate 427c478bd9Sstevel@tonic-gate [The licence continues] 437c478bd9Sstevel@tonic-gate 447c478bd9Sstevel@tonic-gate Note that any information and cryptographic algorithms used in this 457c478bd9Sstevel@tonic-gate software are publicly available on the Internet and at any major 467c478bd9Sstevel@tonic-gate bookstore, scientific library, and patent office worldwide. More 477c478bd9Sstevel@tonic-gate information can be found e.g. at "http://www.cs.hut.fi/crypto". 487c478bd9Sstevel@tonic-gate 497c478bd9Sstevel@tonic-gate The legal status of this program is some combination of all these 507c478bd9Sstevel@tonic-gate permissions and restrictions. Use only at your own responsibility. 517c478bd9Sstevel@tonic-gate You will be responsible for any legal consequences yourself; I am not 527c478bd9Sstevel@tonic-gate making any claims whether possessing or using this is legal or not in 537c478bd9Sstevel@tonic-gate your country, and I am not taking any responsibility on your behalf. 547c478bd9Sstevel@tonic-gate 557c478bd9Sstevel@tonic-gate 567c478bd9Sstevel@tonic-gate NO WARRANTY 577c478bd9Sstevel@tonic-gate 587c478bd9Sstevel@tonic-gate BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 597c478bd9Sstevel@tonic-gate FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 607c478bd9Sstevel@tonic-gate OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 617c478bd9Sstevel@tonic-gate PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 627c478bd9Sstevel@tonic-gate OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 637c478bd9Sstevel@tonic-gate MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 647c478bd9Sstevel@tonic-gate TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 657c478bd9Sstevel@tonic-gate PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 667c478bd9Sstevel@tonic-gate REPAIR OR CORRECTION. 677c478bd9Sstevel@tonic-gate 687c478bd9Sstevel@tonic-gate IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 697c478bd9Sstevel@tonic-gate WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 707c478bd9Sstevel@tonic-gate REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 717c478bd9Sstevel@tonic-gate INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 727c478bd9Sstevel@tonic-gate OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 737c478bd9Sstevel@tonic-gate TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 747c478bd9Sstevel@tonic-gate YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 757c478bd9Sstevel@tonic-gate PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 767c478bd9Sstevel@tonic-gate POSSIBILITY OF SUCH DAMAGES. 777c478bd9Sstevel@tonic-gate 787c478bd9Sstevel@tonic-gate2) 797c478bd9Sstevel@tonic-gate The 32-bit CRC implementation in crc32.c is due to Gary S. Brown. 807c478bd9Sstevel@tonic-gate Comments in the file indicate it may be used for any purpose without 817c478bd9Sstevel@tonic-gate restrictions: 827c478bd9Sstevel@tonic-gate 837c478bd9Sstevel@tonic-gate * COPYRIGHT (C) 1986 Gary S. Brown. You may use this program, or 847c478bd9Sstevel@tonic-gate * code or tables extracted from it, as desired without restriction. 857c478bd9Sstevel@tonic-gate 867c478bd9Sstevel@tonic-gate3) 877c478bd9Sstevel@tonic-gate The 32-bit CRC compensation attack detector in deattack.c was 887c478bd9Sstevel@tonic-gate contributed by CORE SDI S.A. under a BSD-style license. See 897c478bd9Sstevel@tonic-gate http://www.core-sdi.com/english/ssh/ for details. 907c478bd9Sstevel@tonic-gate 917c478bd9Sstevel@tonic-gate * Cryptographic attack detector for ssh - source code 927c478bd9Sstevel@tonic-gate * 937c478bd9Sstevel@tonic-gate * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina. 947c478bd9Sstevel@tonic-gate * 957c478bd9Sstevel@tonic-gate * All rights reserved. Redistribution and use in source and binary 967c478bd9Sstevel@tonic-gate * forms, with or without modification, are permitted provided that 977c478bd9Sstevel@tonic-gate * this copyright notice is retained. 987c478bd9Sstevel@tonic-gate * 997c478bd9Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 1007c478bd9Sstevel@tonic-gate * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE 1017c478bd9Sstevel@tonic-gate * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR 1027c478bd9Sstevel@tonic-gate * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS 1037c478bd9Sstevel@tonic-gate * SOFTWARE. 1047c478bd9Sstevel@tonic-gate * 1057c478bd9Sstevel@tonic-gate * Ariel Futoransky <futo@core-sdi.com> 1067c478bd9Sstevel@tonic-gate * <http://www.core-sdi.com> 1077c478bd9Sstevel@tonic-gate 108*4e5b757fSkupfer3a) 109*4e5b757fSkupfer Various parts are from the University of California. 110*4e5b757fSkupfer 111*4e5b757fSkupfer * Copyright (c) 1983, 1987, 1989-1995 112*4e5b757fSkupfer * The Regents of the University of California. All rights reserved. 113*4e5b757fSkupfer * 114*4e5b757fSkupfer * Redistribution and use in source and binary forms, with or without 115*4e5b757fSkupfer * modification, are permitted provided that the following conditions 116*4e5b757fSkupfer * are met: 117*4e5b757fSkupfer * 1. Redistributions of source code must retain the above copyright 118*4e5b757fSkupfer * notice, this list of conditions and the following disclaimer. 119*4e5b757fSkupfer * 2. Redistributions in binary form must reproduce the above copyright 120*4e5b757fSkupfer * notice, this list of conditions and the following disclaimer in the 121*4e5b757fSkupfer * documentation and/or other materials provided with the distribution. 122*4e5b757fSkupfer * 3. All advertising materials mentioning features or use of this software 123*4e5b757fSkupfer * must display the following acknowledgement: 124*4e5b757fSkupfer * This product includes software developed by the University of 125*4e5b757fSkupfer * California, Berkeley and its contributors. 126*4e5b757fSkupfer * 4. Neither the name of the University nor the names of its contributors 127*4e5b757fSkupfer * may be used to endorse or promote products derived from this software 128*4e5b757fSkupfer * without specific prior written permission. 129*4e5b757fSkupfer * 130*4e5b757fSkupfer * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 131*4e5b757fSkupfer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 132*4e5b757fSkupfer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 133*4e5b757fSkupfer * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 134*4e5b757fSkupfer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 135*4e5b757fSkupfer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 136*4e5b757fSkupfer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 137*4e5b757fSkupfer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 138*4e5b757fSkupfer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 139*4e5b757fSkupfer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 140*4e5b757fSkupfer * SUCH DAMAGE. 141*4e5b757fSkupfer 142*4e5b757fSkupfer * Copyright (c) 1989, 1991, 1993, 1994 143*4e5b757fSkupfer * The Regents of the University of California. All rights reserved. 144*4e5b757fSkupfer * 145*4e5b757fSkupfer * Redistribution and use in source and binary forms, with or without 146*4e5b757fSkupfer * modification, are permitted provided that the following conditions 147*4e5b757fSkupfer * are met: 148*4e5b757fSkupfer * 1. Redistributions of source code must retain the above copyright 149*4e5b757fSkupfer * notice, this list of conditions and the following disclaimer. 150*4e5b757fSkupfer * 2. Redistributions in binary form must reproduce the above copyright 151*4e5b757fSkupfer * notice, this list of conditions and the following disclaimer in the 152*4e5b757fSkupfer * documentation and/or other materials provided with the distribution. 153*4e5b757fSkupfer * 154*4e5b757fSkupfer * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 155*4e5b757fSkupfer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 156*4e5b757fSkupfer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 157*4e5b757fSkupfer * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 158*4e5b757fSkupfer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 159*4e5b757fSkupfer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 160*4e5b757fSkupfer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 161*4e5b757fSkupfer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 162*4e5b757fSkupfer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 163*4e5b757fSkupfer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 164*4e5b757fSkupfer * SUCH DAMAGE. 165*4e5b757fSkupfer 1667c478bd9Sstevel@tonic-gate4) 1677c478bd9Sstevel@tonic-gate Remaining components of the software are provided under a standard 1687c478bd9Sstevel@tonic-gate 2-term BSD licence with the following names as copyright holders: 1697c478bd9Sstevel@tonic-gate 1707c478bd9Sstevel@tonic-gate Markus Friedl 1717c478bd9Sstevel@tonic-gate Theo de Raadt 1727c478bd9Sstevel@tonic-gate Niels Provos 1737c478bd9Sstevel@tonic-gate Dug Song 1747c478bd9Sstevel@tonic-gate Aaron Campbell 1757c478bd9Sstevel@tonic-gate 1767c478bd9Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without 1777c478bd9Sstevel@tonic-gate * modification, are permitted provided that the following conditions 1787c478bd9Sstevel@tonic-gate * are met: 1797c478bd9Sstevel@tonic-gate * 1. Redistributions of source code must retain the above copyright 1807c478bd9Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer. 1817c478bd9Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright 1827c478bd9Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in the 1837c478bd9Sstevel@tonic-gate * documentation and/or other materials provided with the distribution. 1847c478bd9Sstevel@tonic-gate * 1857c478bd9Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 1867c478bd9Sstevel@tonic-gate * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 1877c478bd9Sstevel@tonic-gate * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 1887c478bd9Sstevel@tonic-gate * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 1897c478bd9Sstevel@tonic-gate * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 1907c478bd9Sstevel@tonic-gate * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 1917c478bd9Sstevel@tonic-gate * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 1927c478bd9Sstevel@tonic-gate * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 1937c478bd9Sstevel@tonic-gate * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 1947c478bd9Sstevel@tonic-gate * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 195