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

📄 pgpconvkey.h

📁 著名的加密软件的应用于电子邮件中
💻 H
字号:
/*
* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -