Remove reuse compliance headers

This commit is contained in:
Sosthène Guédon
2023-09-15 17:31:28 +02:00
parent a639b0f465
commit 76bb22daab
32 changed files with 1 additions and 108 deletions
-3
View File
@@ -1,5 +1,2 @@
# Copyright (C) 2022 Nicolas Stalder
# SPDX-License-Identifier: Apache-2.0 OR MIT
[net]
git-fetch-with-cli = true
-3
View File
@@ -1,6 +1,3 @@
# Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
# SPDX-License-Identifier: Apache-2.0 OR MIT
/target
Cargo.lock
tarpaulin-report.html
-3
View File
@@ -1,6 +1,3 @@
# Copyright (C) 2022 Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
include: 'https://raw.githubusercontent.com/Nitrokey/common-ci-jobs/master/common_jobs.yml'
stages:
-7
View File
@@ -1,7 +0,0 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: piv-authenticator
Source: https://github.com/Nitrokey/piv-authenticator
Files: tests/default_admin_key
Copyright: 2022 Nitrokey GmbH
License: Apache-2.0 OR MIT
-5
View File
@@ -1,8 +1,3 @@
<!--
Copyright (C) 2022 Nitrokey GmbH
SPDX-License-Identifier: CC0-1.0
-->
# Changelog
## [v0.3.2][] (2023-06-13)
-3
View File
@@ -1,6 +1,3 @@
# Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
# SPDX-License-Identifier: Apache-2.0 OR MIT
[package]
name = "piv-authenticator"
version = "0.3.2"
-4
View File
@@ -1,6 +1,3 @@
# Copyright (C) 2022 Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
.NOTPARALLEL:
export RUST_LOG ?= info,cargo_tarpaulin=off
@@ -24,7 +21,6 @@ lint:
cargo check --all-features --all-targets
cargo clippy --all-targets --all-features -- -Dwarnings
RUSTDOCFLAGS='-Dwarnings' cargo doc --all-features
reuse lint
.PHONY: tarpaulin
tarpaulin:
+1 -10
View File
@@ -1,8 +1,3 @@
<!--
Copyright (C) 2022 Nitrokey GmbH
SPDX-License-Identifier: CC0-1.0
-->
PIV-Authenticator
=================
@@ -20,7 +15,7 @@ See the [tracking issue for command support](https://github.com/Nitrokey/piv-aut
License
-------
This project is licensed under [Apache-2.0][Apache-2.0] OR [MIT][MIT] For more information, see the license header in each file.
This project is licensed under [Apache-2.0][Apache-2.0] OR [MIT][MIT].
Configuration files and examples are licensed under the [CC0 1.0 license][CC0-1.0].
You can find a copy of the license texts in the [`LICENSES`](./LICENSES) directory.
@@ -28,10 +23,6 @@ You can find a copy of the license texts in the [`LICENSES`](./LICENSES) directo
[Apache-2.0]: https://www.apache.org/licenses/LICENSE-2.0.html
[MIT]: https://en.wikipedia.org/wiki/MIT_License
This project complies with [version 3.0 of the REUSE specification][reuse].
[reuse]: https://reuse.software/practices/3.0/
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in `piv-authenticator` by you, shall be licensed as [Apache-2.0][Apache-2.0] OR [MIT][MIT], without any additional terms or conditions.
Funding
-3
View File
@@ -1,6 +1,3 @@
# Copyright (C) 2022 Nicolas Stalder
# SPDX-License-Identifier: Apache-2.0 OR MIT
# This is a configuration file for the bacon tool
# More info at https://github.com/Canop/bacon
-3
View File
@@ -1,6 +1,3 @@
# Copyright (C) 2022 Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
FROM docker.io/rust:latest
RUN apt update && apt install --yes libpcsclite-dev \
-3
View File
@@ -1,6 +1,3 @@
# Copyright (C) 2022 Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
-include config.mk
TAG := registry.git.nitrokey.com/nitrokey/piv-authenticator/piv-authenticator-build
-2
View File
@@ -1,6 +1,4 @@
#!/bin/sh
# Copyright (C) 2022 Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
set -e
mkdir -p /app/.cache
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nitrokey GmbH
// SPDX-License-Identifier: CC0-1.0
use trussed::virt::{self, Ram, UserInterface};
use trussed::{ClientImplementation, Platform};
use trussed_usbip::ClientBuilder;
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nitrokey GmbH
// SPDX-License-Identifier: CC0-1.0
// To use this, make sure that you have vpcd from vsmartcard installed and configured (e. g.
// install vsmartcard-vpcd on Debian). You might have to restart your pcscd, e. g.
// `systemctl restart pcscd pcscd.socket`.
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Parsed PIV commands.
//!
//! The types here should enforce all restrictions in the spec (such as padded_piv_pin.len() == 8),
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
// SPDX-License-Identifier: Apache-2.0 OR MIT
// https://developers.yubico.com/PIV/Introduction/Yubico_extensions.html
use hex_literal::hex;
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
// SPDX-License-Identifier: Apache-2.0 OR MIT
use core::convert::TryFrom;
use hex_literal::hex;
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
// SPDX-License-Identifier: Apache-2.0 OR MIT
pub use untrusted::{Input, Reader};
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
// SPDX-License-Identifier: Apache-2.0 OR MIT
use crate::{reply::Reply, Authenticator, /*constants::PIV_AID,*/ Result};
use apdu_dispatch::{app::App, command, response, Command};
-3
View File
@@ -1,6 +1,3 @@
// Copyright (C) 2022 Nicolas Stalder AND Nitrokey GmbH
// SPDX-License-Identifier: Apache-2.0 OR MIT
#![cfg_attr(not(any(test, feature = "std")), no_std)]
#[cfg(not(feature = "delog"))]

Some files were not shown because too many files have changed in this diff Show More