亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? evp.h

?? Openssl的常用頭文件
?? 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 OPENSSL_ALGORITHM_DEFINES# include <openssl/opensslconf.h>#else# define OPENSSL_ALGORITHM_DEFINES# include <openssl/opensslconf.h># undef OPENSSL_ALGORITHM_DEFINES#endif#ifndef NO_BIO#include <openssl/bio.h>#endif#ifndef NO_MD2#include <openssl/md2.h>#endif#ifndef NO_MD4#include <openssl/md4.h>#endif#ifndef NO_MD5#include <openssl/md5.h>#endif#ifndef NO_SHA#include <openssl/sha.h>#endif#ifndef NO_RIPEMD#include <openssl/ripemd.h>#endif#ifndef NO_DES#include <openssl/des.h>#endif#ifndef NO_RC4#include <openssl/rc4.h>#endif#ifndef NO_RC2#include <openssl/rc2.h>#endif#ifndef NO_RC5#include <openssl/rc5.h>#endif#ifndef NO_BF#include <openssl/blowfish.h>#endif#ifndef NO_CAST#include <openssl/cast.h>#endif#ifndef NO_IDEA#include <openssl/idea.h>#endif#ifndef NO_MDC2#include <openssl/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#define PKCS5_SALT_LEN			8/* Default PKCS#5 iteration count */#define PKCS5_DEFAULT_ITER		2048#ifndef NO_RSA#include <openssl/rsa.h>#endif#ifndef NO_DSA#include <openssl/dsa.h>#endif#ifndef NO_DH#include <openssl/dh.h>#endif#include <openssl/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#ifdef	__cplusplusextern "C" {#endif/* Type needs to be a bit field * Sub-type needs to be for variations on the method, as in, can it do * arbitrary encryption.... */typedef struct evp_pkey_st	{	int type;	int save_type;	int references;	union	{		char *ptr;#ifndef NO_RSA		struct rsa_st *rsa;	/* RSA */#endif#ifndef NO_DSA		struct dsa_st *dsa;	/* DSA */#endif#ifndef NO_DH		struct dh_st *dh;	/* DH */#endif		} pkey;	int save_parameters;	STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */	} 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_sha())#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	{	const EVP_MD *digest;	union	{		unsigned char base[4];#ifndef NO_MD2		MD2_CTX md2;#endif#ifndef NO_MD5		MD5_CTX md5;#endif#ifndef NO_MD4		MD4_CTX md4;#endif#ifndef NO_RIPEMD		RIPEMD160_CTX ripemd160;#endif#ifndef NO_SHA		SHA_CTX sha;#endif#ifndef NO_MDC2		MDC2_CTX mdc2;#endif		} md;	} EVP_MD_CTX;typedef struct evp_cipher_st EVP_CIPHER;typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;struct evp_cipher_st	{	int nid;	int block_size;	int key_len;		/* Default value for variable length ciphers */	int iv_len;	unsigned long flags;	/* Various flags */	int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,		    const unsigned char *iv, int enc);	/* init key */	int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,			 const unsigned char *in, unsigned int inl);/* encrypt/decrypt data */	int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */	int ctx_size;		/* how big the ctx needs to be */	int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */	int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */	int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */	void *app_data;		/* Application data */	};/* Values for cipher flags *//* Modes for ciphers */#define		EVP_CIPH_STREAM_CIPHER		0x0#define		EVP_CIPH_ECB_MODE		0x1#define		EVP_CIPH_CBC_MODE		0x2#define		EVP_CIPH_CFB_MODE		0x3#define		EVP_CIPH_OFB_MODE		0x4#define 	EVP_CIPH_MODE			0x7/* Set if variable length cipher */#define 	EVP_CIPH_VARIABLE_LENGTH	0x8/* Set if the iv handling should be done by the cipher itself */#define 	EVP_CIPH_CUSTOM_IV		0x10/* Set if the cipher's init() function should be called if key is NULL */#define 	EVP_CIPH_ALWAYS_CALL_INIT	0x20/* Call ctrl() to init cipher parameters */#define 	EVP_CIPH_CTRL_INIT		0x40/* Don't use standard key length function */#define 	EVP_CIPH_CUSTOM_KEY_LENGTH	0x80/* ctrl() values */#define		EVP_CTRL_INIT			0x0#define 	EVP_CTRL_SET_KEY_LENGTH		0x1#define 	EVP_CTRL_GET_RC2_KEY_BITS	0x2#define 	EVP_CTRL_SET_RC2_KEY_BITS	0x3#define 	EVP_CTRL_GET_RC5_ROUNDS		0x4#define 	EVP_CTRL_SET_RC5_ROUNDS		0x5typedef struct evp_cipher_info_st	{	const EVP_CIPHER *cipher;	unsigned char iv[EVP_MAX_IV_LENGTH];	} EVP_CIPHER_INFO;struct evp_cipher_ctx_st	{	const 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 */	void *app_data;		/* application stuff */	int key_len;		/* May change for variable length cipher */	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 */			des_cblock inw;			des_cblock 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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色欧美乱欧美15图片| 一区二区三区在线免费播放| 欧美午夜精品一区| 国产成人在线视频网址| 亚洲va韩国va欧美va精品 | 韩国中文字幕2020精品| 综合中文字幕亚洲| 国产亚洲午夜高清国产拍精品| 欧美一区二区三区视频在线| 色欧美日韩亚洲| 蜜臀久久久久久久| 国产成人亚洲综合a∨猫咪| 亚洲午夜影视影院在线观看| 国产精品网曝门| 久久久一区二区| 精品国产乱子伦一区| 日韩一级视频免费观看在线| 激情综合五月天| 美女一区二区三区| 男男gaygay亚洲| 麻豆中文一区二区| 久久国产夜色精品鲁鲁99| 久久99精品一区二区三区| 日本成人在线网站| 日本美女视频一区二区| 日韩经典中文字幕一区| 琪琪久久久久日韩精品| 日韩高清不卡一区二区| 午夜精品久久一牛影视| 美女视频黄久久| 老鸭窝一区二区久久精品| 午夜精品视频一区| 丝袜美腿亚洲色图| 久久国产生活片100| 国产做a爰片久久毛片| 国产一区二区免费看| 国产91精品免费| 97精品久久久午夜一区二区三区| 91国在线观看| 欧美群妇大交群的观看方式| 91精品国产色综合久久ai换脸 | 国产精品色噜噜| 亚洲欧美日韩国产手机在线| 亚洲最大色网站| 日韩高清在线一区| 国产成人一级电影| 99久久久精品免费观看国产蜜| 最新高清无码专区| 夜色激情一区二区| 久久99精品久久久久久动态图| 国产成人欧美日韩在线电影| av电影在线观看完整版一区二区| 欧美中文字幕一区| 精品黑人一区二区三区久久| 国产精品久久久久久久久久久免费看| 17c精品麻豆一区二区免费| 亚洲国产日韩a在线播放性色| 精品一区二区在线免费观看| 91网站最新地址| 91精品国产免费久久综合| 久久精品亚洲精品国产欧美kt∨ | 东方aⅴ免费观看久久av| 99国产精品久久久久| 91精品国产一区二区三区| 中文字幕第一区综合| 午夜久久久久久| www.一区二区| 日韩欧美一二三| 夜夜精品浪潮av一区二区三区 | www精品美女久久久tv| 一区二区三区波多野结衣在线观看| 国产在线乱码一区二区三区| 国产在线看一区| 尤物在线观看一区| 奇米四色…亚洲| 成人av在线资源网站| 欧美一级生活片| 亚洲日本丝袜连裤袜办公室| 国模套图日韩精品一区二区 | 中文字幕一区二区三区四区不卡| 日本中文在线一区| 在线亚洲欧美专区二区| 亚洲欧洲精品一区二区精品久久久| 激情久久五月天| 69p69国产精品| 亚洲一二三四区不卡| 成人爱爱电影网址| 精品国产麻豆免费人成网站| 丝袜美腿亚洲一区二区图片| 色呦呦一区二区三区| 久久五月婷婷丁香社区| 免费一级片91| 欧美专区亚洲专区| 国产欧美一区二区三区在线看蜜臀| 久久99日本精品| 亚洲二区在线观看| 日本国产一区二区| 亚洲在线观看免费| 色爱区综合激月婷婷| 亚洲欧美日韩国产另类专区| 日本精品一区二区三区四区的功能| 亚洲视频一二区| 91蝌蚪porny成人天涯| 一区二区三区日本| 欧美日韩你懂得| 日韩国产一二三区| 精品国产免费一区二区三区四区 | 久久激情综合网| 精品成人在线观看| 韩国成人精品a∨在线观看| 日韩欧美色综合网站| 久久不见久久见免费视频1| 久久婷婷色综合| 国产传媒欧美日韩成人| 国产精品无码永久免费888| 9i在线看片成人免费| 亚洲美女偷拍久久| 欧美绝品在线观看成人午夜影视| 亚洲另类在线制服丝袜| 一本久久精品一区二区| 亚洲综合一二区| 色视频成人在线观看免| 亚洲免费伊人电影| 欧美区一区二区三区| 国精产品一区一区三区mba视频| 国产三级欧美三级日产三级99| 99久久er热在这里只有精品15| 天堂va蜜桃一区二区三区漫画版| 26uuu国产日韩综合| 色久综合一二码| 国产一区二区三区久久久| 亚洲免费观看在线观看| 欧美日韩三级一区二区| 懂色av一区二区三区蜜臀| 亚洲午夜在线视频| 国产视频911| 91精品国产乱码久久蜜臀| 成人国产电影网| 奇米影视一区二区三区| 中文字幕精品一区二区三区精品| 欧美精品三级日韩久久| 国产91精品入口| av欧美精品.com| 亚洲主播在线观看| 久久精品欧美日韩| 91久久精品一区二区三| 九九视频精品免费| 国产精品欧美久久久久无广告| 欧美日韩mp4| 99精品1区2区| 99久久精品国产毛片| 国内精品国产成人| 青娱乐精品视频| 日韩综合小视频| 一区二区三区在线观看网站| 久久先锋影音av| 欧美va日韩va| 欧美日产在线观看| 欧美日韩精品欧美日韩精品| 福利一区福利二区| 亚洲综合在线视频| 中文字幕亚洲在| 国产日韩欧美在线一区| 久久亚洲私人国产精品va媚药| 久久久亚洲精品一区二区三区| 91精品国产一区二区三区| 日韩欧美精品在线| 91精品国产综合久久香蕉的特点| 欧美性色欧美a在线播放| 欧美日韩午夜在线视频| 日本久久一区二区| 成人激情免费视频| 国产白丝精品91爽爽久久| 国产剧情一区二区三区| 国产在线播精品第三| 国模无码大尺度一区二区三区| 午夜精品久久久久久| 午夜av一区二区三区| 视频一区在线视频| 国产中文字幕一区| 国产精品自在欧美一区| 99国产一区二区三精品乱码| 欧美亚洲国产一卡| 欧美体内she精高潮| 日韩免费观看高清完整版| 欧美一区二区三区精品| 日韩女优制服丝袜电影| 久久久久综合网| 国产精品区一区二区三区| 亚洲天天做日日做天天谢日日欢 | 激情五月播播久久久精品| 美女被吸乳得到大胸91| 国内精品国产三级国产a久久| 成人性生交大片免费看在线播放 | 亚洲欧美自拍偷拍色图| 亚洲一区二区三区影院| 麻豆成人91精品二区三区| 国产精品一区二区在线看| 99在线热播精品免费| 亚洲福利一二三区|