summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rijndael.c5
-rw-r--r--rijndael.h7
2 files changed, 11 insertions, 1 deletions
diff --git a/rijndael.c b/rijndael.c
index e581147..e849c1a 100644
--- a/rijndael.c
+++ b/rijndael.c
@@ -1,6 +1,11 @@
/*
* Highly portable ANSI C implementation of Rijndael cipher.
* Written by Kaz Kylheku.
+ * Copyright 2010
+ *
+ * License:
+ * 1. Please retain attribution and copyright notice in source code.
+ * 2. No restrictions on compiled code.
*/
#include <string.h>
diff --git a/rijndael.h b/rijndael.h
index ea38f9a..857e9f2 100644
--- a/rijndael.h
+++ b/rijndael.h
@@ -1,6 +1,11 @@
/*
* Highly portable ANSI C implementation of Rijndael cipher.
- * Written by Kaz Kylheku.
+ * Written by Kaz Kylheku
+ * Copyright 2010
+ *
+ * License:
+ * 1. Please retain attribution and copyright notice in source code.
+ * 2. No restrictions on compiled code.
*/
#ifndef RIJNDAEL_H