|
Posted by Doug McIntyre on February 21, 2007, 12:44 am
If you were Registered and logged in, you could reply and use other advanced thread options
>I'd like to see how the X.509 certificate of a certificate authority
>looks like. They're built into browsers, but I'd like to see the DER-
>encoded version.
Look for the CAcertbundle from the Mozilla project. Won't look much
different than you'd see for any other cert.
>Also, according to what I've read about SSL/TLS, the client and the
>server each send their own X.509 certificate. How might I go about
>getting the latter? The client's (for example, FireFox's) X.509
>certificate? I tried using WireShark to capture the packets as they
>were being sent out but didn't see the certificates there...
Client X.509 certificates are very rare.
You should see the server X.509 certificate going over the wire during
conversation though. ie. use 'openssl s_client' command line command
and it'll dump it out for you as it talks.
|