Chromium Updater
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
8.3 KiB

13 years ago
  1. Copyright (c) 2006 Andy Matuschak
  2. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  3. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  4. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  5. =================
  6. EXTERNAL LICENSES
  7. =================
  8. This project uses software developed by the OpenSSL Project for use in the OpenSSL
  9. Toolkit (http://www.openssl.org). This toolkit is licensed as follows:
  10. /* ====================================================================
  11. * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
  12. *
  13. * Redistribution and use in source and binary forms, with or without
  14. * modi�cation, are permitted provided that the following conditions
  15. * are met:
  16. *
  17. * 1. Redistributions of source code must retain the above copyright
  18. * notice, this list of conditions and the following disclaimer.
  19. *
  20. * 2. Redistributions in binary form must reproduce the above copyright
  21. * notice, this list of conditions and the following disclaimer in
  22. * the documentation and/or other materials provided with the
  23. * distribution.
  24. *
  25. * 3. All advertising materials mentioning features or use of this
  26. * software must display the following acknowledgment:
  27. * �This product includes software developed by the OpenSSL Project
  28. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)�
  29. *
  30. * 4. The names �OpenSSL Toolkit� and �OpenSSL Project� must not be used to
  31. * endorse or promote products derived from this software without
  32. * prior written permission. For written permission, please contact
  33. * openssl-core@openssl.org.
  34. *
  35. * 5. Products derived from this software may not be called �OpenSSL�
  36. * nor may �OpenSSL� appear in their names without prior written
  37. * permission of the OpenSSL Project.
  38. *
  39. * 6. Redistributions of any form whatsoever must retain the following
  40. * acknowledgment:
  41. * �This product includes software developed by the OpenSSL Project
  42. * for use in the OpenSSL Toolkit (http://www.openssl.org/)�
  43. *
  44. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS�� AND ANY
  45. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  46. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  47. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  48. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  49. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  50. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  51. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  52. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  53. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  54. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  55. * OF THE POSSIBILITY OF SUCH DAMAGE.
  56. * ====================================================================
  57. *
  58. * This product includes cryptographic software written by Eric Young
  59. * (eay@cryptsoft.com). This product includes software written by Tim
  60. * Hudson (tjh@cryptsoft.com).
  61. *
  62. */
  63. Original SSLeay License
  64. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  65. * All rights reserved.
  66. *
  67. * This package is an SSL implementation written
  68. * by Eric Young (eay@cryptsoft.com).
  69. * The implementation was written so as to conform with Netscapes SSL.
  70. *
  71. * This library is free for commercial and non-commercial use as long as
  72. * the following conditions are aheared to. The following conditions
  73. * apply to all code found in this distribution, be it the RC4, RSA,
  74. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  75. * included with this distribution is covered by the same copyright terms
  76. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  77. *
  78. * Copyright remains Eric Young�s, and as such any Copyright notices in
  79. * the code are not to be removed.
  80. * If this package is used in a product, Eric Young should be given attribution
  81. * as the author of the parts of the library used.
  82. * This can be in the form of a textual message at program startup or
  83. * in documentation (online or textual) provided with the package.
  84. *
  85. * Redistribution and use in source and binary forms, with or without
  86. * modi�cation, are permitted provided that the following conditions
  87. * are met:
  88. * 1. Redistributions of source code must retain the copyright
  89. * notice, this list of conditions and the following disclaimer.
  90. * 2. Redistributions in binary form must reproduce the above copyright
  91. * notice, this list of conditions and the following disclaimer in the
  92. * documentation and/or other materials provided with the distribution.
  93. * 3. All advertising materials mentioning features or use of this software
  94. * must display the following acknowledgement:
  95. * �This product includes cryptographic software written by
  96. * Eric Young (eay@cryptsoft.com)�
  97. * The word �cryptographic� can be left out if the rouines from the library
  98. * being used are not cryptographic related :-).
  99. * 4. If you include any Windows speci�c code (or a derivative thereof) from
  100. * the apps directory (application code) you must include an acknowledgement:
  101. * �This product includes software written by Tim Hudson (tjh@cryptsoft.com)�
  102. *
  103. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS�� AND
  104. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  105. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  106. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  107. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  108. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  109. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  110. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  111. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  112. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  113. * SUCH DAMAGE.
  114. *
  115. * The licence and distribution terms for any publically available version or
  116. * derivative of this code cannot be changed. i.e. this code cannot simply be
  117. * copied and put under another distribution licence
  118. * [including the GNU Public Licence.]
  119. */
  120. License for bspatch.c and bsdiff.c, from bsdiff 4.3 (<http://www.daemonology.net/bsdiff/>:
  121. /*-
  122. * Copyright 2003-2005 Colin Percival
  123. * All rights reserved
  124. *
  125. * Redistribution and use in source and binary forms, with or without
  126. * modification, are permitted providing that the following conditions
  127. * are met:
  128. * 1. Redistributions of source code must retain the above copyright
  129. * notice, this list of conditions and the following disclaimer.
  130. * 2. Redistributions in binary form must reproduce the above copyright
  131. * notice, this list of conditions and the following disclaimer in the
  132. * documentation and/or other materials provided with the distribution.
  133. *
  134. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  135. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  136. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  137. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  138. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  139. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  140. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  141. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  142. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  143. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  144. * POSSIBILITY OF SUCH DAMAGE.
  145. */