⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ckeyserver.h

📁 vc环境下的pgp源码
💻 H
字号:
/*____________________________________________________________________________
	Copyright (C) 1997 Network Associates Inc. and affiliated companies.
	All rights reserved.
	
	
	
	$Id: CKeyServer.h,v 1.34 1999/05/07 08:54:37 jason Exp $
____________________________________________________________________________*/

#ifndef Included_CKeyServer_h
#define Included_CKeyServer_h

#if PGP_WIN32
#include <windows.h>
#include "PGPAsyncDNS.h"
#endif

#if PGP_WIN32 || PGP_UNIX
#include "pgpRMWOLock.h"
#endif

#include "pgpException.h"

#include "pgpKeyServer.h"


// Dummy struct to allow conversion operator to work
struct PGPKeyServer {
};


/* Key ordering */
enum PGPKeyUploadPreference_
{
	kPGPInvalid							= 0,
	kPGPPublicKeyOnly 					= 1,
	kPGPPrivateKeyAllowed				= 2,
	
	PGP_ENUM_FORCE( PGPKeyUploadPreference_ )
} ;
PGPENUM_TYPEDEF( PGPKeyUploadPreference_, PGPKeyUploadPreference );



class StPreserveSocketsEventHandler;

struct SThreadContext;

class CKeyServer	:	public PGPKeyServer {
	friend class StPreserveSocketsEventHandler;
	
public:
	static void						Initialize();
	static void						Cleanup();
		
	static void						SetIdleEventHandler(
										PGPEventHandlerProcPtr inCallback,
										PGPUserValue inUserData);
	static void						GetIdleEventHandler(
										PGPEventHandlerProcPtr * outCallback,
										PGPUserValue * outUserData);
	
	static void						CreateThreadStorage(
										SThreadContext ** outContext);
	static void						DisposeThreadStorage(
										SThreadContext * inContext);

	static CKeyServer *				NewKeyServerFromURL(
										PGPContextRef inContext, 
										const char * inURL, 
										PGPKeyServerAccessType inAccessType,
										PGPKeyServerKeySpace inKeySpace,
										PGPKeyServerClass inClass = kPGPKeyServerClass_PGP);
	static CKeyServer *				NewKeyServerFromHostAddress(
										PGPContextRef inContext,
										PGPUInt32 inHostAddress,
										PGPUInt16 inHostPort,
										PGPKeyServerProtocol inType,
										PGPKeyServerAccessType inAccessType,
										PGPKeyServerKeySpace inKeySpace,
										PGPKeyServerClass inClass = kPGPKeyServerClass_PGP);
	static CKeyServer *				NewKeyServerFromHostName(
										PGPContextRef inContext,
										const char * inHostName,
										PGPUInt16 inHostPort,
										const char * inPath,
										PGPKeyServerProtocol inType,
										PGPKeyServerAccessType inAccessType,
										PGPKeyServerKeySpace inKeySpace,
										PGPKeyServerClass inClass = kPGPKeyServerClass_PGP);
										
	virtual PGPBoolean				Free();
	virtual void					IncRefCount() { mRefCount++; }
	
									CKeyServer(PGPContextRef inContext,
										const char * inHostName,
										PGPUInt32 inHostAddress,
										PGPUInt16 inHostPort,
										const char * inPath,
										PGPKeyServerProtocol inType);
	virtual							~CKeyServer();
	
	virtual void					SetEventHandler(
										PGPEventHandlerProcPtr inCallback,
										PGPUserValue inUserData)
										{ mEventHandler = inCallback;
										  mEventHandlerData = inUserData; }
	virtual void					GetEventHandler(
										PGPEventHandlerProcPtr & outCallback,
										PGPUserValue & outUserData)
										{ outCallback = mEventHandler;
										  outUserData = mEventHandlerData; }
										  
	virtual void					Open(PGPtlsSessionRef inTLSSession);
	virtual void					Close();
	
	virtual void					Cancel();
	
	virtual void					GetTLSSession(
										PGPtlsSessionRef & outTLSSession)
										{ outTLSSession = mTLSSession; }
	virtual void					GetProtocol(PGPKeyServerProtocol & outType)
										{ outType = mType; }
	virtual void					GetAccessType(PGPKeyServerAccessType & 
											outAccessType)
										{ 
											(void) outAccessType;
											ThrowPGPError_(
										kPGPError_ServerOperationNotSupported);
										}
	virtual void					GetKeySpace(
										PGPKeyServerKeySpace & outKeySpace)
										{ 
											(void) outKeySpace;
											ThrowPGPError_(
										kPGPError_ServerOperationNotSupported);
										}
	virtual void					GetPort(PGPUInt16 & outPort)
										{ outPort = mHostPort; }
	virtual void					GetHostName(char ** outHostName);
	virtual void					GetAddress(PGPUInt32 & outAddress);
	virtual void					GetPath(char ** outPath);
	virtual void					GetErrorString(char ** outErrorString);
	virtual PGPContextRef			GetContext(void) { return mContext; }			
	virtual PGPBoolean				IsBusy() { return mIsBusy; }
	virtual void					SetBusy(PGPBoolean inIsBusy)
										{ mIsBusy = inIsBusy; }
	
