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

📄 pgprngread.h

📁 vc环境下的pgp源码
💻 H
字号:
/*
 * $Id: pgpRngRead.h,v 1.27 1998/11/13 01:39:23 hal Exp $
 */

#ifndef Included_pgpRngRead_h
#define Included_pgpRngRead_h

#include <stdio.h>	/* For size_t */

#include "pgpUsuals.h"

PGP_BEGIN_C_DECLARATIONS

#include "pgpOpaqueStructs.h"

/* Semi-public (you can use this, but probably don't want to) */
void const  *
ringFetchObject(RingSet const *set, union RingObject *obj,
	PGPSize *lenp);

/* Public */

RingFile  *ringFileOpen(RingPool *pool,
	PGPFile *f, int trusted, PGPError *error);
void  ringFileSetDestructor(RingFile *file,
	void (*destructor)(RingFile *, PGPFile *, void *),
	void *arg);

void  ringFileHighPri(RingFile *file);
void  ringFileLowPri(RingFile *file);

struct RingTrouble {
	struct RingTrouble const *next;
	union RingObject *obj;	/* The pertinent object, if applicable */
	PGPUInt32 num;	/* An integer parameter, if applicable */
	PGPUInt32 fpos;	/* File position related to the error */
	int type;	/* kPGPError_ code from pgpErrors.h */
};


RingTrouble const  *ringFileTrouble(
	RingFile const *file);
void  ringFilePurgeTrouble(RingFile *file);

int  ringFileCheckClose(RingFile const *file);
PGPError  ringFileClose(RingFile *file);

#define PGP_RINGSETWRITE_PUBTRUST		1
#define PGP_RINGSETWRITE_SECTRUST		2
#define PGP_RINGSETWRITE_EXPORTSIGS		4
PGPError  ringSetWrite(RingSet const *set, PGPFile *f,
			RingFile **filep, PgpVersion version, int flags);

char *ringReserve(RingPool *pool, size_t len);
int ringNamesDiffer(RingSet const *set, union RingObject *name1,
	union RingObject *name2);

union RingObject  *ringCreateName(RingSet *dest,
	union RingObject *key, char const *str, size_t len);
union RingObject *ringCreateAttribute(RingSet *dest, union RingObject *key,
	PGPByte attributeType, PGPByte const *data, size_t len);
union RingObject  *ringCreateSig(RingSet *dest,
	union RingObject *obj, PGPByte *sig, size_t siglen);
union RingObject  *ringCreateCRL(RingSet *dest,
	union RingObject *obj, PGPByte *crl, size_t crllen);
union RingObject  *ringCreateKey(RingSet *dest,
	union RingObject *parent, PGPPubKey const *key,
	PGPKeySpec const *ks, PGPByte pkalg);
union RingObject  *ringCreateSec(RingSet *dest,
	union RingObject *parent, PGPSecKey const *sec,
	PGPKeySpec const *ks, PGPByte pkalg);
int  ringRaiseName(RingSet *dest, union RingObject *name);

PGPError  ringSignObject(RingSet *set, union RingObject *obj,
		   PGPSigSpec *spec, PGPRandomContext const *rc);

int keysdiffer(RingFile *file1, union RingObject const *key, int pktbyte);
int namesdiffer(RingFile *file1, union RingObject const *name,
			PGPBoolean fAttribute);
int sigsdiffer(RingFile *file1, union RingObject const *sig);
int crlsdiffer(RingFile *file1, union RingObject const *crl);
int unkdiffer(RingFile *file1, union RingObject const *unk);

union RingObject  *ringPoolFindX509NamedSig (RingPool *pool, PGPByte *name,
				PGPSize namelen);

union RingObject  *ringCreateKeypair (PGPEnv const *env,
		       PGPSecKey *seckey,
		       PGPKeySpec *keyspec,
		       char const *name, size_t namelen,
		       PGPRandomContext const *rc,
		       RingSet *pubset, RingSet *secset,
			   RingSet const *rakset, PGPByte rakclass,
			   PGPByte *prefAlg, size_t prefAlgLength,
			   RingSet const *adkset, PGPByte adkclass,
			   PGPError *error);
union RingObject  *ringCreateSubkeypair (PGPEnv const *env,
			  PGPSecKey *seckey,
			  PGPSecKey *subseckey,
			  PGPKeySpec *keyspec,
			  PGPRandomContext const *rc,
			  RingSet *pubset, RingSet *secset,
			  PGPError *error);

PGP_END_C_DECLARATIONS

#endif /* Included_pgpRngRead_h */

⌨️ 快捷键说明

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