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

📄 pgpmakepke.h

📁 PGP8.0源码 请认真阅读您的文件包然后写出其具体功能
💻 H
字号:
/*
 * pgpMakePKE.h -- Make a Public Key Encrypted packet from a pubkey and a
 * session key.
 *
 * This is a PRIVATE header file, for use only within the PGP Library.
 * You should not be using these functions in an application.
 *
 * $Id: pgpMakePKE.h,v 1.5 2001/01/25 22:11:16 jeffc Exp $
 */

#ifndef Included_pgpMakePKE_h
#define Included_pgpMakePKE_h

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

#include "pgpUsuals.h"	/* For PGPByte and PgpVersion */
#include "pgpContext.h"

PGP_BEGIN_C_DECLARATIONS

/*
 * Allocate and return a buffer to hold the ESK packet in *buf, *len.
 */
PGPError
makePke (PGPContextRef context, PGPKeyDBObj const *key,
	PGPByte const *symkey, unsigned symkeylen,
	PgpVersion version, PGPByte **buf, PGPSize *len );

PGP_END_C_DECLARATIONS

#endif /* Included_pgpMakePKE_h */

⌨️ 快捷键说明

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