pgpconvkey.h

来自「vc环境下的pgp源码」· C头文件 代码 · 共 28 行

H
28
字号
/*
 * pgpConvKey.h -- Conventional Encryption Keys for PGP
 *
 * Written By:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Id: pgpConvKey.h,v 1.6 1997/07/29 20:31:01 lloyd Exp $
 */

#ifndef Included_pgpConvKey_h
#define Included_pgpConvKey_h

#include "pgpUsuals.h"

PGP_BEGIN_C_DECLARATIONS


struct PGPConvKey {
	PGPConvKey const *		next;
	PGPStringToKey const *	stringToKey;
	char  *			pass;
	size_t					passlen;
};


PGP_END_C_DECLARATIONS

#endif /* Included_pgpConvKey_h */

⌨️ 快捷键说明

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