Archive for the 'OpenSSL' Category



I have had problems trying to compile ssldump-0.9b3 against OpenSSL 0.9.7.
To fix it, I made the following patch:
— ssldump-0.9b3/base/pcap-snoop.c.old 2005-11-18 16:16:02.000000000 +0100
+++ ssldump-0.9b3/base/pcap-snoop.c 2005-11-18 16:16:20.000000000 +0100
@@ -49,7 +49,7 @@

#include

#include
-#include
+#include

#ifndef _WIN32
#include
#endif

OpenSSL command-line tools offer a lot of functionality. OpenSSL can generate private keys and their corresponding public key certificate requests, can sign those certificate requests, publish certificate revocation lists (CRLs), convert between several encoding formats like DER, PEM, PKCS#12, etc.
In this article I will describe how to use OpenSSL to set up a Certificate Authority [...]