updates.
[crypto.git] / apps / irssi / silc.conf
index f9f10528a1ee1a4cd4b0e63b7da669e2a39fac3d..3439e3c913fb0c4ac6195c059f3ca0ba925872ba 100644 (file)
@@ -1,17 +1,29 @@
+#
+# Configured servers
+#
 servers = (
   { address = "silc.silcnet.org"; chatnet = SILCNet; port = 706; },
   { address = "silc.ytti.fi"; chatnet = SILCNet; port = 706; },
   { address = "silc.peelo.com"; chatnet = SILCNet; port = 706; },
 );
 
+#
+# Configured chat networks
+#
 chatnets = {
   SILCNet = { type = "SILC"; };
 };
 
+#
+# Configured channels
+#
 channels = (
   { name = "#silc"; chatnet = silcnet; autojoin = No; }
 );
 
+#
+# Your favorite aliases
+#
 aliases = {
   JOIN = "join -window";
   QUERY = "query -window";
@@ -54,6 +66,9 @@ aliases = {
   CALC = "exec - if which bc &>/dev/null\\; then echo '$*' | bc | awk '{print \"$*=\"$$1}'\\; else echo bc was not found\\; fi";
 };
 
+#
+# Configuration for statusbar and other bars that appear on the screen
+#
 statusbar = {
   # formats:
   # when using {templates}, the template is shown only if it's argument isn't
@@ -159,7 +174,34 @@ statusbar = {
   };
 };
 
+#
+# Settings (can be changed with /SET command)
+#
+# You can set the default cipher, hash function and HMAC to be used
+# as setting as well.  You can set it here or use the /SET command.
+#
+# Available ciphers are (default: aes-256-cbc):
+#
+# aes-256-cbc, aes-192-cbc, aes-128-cbc,
+# twofish-256-cbc, twofish-192-cbc, twofish-128-cbc,
+# rc6-256-cbc, rc6-192-cbc, rc6-128-cbc, 
+# mars-256-cbc, mars-192-cbc, mars-128-cbc,
+# cast-256-cbc, cast-192-cbc and cast-128-cbc
+#
+# Available hash functions are (default: sha1):
+#
+# sha1 and md5
+#
+# Available HMAC's are (default: hmac-sha1-96):
+#
+# hmac-sha1-96, hmac-md5-96, hmac-sha1 and hmac-md5
+#
 settings = {
+  "server" = {
+    crypto_default_cipher = "aes-256-cbc";
+    crypto_default_hash = "sha1";
+    crypto_default_hmac = "hmac-sha1-96";
+  };
   "fe-common/core" = {
     autocreate_own_query = "no";
     use_status_window = "no";