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

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

?? asn1.h

?? Marvell ISP wireless wpa_supplicant application
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* 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 OPENSSL_NO_BIO#include <openssl/bio.h>#endif#include <openssl/e_os2.h>#include <openssl/bn.h>#include <openssl/stack.h>#include <openssl/safestack.h>#include <openssl/symhacks.h>#include <openssl/ossl_typ.h>#ifdef OPENSSL_BUILD_SHLIBCRYPTO# undef OPENSSL_EXTERN# define OPENSSL_EXTERN OPENSSL_EXPORT#endif#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_ANY			-4	/* used in ASN1 template code */#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	0x0004#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#define B_ASN1_UTCTIME		0x4000#define B_ASN1_GENERALIZEDTIME	0x8000/* 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;/* ASN1_ENCODING structure: this is used to save the received * encoding of an ASN1 type. This is useful to get round * problems with invalid encodings which can break signatures. */typedef struct ASN1_ENCODING_st	{	unsigned char *enc;	/* DER encoding */	long len;		/* Length of encoding */	int modified;		 /* set to 1 if 'enc' is invalid */	} ASN1_ENCODING;/* Used with ASN1 LONG type: if a long is set to this it is omitted */#define ASN1_LONG_UNDEF	0x7fffffffL#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/* Declarations for template structures: for full definitions * see asn1t.h */typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;typedef struct ASN1_ITEM_st ASN1_ITEM;typedef struct ASN1_TLC_st ASN1_TLC;/* This is just an opaque pointer */typedef struct ASN1_VALUE_st ASN1_VALUE;/* Declare ASN1 functions: the implement macro in in asn1t.h */#define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)#define DECLARE_ASN1_FUNCTIONS_name(type, name) \	type *name##_new(void); \	void name##_free(type *a); \	DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)#define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \	type *name##_new(void); \	void name##_free(type *a); \	DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)#define	DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \	type *d2i_##name(type **a, unsigned char **in, long len); \	int i2d_##name(type *a, unsigned char **out); \	DECLARE_ASN1_ITEM(itname)#define	DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \	type *d2i_##name(type **a, const unsigned char **in, long len); \	int i2d_##name(const type *a, unsigned char **out); \	DECLARE_ASN1_ITEM(name)#define DECLARE_ASN1_FUNCTIONS_const(name) \	name *name##_new(void); \	void name##_free(name *a);/* The following macros and typedefs allow an ASN1_ITEM * to be embedded in a structure and referenced. Since * the ASN1_ITEM pointers need to be globally accessible * (possibly from shared libraries) they may exist in * different forms. On platforms that support it the * ASN1_ITEM structure itself will be globally exported. * Other platforms will export a function that returns * an ASN1_ITEM pointer. * * To handle both cases transparently the macros below * should be used instead of hard coding an ASN1_ITEM * pointer in a structure. * * The structure will look like this: * * typedef struct SOMETHING_st { *      ... *      ASN1_ITEM_EXP *iptr; *      ... * } SOMETHING;  * * It would be initialised as e.g.: * * SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...}; * * and the actual pointer extracted with: * * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr); * * Finally an ASN1_ITEM pointer can be extracted from an * appropriate reference with: ASN1_ITEM_rptr(X509). This * would be used when a function takes an ASN1_ITEM * argument. * */#ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION/* ASN1_ITEM pointer exported type */typedef const ASN1_ITEM ASN1_ITEM_EXP;/* Macro to obtain ASN1_ITEM pointer from exported type */#define ASN1_ITEM_ptr(iptr) (iptr)/* Macro to include ASN1_ITEM pointer from base type */#define ASN1_ITEM_ref(iptr) (&(iptr##_it))#define ASN1_ITEM_rptr(ref) (&(ref##_it))#define DECLARE_ASN1_ITEM(name) \	OPENSSL_EXTERN const ASN1_ITEM name##_it;#else/* Platforms that can't easily handle shared global variables are declared * as functions returning ASN1_ITEM pointers. *//* ASN1_ITEM pointer exported type */typedef const ASN1_ITEM * ASN1_ITEM_EXP(void);/* Macro to obtain ASN1_ITEM pointer from exported type */#define ASN1_ITEM_ptr(iptr) (iptr())/* Macro to include ASN1_ITEM pointer from base type */#define ASN1_ITEM_ref(iptr) (iptr##_it)#define ASN1_ITEM_rptr(ref) (ref##_it())#define DECLARE_ASN1_ITEM(name) \	const ASN1_ITEM * name##_it(void);#endif/* 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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
97se亚洲国产综合自在线观| 欧美一级日韩免费不卡| 久久人人超碰精品| 精品一区二区免费| 欧美精品一区二区三区高清aⅴ| 免费在线一区观看| 精品粉嫩超白一线天av| 国产91精品欧美| 亚洲精品福利视频网站| 欧美专区日韩专区| 青娱乐精品在线视频| 日韩女同互慰一区二区| 成人在线视频一区| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 日本久久电影网| 亚洲一区在线看| 日韩欧美一级二级三级| 国产一区二区0| 亚洲日韩欧美一区二区在线| 欧美性淫爽ww久久久久无| 亚洲电影一区二区三区| 91精品国产91久久综合桃花| 国产一区二区三区电影在线观看| 国产精品青草久久| 欧美精品日韩综合在线| 国产精品中文欧美| 亚洲欧美中日韩| 6080午夜不卡| 国产999精品久久| 一区二区三区在线播放| 日韩一区二区麻豆国产| 成人动漫精品一区二区| 免费观看在线综合| 亚洲啪啪综合av一区二区三区| 欧美一级专区免费大片| 国产丝袜在线精品| 色综合久久天天| 亚洲色图丝袜美腿| 欧美videofree性高清杂交| 成人做爰69片免费看网站| 亚洲电影欧美电影有声小说| 久久看人人爽人人| 欧美午夜宅男影院| 国产成人在线视频网站| 中文字幕高清一区| 在线亚洲高清视频| 国产成人自拍高清视频在线免费播放| 亚洲电影第三页| 国产偷国产偷亚洲高清人白洁| 欧美午夜精品久久久久久孕妇 | 亚洲综合丝袜美腿| 久久精品视频在线看| 91精品国产综合久久蜜臀| 成人国产精品免费观看| 狠狠狠色丁香婷婷综合久久五月| 亚洲一区二区在线免费看| 日本一区二区电影| 日韩视频一区在线观看| 91久久精品一区二区三| 一区二区三区日韩欧美| 国产精品国产三级国产a| 欧美不卡在线视频| 欧美日韩日本视频| 91黄色免费观看| 99精品在线观看视频| 成人在线综合网| 国产一区二区三区| 精品一区二区三区不卡| 久久精品国产久精国产| 青青草成人在线观看| 天堂va蜜桃一区二区三区 | 538在线一区二区精品国产| 在线看国产一区二区| 91麻豆高清视频| 91免费国产在线| 99r国产精品| 97精品电影院| 91福利在线观看| 日本乱码高清不卡字幕| 欧美最猛性xxxxx直播| 在线视频你懂得一区| 欧美在线free| 欧美精品三级在线观看| 91精品免费观看| 久久新电视剧免费观看| 亚洲精品在线网站| 国产色91在线| 久久影院电视剧免费观看| 久久网站最新地址| 国产精品人成在线观看免费| 国产亚洲一区字幕| 国产日韩精品一区二区浪潮av| www国产精品av| 中文字幕精品三区| 一区二区三区在线观看欧美| 午夜在线电影亚洲一区| 精品亚洲欧美一区| 成a人片国产精品| 欧美专区日韩专区| 欧美一级淫片007| 国产欧美综合色| 亚洲少妇屁股交4| 日韩电影一区二区三区四区| 日本午夜一本久久久综合| 韩日av一区二区| 91网上在线视频| 制服丝袜亚洲精品中文字幕| 欧美成va人片在线观看| 亚洲国产精品精华液ab| 亚洲精品国产一区二区精华液| 亚洲精品成人天堂一二三| 亚洲123区在线观看| 国产一区二区三区日韩| 99国产欧美久久久精品| 555www色欧美视频| 中文字幕日韩一区| 亚洲成人动漫在线观看| 国产成人亚洲精品青草天美| 91免费在线播放| 欧美一级日韩一级| 亚洲国产精品久久人人爱 | 国产亚洲综合在线| 中文字幕免费观看一区| 中文字幕不卡一区| 日本女优在线视频一区二区| 国产精品资源在线| 日韩1区2区3区| 黄页视频在线91| 午夜伦欧美伦电影理论片| 日一区二区三区| 另类的小说在线视频另类成人小视频在线 | 亚洲最色的网站| 一区二区免费看| 亚洲在线成人精品| 韩国v欧美v亚洲v日本v| 一本色道**综合亚洲精品蜜桃冫| 91精品国产综合久久精品图片| 欧美国产成人精品| 奇米精品一区二区三区四区| 色婷婷av一区二区三区软件| 精品99一区二区| 天天操天天干天天综合网| bt欧美亚洲午夜电影天堂| 欧美一级日韩不卡播放免费| 欧美精品一区二区在线观看| 久久精品免费看| 久久亚洲影视婷婷| 5858s免费视频成人| 亚洲一区在线观看网站| 99久久免费视频.com| 精品成a人在线观看| 大陆成人av片| 欧美精品日韩精品| 亚洲高清免费视频| 欧美日韩国产影片| 成人国产电影网| 一区二区三区日韩精品| 亚洲美女视频在线| 日韩免费电影网站| 成人开心网精品视频| 国产suv精品一区二区883| 韩国av一区二区| 国产不卡高清在线观看视频| 国产大陆精品国产| 国产美女精品人人做人人爽| 爽爽淫人综合网网站| 秋霞午夜鲁丝一区二区老狼| 日韩高清欧美激情| 日韩精品免费专区| 26uuu国产日韩综合| 97久久精品人人爽人人爽蜜臀| 一区二区三区不卡在线观看| av一区二区不卡| 日韩国产精品久久久久久亚洲| 成人欧美一区二区三区| 老司机精品视频导航| 综合久久一区二区三区| 樱花影视一区二区| 91视视频在线观看入口直接观看www| 中文字幕欧美激情| 成人国产电影网| 亚洲色图在线看| 欧美性生交片4| 五月天婷婷综合| 精品日韩一区二区| 国产激情一区二区三区| 久草中文综合在线| 国产欧美日韩麻豆91| 蜜臀久久久99精品久久久久久| 欧美一级片在线| 激情综合网天天干| 欧美videos大乳护士334| 18欧美乱大交hd1984| 亚洲伦理在线精品| 蜜臀av性久久久久蜜臀aⅴ四虎| 北岛玲一区二区三区四区| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 日本久久电影网| 麻豆免费精品视频| 国产精品免费久久|