diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-19 17:55:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-19 17:55:20 +0000 |
commit | 9a6d5c5152dac57c967e6a936b36f640258fa43d (patch) | |
tree | 025ed4f97f2c10a401b8442c35d2d1912f1e6ae7 /src/aes.cpp | |
parent | a37f75ae6d967f2193ee1796d75b61eb63946093 (diff) |
Added comments
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2577 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/aes.cpp')
-rw-r--r-- | src/aes.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/aes.cpp b/src/aes.cpp index 25f29d4ba..cf56e7f46 100644 --- a/src/aes.cpp +++ b/src/aes.cpp @@ -1,5 +1,21 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2005 ChatSpike-Dev. + * E-mail: + * <brain@chatspike.net> + * <Craig@chatspike.net> + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ -//Rijndael.cpp +// Based on existing implementations of the industry standard AES algorithms +// in the public domain. #include <cstring> #include "aes.h" |