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

📄 pgphashmod.h

📁 vc环境下的pgp源码
💻 H
字号:
/*
 * pgpHashMod.h -- A Generic Hash Module.
 *
 * Written by:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Id: pgpHashMod.h,v 1.10 1997/09/18 01:35:24 lloyd Exp $
 */
#ifndef Included_pgpHashMod_h
#define Included_pgpHashMod_h

PGP_BEGIN_C_DECLARATIONS

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


/*
 * Create a module that will hash its input and copy it to the output,
 * using the passed-in PGPHashContext.  The caller assumes control of the
 * PGPHashContext, and when this module returns success from a
 * sizeAdvise(0), the PGPHashContext is valid for use.
 *
 * Note: the calling function must destroy the PGPHashContext.
 */
PGPPipeline  **
pgpHashModCreate ( PGPContextRef cdkContext,
				PGPPipeline **head, PGPHashContext *hash);

PGPPipeline  **
pgpHashModListCreate ( PGPContextRef cdkContext,
	PGPPipeline **head, PGPHashListRef hashes, unsigned num);

PGP_END_C_DECLARATIONS

#endif

⌨️ 快捷键说明

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