Mercurial > dropbear
comparison LICENSE @ 1733:d529a52b2f7c coverity coverity
merge coverity from main
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 26 Jun 2020 21:07:34 +0800 |
parents | f091f7536aa5 |
children |
comparison
equal
deleted
inserted
replaced
1643:b59623a64678 | 1733:d529a52b2f7c |
---|---|
6 The majority of code is written by Matt Johnston, under the license below. | 6 The majority of code is written by Matt Johnston, under the license below. |
7 | 7 |
8 Portions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the | 8 Portions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the |
9 same license: | 9 same license: |
10 | 10 |
11 Copyright (c) 2002-2015 Matt Johnston | 11 Copyright (c) 2002-2020 Matt Johnston |
12 Portions copyright (c) 2004 Mihnea Stoenescu | 12 Portions copyright (c) 2004 Mihnea Stoenescu |
13 All rights reserved. | 13 All rights reserved. |
14 | 14 |
15 Permission is hereby granted, free of charge, to any person obtaining a copy | 15 Permission is hereby granted, free of charge, to any person obtaining a copy |
16 of this software and associated documentation files (the "Software"), to deal | 16 of this software and associated documentation files (the "Software"), to deal |
30 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | 30 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
31 SOFTWARE. | 31 SOFTWARE. |
32 | 32 |
33 ===== | 33 ===== |
34 | 34 |
35 LibTomCrypt and LibTomMath are written by Tom St Denis, and are Public Domain. | 35 LibTomCrypt and LibTomMath are written by Tom St Denis and others, see |
36 libtomcrypt/LICENSE and libtommath/LICENSE. | |
36 | 37 |
37 ===== | 38 ===== |
38 | 39 |
39 sshpty.c is taken from OpenSSH 3.5p1, | 40 sshpty.c is taken from OpenSSH 3.5p1, |
40 Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland | 41 Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland |
88 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | 89 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
89 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 90 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
90 | 91 |
91 ===== | 92 ===== |
92 | 93 |
93 curve25519-donna: | 94 curve25519.c: |
94 | 95 |
95 /* Copyright 2008, Google Inc. | 96 Modified TweetNaCl version 20140427, a self-contained public-domain C library. |
96 * All rights reserved. | 97 https://tweetnacl.cr.yp.to/ |
97 * | 98 |
98 * Redistribution and use in source and binary forms, with or without | 99 Contributors (alphabetical order) |
99 * modification, are permitted provided that the following conditions are | 100 Daniel J. Bernstein, University of Illinois at Chicago and Technische |
100 * met: | 101 Universiteit Eindhoven |
101 * | 102 Bernard van Gastel, Radboud Universiteit Nijmegen |
102 * * Redistributions of source code must retain the above copyright | 103 Wesley Janssen, Radboud Universiteit Nijmegen |
103 * notice, this list of conditions and the following disclaimer. | 104 Tanja Lange, Technische Universiteit Eindhoven |
104 * * Redistributions in binary form must reproduce the above | 105 Peter Schwabe, Radboud Universiteit Nijmegen |
105 * copyright notice, this list of conditions and the following disclaimer | 106 Sjaak Smetsers, Radboud Universiteit Nijmegen |
106 * in the documentation and/or other materials provided with the | 107 |
107 * distribution. | 108 Acknowledgments |
108 * * Neither the name of Google Inc. nor the names of its | 109 This work was supported by the U.S. National Science Foundation under grant |
109 * contributors may be used to endorse or promote products derived from | 110 1018836. "Any opinions, findings, and conclusions or recommendations expressed |
110 * this software without specific prior written permission. | 111 in this material are those of the author(s) and do not necessarily reflect the |
111 * | 112 views of the National Science Foundation." |
112 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 113 This work was supported by the Netherlands Organisation for Scientific |
113 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 114 Research (NWO) under grant 639.073.005 and Veni 2013 project 13114. |
114 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
115 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
116 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
117 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
118 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
119 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
120 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
121 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
122 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
123 * | |
124 * curve25519-donna: Curve25519 elliptic curve, public key function | |
125 * | |
126 * http://code.google.com/p/curve25519-donna/ | |
127 * | |
128 * Adam Langley <[email protected]> | |
129 * | |
130 * Derived from public domain C code by Daniel J. Bernstein <[email protected]> | |
131 * | |
132 * More information about curve25519 can be found here | |
133 * http://cr.yp.to/ecdh.html | |
134 * | |
135 * djb's sample implementation of curve25519 is written in a special assembly | |
136 * language called qhasm and uses the floating point registers. | |
137 * | |
138 * This is, almost, a clean room reimplementation from the curve25519 paper. It | |
139 * uses many of the tricks described therein. Only the crecip function is taken | |
140 * from the sample implementation. | |
141 */ |