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

📄 chttpxcertserver.h

📁 vc环境下的pgp源码
💻 H
字号:
/*____________________________________________________________________________
	Copyright (C) 1997 Network Associates Inc. and affiliated companies.
	All rights reserved.
	
	
	
	$Id: CHTTPXcertServer.h,v 1.8 1999/03/25 18:33:57 melkins Exp $
____________________________________________________________________________*/

#ifndef Included_CHTTPXcertServer_h
#define Included_CHTTPXcertServer_h

#include "CHTTPKeyServer.h"

class CHTTPXcertServer : public CHTTPKeyServer {
public:
					CHTTPXcertServer(PGPContextRef inContext,
						const char * inHostName, PGPUInt32 inHostAddress,
						PGPUInt16 inHostPort, const char * inPath,
						PGPKeyServerProtocol inProtocol);
	virtual			~CHTTPXcertServer();
	
	virtual void	SendCertificateRequest(PGPKeyRef inCAKey, PGPKeyRef inRequestKey,
						const void * inBuffer, PGPSize inBufferSize, void ** outBuffer,
						PGPSize * outBufferSize);
	virtual void	RetrieveCertificate(PGPFilterRef inSearchFilter, PGPKeyRef inSearchKey,
						PGPKeyRef inSigningKey, PGPByte * inPassphrase,
						PGPSize inPassphraseLength, PGPBoolean inIsPassphrase,
						void ** outBuffer, PGPSize * outBufferSize);
	virtual void	RetrieveCRL(PGPKeyRef inCAKey, PGPKeySetRef inCAsKeySet, PGPKeyRef inSigningKey,
						PGPByte * inPassphrase, PGPSize inPassphraseLength,
						PGPBoolean inIsPassphrase, void ** outBuffer, PGPSize * outBufferSize);
	
protected:
	PGPUInt32		DigestKey(PGPKeyRef inKey, char * inOutputBuffer);
	PGPUInt32		GetMaxDigestedKeyBufferSize() { return GetMaxHexEncodedBufferSize(16); }

	void			ProcessSendCertResult(const char * inResult, void ** outBuffer,
						PGPSize * outBufferSize);
	void			ProcessRetrieveCertResult(const char * inResult, void ** outBuffer,
						PGPSize * outBufferSize);
	void			ProcessRetrieveCRLResult(const char * inResult, void ** outBuffer,
						PGPSize * outBufferSize);
};



#endif

⌨️ 快捷键说明

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