diff options
author | Bernhard Fröhlich <bernhard@cacert.org> | 2011-04-14 23:54:10 +0200 |
---|---|---|
committer | Bernhard Fröhlich <bernhard@cacert.org> | 2011-04-14 23:54:10 +0200 |
commit | 7f1f10b52ab565d582de1ddb933872ce12e104f3 (patch) | |
tree | 9f1c016f5f5efd7b4a014c6b4ec24dba8d55da7a /scripts | |
parent | a4ca549c1b58bd0d891d76dbdf2ceb76fcc5557d (diff) | |
download | cacert-devel-7f1f10b52ab565d582de1ddb933872ce12e104f3.tar.gz cacert-devel-7f1f10b52ab565d582de1ddb933872ce12e104f3.tar.xz cacert-devel-7f1f10b52ab565d582de1ddb933872ce12e104f3.zip |
Activated openssl-vulnkey call
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/DumpWeakCerts.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/DumpWeakCerts.pl b/scripts/DumpWeakCerts.pl index 894d06d..85648fe 100755 --- a/scripts/DumpWeakCerts.pl +++ b/scripts/DumpWeakCerts.pl @@ -65,9 +65,9 @@ sub IsWeak($) { if (!$result) { # Check with openssl-vulnkey # This is currently not tested, if you don't know what you are doing leave it commented! - #if (system("openssl-vulnkey -q $CertFileName") != 0) { - # $result = "openssl-vulnkey"; - #} + if (system("openssl-vulnkey -q $CertFileName") != 0) { + $result = "openssl-vulnkey"; + } } return $result; |