mirror of
https://github.com/trussed-dev/piv-authenticator.git
synced 2026-06-20 04:16:15 -07:00
Remove reuse compliance headers
This commit is contained in:
@@ -1,5 +1,2 @@
|
||||
# Copyright (C) 2022 Nicolas Stalder
|
||||
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
[net]
|
||||
git-fetch-with-cli = true
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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
|
||||
@@ -1,8 +1,3 @@
|
||||
<!--
|
||||
Copyright (C) 2022 Nitrokey GmbH
|
||||
SPDX-License-Identifier: CC0-1.0
|
||||
-->
|
||||
|
||||
# Changelog
|
||||
|
||||
## [v0.3.2][] (2023-06-13)
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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,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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2022 Nitrokey GmbH
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
set -e
|
||||
mkdir -p /app/.cache
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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`.
|
||||
|
||||
@@ -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),
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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)]
|
||||
|
||||
@@ -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};
|
||||
|
||||
@@ -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
Reference in New Issue
Block a user