updates.
authorPekka Riikonen <priikone@silcnet.org>
Tue, 7 Aug 2007 18:08:37 +0000 (18:08 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Tue, 7 Aug 2007 18:08:37 +0000 (18:08 +0000)
CHANGES.CRYPTO
CHANGES.RUNTIME
lib/silcacc/tests/test_softacc.c

index 22beb5d6cc5da2576b2949100f1ce22408083e18..f79ddb5b329d730cc2eaac90cf9a2d82f8379083 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug  7 21:05:53 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
+
+       * Changed cipher and hash APIs to use const char *name instead
+         of const unsigned char *name.
+
 Sat Jul 21 10:17:11 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
 
        * Optimized silc_math_prime_test.  Affected file is
index c3392f0719eda0c7f0ca52fa4a8ec184f971a573..644be70781785e56df3122ed1afb4623c2568504 100644 (file)
@@ -1,3 +1,16 @@
+Tue Aug  7 21:00:00 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
+
+       * Fixed alignment issues on 64-bit CPUs.  Affected files are
+         lib/silcutil/silcschedule.c and unix/silcunixschedule.c.
+
+Sat Aug  4 19:09:14 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
+
+       * Added assembler optimized versions of SILC_[GET|PUT]XX_MSB
+         macros, and SILC_SWAB_XX macros.  Added new functions
+         silc_rol, silc_ror, silc_rol64 and silc_ror64, all of which
+         have assembler optimizations also.  Affected file is
+         lib/silcutil/silctypes.h.
+
 Thu Jul 26 18:13:59 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
 
        * Changed thread pool call queues thread specific and changed
index 08da67ef9bdeb5277899513eda4c4deda913c574..fec145109b7a8c9d980e2de3a52f0ed69c967afc 100644 (file)
@@ -29,7 +29,7 @@ SILC_TASK_CALLBACK(quit)
 
 SILC_TASK_CALLBACK(sign)
 {
-  silc_pkcs_sign(accprv, data, data_len, TRUE, hash, sign_compl, NULL);
+  silc_pkcs_sign(accprv, data, data_len, TRUE, hash, NULL, sign_compl, NULL);
   if (--s > 0)
     silc_schedule_task_add_timeout(schedule, sign, NULL, 0, 60000);
 }