Merge commit 'origin/silc.1.1.branch'
[silc.git] / doc / silcalgs.conf
index f0140e5c42382c68a6bfa48a62301df4ee325d74..b083bb8cbb9a3fa50e8b294bfd023f0780b452d4 100644 (file)
 #
 # Configured ciphers
 #
-# The "name" is unique name to the cipher. The "module" option can be either
-# absolute or relative to the "module_path", and it defines where the cipher
-# module is found.  If omitted the built-in cipher is used.  The "keylength"
-# defines the length of the key (bytes), and the "blocklength" defines the
-# block size of the cipher (bytes).
+# The "name" is unique name to the cipher.  The "keylength" defines the
+# 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";
-       module = "aes.sim.so";
        keylength = 32;
        blocklength = 16;
 };
+cipher {
+       name = "aes-192-ctr";
+       keylength = 24;
+       blocklength = 16;
+};
 cipher {
        name = "aes-192-cbc";
-       module = "aes.sim.so";
        keylength = 24;
        blocklength = 16;
 };
+cipher {
+       name = "aes-128-ctr";
+       keylength = 16;
+       blocklength = 16;
+};
 cipher {
        name = "aes-128-cbc";
-       module = "aes.sim.so";
        keylength = 16;
        blocklength = 16;
 };
 cipher {
        name = "twofish-256-cbc";
-       module = "twofish.sim.so";
        keylength = 32;
        blocklength = 16;
 };
 cipher {
        name = "twofish-192-cbc";
-       module = "twofish.sim.so";
        keylength = 24;
        blocklength = 16;
 };
 cipher {
        name = "twofish-128-cbc";
-       module = "twofish.sim.so";
        keylength = 16;
        blocklength = 16;
 };
 
-# "none" cipher should not be used
-#cipher {
-#      name = "none";
-#      module = "none.sim.so";
-#      keylength = 0;
-#      blocklength = 0;
-#};
-
 #
 # Configured hash functions
 #
+hash {
+       name = "sha256";
+       blocklength = 64;
+       digestlength = 32;
+};
 hash {
        name = "sha1";
        blocklength = 64;
@@ -82,6 +86,11 @@ hash {
 # Configured HMAC functions. The hash function used in the HMAC must
 # be configured in the hash section.
 #
+hmac {
+       name = "hmac-sha256-96";
+       hash = "sha256";
+       maclength = 12;
+};
 hmac {
        name = "hmac-sha1-96";
        hash = "sha1";
@@ -106,6 +115,6 @@ hmac {
 #
 # Configured PKCS
 #
-PKCS { 
-       name = "rsa"; 
+PKCS {
+       name = "rsa";
 };