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?
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?
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.
It's not .NET, but for interactive use, try the OpenSSL utilities. Specifically:
openssl req -text -in request.csr
Try Liping Dai's website. His LCLib has ASN1 Parser which wrote in C#. It can decode CSR. Work for me.