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

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

?? ssl_locl.h

?? Openssl的常用頭文件
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* ssl/ssl_locl.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-2000 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_LOCL_H#define HEADER_SSL_LOCL_H#include <stdlib.h>#include <time.h>#include <string.h>#include <errno.h>#include "openssl/e_os.h"#include <openssl/buffer.h>#include <openssl/comp.h>#include <openssl/bio.h>#include <openssl/crypto.h>#include <openssl/evp.h>#include <openssl/stack.h>#include <openssl/x509.h>#include <openssl/err.h>#include <openssl/ssl.h>#define PKCS1_CHECK#define c2l(c,l)	(l = ((unsigned long)(*((c)++)))     , \			 l|=(((unsigned long)(*((c)++)))<< 8), \			 l|=(((unsigned long)(*((c)++)))<<16), \			 l|=(((unsigned long)(*((c)++)))<<24))/* NOTE - c is not incremented as per c2l */#define c2ln(c,l1,l2,n)	{ \			c+=n; \			l1=l2=0; \			switch (n) { \			case 8: l2 =((unsigned long)(*(--(c))))<<24; \			case 7: l2|=((unsigned long)(*(--(c))))<<16; \			case 6: l2|=((unsigned long)(*(--(c))))<< 8; \			case 5: l2|=((unsigned long)(*(--(c))));     \			case 4: l1 =((unsigned long)(*(--(c))))<<24; \			case 3: l1|=((unsigned long)(*(--(c))))<<16; \			case 2: l1|=((unsigned long)(*(--(c))))<< 8; \			case 1: l1|=((unsigned long)(*(--(c))));     \				} \			}#define l2c(l,c)	(*((c)++)=(unsigned char)(((l)    )&0xff), \			 *((c)++)=(unsigned char)(((l)>> 8)&0xff), \			 *((c)++)=(unsigned char)(((l)>>16)&0xff), \			 *((c)++)=(unsigned char)(((l)>>24)&0xff))#define n2l(c,l)	(l =((unsigned long)(*((c)++)))<<24, \			 l|=((unsigned long)(*((c)++)))<<16, \			 l|=((unsigned long)(*((c)++)))<< 8, \			 l|=((unsigned long)(*((c)++))))#define l2n(l,c)	(*((c)++)=(unsigned char)(((l)>>24)&0xff), \			 *((c)++)=(unsigned char)(((l)>>16)&0xff), \			 *((c)++)=(unsigned char)(((l)>> 8)&0xff), \			 *((c)++)=(unsigned char)(((l)    )&0xff))/* NOTE - c is not incremented as per l2c */#define l2cn(l1,l2,c,n)	{ \			c+=n; \			switch (n) { \			case 8: *(--(c))=(unsigned char)(((l2)>>24)&0xff); \			case 7: *(--(c))=(unsigned char)(((l2)>>16)&0xff); \			case 6: *(--(c))=(unsigned char)(((l2)>> 8)&0xff); \			case 5: *(--(c))=(unsigned char)(((l2)    )&0xff); \			case 4: *(--(c))=(unsigned char)(((l1)>>24)&0xff); \			case 3: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \			case 2: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \			case 1: *(--(c))=(unsigned char)(((l1)    )&0xff); \				} \			}#define n2s(c,s)	((s=(((unsigned int)(c[0]))<< 8)| \			    (((unsigned int)(c[1]))    )),c+=2)#define s2n(s,c)	((c[0]=(unsigned char)(((s)>> 8)&0xff), \			  c[1]=(unsigned char)(((s)    )&0xff)),c+=2)#define n2l3(c,l)	((l =(((unsigned long)(c[0]))<<16)| \			     (((unsigned long)(c[1]))<< 8)| \			     (((unsigned long)(c[2]))    )),c+=3)#define l2n3(l,c)	((c[0]=(unsigned char)(((l)>>16)&0xff), \			  c[1]=(unsigned char)(((l)>> 8)&0xff), \			  c[2]=(unsigned char)(((l)    )&0xff)),c+=3)/* LOCAL STUFF */#define SSL_DECRYPT	0#define SSL_ENCRYPT	1#define TWO_BYTE_BIT	0x80#define SEC_ESC_BIT	0x40#define TWO_BYTE_MASK	0x7fff#define THREE_BYTE_MASK	0x3fff#define INC32(a)	((a)=((a)+1)&0xffffffffL)#define DEC32(a)	((a)=((a)-1)&0xffffffffL)#define MAX_MAC_SIZE	20 /* up from 16 for SSLv3 *//* * Define the Bitmasks for SSL_CIPHER.algorithms. * This bits are used packed as dense as possible. If new methods/ciphers * etc will be added, the bits a likely to change, so this information * is for internal library use only, even though SSL_CIPHER.algorithms * can be publicly accessed. * Use the according functions for cipher management instead. * * The bit mask handling in the selection and sorting scheme in * ssl_create_cipher_list() has only limited capabilities, reflecting * that the different entities within are mutually exclusive: * ONLY ONE BIT PER MASK CAN BE SET AT A TIME. */#define SSL_MKEY_MASK		0x0000001FL#define SSL_kRSA		0x00000001L /* RSA key exchange */#define SSL_kDHr		0x00000002L /* DH cert RSA CA cert */#define SSL_kDHd		0x00000004L /* DH cert DSA CA cert */#define SSL_kFZA		0x00000008L#define SSL_kEDH		0x00000010L /* tmp DH key no DH cert */#define SSL_EDH			(SSL_kEDH|(SSL_AUTH_MASK^SSL_aNULL))#define SSL_AUTH_MASK		0x000003e0L#define SSL_aRSA		0x00000020L /* Authenticate with RSA */#define SSL_aDSS 		0x00000040L /* Authenticate with DSS */#define SSL_DSS 		SSL_aDSS#define SSL_aFZA 		0x00000080L#define SSL_aNULL 		0x00000100L /* no Authenticate, ADH */#define SSL_aDH 		0x00000200L /* no Authenticate, ADH */#define SSL_NULL		(SSL_eNULL)#define SSL_ADH			(SSL_kEDH|SSL_aNULL)#define SSL_RSA			(SSL_kRSA|SSL_aRSA)#define SSL_DH			(SSL_kDHr|SSL_kDHd|SSL_kEDH)#define SSL_FZA			(SSL_aFZA|SSL_kFZA|SSL_eFZA)#define SSL_ENC_MASK		0x0001Fc00L#define SSL_DES			0x00000400L#define SSL_3DES		0x00000800L#define SSL_RC4			0x00001000L#define SSL_RC2			0x00002000L#define SSL_IDEA		0x00004000L#define SSL_eFZA		0x00008000L#define SSL_eNULL		0x00010000L#define SSL_MAC_MASK		0x00060000L#define SSL_MD5			0x00020000L#define SSL_SHA1		0x00040000L#define SSL_SHA			(SSL_SHA1)#define SSL_SSL_MASK		0x00180000L#define SSL_SSLV2		0x00080000L#define SSL_SSLV3		0x00100000L#define SSL_TLSV1		SSL_SSLV3	/* for now *//* we have used 001fffff - 11 bits left to go *//* * Export and cipher strength information. For each cipher we have to decide * whether it is exportable or not. This information is likely to change * over time, since the export control rules are no static technical issue. * * Independent of the export flag the cipher strength is sorted into classes. * SSL_EXP40 was denoting the 40bit US export limit of past times, which now * is at 56bit (SSL_EXP56). If the exportable cipher class is going to change * again (eg. to 64bit) the use of "SSL_EXP*" becomes blurred even more, * since SSL_EXP64 could be similar to SSL_LOW. * For this reason SSL_MICRO and SSL_MINI macros are included to widen the * namespace of SSL_LOW-SSL_HIGH to lower values. As development of speed * and ciphers goes, another extension to SSL_SUPER and/or SSL_ULTRA would * be possible. */#define SSL_EXP_MASK		0x00000003L#define SSL_NOT_EXP		0x00000001L#define SSL_EXPORT		0x00000002L#define SSL_STRONG_MASK		0x000000fcL#define SSL_STRONG_NONE		0x00000004L#define SSL_EXP40		0x00000008L#define SSL_MICRO		(SSL_EXP40)#define SSL_EXP56		0x00000010L#define SSL_MINI		(SSL_EXP56)#define SSL_LOW			0x00000020L#define SSL_MEDIUM		0x00000040L#define SSL_HIGH		0x00000080L/* we have used 000000ff - 24 bits left to go *//* * Macros to check the export status and cipher strength for export ciphers. * Even though the macros for EXPORT and EXPORT40/56 have similar names, * their meaning is different: * *_EXPORT macros check the 'exportable' status. * *_EXPORT40/56 macros are used to check whether a certain cipher strength *          is given. * Since the SSL_IS_EXPORT* and SSL_EXPORT* macros depend on the correct * algorithm structure element to be passed (algorithms, algo_strength) and no

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩一区二区三区四区| 欧美三级日本三级少妇99| 91香蕉国产在线观看软件| 欧美日韩一区高清| 精品国产青草久久久久福利| 中文字幕一区二区在线观看 | 中文字幕免费不卡在线| 亚洲午夜国产一区99re久久| 国产麻豆一精品一av一免费| 处破女av一区二区| 久久一区二区三区四区| 一区二区三区蜜桃网| 99热99精品| 亚洲国产另类av| 欧美剧在线免费观看网站| 日韩欧美在线影院| 日韩电影一区二区三区| 日韩一区二区在线看片| 麻豆精品在线看| 一区二区中文字幕在线| 欧美在线观看视频一区二区三区| 欧美国产欧美亚州国产日韩mv天天看完整| 国产91丝袜在线观看| 亚洲女同ⅹxx女同tv| 91精品国产高清一区二区三区蜜臀 | 亚洲专区一二三| 欧美一区二区免费视频| 国产精品资源网站| 一区二区三区在线视频观看58| 欧美福利一区二区| 精品午夜久久福利影院| 一区二区三区在线看| 日韩一级片在线观看| 91麻豆精品视频| 久久草av在线| 亚洲第一激情av| 自拍偷拍国产亚洲| 日韩精品中午字幕| 欧美老女人第四色| 不卡电影一区二区三区| 亚洲天堂成人网| 日本一区二区三区久久久久久久久不| 91黄色免费看| 99国产精品久久久久久久久久| 免费的国产精品| 日韩二区三区四区| 亚洲va欧美va人人爽| 亚洲色图视频网站| 国产精品久久久久久亚洲毛片| 日韩精品在线一区二区| 欧美日韩精品二区第二页| 91蜜桃传媒精品久久久一区二区| 国产伦精品一区二区三区免费迷 | 欧美日韩一区高清| 91网站在线观看视频| 91视频你懂的| 欧美性生活久久| 欧美日韩精品一区二区三区蜜桃| 色综合久久九月婷婷色综合| 91麻豆国产在线观看| 91在线播放网址| 色婷婷国产精品久久包臀| 一本到不卡精品视频在线观看| 成人动漫av在线| 日本久久一区二区三区| 在线观看免费一区| 日韩亚洲欧美综合| 久久久久久久精| 亚洲免费在线电影| 肉丝袜脚交视频一区二区| 麻豆精品一区二区av白丝在线| 久久精品国产亚洲5555| 成人在线视频一区| 在线观看91精品国产入口| 日韩一本二本av| 亚洲欧美激情在线| 老司机一区二区| 欧美色网一区二区| 久久久夜色精品亚洲| 一个色在线综合| 国产乱子轮精品视频| 91麻豆免费看| 国产精品电影一区二区| 日韩av一区二| 欧美三区在线视频| 中日韩免费视频中文字幕| 日韩极品在线观看| 日本高清无吗v一区| 久久天堂av综合合色蜜桃网| 丝瓜av网站精品一区二区| 成人美女在线视频| 久久久国产综合精品女国产盗摄| 国产日韩欧美不卡| 一区二区成人在线| 成人aaaa免费全部观看| www亚洲一区| 久久99国产精品成人| 欧美亚洲图片小说| 一区二区三区日韩欧美| 国产成人免费网站| 国产欧美综合在线| 成人中文字幕合集| 综合久久一区二区三区| a亚洲天堂av| 国产精品久久久久久久第一福利| 国产精品99久久久久久宅男| 久久综合九色综合久久久精品综合| 亚洲一区二区免费视频| 欧美放荡的少妇| 亚洲午夜在线电影| 欧美日韩专区在线| 亚洲bt欧美bt精品| 精品日韩99亚洲| 国产精品一区二区男女羞羞无遮挡| 欧美变态tickle挠乳网站| 国产一区二区三区黄视频 | 国产性做久久久久久| fc2成人免费人成在线观看播放| 中文字幕的久久| 欧美日韩一区二区三区免费看| 五月婷婷欧美视频| 久久久国产午夜精品| 色婷婷国产精品综合在线观看| 亚洲品质自拍视频网站| 欧美老肥妇做.爰bbww| 国产一区二区三区免费在线观看| 国产精品电影一区二区| 91麻豆精品国产91久久久更新时间| 精品综合久久久久久8888| 亚洲人成精品久久久久| 精品久久久久久综合日本欧美| 成人黄色国产精品网站大全在线免费观看 | 欧美三级午夜理伦三级中视频| 日本成人在线一区| 一区二区三区av电影| 精品欧美一区二区在线观看| 国产一区二区福利视频| 亚洲精品国产第一综合99久久| 精品福利视频一区二区三区| 一本色道久久综合亚洲aⅴ蜜桃| 国产一区二区久久| 日产欧产美韩系列久久99| 亚洲丝袜另类动漫二区| 国产精品国产三级国产aⅴ无密码| 91精品国产综合久久久久久漫画| 91福利区一区二区三区| 99在线视频精品| 成人性视频免费网站| 中文字幕乱码久久午夜不卡 | 欧美日本在线视频| 欧美高清一级片在线| 欧美亚日韩国产aⅴ精品中极品| proumb性欧美在线观看| hitomi一区二区三区精品| 不卡影院免费观看| 欧美色偷偷大香| 91精品在线观看入口| 精品国产青草久久久久福利| 欧美不卡123| 亚洲欧美综合在线精品| 亚洲精品视频在线观看免费| 亚洲国产一区视频| 日韩电影免费在线观看网站| 奇米亚洲午夜久久精品| 国产一区二区免费看| 成人美女视频在线观看| 欧美在线观看一二区| 日韩欧美一区在线| 中文字幕在线免费不卡| 色8久久人人97超碰香蕉987| 精品日韩在线一区| 26uuu欧美| 亚洲欧美日韩电影| 日韩av电影免费观看高清完整版在线观看| 亚洲v中文字幕| 国产成人小视频| 欧美肥妇bbw| 亚洲少妇屁股交4| 亚洲一级在线观看| 亚洲一区二区视频在线| 亚洲高清不卡在线观看| 国产乱国产乱300精品| 欧美四级电影网| 欧美激情自拍偷拍| 午夜精品国产更新| 成人黄色在线看| 久久亚洲欧美国产精品乐播| 亚洲乱码国产乱码精品精的特点 | 成人免费视频在线观看| 免费成人在线观看| 在线观看区一区二| 亚洲激情五月婷婷| 北岛玲一区二区三区四区| 久久婷婷色综合| 免费黄网站欧美| 日韩欧美资源站| 日韩不卡一区二区三区| 91精品国产免费| 中文文精品字幕一区二区| 国产老肥熟一区二区三区|