This tutorial will guide you on how to hash a string by using OpenSSL’s MD5 hash function. This tutorial will create two C++ example files which will compile and run in Ubuntu environment....
[ Click to Continue ]Category "C++"
Imaging that your application need to load a DLL, which it could be your self-developed DLL or 3rd party DLL, and your application is dependent on some input or data from the DLL. Most DLL will provides APIs for calling the right function in order to execute certain processes to get the return value from......
[ Click to Continue ]It’s always good to unit test your C++ code so that you can find problems early. In this tutorial, I will demonstrate how you can run unit testing by using of Google C++ Testing Framework using the Microsoft Visual Studio. GTest is easy to learn and master. Visit the following website to find out more......
[ Click to Continue ]If you never write C++ templates before or you are not sure how to start with C++ template, then this tutorial is right for you. This tutorial will guide your on how to write your first template class in C++....
[ Click to Continue ]This tutorial will demonstrate how to create and run your first C++ application in Mac OSX by using Xcode....
[ Click to Continue ]You might look for a file download solution so that you can create a software downloader or updater for you application. In this tutorial, i’ll show you how this can be done by using of C++....
[ Click to Continue ]Hashing is an algorithm used to produce a hash value of some piece of data, such as a message or session key. Typical hashing algorithms include MD2, MD4, MD5, SHA-1 and SHA-2. This tutorial will guide you through the steps to create a Win32 console based sample application, which consists of cryptographic hashing function, by......
[ Click to Continue ]You might know the benefits of using parameterized query (e.g boost query performance in term of speed, avoid SQL injection attack, etc) but how it can be done in programming way might sound like a different story to you. 🙂 In this tutorial, I’m going to show you how we can achieve that in using......
[ Click to Continue ]If you are looking for a cryptography solutions in your project, whether it is Blowfish, DES, RC2 or RC4, perhaps, you can consider to utilize the crypto library which is provided by openssl. In this tutorial, i am going to show you how it can be easily implemented into the C++ project solution....
[ Click to Continue ]This tutorial describes how to setup project configuration in Visual C++ IDE in order to develop 64-bit applications. I am using a free version of Visual C++ 2010 Express in this tutorial. Visual C++ 2010 Express does not include a 64-bit compiler, we will need to install Windows 7 SDK in order to make it......
[ Click to Continue ]
OpenSSL MD5 Hashing Example in C++