Click here to Skip to main content
15,895,084 members
Articles / Programming Languages / C++

Open Source Software protection system - Part 1

Rate me:
Please Sign up or sign in to vote.
2.48/5 (35 votes)
18 Apr 20049 min read 151K   4.3K   102  
Outlines in developing an open source implementation of a new software protection system.
#pragma once

#include <windows.h>

class EncryptionInterface
{
public:
	EncryptionInterface(const char *pwd) { strncpy(_encryptionKey, pwd, 99); _encryptionKey[99] = 0; }
	virtual ~EncryptionInterface() { ZeroMemory(_encryptionKey, 100); }
	virtual DWORD encryptStream(const char *plain, const DWORD size, char *cipher) = 0;
	virtual DWORD decryptStream(const char *cipher, const DWORD size, char *plain) = 0;
protected:
    char _encryptionKey[100];	
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Kamal Shankar is a programming freak (or so he feels).He currently lives in the Salt Lake City and loves doing what he has been since 1990 - coding horribly Wink | ;)

Comments and Discussions