From c5b75ed70807d3f1021f213bf0e0ecbdfc9e43ec Mon Sep 17 00:00:00 2001 From: girst Date: Sun, 21 Feb 2016 18:31:39 +0100 Subject: [PATCH] addded copyright notice to files --- hardpass-demo.sh | 1 + main.c | 2 ++ pass-installer.sh | 1 + scancodes.c | 1 + scancodes.h | 1 + 5 files changed, 6 insertions(+) diff --git a/hardpass-demo.sh b/hardpass-demo.sh index 0ad956f..5b7cf8b 100644 --- a/hardpass-demo.sh +++ b/hardpass-demo.sh @@ -1,4 +1,5 @@ #!/bin/bash +# (C) 2016 Tobias Girstmair, released under the GNU GPL # this is a demo that fetches a password from the password store (must be initialized) and types it over the usb-hid interface to the host computer. # see github.com/girst/hardpass -> readme for how to initialize the driver. diff --git a/main.c b/main.c index 071c837..35e33eb 100644 --- a/main.c +++ b/main.c @@ -1,4 +1,6 @@ /* +(C) 2016 Tobias Girstmair, released under the GNU GPL + description: sends a sequence of keystrokes provided from stdin to the hid device. stops typing at: control characters (including newline), chars not in table, EOF diff --git a/pass-installer.sh b/pass-installer.sh index be609c2..b148365 100644 --- a/pass-installer.sh +++ b/pass-installer.sh @@ -1,4 +1,5 @@ #!/bin/bash +# (C) 2016 Tobias Girstmair, released under the GNU GPL git clone https://git.zx2c4.com/password-store cd password-store/src diff --git a/scancodes.c b/scancodes.c index fa03ce7..28e8c0a 100644 --- a/scancodes.c +++ b/scancodes.c @@ -1,3 +1,4 @@ +// (C) 2016 Tobias Girstmair, released under the GNU GPL #include #include "scancodes.h" diff --git a/scancodes.h b/scancodes.h index e64124f..d6e273a 100644 --- a/scancodes.h +++ b/scancodes.h @@ -1,3 +1,4 @@ +// (C) 2016 Tobias Girstmair, released under the GNU GPL #ifndef __SCANCODES_H__ #define __SCANCODES_H__ -- 2.39.3