Package: openssl-blacklist
Version: 0.3
Severity: minor
Tags: patch
gen_certs.sh has an if that's probably supposed to make it jump over
existing certs, however the filename it references is missing the .pem
extension. To allow 'resuming' of the certificate generation, please
apply the attached patch to it.
Greetings,
Michel
-- System Information:
Debian Release: lenny/sid
APT prefers stable
APT policy: (700, 'stable'), (650, 'testing'), (600, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages openssl-blacklist depends on:
ii openssl 0.9.8g-10+lenny1 Secure Socket Layer (SSL) binary a
ii python 2.5.2-1 An interactive high-level object-o
openssl-blacklist recommends no packages.
-- no debconf information
--- gen_certs.sh 2008-05-21 13:12:23.000000000 +0200
+++ gen_certs.sh 2008-05-29 11:46:43.000000000 +0200
@@ -66,7 +66,7 @@
for i in $(seq 1 32768);
do
- if [ -e "certs/cert-$bits-$i-$type" ]; then
+ if [ -e "certs/cert-$bits-$i-$type.pem" ]; then
continue
fi
FORCE_PID=$i LD_PRELOAD="$getpid" openssl req -newkey rsa:${bits}
-x509 -nodes -keyout certs/key-$bits-$i-$type.pem -subj
'/C=US/ST=Arizona/O=Testlib/OU=Test/CN=CA' -out certs/cert-$bits-$i-$type.pem