LICENSE 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. ****************************************************************
  2. ****************************************************************
  3. ANY REDISTRIBUTION OF THIS SOURCE OR DERIVATIVES OF THIS SOURCE
  4. MUST INCLUDE THIS FILE, README, DOC/CREDITS, CMD_ABOUT, AND FILE HEADERS
  5. WITH LICENSING/COPYRIGHTS.
  6. CMD_ABOUT MUST INCLUDE: CREDITS TO BRYAN/EGGDEV/GHOST AND THE
  7. OFFICIAL WRAITH URL (http://wraith.botpack.net)
  8. -Bryan Drewery
  9. ****************************************************************
  10. ****************************************************************
  11. Some old releases are missing the GPL headers and this file, however they are still
  12. bound by these terms and the GPL.
  13. This package includes a mix of licenses:
  14. * Public domain
  15. * BSD
  16. * GPL v2
  17. * BSD-style
  18. * This product includes unlicensed code (mostly GPL) by Erik Johansen (einride) from the ghost botpack (http://ghost.botpack.net)
  19. snprintf.c:
  20. * This code is based on code written by Patrick Powell (papowell@astart.com)
  21. * It may be used for any purpose as long as this notice remains intact
  22. * on all source code distributions
  23. This contains code derived from dirtirc (which is mostly derived from eggdrop): http://dirtirc.sf.net/
  24. /*
  25. * Copyright (C) 1997 Robey Pointer
  26. * Copyright (C) 1999 - 2008 Eggheads Development Team (http://www.eggheads.org)
  27. * Copyright (C) 2002 - 2008 Bryan Drewery (http://wraith.botpack.net)
  28. *
  29. * This program is free software; you can redistribute it and/or
  30. * modify it under the terms of the GNU General Public License
  31. * as published by the Free Software Foundation; either version 2
  32. * of the License, or (at your option) any later version.
  33. *
  34. * This program is distributed in the hope that it will be useful,
  35. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  37. * GNU General Public License for more details.
  38. *
  39. * You should have received a copy of the GNU General Public License
  40. * along with this program; if not, write to the Free Software
  41. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  42. */
  43. (FULL GPL CAN BE FOUND IN DOC/GPL)
  44. src/crypto files (AES, MD5, SHA1):
  45. /* ====================================================================
  46. * Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved.
  47. *
  48. * Redistribution and use in source and binary forms, with or without
  49. * modification, are permitted provided that the following conditions
  50. * are met:
  51. *
  52. * 1. Redistributions of source code must retain the above copyright
  53. * notice, this list of conditions and the following disclaimer.
  54. *
  55. * 2. Redistributions in binary form must reproduce the above copyright
  56. * notice, this list of conditions and the following disclaimer in
  57. * the documentation and/or other materials provided with the
  58. * distribution.
  59. *
  60. * 3. All advertising materials mentioning features or use of this
  61. * software must display the following acknowledgment:
  62. * "This product includes software developed by the OpenSSL Project
  63. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  64. *
  65. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  66. * endorse or promote products derived from this software without
  67. * prior written permission. For written permission, please contact
  68. * openssl-core@openssl.org.
  69. *
  70. * 5. Products derived from this software may not be called "OpenSSL"
  71. * nor may "OpenSSL" appear in their names without prior written
  72. * permission of the OpenSSL Project.
  73. *
  74. * 6. Redistributions of any form whatsoever must retain the following
  75. * acknowledgment:
  76. * "This product includes software developed by the OpenSSL Project
  77. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  78. *
  79. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  80. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  81. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  82. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  83. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  84. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  85. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  86. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  87. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  88. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  89. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  90. * OF THE POSSIBILITY OF SUCH DAMAGE.
  91. * ====================================================================
  92. *
  93. * This product includes cryptographic software written by Eric Young
  94. * (eay@cryptsoft.com). This product includes software written by Tim
  95. * Hudson (tjh@cryptsoft.com).
  96. *
  97. */