shishi-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS shishi/lib


From: shishi-commit
Subject: CVS shishi/lib
Date: Sun, 23 Oct 2005 23:14:27 +0200

Update of /home/cvs/shishi/lib
In directory dopio:/tmp/cvs-serv28469

Modified Files:
        crypto-aes.c 
Log Message:
Fix compiler warning.


--- /home/cvs/shishi/lib/crypto-aes.c   2005/05/26 15:12:34     1.33
+++ /home/cvs/shishi/lib/crypto-aes.c   2005/10/23 21:14:27     1.34
@@ -1,5 +1,5 @@
 /* crypto-aes.c --- AES crypto functions.
- * Copyright (C) 2002, 2003, 2004  Simon Josefsson
+ * Copyright (C) 2002, 2003, 2004, 2005  Simon Josefsson
  *
  * This file is part of Shishi.
  *
@@ -82,7 +82,7 @@
                   const char *salt,
                   size_t saltlen, const char *parameter, Shishi_key * outkey)
 {
-  unsigned char key[256 / 8];
+  char key[256 / 8];
   int keylen = shishi_key_length (outkey);
   Shishi_key *tmpkey;
   int iterations = 0x00001000;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]