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

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

?? asn1.h

?? Openssl的常用頭文件
?? H
?? 第 1 頁 / 共 3 頁
字號(hào):
/* crypto/asn1/asn1.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_ASN1_H#define HEADER_ASN1_H#include <time.h>#ifndef NO_BIO#include <openssl/bio.h>#endif#include <openssl/bn.h>#include <openssl/stack.h>#include <openssl/safestack.h>#include <openssl/symhacks.h>#ifdef  __cplusplusextern "C" {#endif#define V_ASN1_UNIVERSAL		0x00#define	V_ASN1_APPLICATION		0x40#define V_ASN1_CONTEXT_SPECIFIC		0x80#define V_ASN1_PRIVATE			0xc0#define V_ASN1_CONSTRUCTED		0x20#define V_ASN1_PRIMITIVE_TAG		0x1f#define V_ASN1_PRIMATIVE_TAG		0x1f#define V_ASN1_APP_CHOOSE		-2	/* let the recipient choose */#define V_ASN1_OTHER			-3	/* used in ASN1_TYPE */#define V_ASN1_NEG			0x100	/* negative flag */#define V_ASN1_UNDEF			-1#define V_ASN1_EOC			0#define V_ASN1_BOOLEAN			1	/**/#define V_ASN1_INTEGER			2#define V_ASN1_NEG_INTEGER		(2 | V_ASN1_NEG)#define V_ASN1_BIT_STRING		3#define V_ASN1_OCTET_STRING		4#define V_ASN1_NULL			5#define V_ASN1_OBJECT			6#define V_ASN1_OBJECT_DESCRIPTOR	7#define V_ASN1_EXTERNAL			8#define V_ASN1_REAL			9#define V_ASN1_ENUMERATED		10#define V_ASN1_NEG_ENUMERATED		(10 | V_ASN1_NEG)#define V_ASN1_UTF8STRING		12#define V_ASN1_SEQUENCE			16#define V_ASN1_SET			17#define V_ASN1_NUMERICSTRING		18	/**/#define V_ASN1_PRINTABLESTRING		19#define V_ASN1_T61STRING		20#define V_ASN1_TELETEXSTRING		20	/* alias */#define V_ASN1_VIDEOTEXSTRING		21	/**/#define V_ASN1_IA5STRING		22#define V_ASN1_UTCTIME			23#define V_ASN1_GENERALIZEDTIME		24	/**/#define V_ASN1_GRAPHICSTRING		25	/**/#define V_ASN1_ISO64STRING		26	/**/#define V_ASN1_VISIBLESTRING		26	/* alias */#define V_ASN1_GENERALSTRING		27	/**/#define V_ASN1_UNIVERSALSTRING		28	/**/#define V_ASN1_BMPSTRING		30/* For use with d2i_ASN1_type_bytes() */#define B_ASN1_NUMERICSTRING	0x0001#define B_ASN1_PRINTABLESTRING	0x0002#define B_ASN1_T61STRING	0x0004#define B_ASN1_TELETEXSTRING	0x0008#define B_ASN1_VIDEOTEXSTRING	0x0008#define B_ASN1_IA5STRING	0x0010#define B_ASN1_GRAPHICSTRING	0x0020#define B_ASN1_ISO64STRING	0x0040#define B_ASN1_VISIBLESTRING	0x0040#define B_ASN1_GENERALSTRING	0x0080#define B_ASN1_UNIVERSALSTRING	0x0100#define B_ASN1_OCTET_STRING	0x0200#define B_ASN1_BIT_STRING	0x0400#define B_ASN1_BMPSTRING	0x0800#define B_ASN1_UNKNOWN		0x1000#define B_ASN1_UTF8STRING	0x2000/* For use with ASN1_mbstring_copy() */#define MBSTRING_FLAG		0x1000#define MBSTRING_ASC		(MBSTRING_FLAG|1)#define MBSTRING_BMP		(MBSTRING_FLAG|2)#define MBSTRING_UNIV		(MBSTRING_FLAG|3)#define MBSTRING_UTF8		(MBSTRING_FLAG|4)struct X509_algor_st;#define DECLARE_ASN1_SET_OF(type) /* filled in by mkstack.pl */#define IMPLEMENT_ASN1_SET_OF(type) /* nothing, no longer needed */typedef struct asn1_ctx_st	{	unsigned char *p;/* work char pointer */	int eos;	/* end of sequence read for indefinite encoding */	int error;	/* error code to use when returning an error */	int inf;	/* constructed if 0x20, indefinite is 0x21 */	int tag;	/* tag from last 'get object' */	int xclass;	/* class from last 'get object' */	long slen;	/* length of last 'get object' */	unsigned char *max; /* largest value of p allowed */	unsigned char *q;/* temporary variable */	unsigned char **pp;/* variable */	int line;	/* used in error processing */	} ASN1_CTX;/* These are used internally in the ASN1_OBJECT to keep track of * whether the names and data need to be free()ed */#define ASN1_OBJECT_FLAG_DYNAMIC	 0x01	/* internal use */#define ASN1_OBJECT_FLAG_CRITICAL	 0x02	/* critical x509v3 object id */#define ASN1_OBJECT_FLAG_DYNAMIC_STRINGS 0x04	/* internal use */#define ASN1_OBJECT_FLAG_DYNAMIC_DATA 	 0x08	/* internal use */typedef struct asn1_object_st	{	const char *sn,*ln;	int nid;	int length;	unsigned char *data;	int flags;	/* Should we free this one */	} ASN1_OBJECT;#define ASN1_STRING_FLAG_BITS_LEFT 0x08 /* Set if 0x07 has bits left value *//* This is the base type that holds just about everything :-) */typedef struct asn1_string_st	{	int length;	int type;	unsigned char *data;	/* The value of the following field depends on the type being	 * held.  It is mostly being used for BIT_STRING so if the	 * input data has a non-zero 'unused bits' value, it will be	 * handled correctly */	long flags;	} ASN1_STRING;#define STABLE_FLAGS_MALLOC	0x01#define STABLE_NO_MASK		0x02#define DIRSTRING_TYPE	\ (B_ASN1_PRINTABLESTRING|B_ASN1_T61STRING|B_ASN1_BMPSTRING|B_ASN1_UTF8STRING)#define PKCS9STRING_TYPE (DIRSTRING_TYPE|B_ASN1_IA5STRING)typedef struct asn1_string_table_st {	int nid;	long minsize;	long maxsize;	unsigned long mask;	unsigned long flags;} ASN1_STRING_TABLE;DECLARE_STACK_OF(ASN1_STRING_TABLE)/* size limits: this stuff is taken straight from RFC2459 */#define ub_name				32768#define ub_common_name			64#define ub_locality_name		128#define ub_state_name			128#define ub_organization_name		64#define ub_organization_unit_name	64#define ub_title			64#define ub_email_address		128#ifdef NO_ASN1_TYPEDEFS#define ASN1_INTEGER		ASN1_STRING#define ASN1_ENUMERATED		ASN1_STRING#define ASN1_BIT_STRING		ASN1_STRING#define ASN1_OCTET_STRING	ASN1_STRING#define ASN1_PRINTABLESTRING	ASN1_STRING#define ASN1_T61STRING		ASN1_STRING#define ASN1_IA5STRING		ASN1_STRING#define ASN1_UTCTIME		ASN1_STRING#define ASN1_GENERALIZEDTIME	ASN1_STRING#define ASN1_TIME		ASN1_STRING#define ASN1_GENERALSTRING	ASN1_STRING#define ASN1_UNIVERSALSTRING	ASN1_STRING#define ASN1_BMPSTRING		ASN1_STRING#define ASN1_VISIBLESTRING	ASN1_STRING#define ASN1_UTF8STRING		ASN1_STRING#define ASN1_BOOLEAN		int#elsetypedef struct asn1_string_st ASN1_INTEGER;typedef struct asn1_string_st ASN1_ENUMERATED;typedef struct asn1_string_st ASN1_BIT_STRING;typedef struct asn1_string_st ASN1_OCTET_STRING;typedef struct asn1_string_st ASN1_PRINTABLESTRING;typedef struct asn1_string_st ASN1_T61STRING;typedef struct asn1_string_st ASN1_IA5STRING;typedef struct asn1_string_st ASN1_GENERALSTRING;typedef struct asn1_string_st ASN1_UNIVERSALSTRING;typedef struct asn1_string_st ASN1_BMPSTRING;typedef struct asn1_string_st ASN1_UTCTIME;typedef struct asn1_string_st ASN1_TIME;typedef struct asn1_string_st ASN1_GENERALIZEDTIME;typedef struct asn1_string_st ASN1_VISIBLESTRING;typedef struct asn1_string_st ASN1_UTF8STRING;typedef int ASN1_BOOLEAN;#endiftypedef int ASN1_NULL;/* Parameters used by ASN1_STRING_print_ex() *//* These determine which characters to escape: * RFC2253 special characters, control characters and * MSB set characters */#define ASN1_STRFLGS_ESC_2253		1#define ASN1_STRFLGS_ESC_CTRL		2#define ASN1_STRFLGS_ESC_MSB		4/* This flag determines how we do escaping: normally * RC2253 backslash only, set this to use backslash and * quote. */#define ASN1_STRFLGS_ESC_QUOTE		8/* These three flags are internal use only. *//* Character is a valid PrintableString character */#define CHARTYPE_PRINTABLESTRING	0x10/* Character needs escaping if it is the first character */#define CHARTYPE_FIRST_ESC_2253		0x20/* Character needs escaping if it is the last character */#define CHARTYPE_LAST_ESC_2253		0x40/* NB the internal flags are safely reused below by flags * handled at the top level. *//* If this is set we convert all character strings * to UTF8 first  */#define ASN1_STRFLGS_UTF8_CONVERT	0x10/* If this is set we don't attempt to interpret content: * just assume all strings are 1 byte per character. This * will produce some pretty odd looking output! */#define ASN1_STRFLGS_IGNORE_TYPE	0x20/* If this is set we include the string type in the output */#define ASN1_STRFLGS_SHOW_TYPE		0x40/* This determines which strings to display and which to * 'dump' (hex dump of content octets or DER encoding). We can * only dump non character strings or everything. If we * don't dump 'unknown' they are interpreted as character * strings with 1 octet per character and are subject to * the usual escaping options. */#define ASN1_STRFLGS_DUMP_ALL		0x80#define ASN1_STRFLGS_DUMP_UNKNOWN	0x100/* These determine what 'dumping' does, we can dump the * content octets or the DER encoding: both use the * RFC2253 #XXXXX notation. */#define ASN1_STRFLGS_DUMP_DER		0x200/* All the string flags consistent with RFC2253, * escaping control characters isn't essential in * RFC2253 but it is advisable anyway. */#define ASN1_STRFLGS_RFC2253	(ASN1_STRFLGS_ESC_2253 | \				ASN1_STRFLGS_ESC_CTRL | \				ASN1_STRFLGS_ESC_MSB | \				ASN1_STRFLGS_UTF8_CONVERT | \				ASN1_STRFLGS_DUMP_UNKNOWN | \				ASN1_STRFLGS_DUMP_DER)DECLARE_STACK_OF(ASN1_INTEGER)DECLARE_ASN1_SET_OF(ASN1_INTEGER)typedef struct asn1_type_st	{	int type;	union	{		char *ptr;		ASN1_BOOLEAN		boolean;		ASN1_STRING *		asn1_string;		ASN1_OBJECT *		object;		ASN1_INTEGER *		integer;		ASN1_ENUMERATED *	enumerated;		ASN1_BIT_STRING *	bit_string;		ASN1_OCTET_STRING *	octet_string;		ASN1_PRINTABLESTRING *	printablestring;		ASN1_T61STRING *	t61string;		ASN1_IA5STRING *	ia5string;		ASN1_GENERALSTRING *	generalstring;		ASN1_BMPSTRING *	bmpstring;		ASN1_UNIVERSALSTRING *	universalstring;		ASN1_UTCTIME *		utctime;		ASN1_GENERALIZEDTIME *	generalizedtime;		ASN1_VISIBLESTRING *	visiblestring;		ASN1_UTF8STRING *	utf8string;		/* set and sequence are left complete and still		 * contain the set or sequence bytes */		ASN1_STRING *		set;		ASN1_STRING *		sequence;		} value;	} ASN1_TYPE;DECLARE_STACK_OF(ASN1_TYPE)DECLARE_ASN1_SET_OF(ASN1_TYPE)typedef struct asn1_method_st	{	int (*i2d)();	char *(*d2i)();	char *(*create)();	void (*destroy)();	} ASN1_METHOD;/* This is used when parsing some Netscape objects */typedef struct asn1_header_st

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
夜夜夜精品看看| 日韩欧美一二三四区| a美女胸又www黄视频久久| 国产精品一区专区| 韩国欧美国产1区| 国产精品一区一区三区| 欧美日韩国产高清一区二区三区| 2020国产成人综合网| 亚洲一区中文日韩| 成人免费高清视频| 久久久国产一区二区三区四区小说 | 国产精品不卡在线观看| 免费在线观看日韩欧美| 91在线观看视频| 在线播放亚洲一区| 亚洲精品ww久久久久久p站| 国产另类ts人妖一区二区| 日韩亚洲国产中文字幕欧美| 亚洲精品免费在线播放| 99热99精品| 欧美精品一区二区三区四区| 蜜桃视频一区二区三区| 欧美日韩精品三区| 欧美激情一区二区三区在线| 狠狠v欧美v日韩v亚洲ⅴ| 4hu四虎永久在线影院成人| 婷婷六月综合网| 欧美三级日本三级少妇99| 亚洲精品videosex极品| 91网站视频在线观看| 91.麻豆视频| 人妖欧美一区二区| 欧美一级理论性理论a| 紧缚奴在线一区二区三区| 欧美一区二区三区电影| 免费在线观看一区| 久久亚洲二区三区| 国产999精品久久| 日韩精品一区二区三区swag| 日韩av高清在线观看| 51精品久久久久久久蜜臀| 免费av网站大全久久| 日韩一级免费观看| 国产一区二区三区美女| 欧美大片国产精品| 国产成人精品三级麻豆| 国产精品剧情在线亚洲| 色噜噜偷拍精品综合在线| 亚洲永久精品国产| 日韩免费一区二区三区在线播放| 国产一区在线不卡| 成人欧美一区二区三区黑人麻豆| 在线观看国产91| 免费精品视频在线| 日本一区二区免费在线观看视频| 99久精品国产| 日韩国产高清影视| 久久久久久9999| 在线视频国内自拍亚洲视频| 日日摸夜夜添夜夜添国产精品| 久久这里只有精品6| kk眼镜猥琐国模调教系列一区二区| 亚洲国产一区二区三区青草影视| 欧美一区二区三区视频| 成年人午夜久久久| 午夜在线电影亚洲一区| 久久众筹精品私拍模特| 色狠狠一区二区三区香蕉| 丝袜美腿亚洲色图| 亚洲国产成人一区二区三区| 日本高清成人免费播放| 国产主播一区二区| 一区二区三区在线观看欧美| 欧美tickling挠脚心丨vk| 成人免费av资源| 奇米精品一区二区三区在线观看| 国产精品二三区| 日韩一区二区三区三四区视频在线观看| 成人午夜看片网址| 六月丁香婷婷久久| 亚洲视频在线一区观看| 2023国产精品自拍| 欧美另类z0zxhd电影| 91啦中文在线观看| 精品一区二区三区久久久| 久久亚洲二区三区| 日韩精品专区在线| 91啦中文在线观看| 成人免费视频视频在线观看免费| 日韩专区在线视频| 亚洲欧美另类久久久精品| 久久久精品日韩欧美| 91亚洲大成网污www| 从欧美一区二区三区| 精品综合久久久久久8888| 亚洲永久精品大片| 国产精品久久久久三级| 久久久欧美精品sm网站| 日韩一区国产二区欧美三区| 欧美色老头old∨ideo| 色系网站成人免费| 成人精品国产免费网站| 国产1区2区3区精品美女| 国内一区二区在线| 精品一区二区三区在线播放视频| 免费一区二区视频| 一区二区国产视频| 亚洲黄色免费电影| 中文字幕一区二区三| 国产精品沙发午睡系列990531| 国产亚洲精久久久久久| 久久久三级国产网站| 日韩三级中文字幕| 日韩视频免费直播| 日韩午夜av一区| 欧美人妖巨大在线| 欧美性色欧美a在线播放| av不卡免费电影| 91亚洲国产成人精品一区二区三 | 久久99精品一区二区三区三区| 伊人色综合久久天天人手人婷| 亚洲视频1区2区| 亚洲国产人成综合网站| 亚洲国产毛片aaaaa无费看| 亚洲成人自拍偷拍| 亚洲午夜电影在线观看| 日韩精品亚洲一区| 青青草原综合久久大伊人精品| 蜜臀国产一区二区三区在线播放| 日本美女一区二区| 六月丁香婷婷久久| 国产成人综合在线播放| av午夜一区麻豆| 精品视频一区二区不卡| 欧美一级专区免费大片| 2021中文字幕一区亚洲| 日韩理论在线观看| 日韩黄色小视频| 亚洲一区中文日韩| 亚洲一区免费在线观看| 日韩电影在线观看电影| 国产+成+人+亚洲欧洲自线| 在线观看一区二区视频| 5858s免费视频成人| 欧美激情一区二区三区蜜桃视频| 亚洲黄色片在线观看| 日本欧美在线看| 北条麻妃一区二区三区| 欧美二区在线观看| 国产亚洲精品中文字幕| 性做久久久久久免费观看欧美| 奇米影视在线99精品| 99久久99久久精品免费观看| 日韩欧美专区在线| 国产精品免费网站在线观看| 日韩精品久久理论片| 日日摸夜夜添夜夜添亚洲女人| 国产精品影视天天线| 欧洲一区在线电影| 国产欧美精品日韩区二区麻豆天美| 国产视频一区在线观看| 无码av免费一区二区三区试看| 亚洲自拍偷拍图区| 国产不卡视频一区二区三区| 678五月天丁香亚洲综合网| 一区二区三区成人| 精品一二三四在线| 国产大陆a不卡| 91精品国产综合久久婷婷香蕉 | 激情丁香综合五月| 日本aⅴ亚洲精品中文乱码| 91在线播放网址| 日本韩国一区二区三区视频| 911精品国产一区二区在线| 精品国产亚洲在线| 夜夜爽夜夜爽精品视频| 日产国产欧美视频一区精品| 成人国产精品免费观看动漫| 7777精品伊人久久久大香线蕉经典版下载| 欧美人妖巨大在线| 7799精品视频| 欧美va亚洲va| 一区二区三区欧美日| 日本网站在线观看一区二区三区| 亚洲成人一二三| 韩国理伦片一区二区三区在线播放| 678五月天丁香亚洲综合网| 久久免费看少妇高潮| 国产精品色呦呦| 亚洲高清一区二区三区| av不卡在线观看| 国产午夜久久久久| 日韩伦理免费电影| 国产麻豆精品95视频| 欧美色倩网站大全免费| 国产清纯在线一区二区www| **性色生活片久久毛片| 成人激情动漫在线观看| 成人av在线电影| 正在播放亚洲一区|