logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git
commit: 6c8cd66ed06400d73fdbfbb568ab11852dc726c5
parent eba117a8429fa315b06d3b7aad39bf7a4d9d0a96
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 17 Sep 2024 14:59:03 +0200

lib/sha{256,512}.{c,h}: Add leading SPDX-FileCopyrightText

Diffstat:

Mlib/sha256.c2+-
Mlib/sha256.h2+-
Mlib/sha512.c2+-
Mlib/sha512.h2+-
4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/sha256.c b/lib/sha256.c @@ -1,4 +1,4 @@ -// public domain sha256 implementation based on fips180-3 +// SPDX-FileCopyrightText: public domain sha256 implementation based on fips180-3 // SPDX-License-Identifier: 0BSD #include "sha256.h" diff --git a/lib/sha256.h b/lib/sha256.h @@ -1,4 +1,4 @@ -// public domain sha256 implementation based on fips180-3 +// SPDX-FileCopyrightText: public domain sha256 implementation based on fips180-3 // SPDX-License-Identifier: 0BSD #include <stdint.h> diff --git a/lib/sha512.c b/lib/sha512.c @@ -1,4 +1,4 @@ -// public domain sha512 implementation based on fips180-3 +// SPDX-FileCopyrightText: public domain sha512 implementation based on fips180-3 // SPDX-License-Identifier: 0BSD #include "sha512.h" diff --git a/lib/sha512.h b/lib/sha512.h @@ -1,4 +1,4 @@ -// public domain sha512 implementation based on fips180-3 +// SPDX-FileCopyrightText: public domain sha512 implementation based on fips180-3 // SPDX-License-Identifier: 0BSD #include <stdint.h>