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

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

?? pem.h

?? Marvell ISP wireless wpa_supplicant application
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* crypto/pem/pem.h *//* Copyright (C) 1995-1997 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_PEM_H#define HEADER_PEM_H#ifndef OPENSSL_NO_BIO#include <openssl/bio.h>#endif#ifndef OPENSSL_NO_STACK#include <openssl/stack.h>#endif#include <openssl/evp.h>#include <openssl/x509.h>#include <openssl/pem2.h>#include <openssl/e_os2.h>#ifdef  __cplusplusextern "C" {#endif#define PEM_BUFSIZE		1024#define PEM_OBJ_UNDEF		0#define PEM_OBJ_X509		1#define PEM_OBJ_X509_REQ	2#define PEM_OBJ_CRL		3#define PEM_OBJ_SSL_SESSION	4#define PEM_OBJ_PRIV_KEY	10#define PEM_OBJ_PRIV_RSA	11#define PEM_OBJ_PRIV_DSA	12#define PEM_OBJ_PRIV_DH		13#define PEM_OBJ_PUB_RSA		14#define PEM_OBJ_PUB_DSA		15#define PEM_OBJ_PUB_DH		16#define PEM_OBJ_DHPARAMS	17#define PEM_OBJ_DSAPARAMS	18#define PEM_OBJ_PRIV_RSA_PUBLIC	19#define PEM_ERROR		30#define PEM_DEK_DES_CBC         40#define PEM_DEK_IDEA_CBC        45#define PEM_DEK_DES_EDE         50#define PEM_DEK_DES_ECB         60#define PEM_DEK_RSA             70#define PEM_DEK_RSA_MD2         80#define PEM_DEK_RSA_MD5         90#define PEM_MD_MD2		NID_md2#define PEM_MD_MD5		NID_md5#define PEM_MD_SHA		NID_sha#define PEM_MD_MD2_RSA		NID_md2WithRSAEncryption#define PEM_MD_MD5_RSA		NID_md5WithRSAEncryption#define PEM_MD_SHA_RSA		NID_sha1WithRSAEncryption#define PEM_STRING_X509_OLD	"X509 CERTIFICATE"#define PEM_STRING_X509		"CERTIFICATE"#define PEM_STRING_X509_TRUSTED	"TRUSTED CERTIFICATE"#define PEM_STRING_X509_REQ_OLD	"NEW CERTIFICATE REQUEST"#define PEM_STRING_X509_REQ	"CERTIFICATE REQUEST"#define PEM_STRING_X509_CRL	"X509 CRL"#define PEM_STRING_EVP_PKEY	"ANY PRIVATE KEY"#define PEM_STRING_PUBLIC	"PUBLIC KEY"#define PEM_STRING_RSA		"RSA PRIVATE KEY"#define PEM_STRING_RSA_PUBLIC	"RSA PUBLIC KEY"#define PEM_STRING_DSA		"DSA PRIVATE KEY"#define PEM_STRING_DSA_PUBLIC	"DSA PUBLIC KEY"#define PEM_STRING_PKCS7	"PKCS7"#define PEM_STRING_PKCS8	"ENCRYPTED PRIVATE KEY"#define PEM_STRING_PKCS8INF	"PRIVATE KEY"#define PEM_STRING_DHPARAMS	"DH PARAMETERS"#define PEM_STRING_SSL_SESSION	"SSL SESSION PARAMETERS"#define PEM_STRING_DSAPARAMS	"DSA PARAMETERS"  /* Note that this structure is initialised by PEM_SealInit and cleaned up     by PEM_SealFinal (at least for now) */typedef struct PEM_Encode_Seal_st	{	EVP_ENCODE_CTX encode;	EVP_MD_CTX md;	EVP_CIPHER_CTX cipher;	} PEM_ENCODE_SEAL_CTX;/* enc_type is one off */#define PEM_TYPE_ENCRYPTED      10#define PEM_TYPE_MIC_ONLY       20#define PEM_TYPE_MIC_CLEAR      30#define PEM_TYPE_CLEAR		40typedef struct pem_recip_st	{	char *name;	X509_NAME *dn;	int cipher;	int key_enc;	/*	char iv[8]; unused and wrong size */	} PEM_USER;typedef struct pem_ctx_st	{	int type;		/* what type of object */	struct	{		int version;			int mode;				} proc_type;	char *domain;	struct	{		int cipher;	/* unused, and wrong size	   unsigned char iv[8]; */		} DEK_info;			PEM_USER *originator;	int num_recipient;	PEM_USER **recipient;#ifndef OPENSSL_NO_STACK	STACK *x509_chain;	/* certificate chain */#else	char *x509_chain;	/* certificate chain */#endif	EVP_MD *md;		/* signature type */	int md_enc;		/* is the md encrypted or not? */	int md_len;		/* length of md_data */	char *md_data;		/* message digest, could be pkey encrypted */	EVP_CIPHER *dec;	/* date encryption cipher */	int key_len;		/* key length */	unsigned char *key;	/* key */	/* unused, and wrong size	   unsigned char iv[8]; */		int  data_enc;		/* is the data encrypted */	int data_len;	unsigned char *data;	} PEM_CTX;/* These macros make the PEM_read/PEM_write functions easier to maintain and * write. Now they are all implemented with either: * IMPLEMENT_PEM_rw(...) or IMPLEMENT_PEM_rw_cb(...) */#ifdef OPENSSL_NO_FP_API#define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/#define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/#define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/#else#define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\{ \return((type *)PEM_ASN1_read((char *(*)())d2i_##asn1, str,fp,(char **)x,\	cb,u)); \} \#define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \int PEM_write_##name(FILE *fp, type *x) \{ \return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, (char *)x, \							 NULL,NULL,0,NULL,NULL)); \} #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \	     unsigned char *kstr, int klen, pem_password_cb *cb, \		  void *u) \	{ \	return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, \		(char *)x,enc,kstr,klen,cb,u)); \	}#endif#define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\{ \return((type *)PEM_ASN1_read_bio((char *(*)())d2i_##asn1, str,bp,\							(char **)x,cb,u)); \}#define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \int PEM_write_bio_##name(BIO *bp, type *x) \{ \return(PEM_ASN1_write_bio((int (*)())i2d_##asn1,str,bp, (char *)x, \							 NULL,NULL,0,NULL,NULL)); \}#define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \	     unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \	{ \	return(PEM_ASN1_write_bio((int (*)())i2d_##asn1,str,bp, \		(char *)x,enc,kstr,klen,cb,u)); \	}#define IMPLEMENT_PEM_write(name, type, str, asn1) \	IMPLEMENT_PEM_write_bio(name, type, str, asn1) \	IMPLEMENT_PEM_write_fp(name, type, str, asn1) #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \	IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \	IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) #define IMPLEMENT_PEM_read(name, type, str, asn1) \	IMPLEMENT_PEM_read_bio(name, type, str, asn1) \	IMPLEMENT_PEM_read_fp(name, type, str, asn1) #define IMPLEMENT_PEM_rw(name, type, str, asn1) \	IMPLEMENT_PEM_read(name, type, str, asn1) \	IMPLEMENT_PEM_write(name, type, str, asn1)#define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \	IMPLEMENT_PEM_read(name, type, str, asn1) \	IMPLEMENT_PEM_write_cb(name, type, str, asn1)/* These are the same except they are for the declarations */#if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_NO_FP_API)#define DECLARE_PEM_read_fp(name, type) /**/#define DECLARE_PEM_write_fp(name, type) /**/#define DECLARE_PEM_write_cb_fp(name, type) /**/#else#define DECLARE_PEM_read_fp(name, type) \	type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u);#define DECLARE_PEM_write_fp(name, type) \	int PEM_write_##name(FILE *fp, type *x);#define DECLARE_PEM_write_cb_fp(name, type) \	int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \	     unsigned char *kstr, int klen, pem_password_cb *cb, void *u);#endif#ifndef OPENSSL_NO_BIO#define DECLARE_PEM_read_bio(name, type) \	type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u);#define DECLARE_PEM_write_bio(name, type) \	int PEM_write_bio_##name(BIO *bp, type *x);#define DECLARE_PEM_write_cb_bio(name, type) \	int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \	     unsigned char *kstr, int klen, pem_password_cb *cb, void *u);#else#define DECLARE_PEM_read_bio(name, type) /**/#define DECLARE_PEM_write_bio(name, type) /**/#define DECLARE_PEM_write_cb_bio(name, type) /**/#endif#define DECLARE_PEM_write(name, type) \	DECLARE_PEM_write_bio(name, type) \	DECLARE_PEM_write_fp(name, type) #define DECLARE_PEM_write_cb(name, type) \	DECLARE_PEM_write_cb_bio(name, type) \	DECLARE_PEM_write_cb_fp(name, type) #define DECLARE_PEM_read(name, type) \	DECLARE_PEM_read_bio(name, type) \	DECLARE_PEM_read_fp(name, type)#define DECLARE_PEM_rw(name, type) \	DECLARE_PEM_read(name, type) \	DECLARE_PEM_write(name, type)#define DECLARE_PEM_rw_cb(name, type) \

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品少妇一区二区三区视频免付费 | 成人免费毛片片v| 国产精品日韩成人| 欧美久久免费观看| av综合在线播放| 国产成人三级在线观看| 日韩和欧美的一区| 亚洲午夜激情网站| 亚洲日本电影在线| 国产精品久久久久久久第一福利| 中文字幕不卡一区| 国产精品你懂的在线欣赏| 日欧美一区二区| 色老汉一区二区三区| 91色综合久久久久婷婷| 不卡一区中文字幕| 色菇凉天天综合网| 亚洲国产精品成人综合| 久久精品国产99| 国产精品一卡二| 成人黄色小视频| 日韩一二三区视频| 久久久一区二区| 亚洲成人午夜影院| 99九九99九九九视频精品| 成人国产精品免费网站| 日韩一区二区免费在线电影| 亚洲高清三级视频| 日本韩国一区二区三区视频| 中文字幕一区不卡| 亚洲精品欧美激情| 亚洲综合区在线| 国产精品资源网站| 精品女同一区二区| 激情文学综合网| 色婷婷综合久久久久中文| 欧美日韩国产电影| 欧美激情一二三区| 不卡的av中国片| 亚洲男人的天堂在线aⅴ视频 | 日韩一本二本av| 捆绑变态av一区二区三区| 欧美草草影院在线视频| 国产在线播放一区二区三区 | 国产成人在线电影| 中文字幕免费不卡| 日本久久一区二区| 日韩av一区二区三区| 成人精品亚洲人成在线| 国产精品盗摄一区二区三区| 色婷婷亚洲精品| 日韩va亚洲va欧美va久久| 91精品国产欧美日韩| 亚洲视频在线观看三级| 欧美色窝79yyyycom| 国产精品久久久久一区| 色菇凉天天综合网| 色94色欧美sute亚洲线路一久 | 日韩欧美的一区| 日韩欧美国产综合一区| 蜜桃精品视频在线观看| 综合久久一区二区三区| 国产精品二三区| 久久一二三国产| 日韩欧美一区二区在线视频| 亚洲精品乱码久久久久久久久 | 91丝袜美女网| 欧美国产一区二区| 91在线你懂得| 精品国产免费人成在线观看| 九色综合国产一区二区三区| 午夜a成v人精品| 日本中文在线一区| 在线观看欧美黄色| 91精品国产aⅴ一区二区| 一区二区三区在线观看欧美| 五月天丁香久久| 欧美性色欧美a在线播放| 亚洲激情六月丁香| 91激情五月电影| 亚洲国产一区在线观看| 欧美三级中文字幕在线观看| 久久影视一区二区| 国精品**一区二区三区在线蜜桃| 精品欧美久久久| 成人午夜大片免费观看| 亚洲区小说区图片区qvod| 欧美中文字幕亚洲一区二区va在线| 亚洲第一综合色| 日韩一区二区免费电影| 激情五月婷婷综合| 国产精品久久久久久久久快鸭| 99精品在线免费| 亚洲超碰精品一区二区| 精品不卡在线视频| 国产一区二区剧情av在线| 亚洲国产精品国自产拍av| 97精品久久久午夜一区二区三区 | 国产精品一区二区x88av| 国产精品沙发午睡系列990531| 99久久精品国产毛片| 一区二区三区.www| 日韩一区二区在线看片| 成人综合婷婷国产精品久久蜜臀 | 精品不卡在线视频| 婷婷夜色潮精品综合在线| 在线成人高清不卡| 久久精品国产77777蜜臀| 亚洲免费av观看| 国产欧美一区二区三区在线老狼| 精品一区二区三区免费视频| 国产精品家庭影院| 91麻豆自制传媒国产之光| 欧美日韩日本视频| 亚洲国产中文字幕在线视频综合 | 亚洲成av人在线观看| 91精品国产欧美一区二区成人| 久久精品99国产精品| 国产蜜臀97一区二区三区| 不卡影院免费观看| 久久99精品久久只有精品| 五月婷婷综合网| 国产日韩欧美麻豆| 欧美三级资源在线| 成人精品视频一区二区三区| 亚洲高清在线视频| 欧美激情一区二区三区在线| 日韩欧美亚洲一区二区| 在线观看日韩电影| 99精品热视频| 国产精品 欧美精品| 久久99热这里只有精品| 亚洲成av人片一区二区梦乃| 自拍偷拍亚洲综合| 中文字幕电影一区| 久久久久久久综合日本| 欧美一区二区三区在线观看| 欧美偷拍一区二区| 在线看日本不卡| 99精品久久久久久| 成人午夜免费视频| 国产夫妻精品视频| 奇米在线7777在线精品| 日本丶国产丶欧美色综合| 国产精品综合视频| 久久精品国产澳门| 麻豆91精品91久久久的内涵| 日韩精品国产欧美| 天堂精品中文字幕在线| 亚洲国产视频网站| 亚洲成在人线在线播放| 一二三区精品视频| 亚洲精品一二三| 一区二区三区国产精品| 亚洲女人的天堂| 一区二区三区在线观看欧美| 一区二区三区日韩欧美| 亚洲一区二区四区蜜桃| 亚洲成人久久影院| 免费人成黄页网站在线一区二区| 免费日韩伦理电影| 国产中文字幕一区| 国产精品99久久久久久宅男| 国产精品资源在线| 成人18精品视频| 91麻豆精东视频| 欧美日韩三级在线| 51精品久久久久久久蜜臀| 国产在线视视频有精品| 国产一区二区久久| 成人在线视频一区| 91麻豆蜜桃一区二区三区| 欧美色图在线观看| 日韩欧美久久一区| 国产精品三级电影| 亚洲在线一区二区三区| 日本午夜精品一区二区三区电影| 久久99国产精品久久99果冻传媒| 国产毛片精品国产一区二区三区| 成人激情综合网站| 欧美在线啊v一区| 日韩精品一区二区三区视频| 国产欧美日韩精品在线| 亚洲综合视频在线观看| 精品亚洲porn| 91麻豆免费视频| 精品久久一区二区三区| 中文字幕一区二区三| 日韩精品午夜视频| 成人国产精品免费观看动漫| 7777精品伊人久久久大香线蕉超级流畅 | 一区二区三区在线视频观看58| 奇米一区二区三区| aaa国产一区| 欧美日韩国产一二三| 精品国内二区三区| 日本一区二区久久| 亚洲精品一区二区三区蜜桃下载| 国产精品私人影院| 日韩专区在线视频|