comparison LICENSE @ 861:e894dbc015ba DROPBEAR_2013.61test

2013.61test
author Matt Johnston <matt@ucc.asn.au>
date Thu, 14 Nov 2013 22:24:10 +0800
parents cb3cfcea1c8d
children 367205a2c1c4 0bb16232e7c4
comparison
equal deleted inserted replaced
860:057204b3dd61 861:e894dbc015ba
85 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 85 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
86 NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE 86 NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE
87 FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 87 FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
88 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 88 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
89 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 89 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
90
91 =====
92
93 curve25519-donna:
94
95 /* Copyright 2008, Google Inc.
96 * All rights reserved.
97 *
98 * Redistribution and use in source and binary forms, with or without
99 * modification, are permitted provided that the following conditions are
100 * met:
101 *
102 * * Redistributions of source code must retain the above copyright
103 * notice, this list of conditions and the following disclaimer.
104 * * Redistributions in binary form must reproduce the above
105 * copyright notice, this list of conditions and the following disclaimer
106 * in the documentation and/or other materials provided with the
107 * distribution.
108 * * Neither the name of Google Inc. nor the names of its
109 * contributors may be used to endorse or promote products derived from
110 * this software without specific prior written permission.
111 *
112 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
113 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
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 */