[Pkg-openssl-changes] r275 - in openssl/trunk: apps debian

kroeckx at alioth.debian.org kroeckx at alioth.debian.org
Wed Jan 16 20:27:18 UTC 2008


Author: kroeckx
Date: 2008-01-16 20:27:18 +0000 (Wed, 16 Jan 2008)
New Revision: 275

Modified:
   openssl/trunk/apps/speed.c
   openssl/trunk/debian/changelog
Log:
Fix aes ige test speed not to overwrite it's buffer and
cause segfauls.  Thanks to Tim Hudson (Closes: #459619)
This is upstream change http://cvs.openssl.org/chngview?cn=16737


Modified: openssl/trunk/apps/speed.c
===================================================================
--- openssl/trunk/apps/speed.c	2008-01-16 20:16:24 UTC (rev 274)
+++ openssl/trunk/apps/speed.c	2008-01-16 20:27:18 UTC (rev 275)
@@ -577,7 +577,7 @@
 #define MAX_BLOCK_SIZE 64
 #endif
 	unsigned char DES_iv[8];
-	unsigned char iv[MAX_BLOCK_SIZE/8];
+	unsigned char iv[2*MAX_BLOCK_SIZE/8];
 #ifndef OPENSSL_NO_DES
 	DES_cblock *buf_as_des_cblock = NULL;
 	static DES_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};

Modified: openssl/trunk/debian/changelog
===================================================================
--- openssl/trunk/debian/changelog	2008-01-16 20:16:24 UTC (rev 274)
+++ openssl/trunk/debian/changelog	2008-01-16 20:27:18 UTC (rev 275)
@@ -1,3 +1,10 @@
+openssl (0.9.8g-4) unstable; urgency=low
+
+  * Fix aes ige test speed not to overwrite it's buffer and
+    cause segfauls.  Thanks to Tim Hudson (Closes: #459619)
+
+ -- Kurt Roeckx <kurt at roeckx.be>  Wed, 16 Jan 2008 21:17:02 +0100
+
 openssl (0.9.8g-3) unstable; urgency=low
 
   * aes-586.pl: push %ebx on the stack before we put some things on the




More information about the Pkg-openssl-changes mailing list