Kyle Hamilton wrote: > On Mon, Sep 8, 2008 at 10:31 PM, Shivakumar Balur > <[EMAIL PROTECTED]> wrote: >> openssl x509 -in req.der -noout -text >> >> got error: >> >> unable to load certificate >> >> 29221:error:0906D06C:PEM routines:PEM_read_bio:no start >> line:pedm_lib.c:647:Expecting: TRUSTED CERTIFICATE > > openssl x509 -inform DER -in req.der -noout -text > > It's expecting a PEM header, but your file is in DER. > Worse than that, it is expecting an X.509 certificate, and is being told to look at an OCSP Request.
If you want to view the request, you should do something like: openssl ocsp -in req.der -text Have fun. Patrick. ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List openssl-users@openssl.org Automated List Manager [EMAIL PROTECTED]