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

📄 pgptrust.h

📁 著名的加密软件的应用于电子邮件中
💻 H
字号:
/*
* pgpTrust.h
*
* Copyright (C) 1994-1997 Pretty Good Privacy, Inc. All rights reserved.
*
* $Id: pgpTrust.h,v 1.4.2.1 1997/06/07 09:50:44 mhw Exp $
*/

#ifndef PGPTRUST_H
#define PGPTRUST_H

#include "pgpUsuals.h"

#define PGP_TRUST_DECADE (40*64)
#define PGP_TRUST_OCTAVE (12*64)
#define PGP_TRUST_MAX 0xfffe
#define PGP_TRUST_INFINITE 0xffff

#ifdef __cplusplus
extern "C" {
#endif

	byte	PGPExport ringTrustToExtern(word16 trust);
	word16	PGPExport ringTrustToIntern(byte trust);
	unsigned	PGPExport ringIntToTrust(unsigned long r);
unsigned long PGPExport ringTrustToInt(unsigned t);
unsigned PGPExport ringDoubleToTrust(double d);
double PGPExport ringTrustToDouble(unsigned t);
int PGPExport ringTrustValid(struct RingSet const *set,
	word16 validity);
#ifdef __GNUC__		/* XXX: Should be something like HAS_LONG_LONG */
unsigned long long PGPExport ringTrustToUll(unsigned t);
#endif

#ifdef __cplusplus
}
#endif

#endif /* PGPTRUST_H */

⌨️ 快捷键说明

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