Welcome to MSDN Blogs Sign in | Join | Help

Decrypt my World

Cryptography, Security, Debugging and more!

News

  • Any of my posts is supported under any Microsoft standard support program or service. They are provided "AS IS" without warranty of any kind, and confer no rights.

Where are my readers?

Locations of visitors to this page

Favorite Posts

January 2008 - Posts

How to import a certificate without user interaction (C++ & C#)
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...
How to generate key pairs, encrypt and decrypt data with CryptoAPI
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...
How to sign and verify with CryptoAPI and a user certificate
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...
How To Host an NT Service on svchost.exe
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...
Page view tracker