Im trying to set the certificate friendly name during the certificate request/acceptance process. I understand that this a property of the microsoft store rather than the certificate and an wondering what .net/c# technique might be used to set it.
|
1
|
|
|
|
|
|
the codes using CAPICOM works perfectly! |
||
|
|
|
|
Really friendlyName is not a cert store properties but a PKCS#12 attribute to add to a X509 certificate. PKCS#12 is a standard for personal data exchange and it used to packs X509 certificate and the related private key. A friendlyName is an attribute added to the final PKCS#12 file define in this standard. To generare X509Certificate in PKCS#12 format you can try the X509Builder web application at http://www.we-coffee.com/x509builder.aspx |
||
|
|
|
|
So here is a commmand line example of how to do this. You need CAPICOM from microsoft which wraps the CryptoAPI. The friendly name is a property of the cert store rather than the certificate so this code imports a certificate to the cert store and sets the friendly name as it does so. The code takes two parameters the path to the cert file and the friendly name you wish to set. Code:-
Regards |
|||
|
|
