pgpelgkey.h

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

H
40
字号
/*
 * pgpElGKey.h
 *
 * Copyright (C) 1996,1997 Pretty Good Privacy, Inc.  All rights reserved.
 *
 * $Id: pgpElGKey.h,v 1.4.2.1 1997/06/07 09:51:25 mhw Exp $
 */

#ifndef PGPELGKEY_H
#define PGPELGKEY_H

#include "pgpUsuals.h"	/* For byte */
#include <stddef.h>	/* For size_t */

#ifdef __cplusplus
extern "C" {
#endif

/* Bits for uniqueness of p, q */
#define ELGDUMMYBITS	64

struct PgpPubKey;
struct PgpSecKey;
struct PgpRandomContext;

struct PgpPubKey *elgPubFromBuf(byte const *buf, size_t len, int *error);
struct PgpSecKey *elgSecFromBuf(byte const *buf, size_t len, int *error);
int elgPubKeyPrefixSize(byte const *buf, size_t size);

struct PgpSecKey *
elgSecGenerate(unsigned bits, Boolean fastgen,
	struct PgpRandomContext const *rc,
	int progress(void *arg, int c), void *arg, int *error);

#ifdef __cplusplus
}
#endif

#endif /* PGPELGKEY_H */

⌨️ 快捷键说明

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