Code auditing weekend results and fixes committing.
[silc.git] / lib / silccrypt / silccipher.c
index 57506141be0a421fa9c6abef3fc96a9061088734..824bcbe21fa081e4b0f868b9895d2835efc7e3b0 100644 (file)
@@ -4,7 +4,7 @@
 
   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
 
-  Copyright (C) 1997 - 2000 Pekka Riikonen
+  Copyright (C) 1997 - 2001 Pekka Riikonen
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   GNU General Public License for more details.
 
 */
-/*
- * $Id$
- * $Log$
- * Revision 1.4  2000/10/02 18:31:46  priikone
- *     Added rijndael (AES) to cipher list.
- *
- * Revision 1.3  2000/09/28 11:28:20  priikone
- *     Changed cipher list order.
- *
- * Revision 1.2  2000/07/05 06:08:43  priikone
- *     Global cosmetic change.
- *
- * Revision 1.1.1.1  2000/06/27 11:36:54  priikone
- *     Imported from internal CVS/Added Log headers.
- *
- *
- */
+/* $Id$ */
 
 #include "silcincludes.h"
 
@@ -59,7 +43,7 @@ SilcCipherObject silc_cipher_builtin_list[] =
   { "twofish", 16, 16, silc_twofish_set_key, silc_twofish_set_key_with_string,
     silc_twofish_encrypt_cbc, silc_twofish_decrypt_cbc, 
     silc_twofish_context_len },
-  { "rijndael", 16, 16, silc_rijndael_set_key, 
+  { "aes", 16, 16, silc_rijndael_set_key, 
     silc_rijndael_set_key_with_string, silc_rijndael_encrypt_cbc,
     silc_rijndael_decrypt_cbc, silc_rijndael_context_len },
   { "rc6", 16, 16, silc_rc6_set_key, silc_rc6_set_key_with_string,