summaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorShao Miller2010-03-20 18:09:39 +0100
committerMichael Brown2010-12-04 00:38:15 +0100
commit3b517101563cb224dda2e2780db4c6eef32ded38 (patch)
treed192123d95e71efd35a7400ef2fb8d6e34b96e50 /src/crypto
parent[legal] Add FILE_LICENCE macro to some GPL-v2 files (diff)
downloadipxe-3b517101563cb224dda2e2780db4c6eef32ded38.tar.gz
ipxe-3b517101563cb224dda2e2780db4c6eef32ded38.tar.xz
ipxe-3b517101563cb224dda2e2780db4c6eef32ded38.zip
[legal] Add FILE_LICENCE macro to some GPL-v2-or-later files
Changes were made to files where the licence text within the files themselves confirms that the files are GPL version 2 or later. Signed-off-by: Shao Miller <shao.miller@yrdsb.edu.on.ca> Modified-by: Michael Brown <mcb30@ipxe.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/axtls/aes.c2
-rw-r--r--src/crypto/axtls/bigint.h2
-rw-r--r--src/crypto/axtls/crypto.h2
3 files changed, 6 insertions, 0 deletions
diff --git a/src/crypto/axtls/aes.c b/src/crypto/axtls/aes.c
index 0c0d7247..87faaa1d 100644
--- a/src/crypto/axtls/aes.c
+++ b/src/crypto/axtls/aes.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/**
* AES implementation - this is a small code version. There are much faster
* versions around but they are much larger in size (i.e. they use large
diff --git a/src/crypto/axtls/bigint.h b/src/crypto/axtls/bigint.h
index f9a3c70b..f5f33531 100644
--- a/src/crypto/axtls/bigint.h
+++ b/src/crypto/axtls/bigint.h
@@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#ifndef BIGINT_HEADER
#define BIGINT_HEADER
diff --git a/src/crypto/axtls/crypto.h b/src/crypto/axtls/crypto.h
index 12acb27f..a9893cf3 100644
--- a/src/crypto/axtls/crypto.h
+++ b/src/crypto/axtls/crypto.h
@@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/**
* @file crypto.h
*/