Skip to content

Commit 896e6c7

Browse files
committed
Introduce SPDX license identifiers
Licenses are boring as hell, so is are all the comments at the top of each file. This patch makes no comment on the merit of license comments in each file, rather this patch reduces the license comment to the minimum possible with no loss of meaning - an SPDX license identifier. Note also please that we remove the "written by" comments as well for the following reasons (discussed recently on rust-bitcoin repo): - they are not descriptive because many devs contributed - they have a tendency to include the wrong date because of cut'n'pasta - all this info is in the git history ref: https://spdx.dev/ids/#how
1 parent be2999a commit 896e6c7

19 files changed

+27
-164
lines changed

no_std_test/src/main.rs

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2019 by
3-
// Elichai Turkel
4-
//
5-
// To the extent possible under law, the author(s) have dedicated all
6-
// copyright and related and neighboring rights to this software to
7-
// the public domain worldwide. This software is distributed without
8-
// any warranty.
9-
//
10-
// You should have received a copy of the CC0 Public Domain Dedication
11-
// along with this software.
12-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
13-
//
1+
// SPDX-License-Identifier: CC0-1.0
142

153
//! # secp256k1 no-std test.
164
//! This binary is a short smallest rust code to produce a working binary *without libstd*.

secp256k1-sys/build.rs

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2015 by
3-
// Andrew Poelstra
4-
//
5-
// To the extent possible under law, the author(s) have dedicated all
6-
// copyright and related and neighboring rights to this software to
7-
// the public domain worldwide. This software is distributed without
8-
// any warranty.
9-
//
10-
// You should have received a copy of the CC0 Public Domain Dedication
11-
// along with this software.
12-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
13-
//
1+
// SPDX-License-Identifier: CC0-1.0
142

153
//! # Build script
164

secp256k1-sys/src/lib.rs

+2-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
2+
153
//! # secp256k1-sys FFI bindings
164
//! Direct bindings to the underlying C library functions. These should
175
//! not be needed for most users.

secp256k1-sys/src/macros.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
152

163
/// Implement methods and traits for types that contain an inner array.
174
#[macro_export]

secp256k1-sys/src/recovery.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
152

163
//! # FFI of the recovery module
174

secp256k1-sys/src/types.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
13
#![allow(non_camel_case_types)]
24

35
pub type c_int = i32;

src/constants.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
152

163
//! Constants related to the API and the underlying curve.
174
//!

src/context.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
13
use core::marker::PhantomData;
24
use core::mem::ManuallyDrop;
35
use core::ptr::NonNull;

src/ecdh.rs

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2015 by
3-
// Andrew Poelstra
4-
//
5-
// To the extent possible under law, the author(s) have dedicated all
6-
// copyright and related and neighboring rights to this software to
7-
// the public domain worldwide. This software is distributed without
8-
// any warranty.
9-
//
10-
// You should have received a copy of the CC0 Public Domain Dedication
11-
// along with this software.
12-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
13-
//
1+
// SPDX-License-Identifier: CC0-1.0
142

153
//! Support for shared secret computations.
164
//!

src/ecdsa/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
13
//! Structs and functionality related to the ECDSA signature algorithm.
24
//!
35

src/ecdsa/recovery.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
152

163
//! Provides a signing function that allows recovering the public key from the
174
//! signature.

src/ecdsa/serialized_signature.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
13
//! Implements [`SerializedSignature`] and related types.
24
//!
35
//! DER-serialized signatures have the issue that they can have different lengths.

src/key.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
152

163
//! Public and secret keys.
174
//!

src/lib.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
152

163
//! Rust bindings for Pieter Wuille's secp256k1 library, which is used for
174
//! fast and accurate manipulation of ECDSA signatures on the secp256k1

src/macros.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2014 by
3-
// Dawid Ciężarkiewicz
4-
// Andrew Poelstra
5-
//
6-
// To the extent possible under law, the author(s) have dedicated all
7-
// copyright and related and neighboring rights to this software to
8-
// the public domain worldwide. This software is distributed without
9-
// any warranty.
10-
//
11-
// You should have received a copy of the CC0 Public Domain Dedication
12-
// along with this software.
13-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
14-
//
1+
// SPDX-License-Identifier: CC0-1.0
152

163
/// Implement methods and traits for types that contain an inner array.
174
#[macro_export]

src/scalar.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
13
//! Provides [`Scalar`] and related types.
24
//!
35
//! In elliptic curve cryptography scalars are non-point values that can be used to multiply

src/schnorr.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
13
//! Support for schnorr signatures.
24
//!
35

src/secret.rs

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
// Bitcoin secp256k1 bindings
2-
// Written in 2021 by
3-
// Maxim Orlovsky <[email protected]>
4-
//
5-
// To the extent possible under law, the author(s) have dedicated all
6-
// copyright and related and neighboring rights to this software to
7-
// the public domain worldwide. This software is distributed without
8-
// any warranty.
9-
//
10-
// You should have received a copy of the CC0 Public Domain Dedication
11-
// along with this software.
12-
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
13-
//
1+
// SPDX-License-Identifier: CC0-1.0
142

153
//! Helpers for displaying secret values
164

src/serde_util.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: CC0-1.0
2+
13
use core::fmt;
24
use core::marker::PhantomData;
35
use core::str::{self, FromStr};

0 commit comments

Comments
 (0)