LICENSE 4.7 KB

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