On Wed, Feb 23, 2000, Osvaldo Brito wrote:

> I've tried to run the above command line, and i've got this stdout error
> mesage:
> 
> Error loading private key
> 13988:error:0906D06C:PEM routines:PEM_read_bio:no start
> line:pem_lib.c:610:
> 
> Any help?

> > openssl pkcs12 -export -in server.crt -name "My Certificate" -out mycert.p12

The problem is that the shown openssl command is incomplete. It has to
actually read:

$ openssl pkcs12 -export -in server.crt -inkey server.key 
                 -name "My Certificate" -out mycert.p12

because in a PKCS12 file the certificate and the private key is
contained (because the browser has to know the private key, too).

                                       Ralf S. Engelschall
                                       [EMAIL PROTECTED]
                                       www.engelschall.com
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to