diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2010-08-07 10:09:09 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-07-18 11:19:59 -0700 |
commit | f461aed98c7a4e802d5b15efd189bfebe5823630 (patch) | |
tree | a36beceb16458391a035bc6be8c96acb9b361e8f | |
parent | cd6e34bb2d075f16c6d945913013c4df0b1e11a3 (diff) | |
download | rijndael-f461aed98c7a4e802d5b15efd189bfebe5823630.tar.gz rijndael-f461aed98c7a4e802d5b15efd189bfebe5823630.tar.bz2 rijndael-f461aed98c7a4e802d5b15efd189bfebe5823630.zip |
Add licenses.
-rw-r--r-- | rijndael.c | 5 | ||||
-rw-r--r-- | rijndael.h | 7 |
2 files changed, 11 insertions, 1 deletions
@@ -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> @@ -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 |