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

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

?? pem.h

?? OpenSSL 0.9.8k 最新版OpenSSL
?? 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#include <openssl/e_os2.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>#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_OBJ_PRIV_ECDSA	20#define PEM_OBJ_PUB_ECDSA	21#define PEM_OBJ_ECPARAMETERS	22#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_PAIR	"CERTIFICATE PAIR"#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_PKCS7_SIGNED	"PKCS #7 SIGNED DATA"#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"#define PEM_STRING_ECDSA_PUBLIC "ECDSA PUBLIC KEY"#define PEM_STRING_ECPARAMETERS "EC PARAMETERS"#define PEM_STRING_ECPRIVATEKEY	"EC PRIVATE KEY"#define PEM_STRING_CMS		"CMS"  /* 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_fp_const(name, type, str, asn1) /**/#define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/#define IMPLEMENT_PEM_write_cb_fp_const(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(CHECKED_D2I_OF(type, d2i_##asn1), \				str, fp, \				CHECKED_PPTR_OF(type, x), \				cb, u); \} #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \int PEM_write_##name(FILE *fp, type *x) \{ \    return PEM_ASN1_write(CHECKED_I2D_OF(type, i2d_##asn1), \			  str, fp, \			  CHECKED_PTR_OF(type, x), \			  NULL, NULL, 0, NULL, NULL); \}#define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \int PEM_write_##name(FILE *fp, const type *x) \{ \    return PEM_ASN1_write(CHECKED_I2D_OF(const type, i2d_##asn1), \			  str, fp, \			  CHECKED_PTR_OF(const type, 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(CHECKED_I2D_OF(type, i2d_##asn1), \				  str, fp, \				  CHECKED_PTR_OF(type, x), \				  enc, kstr, klen, cb, u); \	}#define IMPLEMENT_PEM_write_cb_fp_const(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(CHECKED_I2D_OF(const type, i2d_##asn1), \				  str, fp, \				  CHECKED_PTR_OF(const type, 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(CHECKED_D2I_OF(type, d2i_##asn1), \				    str, bp, \				    CHECKED_PPTR_OF(type, 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(CHECKED_I2D_OF(type, i2d_##asn1), \			      str, bp, \			      CHECKED_PTR_OF(type, x), \			      NULL, NULL, 0, NULL, NULL); \}#define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \int PEM_write_bio_##name(BIO *bp, const type *x) \{ \    return PEM_ASN1_write_bio(CHECKED_I2D_OF(const type, i2d_##asn1), \			      str, bp, \			      CHECKED_PTR_OF(const type, 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(CHECKED_I2D_OF(type, i2d_##asn1), \				      str, bp, \				      CHECKED_PTR_OF(type, x), \				      enc, kstr, klen, cb, u); \	}#define IMPLEMENT_PEM_write_cb_bio_const(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(CHECKED_I2D_OF(const type, i2d_##asn1), \				      str, bp, \				      CHECKED_PTR_OF(const type, 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_const(name, type, str, asn1) \	IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \	IMPLEMENT_PEM_write_fp_const(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_write_cb_const(name, type, str, asn1) \	IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \	IMPLEMENT_PEM_write_cb_fp_const(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_const(name, type, str, asn1) \	IMPLEMENT_PEM_read(name, type, str, asn1) \	IMPLEMENT_PEM_write_const(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_fp_const(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_fp_const(name, type) \	int PEM_write_##name(FILE *fp, const 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_bio_const(name, type) \	int PEM_write_bio_##name(BIO *bp, const 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);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区精品久久911| 一区二区三区视频在线看| 91成人免费在线视频| 成人综合在线网站| 国产精品系列在线播放| 久久99精品国产.久久久久久| 五月天丁香久久| 水野朝阳av一区二区三区| 亚洲国产三级在线| 日韩国产精品大片| 捆绑变态av一区二区三区 | 欧美三级电影在线观看| 91国偷自产一区二区开放时间 | 五月激情综合网| 懂色中文一区二区在线播放| 波多野结衣亚洲一区| 不卡一区在线观看| 欧美日韩一区精品| 一区二区日韩电影| 91免费精品国自产拍在线不卡| 欧美三电影在线| 亚洲日本青草视频在线怡红院| 亚洲国产精品久久久久婷婷884 | 麻豆精品一区二区三区| 国产高清精品网站| 色88888久久久久久影院野外| 国产目拍亚洲精品99久久精品| 国产精品久久久久久久久免费相片| 中文字幕一区二区三区色视频| 舔着乳尖日韩一区| 欧美视频中文字幕| 久久久久国产成人精品亚洲午夜| 国产精品国产自产拍高清av王其| 国产麻豆成人传媒免费观看| 欧美日韩免费一区二区三区| 亚洲午夜av在线| 欧美日韩国产免费一区二区| 国产午夜精品在线观看| 午夜成人在线视频| 在线不卡a资源高清| 国产精品视频九色porn| 日韩成人一级大片| 欧美成人一区二区三区片免费| 中文在线免费一区三区高中清不卡| 午夜婷婷国产麻豆精品| 欧美一区二区久久| 国产一区二区三区四| 国产精品理伦片| 91网上在线视频| 日产国产高清一区二区三区| 日韩视频一区二区三区在线播放| 亚洲综合小说图片| 99久久精品免费观看| 久久久久久久免费视频了| 成人美女视频在线观看18| 亚洲蜜臀av乱码久久精品蜜桃| 国产精品综合二区| 亚洲三级免费电影| 在线综合亚洲欧美在线视频| 亚洲一区在线视频观看| 91精品国产一区二区| 国内成人免费视频| 精品久久人人做人人爰| 99视频一区二区| 日韩精品一级中文字幕精品视频免费观看 | 秋霞午夜av一区二区三区| 欧美亚洲综合另类| 久久成人免费电影| 亚洲欧洲色图综合| 91精品国产品国语在线不卡| 成人的网站免费观看| 五月激情综合婷婷| 国产精品乱子久久久久| 欧美日本乱大交xxxxx| 国产河南妇女毛片精品久久久 | 免费成人小视频| 亚洲精品一二三四区| 91丝袜呻吟高潮美腿白嫩在线观看| 亚洲一卡二卡三卡四卡五卡| 久久久一区二区三区捆绑**| 欧美日韩一区不卡| 福利一区福利二区| 久久精品国产一区二区| 玉米视频成人免费看| 久久久99免费| 欧美一级精品大片| 欧美性做爰猛烈叫床潮| 成人福利电影精品一区二区在线观看 | 欧美性一级生活| 国产成人精品亚洲午夜麻豆| 日韩精品亚洲专区| 一区二区免费视频| 中文字幕永久在线不卡| 久久久久综合网| 日韩欧美一级二级| 国产精品亚洲专一区二区三区| 亚洲v精品v日韩v欧美v专区| 日韩一区二区三区四区| 色噜噜狠狠成人网p站| 国产v综合v亚洲欧| 国产一区视频在线看| 老司机精品视频导航| 三级在线观看一区二区| 亚洲午夜av在线| 亚洲一区国产视频| 狠狠色丁香九九婷婷综合五月| 亚洲国产精品欧美一二99| 亚洲精品视频在线看| 亚洲欧美福利一区二区| 亚洲欧洲日产国产综合网| 日本一区二区动态图| 欧美国产日韩精品免费观看| 国产欧美日韩三区| 国产日韩高清在线| 国产精品久久久久久久久免费桃花| 中文字幕av资源一区| 亚洲欧洲成人av每日更新| 亚洲欧洲精品一区二区三区| 亚洲欧美在线视频观看| 亚洲精品国产品国语在线app| 亚洲素人一区二区| 夜夜操天天操亚洲| 午夜不卡在线视频| 久久精品国产亚洲aⅴ| 精品中文字幕一区二区小辣椒| 国内精品在线播放| 春色校园综合激情亚洲| 91污片在线观看| 在线91免费看| 精品国产1区二区| 欧美日韩久久不卡| 欧美一区二区三区四区在线观看| 日韩视频不卡中文| 国产蜜臀av在线一区二区三区| 中文一区在线播放| 亚洲午夜一二三区视频| 毛片一区二区三区| 国产xxx精品视频大全| 色狠狠一区二区| 欧美一区二区三区视频在线| 久久久精品免费观看| 亚洲少妇中出一区| 久久精品国产99国产精品| 丁香婷婷综合激情五月色| 在线一区二区视频| 精品成人a区在线观看| 中文字幕色av一区二区三区| 午夜精品免费在线观看| 国产精品一区久久久久| 91在线视频免费观看| 欧美一级二级三级蜜桃| 国产精品久久久久影院色老大| 亚洲精品国产a久久久久久| 蜜桃av噜噜一区| 91视视频在线观看入口直接观看www | 成人av网站在线观看免费| 在线精品国精品国产尤物884a| jizz一区二区| 3atv在线一区二区三区| 中文字幕字幕中文在线中不卡视频| 天堂成人国产精品一区| fc2成人免费人成在线观看播放| 欧美日韩高清一区二区| 中文字幕精品一区二区精品绿巨人 | 亚洲伦在线观看| 国产一区二区三区蝌蚪| 欧美日韩日日夜夜| 亚洲国产精品激情在线观看| 人人狠狠综合久久亚洲| 色香色香欲天天天影视综合网| 日本精品免费观看高清观看| 久久综合九色综合欧美98| 国产精品亲子乱子伦xxxx裸| 91国内精品野花午夜精品| 成人福利视频在线看| 日韩欧美视频一区| 亚洲最快最全在线视频| 中文字幕制服丝袜成人av| 美国毛片一区二区| 欧美日韩你懂的| 亚洲在线视频免费观看| 99re66热这里只有精品3直播| 欧美精品一区二区高清在线观看| 午夜在线成人av| 欧美特级限制片免费在线观看| 国产精品每日更新| 国产91清纯白嫩初高中在线观看| 日韩欧美国产系列| 日韩高清在线不卡| 欧美人与性动xxxx| 性感美女极品91精品| 色悠悠亚洲一区二区| 亚洲天堂久久久久久久| www.99精品| 亚洲免费视频成人| 色综合婷婷久久| 7777精品伊人久久久大香线蕉超级流畅| 亚洲四区在线观看| 色综合一个色综合| 亚洲五码中文字幕|