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

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

?? ssl.h

?? Openssl的常用頭文件
?? H
?? 第 1 頁 / 共 5 頁
字號:
/* ssl/ssl.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.] *//* ==================================================================== * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved. * * 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 above 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 acknowledgment: *    "This product includes software developed by the OpenSSL Project *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to *    endorse or promote products derived from this software without *    prior written permission. For written permission, please contact *    openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" *    nor may "OpenSSL" appear in their names without prior written *    permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following *    acknowledgment: *    "This product includes software developed by the OpenSSL Project *    for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED 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 OpenSSL PROJECT OR * ITS 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. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com).  This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */#ifndef HEADER_SSL_H #define HEADER_SSL_H #ifndef NO_COMP#include <openssl/comp.h>#endif#ifndef NO_BIO#include <openssl/bio.h>#endif#ifndef NO_X509#include <openssl/x509.h>#endif#include <openssl/safestack.h>#ifdef  __cplusplusextern "C" {#endif/* SSLeay version number for ASN.1 encoding of the session information *//* Version 0 - initial version * Version 1 - added the optional peer certificate */#define SSL_SESSION_ASN1_VERSION 0x0001/* text strings for the ciphers */#define SSL_TXT_NULL_WITH_MD5		SSL2_TXT_NULL_WITH_MD5			#define SSL_TXT_RC4_128_WITH_MD5	SSL2_TXT_RC4_128_WITH_MD5		#define SSL_TXT_RC4_128_EXPORT40_WITH_MD5 SSL2_TXT_RC4_128_EXPORT40_WITH_MD5	#define SSL_TXT_RC2_128_CBC_WITH_MD5	SSL2_TXT_RC2_128_CBC_WITH_MD5		#define SSL_TXT_RC2_128_CBC_EXPORT40_WITH_MD5 SSL2_TXT_RC2_128_CBC_EXPORT40_WITH_MD5	#define SSL_TXT_IDEA_128_CBC_WITH_MD5	SSL2_TXT_IDEA_128_CBC_WITH_MD5		#define SSL_TXT_DES_64_CBC_WITH_MD5	SSL2_TXT_DES_64_CBC_WITH_MD5		#define SSL_TXT_DES_64_CBC_WITH_SHA	SSL2_TXT_DES_64_CBC_WITH_SHA		#define SSL_TXT_DES_192_EDE3_CBC_WITH_MD5 SSL2_TXT_DES_192_EDE3_CBC_WITH_MD5	#define SSL_TXT_DES_192_EDE3_CBC_WITH_SHA SSL2_TXT_DES_192_EDE3_CBC_WITH_SHA	#define SSL_MAX_SSL_SESSION_ID_LENGTH		32#define SSL_MAX_SID_CTX_LENGTH			32#define SSL_MIN_RSA_MODULUS_LENGTH_IN_BYTES	(512/8)#define SSL_MAX_KEY_ARG_LENGTH			8#define SSL_MAX_MASTER_KEY_LENGTH		48/* These are used to specify which ciphers to use and not to use */#define SSL_TXT_LOW		"LOW"#define SSL_TXT_MEDIUM		"MEDIUM"#define SSL_TXT_HIGH		"HIGH"#define SSL_TXT_kFZA		"kFZA"#define	SSL_TXT_aFZA		"aFZA"#define SSL_TXT_eFZA		"eFZA"#define SSL_TXT_FZA		"FZA"#define	SSL_TXT_aNULL		"aNULL"#define	SSL_TXT_eNULL		"eNULL"#define	SSL_TXT_NULL		"NULL"#define SSL_TXT_kRSA		"kRSA"#define SSL_TXT_kDHr		"kDHr"#define SSL_TXT_kDHd		"kDHd"#define SSL_TXT_kEDH		"kEDH"#define	SSL_TXT_aRSA		"aRSA"#define	SSL_TXT_aDSS		"aDSS"#define	SSL_TXT_aDH		"aDH"#define	SSL_TXT_DSS		"DSS"#define SSL_TXT_DH		"DH"#define SSL_TXT_EDH		"EDH"#define SSL_TXT_ADH		"ADH"#define SSL_TXT_RSA		"RSA"#define SSL_TXT_DES		"DES"#define SSL_TXT_3DES		"3DES"#define SSL_TXT_RC4		"RC4"#define SSL_TXT_RC2		"RC2"#define SSL_TXT_IDEA		"IDEA"#define SSL_TXT_MD5		"MD5"#define SSL_TXT_SHA1		"SHA1"#define SSL_TXT_SHA		"SHA"#define SSL_TXT_EXP		"EXP"#define SSL_TXT_EXPORT		"EXPORT"#define SSL_TXT_EXP40		"EXPORT40"#define SSL_TXT_EXP56		"EXPORT56"#define SSL_TXT_SSLV2		"SSLv2"#define SSL_TXT_SSLV3		"SSLv3"#define SSL_TXT_TLSV1		"TLSv1"#define SSL_TXT_ALL		"ALL"/* 'DEFAULT' at the start of the cipher list insert the following string * in addition to this being the default cipher string */#define SSL_DEFAULT_CIPHER_LIST	"ALL:!ADH:RC4+RSA:+SSLv2:@STRENGTH"/* Used in SSL_set_shutdown()/SSL_get_shutdown(); */#define SSL_SENT_SHUTDOWN	1#define SSL_RECEIVED_SHUTDOWN	2#ifdef __cplusplus}#endif#include <openssl/crypto.h>#include <openssl/lhash.h>#include <openssl/buffer.h>#include <openssl/bio.h>#include <openssl/pem.h>#include <openssl/x509.h>#ifdef  __cplusplusextern "C" {#endif#if (defined(NO_RSA) || defined(NO_MD5)) && !defined(NO_SSL2)#define NO_SSL2#endif#define SSL_FILETYPE_ASN1	X509_FILETYPE_ASN1#define SSL_FILETYPE_PEM	X509_FILETYPE_PEM/* This is needed to stop compilers complaining about the * 'struct ssl_st *' function parameters used to prototype callbacks * in SSL_CTX. */typedef struct ssl_st *ssl_crock_st;/* used to hold info on the particular ciphers used */typedef struct ssl_cipher_st	{	int valid;	const char *name;		/* text name */	unsigned long id;		/* id, 4 bytes, first is version */	unsigned long algorithms;	/* what ciphers are used */	unsigned long algo_strength;	/* strength and export flags */	unsigned long algorithm2;	/* Extra flags */	int strength_bits;		/* Number of bits really used */	int alg_bits;			/* Number of bits for algorithm */	unsigned long mask;		/* used for matching */	unsigned long mask_strength;	/* also used for matching */	} SSL_CIPHER;DECLARE_STACK_OF(SSL_CIPHER)typedef struct ssl_st SSL;typedef struct ssl_ctx_st SSL_CTX;/* Used to hold functions for SSLv2 or SSLv3/TLSv1 functions */typedef struct ssl_method_st	{	int version;	int (*ssl_new)(SSL *s);	void (*ssl_clear)(SSL *s);	void (*ssl_free)(SSL *s);	int (*ssl_accept)(SSL *s);	int (*ssl_connect)(SSL *s);	int (*ssl_read)(SSL *s,void *buf,int len);	int (*ssl_peek)(SSL *s,void *buf,int len);	int (*ssl_write)(SSL *s,const void *buf,int len);	int (*ssl_shutdown)(SSL *s);	int (*ssl_renegotiate)(SSL *s);	int (*ssl_renegotiate_check)(SSL *s);	long (*ssl_ctrl)(SSL *s,int cmd,long larg,char *parg);	long (*ssl_ctx_ctrl)(SSL_CTX *ctx,int cmd,long larg,char *parg);	SSL_CIPHER *(*get_cipher_by_char)(const unsigned char *ptr);	int (*put_cipher_by_char)(const SSL_CIPHER *cipher,unsigned char *ptr);	int (*ssl_pending)(SSL *s);	int (*num_ciphers)(void);	SSL_CIPHER *(*get_cipher)(unsigned ncipher);	struct ssl_method_st *(*get_ssl_method)(int version);	long (*get_timeout)(void);	struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */	int (*ssl_version)();	long (*ssl_callback_ctrl)(SSL *s, int cb_id, void (*fp)());	long (*ssl_ctx_callback_ctrl)(SSL_CTX *s, int cb_id, void (*fp)());	} SSL_METHOD;/* Lets make this into an ASN.1 type structure as follows * SSL_SESSION_ID ::= SEQUENCE { *	version 		INTEGER,	-- structure version number *	SSLversion 		INTEGER,	-- SSL version number *	Cipher 			OCTET_STRING,	-- the 3 byte cipher ID *	Session_ID 		OCTET_STRING,	-- the Session ID *	Master_key 		OCTET_STRING,	-- the master key *	Key_Arg [ 0 ] IMPLICIT	OCTET_STRING,	-- the optional Key argument *	Time [ 1 ] EXPLICIT	INTEGER,	-- optional Start Time *	Timeout [ 2 ] EXPLICIT	INTEGER,	-- optional Timeout ins seconds *	Peer [ 3 ] EXPLICIT	X509,		-- optional Peer Certificate *	Session_ID_context [ 4 ] EXPLICIT OCTET_STRING,   -- the Session ID context *	Verify_result [ 5 ] EXPLICIT INTEGER    -- X509_V_... code for `Peer' *	Compression [6] IMPLICIT ASN1_OBJECT	-- compression OID XXXXX *	} * Look in ssl/ssl_asn1.c for more details * I'm using EXPLICIT tags so I can read the damn things using asn1parse :-). */typedef struct ssl_session_st	{	int ssl_version;	/* what ssl version session info is				 * being kept in here? */	/* only really used in SSLv2 */	unsigned int key_arg_length;	unsigned char key_arg[SSL_MAX_KEY_ARG_LENGTH];	int master_key_length;	unsigned char master_key[SSL_MAX_MASTER_KEY_LENGTH];	/* session_id - valid? */	unsigned int session_id_length;	unsigned char session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];	/* this is used to determine whether the session is being reused in	 * the appropriate context. It is up to the application to set this,	 * via SSL_new */	unsigned int sid_ctx_length;	unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH];	int not_resumable;	/* The cert is the certificate used to establish this connection */	struct sess_cert_st /* SESS_CERT */ *sess_cert;	/* This is the cert for the other end.	 * On clients, it will be the same as sess_cert->peer_key->x509	 * (the latter is not enough as sess_cert is not retained	 * in the external representation of sessions, see ssl_asn1.c). */	X509 *peer;	/* when app_verify_callback accepts a session where the peer's certificate	 * is not ok, we must remember the error for session reuse: */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区永久视频免费观看| 久久久久久久久蜜桃| 在线中文字幕不卡| 91视频xxxx| 石原莉奈在线亚洲三区| 日韩精品最新网址| 欧美美女黄视频| 欧美特级限制片免费在线观看| 国产精品网曝门| 国产成人精品一区二区三区四区 | 日韩精品在线一区| 欧美一区二区三区四区高清 | 亚洲精品你懂的| 亚洲欧美怡红院| 亚洲区小说区图片区qvod| 亚洲欧美日本韩国| 亚洲尤物在线视频观看| 亚洲一级二级三级在线免费观看| 亚洲主播在线观看| 日本aⅴ亚洲精品中文乱码| 蜜桃精品视频在线| 国产一区啦啦啦在线观看| 成人国产在线观看| 色综合一区二区| 欧美精品久久99| 久久嫩草精品久久久精品一| 中文字幕一区在线观看视频| 亚洲激情图片小说视频| 五月天激情综合| 久久99国产乱子伦精品免费| 成人免费看片app下载| 色先锋aa成人| 欧美一级一区二区| 久久精品欧美日韩| 亚洲一区二区三区自拍| 久草精品在线观看| 不卡一区二区中文字幕| 欧洲一区二区三区在线| 精品国产欧美一区二区| 国产精品久久久久影院亚瑟| 亚洲第一在线综合网站| 激情av综合网| 91免费国产在线| 日韩精品专区在线| 中文字幕制服丝袜一区二区三区| 亚洲国产日韩在线一区模特 | 欧美成人a∨高清免费观看| 国产精品―色哟哟| 午夜国产精品影院在线观看| 国产成人免费在线观看不卡| 欧美色涩在线第一页| 久久综合九色综合久久久精品综合 | 51精品视频一区二区三区| 久久久777精品电影网影网| 亚洲男人的天堂在线观看| 日本伊人精品一区二区三区观看方式| 国产成人亚洲精品狼色在线| 欧美年轻男男videosbes| 国产欧美日韩不卡| 日本伊人色综合网| 色婷婷久久综合| 久久久高清一区二区三区| 亚洲午夜视频在线| 成人高清视频在线观看| 日韩视频在线你懂得| 亚洲毛片av在线| 高清不卡一区二区| 日韩一区二区三区三四区视频在线观看| 国产精品国产a级| 国产一区二区在线免费观看| 欧美日韩免费视频| 亚洲欧洲日产国产综合网| 精品一区二区三区久久久| 欧美午夜精品一区二区蜜桃| 国产精品久久777777| 久草热8精品视频在线观看| 欧美精三区欧美精三区| 一区二区三区久久| 99久久99久久久精品齐齐| 欧美激情一区在线| 国产麻豆欧美日韩一区| 日韩美女主播在线视频一区二区三区| 亚洲精品视频免费看| 成人国产精品免费网站| 久久久精品免费免费| 精品在线播放午夜| 91精品国产高清一区二区三区| 亚洲一区二区黄色| 色哟哟一区二区在线观看| 国产精品国模大尺度视频| 国产精品一二三| 欧美成人三级电影在线| 三级欧美韩日大片在线看| 欧美视频一区在线观看| 亚洲欧美日韩国产成人精品影院| jlzzjlzz欧美大全| 国产精品丝袜久久久久久app| 国产成人aaa| 久久久美女毛片| 国产成人免费xxxxxxxx| 久久久久成人黄色影片| 国产黑丝在线一区二区三区| 久久久久久亚洲综合| 国产一区二区三区久久久| 26uuu亚洲| 国产一区二区调教| 久久精品亚洲国产奇米99| 国产一二精品视频| 国产精品欧美综合在线| 成人av电影在线播放| 亚洲精品视频一区二区| 在线观看中文字幕不卡| 午夜精品国产更新| 91精品午夜视频| 久久精品国产77777蜜臀| 亚洲精品一区二区三区香蕉| 国产麻豆日韩欧美久久| 国产精品亲子乱子伦xxxx裸| 99精品视频在线观看免费| 亚洲视频一区二区在线观看| 欧美视频精品在线| 日欧美一区二区| 精品电影一区二区三区| 豆国产96在线|亚洲| 亚洲女同一区二区| 91精品国产综合久久香蕉的特点 | 粉嫩一区二区三区性色av| 国产精品短视频| 欧美在线你懂得| 精品一区二区久久| 中文字幕在线观看不卡视频| 欧美视频自拍偷拍| 六月丁香婷婷久久| 国产精品污www在线观看| 欧洲色大大久久| 日产国产欧美视频一区精品| 久久久噜噜噜久久中文字幕色伊伊| 成人av在线看| 偷窥少妇高潮呻吟av久久免费| 欧美刺激脚交jootjob| www.亚洲国产| 午夜精品福利在线| 中文字幕的久久| 欧美性受xxxx黑人xyx性爽| 激情五月婷婷综合网| 亚洲另类春色校园小说| 欧美一级夜夜爽| 99re这里只有精品首页| 蜜臀av一区二区在线免费观看| 国产日韩影视精品| 欧美三区免费完整视频在线观看| 国内精品第一页| 亚洲国产精品一区二区www在线| 欧美成人aa大片| 欧美视频在线一区| 成人免费高清视频在线观看| 婷婷久久综合九色国产成人| 国产日产精品1区| 91麻豆精品国产自产在线观看一区| 国产成人av福利| 日韩精品一区第一页| 国产精品福利一区二区| 日韩精品专区在线| 欧美日韩一区国产| 成人黄色综合网站| 久久国产精品一区二区| 亚洲综合一二区| 国产日韩欧美精品综合| 欧美一区二区美女| 日本精品一区二区三区高清| 国产激情偷乱视频一区二区三区| 天天综合天天做天天综合| 日韩美女视频19| 久久久精品tv| 欧美成人伊人久久综合网| 欧美体内she精高潮| 91美女片黄在线观看| 国产91富婆露脸刺激对白| 日韩一区精品视频| 亚洲午夜精品久久久久久久久| 国产精品日日摸夜夜摸av| 精品免费国产一区二区三区四区| 欧美视频一区二区三区在线观看| 成人av在线网站| 国产成a人无v码亚洲福利| 伦理电影国产精品| 奇米影视一区二区三区小说| 日韩一区在线播放| 欧美韩国日本不卡| 亚洲精品在线一区二区| 日韩欧美中文一区| 91精品国产乱码久久蜜臀| 欧美乱妇23p| 欧美日韩国产综合一区二区三区| 色狠狠一区二区| 欧洲精品中文字幕| 91福利视频久久久久| 91精品办公室少妇高潮对白| 色综合久久综合中文综合网| 成人午夜私人影院|