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

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

?? 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热这里都是精品| 菠萝蜜视频在线观看一区| 欧美图区在线视频| 国产网站一区二区三区| 亚洲va天堂va国产va久| 国产suv精品一区二区6| 在线观看91av| 亚洲精品日韩一| 99精品久久99久久久久| 欧美日韩电影一区| 伊人夜夜躁av伊人久久| 国产成人精品亚洲午夜麻豆| 日韩一区二区在线观看视频播放| 中文字幕亚洲区| 国产suv一区二区三区88区| 欧美一级艳片视频免费观看| 一区二区三区四区中文字幕| 国产馆精品极品| 日韩精品在线一区| 免费在线成人网| 欧美日韩国产精品自在自线| 亚洲欧美色图小说| 成人网在线免费视频| 久久久九九九九| 国产一区二区在线电影| 欧美成人一区二区三区| 日本不卡一二三| 日韩欧美的一区| 奇米影视一区二区三区| 4hu四虎永久在线影院成人| 午夜亚洲福利老司机| 欧美日韩国产精选| 日韩激情一区二区| 欧美一区二区国产| 日本特黄久久久高潮| 欧美一区二区三区视频在线| 午夜精品久久久久影视| 欧美精品第1页| 免费高清视频精品| 久久久欧美精品sm网站| 国产精品99久久久久久久vr | 亚洲国产综合视频在线观看| 色偷偷久久一区二区三区| 亚洲一区二区三区国产| 欧美亚洲禁片免费| 亚洲成av人**亚洲成av**| 91精品国产综合久久久久久漫画| 首页亚洲欧美制服丝腿| 欧美va亚洲va| 成人av在线电影| 亚洲亚洲精品在线观看| 欧美高清视频www夜色资源网| 麻豆视频一区二区| 国产三级三级三级精品8ⅰ区| av一本久道久久综合久久鬼色| 亚洲女人的天堂| 欧美另类一区二区三区| 免费看欧美美女黄的网站| 久久久三级国产网站| 一道本成人在线| 日韩黄色在线观看| 国产亚洲精品福利| 色婷婷亚洲婷婷| 麻豆freexxxx性91精品| 国产精品美女一区二区| 欧美夫妻性生活| 丁香婷婷综合色啪| 天天亚洲美女在线视频| 亚洲精品自拍动漫在线| 欧美另类久久久品| 国产精品一二三四| 亚洲成人精品一区| 久久久91精品国产一区二区三区| 色8久久精品久久久久久蜜| 六月丁香婷婷色狠狠久久| 国产精品天美传媒| 日韩一级片在线观看| 成人av片在线观看| 青青草91视频| 一个色在线综合| 久久久噜噜噜久久中文字幕色伊伊| 色播五月激情综合网| 精品一区二区久久久| 亚洲成年人影院| 亚洲欧洲日产国产综合网| 日韩一区二区视频| 欧亚一区二区三区| 成人网页在线观看| 狠狠网亚洲精品| 日本最新不卡在线| 亚洲午夜精品网| 中文字幕在线视频一区| 久久综合色8888| 51精品秘密在线观看| 99久精品国产| 成人va在线观看| 韩国三级中文字幕hd久久精品| 五月天亚洲精品| 亚洲一区二区三区四区的| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 男人操女人的视频在线观看欧美| 国产亚洲欧洲997久久综合 | 亚洲乱码中文字幕| 欧美国产日韩在线观看| 精品国产乱码久久久久久夜甘婷婷| 欧美在线观看一区二区| 日韩精品一区二区三区老鸭窝| 91免费看片在线观看| 成人永久aaa| 国产资源精品在线观看| 久久99精品一区二区三区 | 一区二区在线观看不卡| 国产精品久久久久7777按摩| 国产欧美一区二区在线| 国产亚洲综合色| 亚洲国产精品成人综合| 国产日韩欧美一区二区三区综合| 久久网这里都是精品| 日韩一区二区三区av| 日韩亚洲欧美综合| 精品久久久久久久人人人人传媒| 欧美一区三区四区| 日韩女同互慰一区二区| 欧美电影免费观看高清完整版在线 | 午夜国产精品影院在线观看| 亚洲高清中文字幕| 日韩高清不卡一区二区三区| 捆绑调教美女网站视频一区| 精品一区二区三区免费视频| 国产一区二区三区综合| 国产成人丝袜美腿| 不卡的av在线播放| 色婷婷精品久久二区二区蜜臀av| 在线视频观看一区| 91精品国产一区二区| 久久久久久97三级| 亚洲视频精选在线| 性做久久久久久免费观看 | 日韩一区二区三区免费观看| 精品免费视频一区二区| 久久在线观看免费| 亚洲欧洲无码一区二区三区| 亚洲成人av免费| 国内外成人在线视频| 色综合天天天天做夜夜夜夜做| 91成人免费网站| 日韩欧美第一区| 亚洲欧美日韩电影| 伦理电影国产精品| 91亚洲男人天堂| 日韩美女主播在线视频一区二区三区| 久久综合久久综合九色| 亚洲激情第一区| 久草热8精品视频在线观看| 99久久国产综合精品女不卡| 欧美一区二区日韩一区二区| 日本一区二区三区四区在线视频 | 欧美精品欧美精品系列| 久久久久久电影| 午夜私人影院久久久久| 国产精品自在在线| 精品视频在线看| 久久久久久夜精品精品免费| 亚洲一区二区高清| 色婷婷综合久久久久中文一区二区| 91麻豆精品国产91久久久使用方法| 国产亚洲综合av| 青青青伊人色综合久久| 色中色一区二区| 亚洲国产精品精华液2区45| 肉丝袜脚交视频一区二区| 成人av片在线观看| 国产色婷婷亚洲99精品小说| 日韩精品国产欧美| 欧美亚洲动漫精品| 亚洲视频 欧洲视频| 成人一区二区三区中文字幕| 日韩美女天天操| 日韩不卡一区二区三区| 欧美午夜影院一区| 亚洲欧美日韩国产综合| 成人精品免费视频| 国产午夜亚洲精品羞羞网站| 美女一区二区在线观看| 欧美精品 国产精品| 亚洲一区av在线| 91黄色免费版| 亚洲日本一区二区三区| 成人晚上爱看视频| 国产欧美日韩在线观看| 国产河南妇女毛片精品久久久| 精品成人一区二区| 久久99久久精品欧美| 欧美一级日韩不卡播放免费| 亚洲3atv精品一区二区三区| 欧美亚洲日本国产| 天堂va蜜桃一区二区三区| 欧美女孩性生活视频| 亚洲成av人片观看|