This is a dynamic library that contains the encryption for 5017(if someone is up for a Cpp project), Diffie Hellman's KE and Blowfish(thanks to [Only registered and activated users can see links. Click Here To Register...] for those :)) might as well upgrade it later to include all the encryption algorithms existing so far, headers and static library also included
USAGE
1- Add the dll in the debug/release folder(both is preferred)
2- Add the header to your include path
3- Add the library to your libraries
4- to use the classes in the header:
5- if you are using MSVC++ 2008 or higher use this statement to link the library
else, you're on your own, you should know how to do it anyway..
6- Create instances..
7- ???
8- PROFIT :)
#Added Rev 3, proved working 100% after fixing some bugs in code.
PS. Make sure you already have OpenSSL's libraries and headers before using Blowfish or DH KE's classes.
USAGE
1- Add the dll in the debug/release folder(both is preferred)
2- Add the header to your include path
3- Add the library to your libraries
4- to use the classes in the header:
PHP Code:
#include <blowfish.h> // obviously for blowfish :}
#include <dhke.h> // For the Diffie Hellman KE's class
#include <coencd.h> // For the 5017 encryption
using namespace ConquerEncryptionClasses;
PHP Code:
#pragma comment(lib, "COEncryption.lib")
6- Create instances..
7- ???
8- PROFIT :)
#Added Rev 3, proved working 100% after fixing some bugs in code.
PS. Make sure you already have OpenSSL's libraries and headers before using Blowfish or DH KE's classes.