I want to find all client authentication certificates from the X509Store(StoreLocation.CurrentUser)
Is there anyway to do this? Even by getting all then filtering by a certain property to get all Client Authentication certificates?
|
I want to find all client authentication certificates from the Is there anyway to do this? Even by getting all then filtering by a certain property to get all Client Authentication certificates?
| |||
|
feedback
|
|
There are extensions that help identifying what can be used as client-certificate:
Certificates without these extensions at all could also be used as client-certificate, provided it's compatible with the (non-extended) Key Usage extension (if present). What you need at least in the (non-extended) Key Usage extension is
The NSS Technical Note 3 (All About Certificate Extensions) should be of interest. | |||
feedback
|
|
You'd need to examine the Extensions of each certificate. So far as I can see, once you've got to the Key Usage extension, you should have all the info you need. Edit Actually, for client authentication, you probably need the Enhanced Key Usage extension. I don't have a client authentication certificate lying around to test this with, but the following prints "Server Authentication" for a server certificate I've got:
| |||||||
feedback
|