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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? 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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线中文字幕一区| 色素色在线综合| 又紧又大又爽精品一区二区| 在线亚洲免费视频| 麻豆国产精品一区二区三区| 2020国产成人综合网| 91国产福利在线| 91日韩一区二区三区| 国产精品88av| 免费黄网站欧美| 自拍偷拍国产精品| 日韩欧美成人午夜| 91成人在线免费观看| 欧美国产综合色视频| 色综合久久综合网97色综合 | 久久久久久**毛片大全| 91成人免费网站| 一本色道久久综合狠狠躁的推荐| 国产一区二区精品久久99| 亚洲成人激情自拍| 国产精品久久久久7777按摩| 欧美中文一区二区三区| 色狠狠色狠狠综合| 91久久奴性调教| 在线精品视频免费观看| 一本大道久久a久久精品综合| 高潮精品一区videoshd| 成人短视频下载| 大陆成人av片| 91在线观看地址| 色综合天天在线| 色综合亚洲欧洲| 色素色在线综合| 91麻豆精品视频| 在线观看av一区| 欧美性生活久久| 欧美videos大乳护士334| 日韩欧美一级在线播放| 国产色产综合色产在线视频| 国产精品久久福利| 国产精品乱码久久久久久| 久久久久久日产精品| 亚洲色图视频网站| 亚洲午夜精品一区二区三区他趣| 污片在线观看一区二区| 午夜日韩在线电影| 精品在线观看视频| 成人午夜精品在线| 日本高清不卡在线观看| 国产亚洲欧美色| 视频一区欧美精品| 国产成人超碰人人澡人人澡| 成人av手机在线观看| 5566中文字幕一区二区电影| 中文无字幕一区二区三区| 午夜精品一区二区三区免费视频| 国产综合久久久久久鬼色| 日本韩国精品在线| 国产欧美一区二区精品忘忧草 | 久久综合av免费| 午夜不卡av免费| 日本国产一区二区| 亚洲天堂免费看| 成人av电影在线播放| 日韩亚洲欧美高清| 亚洲成a人v欧美综合天堂下载| 成人影视亚洲图片在线| 精品88久久久久88久久久| 日韩精品1区2区3区| 欧美综合一区二区| 成人免费在线播放视频| 成人av网站在线| 中文字幕一区二区三区视频| 裸体一区二区三区| 日韩色在线观看| 麻豆精品在线观看| 日韩一二在线观看| 麻豆91在线播放| 欧美电影免费观看高清完整版在线| 一区二区三区四区乱视频| 不卡的av中国片| 亚洲美女在线国产| 欧美亚一区二区| 美女一区二区三区在线观看| 日韩精品专区在线影院观看| 日本sm残虐另类| 久久精品夜色噜噜亚洲a∨| 国产一区二区成人久久免费影院 | 欧美综合亚洲图片综合区| 一区二区高清视频在线观看| 欧美吞精做爰啪啪高潮| 亚洲综合一区在线| 国产精品国产三级国产有无不卡| 视频一区国产视频| 欧美日韩在线播放三区四区| 一区二区三区四区激情| 欧美日韩精品欧美日韩精品一| 蜜桃在线一区二区三区| 久久久噜噜噜久久人人看| 成人听书哪个软件好| 国产精品美女久久久久久| 欧美在线不卡一区| 国产福利一区二区三区视频在线| 中文字幕日韩欧美一区二区三区| 欧美制服丝袜第一页| 国内精品免费在线观看| 一区二区三区国产豹纹内裤在线| 欧美人与禽zozo性伦| 免费不卡在线观看| 亚洲6080在线| 亚洲免费在线电影| 国产精品久久久久国产精品日日| 在线观看成人小视频| 久久91精品久久久久久秒播| 亚洲午夜视频在线| 国产精品天干天干在线综合| 日韩精品影音先锋| 99精品在线免费| 成人黄色a**站在线观看| 舔着乳尖日韩一区| 偷偷要91色婷婷| 亚洲成在线观看| 日韩一级黄色片| 日产精品久久久久久久性色| 日韩欧美中文字幕精品| 色偷偷成人一区二区三区91| 高清不卡在线观看av| 国产成人免费av在线| 狠狠色狠狠色综合日日91app| 日韩精品午夜视频| 日韩和的一区二区| 免费观看在线色综合| 图片区小说区国产精品视频| 日本亚洲电影天堂| 老司机精品视频导航| 久久国产综合精品| 韩国成人精品a∨在线观看| 国产成人一区在线| 99精品国产99久久久久久白柏| 色系网站成人免费| 欧美高清hd18日本| 2022国产精品视频| 国产日韩欧美麻豆| 一区二区三区欧美| 亚洲精品一二三| 五月天激情综合| 成人午夜av在线| 欧美性猛交xxxxxx富婆| 欧美一级二级三级乱码| 777奇米四色成人影色区| 精品国产区一区| 亚洲女爱视频在线| 美女视频一区二区| 91丝袜高跟美女视频| 欧美一区二区三区系列电影| 国产日产欧美一区二区三区| 一区二区三区美女| 久久99这里只有精品| 91麻豆福利精品推荐| 久久综合九色综合久久久精品综合 | 欧美视频完全免费看| 日韩欧美高清dvd碟片| 国产精品另类一区| 六月丁香婷婷色狠狠久久| 色综合久久久网| 精品乱人伦一区二区三区| 亚洲狠狠丁香婷婷综合久久久| 国产精品自拍av| 欧美一区二区三区公司| 亚洲人成网站影音先锋播放| 国产在线精品一区二区夜色| 欧美一区二区在线免费观看| 亚洲日本韩国一区| 91免费国产在线| 中文字幕一区在线观看视频| 国产一区在线观看麻豆| 在线播放国产精品二区一二区四区 | 精品视频免费看| 亚洲欧美日韩国产综合在线| 91蝌蚪porny成人天涯| 亚洲天堂久久久久久久| 91视频免费观看| 一区二区三区在线播放| 欧美羞羞免费网站| 午夜在线电影亚洲一区| 制服丝袜中文字幕一区| 亚洲综合清纯丝袜自拍| 欧美日韩亚洲另类| 亚洲夂夂婷婷色拍ww47| 欧美午夜片在线看| 美女高潮久久久| 欧美国产精品劲爆| 99久久久免费精品国产一区二区 | 久久综合狠狠综合| 国产福利一区在线| 亚洲少妇最新在线视频| 欧美精品v日韩精品v韩国精品v| 久久99国产精品久久| 国产欧美日韩另类一区| 国产91精品露脸国语对白|