diff --git a/Makefile b/Makefile index 89d1c45..a2d350f 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# # project # BASENAME:=decoder diff --git a/extras/cryptedbin.sh b/extras/cryptedbin.sh index b3ea339..9048e7d 100755 --- a/extras/cryptedbin.sh +++ b/extras/cryptedbin.sh @@ -1,4 +1,5 @@ #! /bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later # # create an export file with a CRYPTEDBINFILE section # diff --git a/scripts/Makefile b/scripts/Makefile index f1fb7ef..c1805d4 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later # # targets to make # diff --git a/scripts/crypto b/scripts/crypto index 27b9843..422e42d 100755 --- a/scripts/crypto +++ b/scripts/crypto @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # provide a wrapper for a MD5 digest and an AES-256 decrypt function for AVM's cipher text decryption # diff --git a/scripts/decode_cryptedbinfile b/scripts/decode_cryptedbinfile index bbcbed7..18fd5b6 100755 --- a/scripts/decode_cryptedbinfile +++ b/scripts/decode_cryptedbinfile @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # decode the encrypted binary data from STDIN # diff --git a/scripts/decode_export b/scripts/decode_export index 94175e0..280b555 100755 --- a/scripts/decode_export +++ b/scripts/decode_export @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # decode every occurence of an encoded secret value from an export file # diff --git a/scripts/decode_secret b/scripts/decode_secret index 1051cb1..61444f7 100755 --- a/scripts/decode_secret +++ b/scripts/decode_secret @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # decode a single encrypted value, which was encoded by AVM's cipher algorithm # diff --git a/scripts/decode_secrets b/scripts/decode_secrets index bfa3e79..6053a3c 100755 --- a/scripts/decode_secrets +++ b/scripts/decode_secrets @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # decode every occurence of an encoded secret value from a file # diff --git a/scripts/device_password b/scripts/device_password index 051482d..f3c7801 100755 --- a/scripts/device_password +++ b/scripts/device_password @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # compute the device password for a FRITZ!Box router # diff --git a/scripts/password_from_device b/scripts/password_from_device index d93fffa..fdcbbc9 100755 --- a/scripts/password_from_device +++ b/scripts/password_from_device @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # read the variables for the device password from the 'urlader environment' and compute the device # diff --git a/scripts/privatekeypassword b/scripts/privatekeypassword index a44119c..cefb308 100755 --- a/scripts/privatekeypassword +++ b/scripts/privatekeypassword @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # read the 'maca' value from the 'urlader environment' and compute the secret key used to encrypt the # diff --git a/scripts/user_password b/scripts/user_password index 46036d2..0796517 100755 --- a/scripts/user_password +++ b/scripts/user_password @@ -1,5 +1,6 @@ #! /bin/sh # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ####################################################################################################### # # # compute the cipher key for AVM's implementation from a specified password # diff --git a/src/Makefile b/src/Makefile index b5e213a..b5519a9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,5 @@ # vim: set tabstop=4 syntax=sh : +# SPDX-License-Identifier: GPL-2.0-or-later ###################################################################################################VER# # # # decoder, version 0.3 # @@ -760,7 +761,7 @@ uninstall: clean: @[ -f $(binfile) ] && $(RM) $(binfile) 2>/dev/null || true - @$(RM) $(CONFIG) $(APPLETS) $(OBJS_COMMON) $(OBJS_APP) $(OBJS_MAIN) $(CONFIG) 2>/dev/null || true + @$(RM) $(CONFIG) $(APPLETS) $(OBJS_COMMON) $(OBJS_APP) $(OBJS_MAIN) crypto_ossl.o $(CONFIG) 2>/dev/null || true @for n in $(APPLET_SRCS); do \ $(RM) $${n}_commands.c 2>/dev/null; \ done; \ diff --git a/src/b32dec.c b/src/b32dec.c index e72779e..f7e8ba0 100644 --- a/src/b32dec.c +++ b/src/b32dec.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b32dec.h b/src/b32dec.h index c403fda..2a4b556 100644 --- a/src/b32dec.h +++ b/src/b32dec.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b32dec_usage.c b/src/b32dec_usage.c index 00ba17a..4219848 100644 --- a/src/b32dec_usage.c +++ b/src/b32dec_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b32enc.c b/src/b32enc.c index 9aa26fa..aaf7af4 100644 --- a/src/b32enc.c +++ b/src/b32enc.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b32enc.h b/src/b32enc.h index 0700162..c7bf74c 100644 --- a/src/b32enc.h +++ b/src/b32enc.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b32enc_usage.c b/src/b32enc_usage.c index 83737f6..6bf25fc 100644 --- a/src/b32enc_usage.c +++ b/src/b32enc_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b64dec.c b/src/b64dec.c index beea443..7c2d8b0 100644 --- a/src/b64dec.c +++ b/src/b64dec.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b64dec.h b/src/b64dec.h index 39f2141..dac3f1a 100644 --- a/src/b64dec.h +++ b/src/b64dec.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b64dec_usage.c b/src/b64dec_usage.c index e5a9c3a..8517f27 100644 --- a/src/b64dec_usage.c +++ b/src/b64dec_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b64enc.c b/src/b64enc.c index a2e6795..a412b57 100644 --- a/src/b64enc.c +++ b/src/b64enc.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b64enc.h b/src/b64enc.h index 454b924..5942355 100644 --- a/src/b64enc.h +++ b/src/b64enc.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/b64enc_usage.c b/src/b64enc_usage.c index 38b0280..0891b2b 100644 --- a/src/b64enc_usage.c +++ b/src/b64enc_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/base32.c b/src/base32.c index 9ba116d..585a711 100644 --- a/src/base32.c +++ b/src/base32.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/base32.h b/src/base32.h index 330c896..721366e 100644 --- a/src/base32.h +++ b/src/base32.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/base64.c b/src/base64.c index b7da87b..5b88b73 100644 --- a/src/base64.c +++ b/src/base64.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/base64.h b/src/base64.h index 7c6ee37..61e9b64 100644 --- a/src/base64.h +++ b/src/base64.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/checksum.c b/src/checksum.c index 28e3d92..7a91074 100644 --- a/src/checksum.c +++ b/src/checksum.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/checksum.h b/src/checksum.h index 47571bb..638e16b 100644 --- a/src/checksum.h +++ b/src/checksum.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/checksum_usage.c b/src/checksum_usage.c index 319798a..661ba0b 100644 --- a/src/checksum_usage.c +++ b/src/checksum_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/common.h b/src/common.h index fa44b79..0d47475 100644 --- a/src/common.h +++ b/src/common.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/crc32.c b/src/crc32.c index 2ab6118..a975db9 100644 --- a/src/crc32.c +++ b/src/crc32.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/crc32.h b/src/crc32.h index ba101bb..5ee2aa4 100644 --- a/src/crc32.h +++ b/src/crc32.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/crypto_nettle.c b/src/crypto_nettle.c index 4f9672f..fcc2350 100644 --- a/src/crypto_nettle.c +++ b/src/crypto_nettle.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/crypto_nettle.h b/src/crypto_nettle.h index 5209f63..c45a892 100644 --- a/src/crypto_nettle.h +++ b/src/crypto_nettle.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/crypto_ossl.c b/src/crypto_ossl.c index c4b793a..67e3078 100644 --- a/src/crypto_ossl.c +++ b/src/crypto_ossl.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/crypto_ossl.h b/src/crypto_ossl.h index 2b3a9d3..22d4a5e 100644 --- a/src/crypto_ossl.h +++ b/src/crypto_ossl.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/deccb.c b/src/deccb.c index d88b41e..109e059 100644 --- a/src/deccb.c +++ b/src/deccb.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/deccb.h b/src/deccb.h index eb589de..4db8d1e 100644 --- a/src/deccb.h +++ b/src/deccb.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/deccb_usage.c b/src/deccb_usage.c index 75a24fc..3e717a7 100644 --- a/src/deccb_usage.c +++ b/src/deccb_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decexp.c b/src/decexp.c index 608d063..d61b7c4 100644 --- a/src/decexp.c +++ b/src/decexp.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decexp.h b/src/decexp.h index 983463d..9089ed4 100644 --- a/src/decexp.h +++ b/src/decexp.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decexp_usage.c b/src/decexp_usage.c index bb59999..5cecb72 100644 --- a/src/decexp_usage.c +++ b/src/decexp_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decfile.c b/src/decfile.c index 63a9361..ab6cf03 100644 --- a/src/decfile.c +++ b/src/decfile.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decfile.h b/src/decfile.h index befccc9..31ba151 100644 --- a/src/decfile.h +++ b/src/decfile.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decfile_usage.c b/src/decfile_usage.c index 4715a8c..a3358a2 100644 --- a/src/decfile_usage.c +++ b/src/decfile_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decoder.c b/src/decoder.c index 5af3eab..72d0774 100644 --- a/src/decoder.c +++ b/src/decoder.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decoder.h b/src/decoder.h index 146edd9..9630ff5 100644 --- a/src/decoder.h +++ b/src/decoder.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decoder_usage.c b/src/decoder_usage.c index 8ede0aa..6869a5f 100644 --- a/src/decoder_usage.c +++ b/src/decoder_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decompose.c b/src/decompose.c index 7690478..c2f91fb 100644 --- a/src/decompose.c +++ b/src/decompose.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decompose.h b/src/decompose.h index bd90c51..dd3f79f 100644 --- a/src/decompose.h +++ b/src/decompose.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decompose_usage.c b/src/decompose_usage.c index e5ee0e6..a4b475f 100644 --- a/src/decompose_usage.c +++ b/src/decompose_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decsngl.c b/src/decsngl.c index 7f15db8..8e91ba4 100644 --- a/src/decsngl.c +++ b/src/decsngl.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decsngl.h b/src/decsngl.h index 2cc57e8..50f5613 100644 --- a/src/decsngl.h +++ b/src/decsngl.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/decsngl_usage.c b/src/decsngl_usage.c index c5f32b9..8ec335f 100644 --- a/src/decsngl_usage.c +++ b/src/decsngl_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/devpw.c b/src/devpw.c index a0fdcd5..6cc443f 100644 --- a/src/devpw.c +++ b/src/devpw.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/devpw.h b/src/devpw.h index 5832e71..5c7a47a 100644 --- a/src/devpw.h +++ b/src/devpw.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/devpw_usage.c b/src/devpw_usage.c index fcb655d..f2703be 100644 --- a/src/devpw_usage.c +++ b/src/devpw_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/encryption.c b/src/encryption.c index 11d552c..7d3c36b 100644 --- a/src/encryption.c +++ b/src/encryption.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/encryption.h b/src/encryption.h index aeab6e1..542bb1d 100644 --- a/src/encryption.h +++ b/src/encryption.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/environ.c b/src/environ.c index 7ac631e..f9d5088 100644 --- a/src/environ.c +++ b/src/environ.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/environ.h b/src/environ.h index a5d7717..8cf01bc 100644 --- a/src/environ.h +++ b/src/environ.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/errors.c b/src/errors.c index 2f7b5c8..5bd5872 100644 --- a/src/errors.c +++ b/src/errors.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/errors.h b/src/errors.h index 97a0fba..8807338 100644 --- a/src/errors.h +++ b/src/errors.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/exportfile.c b/src/exportfile.c index 519c751..29e8c4f 100644 --- a/src/exportfile.c +++ b/src/exportfile.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/exportfile.h b/src/exportfile.h index d4e2c0c..7b254b1 100644 --- a/src/exportfile.h +++ b/src/exportfile.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/functions.c b/src/functions.c index 4cf7115..2defcdc 100644 --- a/src/functions.c +++ b/src/functions.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/functions.h b/src/functions.h index e1c6c6b..0672b1b 100644 --- a/src/functions.h +++ b/src/functions.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/help.c b/src/help.c index a5198cf..604e70e 100644 --- a/src/help.c +++ b/src/help.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/help.h b/src/help.h index 366b12a..a6d67fb 100644 --- a/src/help.h +++ b/src/help.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hex.c b/src/hex.c index 772bb57..f9836be 100644 --- a/src/hex.c +++ b/src/hex.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hex.h b/src/hex.h index cc7ca43..ee29f76 100644 --- a/src/hex.h +++ b/src/hex.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hexdec.c b/src/hexdec.c index 891ed41..e02dbc6 100644 --- a/src/hexdec.c +++ b/src/hexdec.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hexdec.h b/src/hexdec.h index cfbe526..b7f42a4 100644 --- a/src/hexdec.h +++ b/src/hexdec.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hexdec_usage.c b/src/hexdec_usage.c index 7b28a72..66d8911 100644 --- a/src/hexdec_usage.c +++ b/src/hexdec_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hexenc.c b/src/hexenc.c index 228511a..beac5c2 100644 --- a/src/hexenc.c +++ b/src/hexenc.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hexenc.h b/src/hexenc.h index 07702c8..0e50b28 100644 --- a/src/hexenc.h +++ b/src/hexenc.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/hexenc_usage.c b/src/hexenc_usage.c index 246d46e..b0f8cf0 100644 --- a/src/hexenc_usage.c +++ b/src/hexenc_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/license.c b/src/license.c index 5cb927f..cfca325 100644 --- a/src/license.c +++ b/src/license.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/license.h b/src/license.h index cbaeb3f..1b0a43e 100644 --- a/src/license.h +++ b/src/license.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/memory.c b/src/memory.c index 362d331..4c224c8 100644 --- a/src/memory.c +++ b/src/memory.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/memory.h b/src/memory.h index 53d4ee9..19de3e6 100644 --- a/src/memory.h +++ b/src/memory.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/nettle/Makefile b/src/nettle/Makefile index f131640..b622c5c 100644 --- a/src/nettle/Makefile +++ b/src/nettle/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + prj=nettle-3.4.1 all: $(prj) configure build install diff --git a/src/nettle/download.sh b/src/nettle/download.sh index 0f4e44d..c2496b8 100755 --- a/src/nettle/download.sh +++ b/src/nettle/download.sh @@ -1,4 +1,5 @@ #! /bin/bash +# SPDX-License-Identifier: GPL-2.0-or-later # # variables # @@ -6,7 +7,7 @@ keyID=28C67298 keyServer=hkp://keys.gnupg.net:11371 keyFingerprint="343C 2FF0 FBEE 5EC2 EDBE F399 F359 9FF8 28C6 7298" server="https://ftp.gnu.org/gnu/nettle/" -project="nettle-3.3" +project="nettle-3.4.1" source="$project.tar.gz" sig="$source.sig" # diff --git a/src/options.c b/src/options.c index f2892e6..3b370cd 100644 --- a/src/options.c +++ b/src/options.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/options.h b/src/options.h index 88e4cbb..3a9ab98 100644 --- a/src/options.h +++ b/src/options.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/output.c b/src/output.c index 4464b86..ce6d254 100644 --- a/src/output.c +++ b/src/output.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/output.h b/src/output.h index 1f1f2e2..dcdf77b 100644 --- a/src/output.h +++ b/src/output.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/pkpwd.c b/src/pkpwd.c index d847214..026dfd3 100644 --- a/src/pkpwd.c +++ b/src/pkpwd.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/pkpwd.h b/src/pkpwd.h index f266bbe..75dbdfa 100644 --- a/src/pkpwd.h +++ b/src/pkpwd.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/pkpwd_usage.c b/src/pkpwd_usage.c index eaed15b..a034d67 100644 --- a/src/pkpwd_usage.c +++ b/src/pkpwd_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/pwfrdev.c b/src/pwfrdev.c index d75e7e1..01b5b5a 100644 --- a/src/pwfrdev.c +++ b/src/pwfrdev.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/pwfrdev.h b/src/pwfrdev.h index 1572324..27eaf57 100644 --- a/src/pwfrdev.h +++ b/src/pwfrdev.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/pwfrdev_usage.c b/src/pwfrdev_usage.c index 4582212..dcaa053 100644 --- a/src/pwfrdev_usage.c +++ b/src/pwfrdev_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/userpw.c b/src/userpw.c index 299eec3..8d9a34b 100644 --- a/src/userpw.c +++ b/src/userpw.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/userpw.h b/src/userpw.h index c4e6cd1..01d91e9 100644 --- a/src/userpw.h +++ b/src/userpw.h @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de) diff --git a/src/userpw_usage.c b/src/userpw_usage.c index e08a3e0..8382d41 100644 --- a/src/userpw_usage.c +++ b/src/userpw_usage.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: GPL-2.0-or-later + * * vim: set tabstop=4 syntax=c : * * Copyright (C) 2014-2018, Peter Haemmerlein (peterpawn@yourfritz.de)