vote up 2 vote down star

I ran accross a CSR file (Certificate Signing Request) and I need to extract some information from it.

There's a way to decode it using .NET Framework?

flag

2 Answers

vote up 2 vote down check

It's not .NET, but for interactive use, try the OpenSSL utilities. Specifically:

openssl req -text -in request.csr
link|flag
vote up 0 vote down

There's no way to decode a CSR, by design. If you could, you could alter the properties and defeat the whoe purpose of SSL.

link|flag
CAs typically disregard most of the information in the CSR when determining a name to bind to the key. The key is what matters; the other properties are just hints for the name. – sylvarking Dec 9 '08 at 17:10
cool, learned something new today – jwmiller5 Dec 18 '08 at 4:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.