pgpvrfysig.h

来自「可以实现对邮件的加密解密以及签名」· C头文件 代码 · 共 39 行

H
39
字号
/*
 * pgpVrfySig.h -- Signature Verification Code
 *
 * Written by:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Id: pgpVrfySig.h,v 1.4 2001/01/25 22:11:21 jeffc Exp $
 */
#ifndef Included_pgpVrfySig_h
#define Included_pgpVrfySig_h

#include "pgpOpaqueStructs.h"
#include "pgpPubTypes.h"

PGP_BEGIN_C_DECLARATIONS

int pgpSigSetupPipeline (
		PGPContextRef cdkContext,
		PGPPipeline **head,
		PGPHashListRef *hashes,
		PGPByte const *hashlist, PGPUInt16 numHashes,
		PGPByte const *charmap);

int pgpSigSetupHashes (
		PGPContextRef cdkContext,
		PGPPipeline **tail, PGPEnv const *env,
		PGPHashListRef *hashlist,
		PGPSigData const *siglist,
		PGPUICb const *ui, void *ui_arg);

PGPError	pgpSigVerify (PGPSigData const *siglist, PGPHashListRef hashes,
				PGPUICb const *ui, void *arg);

int pgpSepsigVerify (PGPSigData const *siglist, PGPEnv const *env,
		     PGPUICb const *ui, void *ui_arg);

PGP_END_C_DECLARATIONS

#endif /* Included_pgpVrfySig_h */

⌨️ 快捷键说明

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