I need programmatically extract or import X509 certificate from Smart Card without saving it to personal store. Does anyone know the way to implement it?
C sharp language. I can sign with Smart Card CSP. But dont know how read certificate from Smart card
I need programmatically extract or import X509 certificate from Smart Card without saving it
Share
From smart card point of view, a X.509 certificate is just a binary file, but one needs to find and address the correct file, a functionality provided by the PKCS#11 support for the card.
While the following link is for a thin python layer on top of pkcs #11, the last example may serve as starting point for C# also.
official PyKCS11 module, with sources