1The TinyCrypt library in Zephyr is a downstream of an externally maintained 2open source project. The original upstream code can be found at: 3 4https://github.com/01org/tinycrypt 5 6At revision c214460d7f760e2a75908cb41000afcc0bfca282, version 0.2.7 7 8Any changes to the local version should include Zephyr's TinyCrypt 9maintainer in the review. That can be found via the git history. 10 11The following is the license information for this code: 12 13================================================================================ 14 15 TinyCrypt Cryptographic Library 16 17================================================================================ 18 19 Copyright (c) 2017, Intel Corporation. All rights reserved. 20 21Redistribution and use in source and binary forms, with or without modification, 22are permitted provided that the following conditions are met: 23 24 - Redistributions of source code must retain the above copyright notice, this 25 list of conditions and the following disclaimer. 26 27 - Redistributions in binary form must reproduce the above copyright notice, 28 this list of conditions and the following disclaimer in the documentation 29 and/or other materials provided with the distribution. 30 31 - Neither the name of the Intel Corporation nor the names of its contributors 32 may be used to endorse or promote products derived from this software 33 without specific prior written permission. 34 35 36THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 37ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 38WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 39DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 40ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 41(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 42LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 43ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 44(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 45SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 46 47================================================================================ 48 49Copyright (c) 2013, Kenneth MacKay 50All rights reserved. 51 52https://github.com/kmackay/micro-ecc 53 54Redistribution and use in source and binary forms, with or without modification, 55are permitted provided that the following conditions are met: 56 * Redistributions of source code must retain the above copyright notice, this 57 list of conditions and the following disclaimer. 58 * Redistributions in binary form must reproduce the above copyright notice, 59 this list of conditions and the following disclaimer in the documentation 60 and/or other materials provided with the distribution. 61 62THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 63ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 64WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 65DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 66ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 67(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 68LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 69ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 70(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 71SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 72