c++ Programming Glossary: cryptdecodeobjectex
Load an X509 PEM file into Windows CryptoApi http://stackoverflow.com/questions/1231178/load-an-x509-pem-file-into-windows-cryptoapi the binary key blob into a CERT_PUBLIC_KEY_INFO with CryptDecodeObjectEx pass X509_ASN_ENCODING in dwCertEncodingType and X509_PUBLIC_KEY_INFO.. from the CERT_PUBLIC_KEY_INFO into a RSA key blob with CryptDecodeObjectEx pass X509_ASN_ENCODING in dwCertEncodingType and RSA_CSP_PUBLICKEYBLOB.. on but it didn't work for me as is. The second call to CryptDecodeObjectEx gave me an error ASN.1 bad tag value met . After many attempts..
MS Crypto API behavior on Windows XP vs Vista/7 http://stackoverflow.com/questions/4495247/ms-crypto-api-behavior-on-windows-xp-vs-vista-7 success. CryptStringToBinary.2 success. CryptDecodeObjectEx success. CryptImportPublicKeyInfo success. SUCCESS. ANALYZING.. success. CryptStringToBinary.2 success. CryptDecodeObjectEx success. CryptImportPublicKeyInfo FAILED . Output on Windows.. success. CryptStringToBinary.2 success. CryptDecodeObjectEx success. CryptImportPublicKeyInfo FAILED . ANALYZING CRYPTOGRAPHIC..
How to use CryptoAPI and CryptImportKey with a ASN.1 PEM OpenSSL Public key http://stackoverflow.com/questions/7573754/how-to-use-cryptoapi-and-cryptimportkey-with-a-asn-1-pem-openssl-public-key from this format and build a PUBLICKEYBLOB manually CryptDecodeObjectEx X509_ASN_ENCODING X509_PUBLIC_KEY_INFO pbPublicDER iDERSize.. decode the RSA Public key itself to a PUBLICKEYBLOB CryptDecodeObjectEx X509_ASN_ENCODING RSA_CSP_PUBLICKEYBLOB pbPublicPBLOB PublicKey.pbData..
|