On Mon, May 19, 2003 at 08:40:34PM -0400, Gene Grimm wrote: > bad certificate > TLS/SSL Handshake failed: -1 > > Any suggestions on where to look to solve this error?
Look at www.openssl.org. Esp. try
openssl x509 -text -in my-cert.pem
and see if the data inside makes sense.
You can create self signed certificates with:
openssl req -new -nodes -keyout test.key -out test.csr
openssl req -x509 \
-days 365 \
-key test.key \
-in test.csr \
-out test.crt.self
bye,
-christian-

