pgprsakey.h

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

H
39
字号
/*
* pgpRSAKey.h
*
* Copyright (C) 1996,1997 Pretty Good Privacy, Inc. All rights reserved.
*
* $Id: pgpRSAKey.h,v 1.3.2.2 1997/06/09 23:46:36 quark Exp $
*/

#ifndef PGPRSAKEY_H
#define PGPRSAKEY_H

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

#ifdef __cplusplus
extern "C" {
#endif

struct PgpPubKey;
struct PgpSecKey;
struct PgpRandomContext;

struct PgpPubKey *rsaPubFromBuf(byte const *buf, size_t len, int *error);
struct PgpSecKey *rsaSecFromBuf(byte const *buf, size_t len, int *error);
int rsaPubKeyPrefixSize(byte const *buf, size_t size);

struct PgpSecKey *
rsaSecGenerate(unsigned bits, Boolean fastgen,
	struct PgpRandomContext const *rc,
	int progress(void *arg, int c), void *arg, int *error);
int rsaChangeLock(struct PgpSecKey *seckey, struct PgpEnv const *env,
	struct PgpRandomContext const *rc, char const *phrase, size_t plen);

#ifdef __cplusplus
}
#endif

#endif /* PGPRSAKEY_H */

⌨️ 快捷键说明

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