updates.
authorPekka Riikonen <priikone@silcnet.org>
Thu, 19 Jul 2007 18:24:13 +0000 (18:24 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Thu, 19 Jul 2007 18:24:13 +0000 (18:24 +0000)
CHANGES
doc/example_silcd.conf.in
doc/silcalgs.conf

diff --git a/CHANGES b/CHANGES
index b39f58fffb7d7a1eb7e5e9867dc01c0814da2801..02b06e179d749e7ad36dae73a7d0c317e33cf867 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,14 @@
+Thu Jul 19 21:08:49 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
+
+       * Fixed big-endian issues from aes implementation.  Affected
+         files are lib/silccrypt/aes.c.
+
+       * Fixed lib/silcutil/silcatomic.h compilation on IA64.  Patch
+         from Jérémy Bobbio.
+
+       * Fixed public key identifier parsing to check lengths
+         correctly.  Affected file is lib/silccrypt/silcpk.c.
+
 Wed Jul  4 08:06:38 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
 
        * SILC Toolkit 1.1.2.
index e337dc0a50441e2c2fb6fd1f7912bc920b30bf29..648da6c01ca4efbf0847dfd9d946ded1c001db86 100644 (file)
@@ -32,11 +32,6 @@ Include "@ETCDIR@/silcalgs.conf";
 # for different connections.
 #
 General {
-       # This is the default path where to search modules.  If omitted
-       # built-in modules will be used.  Built-in modules will also be
-       # used if a module file cannot be located.
-       module_path = "@MODULESDIR@";
-
        # If both passphrase and public key authentication is set for a
        # connection the public key authentication is the preferred one
        # to use.  Set this to `true' to prefer passphrase authentication
index 928e1316a768137a7c35c5082dab459ab6d2f796..a97c356a1451d0205a8ac2b8f8b12e65a08b6bdc 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-cbc";
-       module = "aes.sim.so";
        keylength = 32;
        blocklength = 16;
 };
 cipher {
        name = "aes-192-cbc";
-       module = "aes.sim.so";
        keylength = 24;
        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;
 };
@@ -59,7 +51,6 @@ cipher {
 # "none" cipher should not be used
 #cipher {
 #      name = "none";
-#      module = "none.sim.so";
 #      keylength = 0;
 #      blocklength = 0;
 #};