Skip to content

Commit 48fb153

Browse files
authored
Allow MIT-0 license as well as Apache-2.0 and ISC (#104)
* Allow MIT-0 license as well as Apache-2.0 and ISC * Add appropriate year range to MIT-0 license
1 parent 00611a1 commit 48fb153

File tree

1,426 files changed

+1447
-1428
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,426 files changed

+1447
-1428
lines changed

LICENSE

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPDX-License-Identifier: Apache-2.0 OR ISC
1+
SPDX-License-Identifier: Apache-2.0 OR ISC or MIT-0
22

33

44
Apache 2.0 license
@@ -186,7 +186,6 @@ Apache 2.0 license
186186
ISC license
187187
-------------------------------------
188188

189-
190189
Copyright Amazon.com, Inc. or its affiliates.
191190

192191
Permission to use, copy, modify, and/or distribute this software for any
@@ -200,3 +199,24 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
200199
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
201200
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
202201
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
202+
203+
204+
MIT-0 license
205+
-------------------------------------
206+
207+
Copyright 2021-2024 Amazon.com, Inc. or its affiliates.
208+
209+
Permission is hereby granted, free of charge, to any person obtaining a
210+
copy of this software and associated documentation files (the "Software"),
211+
to deal in the Software without restriction, including without limitation
212+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
213+
and/or sell copies of the Software, and to permit persons to whom the
214+
Software is furnished to do so.
215+
216+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
217+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
218+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
219+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
220+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
221+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
222+
DEALINGS IN THE SOFTWARE.

README.md

+1-2

arm/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#############################################################################
22
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
# SPDX-License-Identifier: Apache-2.0 OR ISC
3+
# SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
44
#############################################################################
55

66
OSTYPE_RESULT=$(shell uname -s)

arm/curve25519/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#############################################################################
22
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
# SPDX-License-Identifier: Apache-2.0 OR ISC
3+
# SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
44
#############################################################################
55

66
# If actually on an ARM8 machine, just use the GNU assembler (as). Otherwise

arm/curve25519/bignum_add_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Add modulo p_25519, z := (x + y) mod p_25519, assuming x and y reduced

arm/curve25519/bignum_cmul_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Multiply by a single word modulo p_25519, z := (c * x) mod p_25519, assuming

arm/curve25519/bignum_double_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Double modulo p_25519, z := (2 * x) mod p_25519, assuming x reduced

arm/curve25519/bignum_inv_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Modular inverse modulo p_25519 = 2^255 - 19

arm/curve25519/bignum_invsqrt_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Inverse square root modulo p_25519 = 2^255 - 19

arm/curve25519/bignum_invsqrt_p25519_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Inverse square root modulo p_25519 = 2^255 - 19

arm/curve25519/bignum_madd_n25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Multiply-add modulo the order of the curve25519/edwards25519 basepoint

arm/curve25519/bignum_madd_n25519_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Multiply-add modulo the order of the curve25519/edwards25519 basepoint

arm/curve25519/bignum_mod_m25519_4.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Reduce modulo group order, z := x mod m_25519

arm/curve25519/bignum_mod_n25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Reduce modulo basepoint order, z := x mod n_25519

arm/curve25519/bignum_mod_n25519_4.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Reduce modulo basepoint order, z := x mod n_25519

arm/curve25519/bignum_mod_p25519_4.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Reduce modulo field characteristic, z := x mod p_25519

arm/curve25519/bignum_mul_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Multiply modulo p_25519, z := (x * y) mod p_25519

arm/curve25519/bignum_mul_p25519_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Multiply modulo p_25519, z := (x * y) mod p_25519

arm/curve25519/bignum_neg_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Negate modulo p_25519, z := (-x) mod p_25519, assuming x reduced

arm/curve25519/bignum_optneg_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Optionally negate modulo p_25519, z := (-x) mod p_25519 (if p nonzero) or

arm/curve25519/bignum_sqr_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Square modulo p_25519, z := (x^2) mod p_25519

arm/curve25519/bignum_sqr_p25519_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Square modulo p_25519, z := (x^2) mod p_25519

arm/curve25519/bignum_sqrt_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Square root modulo p_25519 = 2^255 - 19

arm/curve25519/bignum_sqrt_p25519_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Square root modulo p_25519 = 2^255 - 19

arm/curve25519/bignum_sub_p25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Subtract modulo p_25519, z := (x - y) mod p_25519

arm/curve25519/curve25519_ladderstep.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Montgomery ladder step on pairs of (X,Z)-projective curve25519 points

arm/curve25519/curve25519_ladderstep_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Montgomery ladder step on pairs of (X,Z)-projective curve25519 points

arm/curve25519/curve25519_pxscalarmul.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Projective scalar multiplication, x coordinate only, for curve25519

arm/curve25519/curve25519_pxscalarmul_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Projective scalar multiplication, x coordinate only, for curve25519

arm/curve25519/curve25519_x25519.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519

arm/curve25519/curve25519_x25519_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519

arm/curve25519/curve25519_x25519_byte.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519 (byte array arguments)

arm/curve25519/curve25519_x25519_byte_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519 (byte array arguments)

arm/curve25519/curve25519_x25519base.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519 on base element 9

arm/curve25519/curve25519_x25519base_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519 on base element 9

arm/curve25519/curve25519_x25519base_byte.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519 on base element 9 (byte array arguments)

arm/curve25519/curve25519_x25519base_byte_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// The x25519 function for curve25519 on base element 9 (byte array arguments)

arm/curve25519/edwards25519_decode.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Decode compressed 256-bit form of edwards25519 point

arm/curve25519/edwards25519_decode_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Decode compressed 256-bit form of edwards25519 point

arm/curve25519/edwards25519_encode.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Encode edwards25519 point into compressed form as 256-bit number

arm/curve25519/edwards25519_epadd.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Extended projective addition for edwards25519

arm/curve25519/edwards25519_epadd_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Extended projective addition for edwards25519

arm/curve25519/edwards25519_epdouble.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Extended projective doubling for edwards25519

arm/curve25519/edwards25519_epdouble_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Extended projective doubling for edwards25519

arm/curve25519/edwards25519_pdouble.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Projective doubling for edwards25519

arm/curve25519/edwards25519_pdouble_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Projective doubling for edwards25519

arm/curve25519/edwards25519_pepadd.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Extended projective + precomputed mixed addition for edwards25519

arm/curve25519/edwards25519_pepadd_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Extended projective + precomputed mixed addition for edwards25519

arm/curve25519/edwards25519_scalarmulbase.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Scalar multiplication for the edwards25519 standard basepoint

arm/curve25519/edwards25519_scalarmulbase_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Scalar multiplication for the edwards25519 standard basepoint

arm/curve25519/edwards25519_scalarmuldouble.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Double scalar multiplication for edwards25519, fresh and base point

arm/curve25519/edwards25519_scalarmuldouble_alt.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
// SPDX-License-Identifier: Apache-2.0 OR ISC
2+
// SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0
33

44
// ----------------------------------------------------------------------------
55
// Double scalar multiplication for edwards25519, fresh and base point

0 commit comments

Comments
 (0)