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

📄 evp.h

📁 openssl是ssl的开源项目
💻 H
📖 第 1 页 / 共 2 页
字号:
/* crypto/evp/evp.h *//* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. *  * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to.  The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code.  The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). *  * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *    "This product includes cryptographic software written by *     Eric Young (eay@cryptsoft.com)" *    The word 'cryptographic' can be left out if the rouines from the library *    being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from  *    the apps directory (application code) you must include an acknowledgement: *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" *  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *  * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed.  i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */#ifndef HEADER_ENVELOPE_H#define HEADER_ENVELOPE_H#ifdef	__cplusplusextern "C" {#endif#ifndef NO_MD2#include "md2.h"#endif#ifndef NO_MD5#include "md5.h"#endif#if !defined(NO_SHA) || !defined(NO_SHA1)#include "sha.h"#endif#ifndef NO_RMD160#include "ripemd.h"#endif#ifndef NO_DES#include "des.h"#endif#ifndef NO_RC4#include "rc4.h"#endif#ifndef NO_RC2#include "rc2.h"#endif#ifndef NO_RC5#include "rc5.h"#endif#ifndef NO_BLOWFISH#include "blowfish.h"#endif#ifndef NO_CAST#include "cast.h"#endif#ifndef NO_IDEA#include "idea.h"#endif#ifndef NO_MDC2#include "mdc2.h"#endif#define EVP_RC2_KEY_SIZE		16#define EVP_RC4_KEY_SIZE		16#define EVP_BLOWFISH_KEY_SIZE		16#define EVP_CAST5_KEY_SIZE		16#define EVP_RC5_32_12_16_KEY_SIZE	16#define EVP_MAX_MD_SIZE			(16+20) /* The SSLv3 md5+sha1 type */#define EVP_MAX_KEY_LENGTH		24#define EVP_MAX_IV_LENGTH		8#ifndef NO_RSA#include "rsa.h"#else#define RSA	long#endif#ifndef NO_DSA#include "dsa.h"#else#define DSA	long#endif#ifndef NO_DH#include "dh.h"#else#define DH	long#endif#include "objects.h"#define EVP_PK_RSA	0x0001#define EVP_PK_DSA	0x0002#define EVP_PK_DH	0x0004#define EVP_PKT_SIGN	0x0010#define EVP_PKT_ENC	0x0020#define EVP_PKT_EXCH	0x0040#define EVP_PKS_RSA	0x0100#define EVP_PKS_DSA	0x0200#define EVP_PKT_EXP	0x1000 /* <= 512 bit key */#define EVP_PKEY_NONE	NID_undef#define EVP_PKEY_RSA	NID_rsaEncryption#define EVP_PKEY_RSA2	NID_rsa#define EVP_PKEY_DSA	NID_dsa#define EVP_PKEY_DSA1	NID_dsa_2#define EVP_PKEY_DSA2	NID_dsaWithSHA#define EVP_PKEY_DSA3	NID_dsaWithSHA1#define EVP_PKEY_DSA4	NID_dsaWithSHA1_2#define EVP_PKEY_DH	NID_dhKeyAgreement/* Type needs to be a bit field * Sub-type needs to be for variations on the method, as in, can it do * arbitary encryption.... */typedef struct evp_pkey_st	{	int type;	int save_type;	int references;	union	{		char *ptr;		struct rsa_st *rsa;	/* RSA */		struct dsa_st *dsa;	/* DSA */		struct dh_st *dh;	/* DH */		} pkey;	int save_parameters;#ifdef HEADER_STACK_H	STACK /* X509_ATTRIBUTE */ *attributes; /* [ 0 ] */#else	char /* X509_ATTRIBUTE */ *attributes; /* [ 0 ] */#endif	} EVP_PKEY;#define EVP_PKEY_MO_SIGN	0x0001#define EVP_PKEY_MO_VERIFY	0x0002#define EVP_PKEY_MO_ENCRYPT	0x0004#define EVP_PKEY_MO_DECRYPT	0x0008#if 0/* This structure is required to tie the message digest and signing together. * The lookup can be done by md/pkey_method, oid, oid/pkey_method, or * oid, md and pkey. * This is required because for various smart-card perform the digest and * signing/verification on-board.  To handle this case, the specific * EVP_MD and EVP_PKEY_METHODs need to be closely associated. * When a PKEY is created, it will have a EVP_PKEY_METHOD associated with it. * This can either be software or a token to provide the required low level * routines. */typedef struct evp_pkey_md_st	{	int oid;	EVP_MD *md;	EVP_PKEY_METHOD *pkey;	} EVP_PKEY_MD;#define EVP_rsa_md2()		EVP_PKEY_MD_add(NID_md2WithRSAEncryption,\			EVP_rsa_pkcs1(),EVP_md2())#define EVP_rsa_md5()		EVP_PKEY_MD_add(NID_md5WithRSAEncryption,\			EVP_rsa_pkcs1(),EVP_md5())#define EVP_rsa_sha0()		EVP_PKEY_MD_add(NID_shaWithRSAEncryption,\			EVP_rsa_pkcs1(),EVP_sha())#define EVP_rsa_sha1()		EVP_PKEY_MD_add(NID_sha1WithRSAEncryption,\			EVP_rsa_pkcs1(),EVP_sha1())#define EVP_rsa_ripemd160()		EVP_PKEY_MD_add(NID_ripemd160WithRSA,\			EVP_rsa_pkcs1(),EVP_ripemd160())#define EVP_rsa_mdc2()		EVP_PKEY_MD_add(NID_mdc2WithRSA,\			EVP_rsa_octet_string(),EVP_mdc2())#define EVP_dsa_sha()		EVP_PKEY_MD_add(NID_dsaWithSHA,\			EVP_dsa(),EVP_mdc2())#define EVP_dsa_sha1()		EVP_PKEY_MD_add(NID_dsaWithSHA1,\			EVP_dsa(),EVP_sha1())typedef struct evp_pkey_method_st	{	char *name;	int flags;	int type;		/* RSA, DSA, an SSLeay specific constant */	int oid;		/* For the pub-key type */	int encrypt_oid;	/* pub/priv key encryption */	int (*sign)();	int (*verify)();	struct	{		int		int (*set)();	/* get and/or set the underlying type */		int (*get)();		int (*encrypt)();		int (*decrypt)();		int (*i2d)();		int (*d2i)();		int (*dup)();		} pub,priv;	int (*set_asn1_parameters)();	int (*get_asn1_parameters)();	} EVP_PKEY_METHOD;#endif#ifndef EVP_MDtypedef struct env_md_st	{	int type;	int pkey_type;	int md_size;	void (*init)();	void (*update)();	void (*final)();	int (*sign)();	int (*verify)();	int required_pkey_type[5]; /*EVP_PKEY_xxx */	int block_size;	int ctx_size; /* how big does the ctx need to be */	} EVP_MD;#define EVP_PKEY_NULL_method	NULL,NULL,{0,0,0,0}#ifndef NO_DSA#define EVP_PKEY_DSA_method	DSA_sign,DSA_verify, \				{EVP_PKEY_DSA,EVP_PKEY_DSA2,EVP_PKEY_DSA3, \					EVP_PKEY_DSA4,0}#else#define EVP_PKEY_DSA_method	EVP_PKEY_NULL_method#endif#ifndef NO_RSA#define EVP_PKEY_RSA_method	RSA_sign,RSA_verify, \				{EVP_PKEY_RSA,EVP_PKEY_RSA2,0,0}#define EVP_PKEY_RSA_ASN1_OCTET_STRING_method \				RSA_sign_ASN1_OCTET_STRING, \				RSA_verify_ASN1_OCTET_STRING, \				{EVP_PKEY_RSA,EVP_PKEY_RSA2,0,0}#else#define EVP_PKEY_RSA_method	EVP_PKEY_NULL_method#define EVP_PKEY_RSA_ASN1_OCTET_STRING_method EVP_PKEY_NULL_method#endif#endif /* !EVP_MD */typedef struct env_md_ctx_st	{	EVP_MD *digest;	union	{		unsigned char base[4];#ifndef NO_MD2		MD2_CTX md2;#endif#ifndef NO_MD5		MD5_CTX md5;#endif#ifndef NO_RMD160		RIPEMD160_CTX ripemd160;#endif#if !defined(NO_SHA) || !defined(NO_SHA1)		SHA_CTX sha;#endif#ifndef NO_MDC2		MDC2_CTX mdc2;#endif		} md;	} EVP_MD_CTX;typedef struct evp_cipher_st	{	int nid;	int block_size;	int key_len;	int iv_len;	void (*init)();		/* init for encryption */	void (*do_cipher)();	/* encrypt data */	void (*cleanup)();	/* used by cipher method */ 	int ctx_size;		/* how big the ctx needs to be */	/* int set_asn1_parameters(EVP_CIPHER_CTX,ASN1_TYPE *); */	int (*set_asn1_parameters)(); /* Populate a ASN1_TYPE with parameters */	/* int get_asn1_parameters(EVP_CIPHER_CTX,ASN1_TYPE *); */	int (*get_asn1_parameters)(); /* Get parameters from a ASN1_TYPE */	} EVP_CIPHER;typedef struct evp_cipher_info_st	{	EVP_CIPHER *cipher;	unsigned char iv[EVP_MAX_IV_LENGTH];	} EVP_CIPHER_INFO;typedef struct evp_cipher_ctx_st	{	EVP_CIPHER *cipher;	int encrypt;		/* encrypt or decrypt */	int buf_len;		/* number we have left */	unsigned char  oiv[EVP_MAX_IV_LENGTH];	/* original iv */	unsigned char  iv[EVP_MAX_IV_LENGTH];	/* working iv */	unsigned char buf[EVP_MAX_IV_LENGTH];	/* saved partial block */	int num;				/* used by cfb/ofb mode */	char *app_data;		/* aplication stuff */	union	{#ifndef NO_RC4		struct			{			unsigned char key[EVP_RC4_KEY_SIZE];			RC4_KEY ks;	/* working key */			} rc4;#endif#ifndef NO_DES		des_key_schedule des_ks;/* key schedule */		struct			{			des_key_schedule ks;/* key schedule */			C_Block inw;			C_Block outw;			} desx_cbc;		struct			{			des_key_schedule ks1;/* key schedule */			des_key_schedule ks2;/* key schedule (for ede) */			des_key_schedule ks3;/* key schedule (for ede3) */			} des_ede;#endif#ifndef NO_IDEA		IDEA_KEY_SCHEDULE idea_ks;/* key schedule */#endif#ifndef NO_RC2		RC2_KEY rc2_ks;/* key schedule */#endif#ifndef NO_RC5		RC5_32_KEY rc5_ks;/* key schedule */#endif#ifndef NO_BLOWFISH		BF_KEY bf_ks;/* key schedule */#endif#ifndef NO_CAST		CAST_KEY cast_ks;/* key schedule */#endif		} c;	} EVP_CIPHER_CTX;typedef struct evp_Encode_Ctx_st	{	int num;	/* number saved in a partial encode/decode */	int length;	/* The length is either the output line length			 * (in input bytes) or the shortest input line			 * length that is ok.  Once decoding begins,			 * the length is adjusted up each time a longer			 * line is decoded */	unsigned char enc_data[80];	/* data to encode */	int line_num;	/* number read on current line */	int expect_nl;	} EVP_ENCODE_CTX;#define EVP_PKEY_assign_RSA(pkey,rsa) EVP_PKEY_assign((pkey),EVP_PKEY_RSA,\					(char *)(rsa))#define EVP_PKEY_assign_DSA(pkey,dsa) EVP_PKEY_assign((pkey),EVP_PKEY_DSA,\					(char *)(dsa))

⌨️ 快捷键说明

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