[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: LDAP and SSL



> Date: Sun, 28 Nov 2004 13:28:18 -0500
> From: Chasecreek Systemhouse
> To: openldap-software@OpenLDAP.org
> Subject: LDAP and SSL

> Currently the LDAPS doesnt start and
>           openssl rsa -in newcert.pem -text -noout
> States that it cannot load the Private Key.

This seems to indicate that `newcert.pem' does not contain an rsa key.
pem's are just text files.  An rsa key will look like this:

  -----BEGIN RSA PRIVATE KEY-----
  [base64 encoded representation of rsa key]
  -----END RSA PRIVATE KEY-----

While not specific to openldap software, the mod_ssl folks have a nice
set of how-to's for working with ssl certificates:

  http://www.modssl.org/docs/2.8/ssl_faq.html#ToC24