Is it possible to import DER encoded public key using MS crypto API? So i can verfiy signatures ? I need a piece of code or help for MS Crypto API for importing DER encoded public-key/certificate.
Asked
Active
Viewed 683 times
1 Answers
2
Following three steps will allow you to import your public key certificate
Get the certificate context using CertCreateCertificateContext
Open the other people certificate store with CertOpenStore for ADDRESSBOOK
Add the certificate context to the other people certificate store using CertAddCertificateContextToStore

Raj
- 1,113
- 1
- 17
- 34