1 2TLS Lite includes code from different sources. All code is either dedicated to 3the public domain by its authors, or available under a BSD-style license. In 4particular: 5 6- 7 8Code written by Trevor Perrin, Kees Bos, Sam Rushing, Dimitris Moraitis, 9Marcelo Fernandez, Martin von Loewis, and Dave Baggett is available under the 10following terms: 11 12This is free and unencumbered software released into the public domain. 13 14Anyone is free to copy, modify, publish, use, compile, sell, or distribute 15this software, either in source code form or as a compiled binary, for any 16purpose, commercial or non-commercial, and by any means. 17 18In jurisdictions that recognize copyright laws, the author or authors of this 19software dedicate any and all copyright interest in the software to the public 20domain. We make this dedication for the benefit of the public at large and to 21the detriment of our heirs and successors. We intend this dedication to be an 22overt act of relinquishment in perpetuity of all present and future rights to 23this software under copyright law. 24 25THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 26IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 27FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 28AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 29ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 32- 33 34Code written by Bram Cohen (rijndael.py) was dedicated to the public domain by 35its author. See rijndael.py for details. 36 37- 38 39Code written by Google is available under the following terms: 40 41Copyright (c) 2008, The Chromium Authors 42All rights reserved. 43 44Redistribution and use in source and binary forms, with or without 45modification, are permitted provided that the following conditions are met: 46 47 * Redistributions of source code must retain the above copyright notice, this 48 list of conditions and the following disclaimer. 49 50 * Redistributions in binary form must reproduce the above copyright notice, 51 this list of conditions and the following disclaimer in the documentation 52 and/or other materials provided with the distribution. 53 54 * Neither the name of the Google Inc. nor the names of its contributors may 55 be used to endorse or promote products derived from this software without 56 specific prior written permission. 57 58THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 59AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 60IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 61DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 62FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 63DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 64SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 65CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 66OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 67OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 68