Moved silc_client_ch[u]mode[_char] to client library from silc/.
[silc.git] / lib / silccrypt / silccipher.c
index 65bd3cc01c5c9f506a811f45a1496dd9bdfcf6e4..d98f86d07273461ed0bc7fb74099fd73cbd23e10 100644 (file)
 /*
  * $Id$
  * $Log$
+ * Revision 1.5  2000/10/09 11:37:21  priikone
+ *     bugfixes. Made public/private keys protocol compliant.
+ *
+ * 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.
  *
@@ -56,6 +62,9 @@ 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 },
+  { "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,
     silc_rc6_encrypt_cbc, silc_rc6_decrypt_cbc, 
     silc_rc6_context_len },