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

📄 pgpaes.h

📁 PGP8.0源码 请认真阅读您的文件包然后写出其具体功能
💻 H
字号:
/*____________________________________________________________________________
        Copyright (C) 2002 PGP Corporation
        All rights reserved.

	header file for pgpAES.c
	
	 This is a PRIVATE header file, for use only within the PGP Library.
	 You should not be using these functions in an application.
	
        $Id: pgpAES.h,v 1.4 2002/08/06 20:10:57 dallen Exp $
____________________________________________________________________________*/
#ifndef Included_pgpAES_h
#define Included_pgpAES_h


#include "pgpSDKBuildFlags.h"

#ifndef PGP_AES
#error you must define PGP_AES one way or the other
#endif


#if PGP_AES	/* [ */


#include "pgpSymmetricCipherPriv.h"		/* for Cipher */

PGP_BEGIN_C_DECLARATIONS

/*
 * This is the definition of the AES cipher, for use with the
 * PGP Generic Cipher code.
 */
extern PGPCipherVTBL const cipherAES128;
extern PGPCipherVTBL const cipherAES192;
extern PGPCipherVTBL const cipherAES256;

PGP_END_C_DECLARATIONS

#endif /* ] PGP_AES */

#endif /* !Included_pgpAES_h */

⌨️ 快捷键说明

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