# with ConnectionParams.
keepalive_secs = 300;
+ # Dynamic router connections. If this is set for normal SILC server
+ # the connection to primary router is not created untill it is actually
+ # needed. Giving for example /WHOIS foobar@silcnet.org would then
+ # create connection to the primary router to resolve user foobar.
+ # On the other hand giving /WHOIS foobar would try to search the
+ # user foobar locally, without creating the connection. Note that
+ # giving /JOIN foobar will also created the connection as current
+ # SILC Server version supports only global channels (all JOINs require
+ # connection to router, if one is configured).
+ #dynamic_server = true;
+
# Default reconnection parameters defines how the server reconnect
# to the remote if the connection was lost. The reconnection phase
# use so called exponential backoff algorithm; The reconnect
# length of the key (bytes), and the "blocklength" defines the block size
# of the cipher (bytes).
#
+cipher {
+ name = "aes-256-ctr";
+ keylength = 32;
+ blocklength = 16;
+};
cipher {
name = "aes-256-cbc";
keylength = 32;
blocklength = 16;
};
+cipher {
+ name = "aes-192-ctr";
+ keylength = 24;
+ blocklength = 16;
+};
cipher {
name = "aes-192-cbc";
keylength = 24;
blocklength = 16;
};
+cipher {
+ name = "aes-128-ctr";
+ keylength = 16;
+ blocklength = 16;
+};
cipher {
name = "aes-128-cbc";
keylength = 16;
blocklength = 16;
};
-# "none" cipher should not be used
-#cipher {
-# name = "none";
-# keylength = 0;
-# blocklength = 0;
-#};
-
#
# Configured hash functions
#
#
# Configured PKCS
#
-PKCS {
- name = "rsa";
+PKCS {
+ name = "rsa";
};