pgpconvkey.h

来自「著名的加密软件的应用于电子邮件中」· C头文件 代码 · 共 42 行

H
42
字号
/*
* pgpConvKey.h -- Conventional Encryption Keys for PGP
*
* Copyright (C) 1995-1997 Pretty Good Privacy, Inc. All rights reserved.
*
* Written By:	Derek Atkins <warlord@MIT.EDU>
*
* $Id: pgpConvKey.h,v 1.3.2.1 1997/06/07 09:50:18 mhw Exp $
*/

#ifndef PGPCONVKEY_H
#define PGPCONVKEY_H

#include "pgpUsuals.h"

#ifdef __cplusplus
extern "C" {
#endif

struct PgpStringToKey;
#ifndef TYPE_PGPSTRINGTOKEY
#define TYPE_PGPSTRINGTOKEY 1
typedef struct PgpStringToKey PgpStringToKey;
#endif

struct PgpConvKey {
		struct PgpConvKey const *next;
			struct PgpStringToKey const *stringToKey;
		char const *pass;
		size_t passlen;
	};
#ifndef TYPE_PGPCONVKEY
#define TYPE_PGPCONVKEY 1
typedef struct PgpConvKey PgpConvKey;
#endif

#ifdef __cplusplus
}
#endif

#endif /* PGPCONVKEY_H */

⌨️ 快捷键说明

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