January 2008 - Posts
Hi, welcome back, Today I'm posting a CryptoAPI sample which uses CryptUIWizImport to import a certificate without any user interaction: <SAMPLE Language="C++"> CRYPTUI_WIZ_IMPORT_SRC_INFO importSrc; memset(&importSrc, 0, sizeof(CRYPTUI_WIZ_IMPORT_SRC_INFO));
Read More...
Hi, welcome back, Today I'm posting a sample I did some time ago which shows how to generate key pairs , encrypt and decrypt data with C++ and CryptoAPI . The comments in the code should be self-explanatory. <SAMPLE> // INCLUDES #include "stdio.h"
Read More...
Hi, welcome back, Today I will show how to sign data and verify that signature using CryptoAPI and a certificate from our Personal store. The comments in the code should help to understand it. Remember that this is just a sample, and some more cleanup
Read More...
Hi all, welcome back, This How To will be very short, because the answer is plain and simple: it's not supported to host non-windows services in svchost.exe , it's for MS Windows Services only. I hope this helps. Cheers, Alex (Alejandro Campos Magencio)
Read More...