www.pudn.com > DCPlusPlus-src.zip > CryptoManager.h


/*  
 * Copyright (C) 2001-2004 Jacek Sieka, j_s at telia com 
 * 
 * This program is free software; you can redistribute it and/or modify 
 * it under the terms of the GNU General Public License as published by 
 * the Free Software Foundation; either version 2 of the License, or 
 * (at your option) any later version. 
 * 
 * This program is distributed in the hope that it will be useful, 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
 * GNU General Public License for more details. 
 * 
 * You should have received a copy of the GNU General Public License 
 * along with this program; if not, write to the Free Software 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
 */ 
 
#if !defined(AFX_CRYPTO_H__28F66860_0AD5_44AD_989C_BA4326C42F46__INCLUDED_) 
#define AFX_CRYPTO_H__28F66860_0AD5_44AD_989C_BA4326C42F46__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#include "SettingsManager.h" 
#include "ResourceManager.h" 
 
#include "Exception.h" 
#include "Singleton.h" 
#include "FastAlloc.h" 
 
STANDARD_EXCEPTION(CryptoException); 
 
class Node : public FastAlloc { 
public: 
	// What's this? The only way (I've found out) to avoid a Internal Compiler Error! If this class is moved into 
	// CryptoManager along with the greater specialization, it generates a ICE on the greater class. The typedefs 
	// had to be removed in order to avoid template instatiation. 
//	typedef Node* Ptr; 
//	typedef list List; 
//	typedef List::iterator Iter; 
	int chr; 
	int weight; 
	 
	Node* left; 
	Node* right; 
	 
	Node(int aChr, int aWeight) : chr(aChr), weight(aWeight), left(NULL), right(NULL) { }; 
	Node(Node* aLeft, Node* aRight) :  chr(-1), weight(aLeft->weight + aRight->weight), left(aLeft), right(aRight) { }; 
	~Node() { 
		delete left; 
		delete right; 
	} 
	bool operator <(const Node& rhs) const { 
		return weight(const Node& rhs) const { 
		return weight>rhs.weight; 
	} 
	bool operator <=(const Node& rhs) const { 
		return weight<=rhs.weight; 
	} 
	bool operator >=(const Node& rhs) const { 
		return weight>rhs.weight; 
	} 
}; 
 
class File; 
class FileException; 
 
class CryptoManager : public Singleton 
{ 
public: 
	string makeKey(const string& aLock); 
	const string& getLock() { return lock; }; 
	const string& getPk() { return pk; }; 
	bool isExtended(const string& aLock) { return strncmp(aLock.c_str(), "EXTENDEDPROTOCOL", 16) == 0; }; 
 
	void decodeHuffman(const u_int8_t* /*is*/, string& /*os*/, const size_t /*len*/) throw(CryptoException); 
	void encodeHuffman(const string& is, string& os); 
	void decodeBZ2(const u_int8_t* is, size_t sz, string& os) throw(CryptoException); 
private: 
 
	friend class Singleton; 
	 
	CryptoManager() : lock("EXTENDEDPROTOCOLABCABCABCABCABCABC"), pk("DCPLUSPLUS" VERSIONSTRING "ABCABC") { }; 
	virtual ~CryptoManager() { }; 
 
	class Leaf : public FastAlloc { 
	public: 
		int chr; 
		int len; 
		Leaf(int aChr, int aLen) : chr(aChr), len(aLen) { }; 
		Leaf() : chr(-1), len(-1) { }; 
	}; 
	 
	class DecNode : public FastAlloc { 
	public: 
		int chr; 
		DecNode* left; 
		DecNode* right; 
		DecNode(int aChr) : chr(aChr), left(NULL), right(NULL) { }; 
		DecNode(DecNode* aLeft, DecNode* aRight) : chr(-1), left(aLeft), right(aRight) { }; 
		DecNode() : chr(-1), left(NULL), right(NULL) { }; 
		~DecNode() { 
			delete left; 
			delete right; 
		} 
	}; 
	 
	const string lock; 
	const string pk; 
 
	int countChars(const string& aString, int* c, u_int8_t& csum); 
	void walkTree(list& aTree); 
	void recurseLookup(vector* b, Node* node, vector& bytes); 
	void buildLookup(vector* b, Node* root); 
	 
	string keySubst(const u_int8_t* aKey, size_t len, size_t n); 
	bool isExtra(u_int8_t b) { 
		return (b == 0 || b==5 || b==124 || b==96 || b==126 || b==36); 
	} 
}; 
 
#endif // !defined(AFX_CRYPTO_H__28F66860_0AD5_44AD_989C_BA4326C42F46__INCLUDED_) 
 
/** 
 * @file 
 * $Id: CryptoManager.h,v 1.39 2004/09/26 18:54:08 arnetheduck Exp $ 
 */