	virtual PGPBoolean				IsCanceled() { return mCanceled; }
	virtual void					ResetCanceled()
										{ mCanceled = false; }
										
	virtual void		Query(PGPFilterRef inFilterRef, 
							PGPKeySetRef * outFoundKeys)
							{ 	(void) inFilterRef;
								(void) outFoundKeys;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		Upload(PGPKeyUploadPreference inSendPrivateKeys, 
							PGPKeySetRef inKeysToUpload,
							PGPKeySetRef * outKeysThatFailed)
							{ 	(void) inSendPrivateKeys;
								(void) inKeysToUpload;
								(void) outKeysThatFailed;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		Delete(PGPKeySetRef inKeysToDelete,
							PGPKeySetRef * outKeysThatFailed)
							{ 	(void) inKeysToDelete;
								(void) outKeysThatFailed;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		Disable(PGPKeySetRef inKeysToDisable,
							PGPKeySetRef * outKeysThatFailed)
							{ 	(void) inKeysToDisable;
								(void) outKeysThatFailed;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		SendGroups(
							PGPGroupSetRef inGroupSetRef)
							{ 	(void) inGroupSetRef;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		RetrieveGroups(
							PGPGroupSetRef * outGroupSetRef)
							{ 	(void) outGroupSetRef;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		NewMonitor(
							PGPKeyServerMonitor ** outMonitor)
							{ 	(void) outMonitor;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		FreeMonitor(
							PGPKeyServerMonitor * inMonitor)
							{ 	(void) inMonitor;
								ThrowPGPError_(
								kPGPError_ServerOperationNotSupported); }
	virtual void		SendCertificateRequest(PGPKeyRef inCAKey, PGPKeyRef inRequestKey, 
							const void * inBuffer, PGPSize inBufferSize, void ** outBuffer,
							PGPSize * outBufferSize)
							{	(void) inCAKey; (void) inRequestKey; (void) inBuffer;
								(void) inBufferSize; (void) outBuffer; (void) outBufferSize;
								ThrowPGPError_(kPGPError_ServerOperationNotSupported); }
	virtual void		RetrieveCertificate(PGPFilterRef inSearchFilter, PGPKeyRef inSearchKey,
							PGPKeyRef inSigningKey, PGPByte * inPassphrase,
							PGPSize inPassphraseLength, PGPBoolean inIsPassphrase,
							void ** outBuffer, PGPSize * outBufferSize)
							{	(void) inSearchFilter; (void) inSearchKey; (void) inSigningKey;
								(void) inPassphrase; (void) inPassphraseLength;
								(void) inIsPassphrase; (void) outBuffer; (void) outBufferSize;
								ThrowPGPError_(kPGPError_ServerOperationNotSupported); }
	virtual void		RetrieveCRL(PGPKeyRef inCAKey, PGPKeySetRef inCAsKeySet, PGPKeyRef inSigningKey,
							PGPByte * inPassphrase, PGPSize inPassphraseLength,
							PGPBoolean inIsPassphrase, void ** outBuffer, PGPSize * outBufferSize)
							{	(void) inCAKey; (void) inCAsKeySet; (void) inSigningKey;
								(void) inPassphrase; (void) inPassphraseLength;
								(void) inIsPassphrase; (void) outBuffer; (void) outBufferSize;
								ThrowPGPError_(kPGPError_ServerOperationNotSupported); }
								
protected:
#if PGP_WIN32
	static PGPRMWOLock				sThreadLock;
	static PGPInt32					sIdleEventHandlerIndex;
	static PGPInt32					sIdleEventHandlerDataIndex;
	PGPAsyncHostEntryRef			mAsyncHostEntryRef;
#endif
	static PGPBoolean				sIsInitialized;

	PGPContextRef					mContext;
	char *							mHostName;
	PGPUInt16						mHostPort;
	PGPUInt32						mHostAddress;
	char *							mPath;
	PGPKeyServerProtocol			mType;
	PGPEventHandlerProcPtr			mEventHandler;
	PGPUserValue					mEventHandlerData;
	PGPtlsSessionRef				mTLSSession;
	char *							mErrorString;
	PGPBoolean						mSecured;
	PGPBoolean						mIsBusy;
	PGPBoolean						mIsOpen;
	PGPBoolean						mCanceled;
	PGPInt32						mRefCount;
	
	virtual void					InitializeHostNameAndAddress(char ** inHostName,
										PGPUInt32 * inHostAddress);
	virtual void					InitOperation();
	virtual void					SetErrorString(
										const char * inErrorString);
	static void						GetThreadIdleEventHandler(
										PGPEventHandlerProcPtr * outCallback,
										PGPUserValue * outUserData);
	static void						SetThreadIdleEventHandler(
										PGPEventHandlerProcPtr inCallback,
										PGPUserValue inUserData);
	static PGPError					KeyServerIdleEventHandler(
										PGPContextRef inContext,
										PGPEvent * inEvent,
										PGPUserValue callBackArg);

private:
	static void						CheckInitialization();
};


class StPreserveSocketsEventHandler {
public:
								StPreserveSocketsEventHandler(
									CKeyServer * inKeyServer);
	virtual						~StPreserveSocketsEventHandler();
	
protected:
	StPGPPreserveSocketsStorage	mSocketsStorage;
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -