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

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

?? pem.h

?? EmuNation的最初開放版本源代碼
?? 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一区二区三区免费野_久草精品视频
亚洲欧美一区二区三区久本道91| 亚洲品质自拍视频| 色婷婷久久综合| 黄一区二区三区| 五月婷婷综合网| 亚洲欧美一区二区在线观看| 日韩三级av在线播放| 一本色道亚洲精品aⅴ| 国内国产精品久久| 亚洲成人资源在线| 亚洲图片激情小说| 国产午夜亚洲精品羞羞网站| 日韩一卡二卡三卡国产欧美| 欧美最猛黑人xxxxx猛交| 成人免费毛片高清视频| 久久电影国产免费久久电影| 亚洲成人自拍网| 亚洲日本青草视频在线怡红院| 国产女主播视频一区二区| 精品国产乱码久久久久久闺蜜| 在线观看免费亚洲| 一本大道久久a久久精品综合| 国内成人免费视频| 美国三级日本三级久久99| 婷婷综合在线观看| 天天色图综合网| 日精品一区二区三区| 一区二区高清免费观看影视大全 | 国产一区二区剧情av在线| 天堂蜜桃91精品| 亚洲午夜视频在线| 亚洲乱码中文字幕综合| 中文字幕在线不卡一区| 国产精品视频免费| 国产精品午夜免费| 亚洲国产成人自拍| 国产精品欧美久久久久无广告 | 久久精品综合网| 久久综合久久99| 久久久91精品国产一区二区精品 | 国产精品免费看片| 中文字幕在线一区二区三区| 国产精品福利一区| 亚洲欧洲色图综合| 亚洲女同一区二区| 亚洲午夜久久久久久久久电影网| 亚洲综合色成人| 亚洲自拍另类综合| 日日摸夜夜添夜夜添亚洲女人| 香蕉影视欧美成人| 久久国产尿小便嘘嘘尿| 国产精品一区久久久久| 成人a区在线观看| 91小视频在线观看| 欧美亚洲动漫另类| 欧美一区二区三区免费视频| 欧美电影免费观看完整版| 久久久高清一区二区三区| 欧美激情一区二区| 亚洲欧美国产三级| 天天做天天摸天天爽国产一区| 日本视频一区二区| 成人午夜激情视频| 日本高清无吗v一区| 欧美精品 日韩| 久久日韩粉嫩一区二区三区| 中文字幕佐山爱一区二区免费| 亚洲国产视频在线| 韩国一区二区在线观看| 99久久伊人网影院| 制服丝袜国产精品| 国产精品嫩草影院av蜜臀| 亚洲一区二区欧美日韩 | 在线观看国产精品网站| 日韩欧美美女一区二区三区| 国产精品久久久久影院老司| 一区二区成人在线| 国产一本一道久久香蕉| 欧美综合久久久| 26uuu亚洲综合色| 亚洲欧美日韩在线播放| 奇米777欧美一区二区| 成人av网站大全| 日韩一区二区中文字幕| 国产精品乱码一区二区三区软件 | 亚洲一区二区三区免费视频| 激情综合亚洲精品| 欧美伊人久久久久久午夜久久久久| 精品欧美乱码久久久久久1区2区| 亚洲视频 欧洲视频| 美国三级日本三级久久99| 色综合天天综合狠狠| 日韩精品中文字幕一区| 亚洲人成7777| 国产成人自拍高清视频在线免费播放| 欧美怡红院视频| 国产精品国产自产拍在线| 精品一区二区在线观看| 欧美在线免费观看亚洲| 国产精品欧美极品| 国内一区二区视频| 这里只有精品免费| 一区二区三区精品视频在线| 成人免费福利片| 久久噜噜亚洲综合| 青青草视频一区| 欧美日韩一区二区电影| 亚洲三级电影网站| 成人午夜大片免费观看| 日韩欧美国产午夜精品| 午夜免费久久看| 欧美色综合网站| 亚洲人一二三区| 成人免费黄色在线| 久久只精品国产| 激情欧美日韩一区二区| 日韩三级视频在线观看| 午夜不卡av免费| 欧美午夜在线一二页| 亚洲色图另类专区| 白白色 亚洲乱淫| 国产精品免费aⅴ片在线观看| 精品一区二区影视| 欧美不卡一区二区三区| 日韩电影免费在线观看网站| 欧美美女直播网站| 亚洲国产成人porn| 欧美日韩午夜在线视频| 亚洲一卡二卡三卡四卡五卡| 色婷婷综合激情| 亚洲电影一级黄| 欧美久久久久久久久中文字幕| 亚洲福利视频导航| 欧美久久久久免费| 免费成人小视频| 欧美一二三四区在线| 久久成人免费日本黄色| 精品久久99ma| 国产成人激情av| 国产精品久久午夜夜伦鲁鲁| 日韩天堂在线观看| 欧美视频在线不卡| 亚洲自拍都市欧美小说| 欧美系列亚洲系列| 日韩影院精彩在线| 欧美一区二区大片| 精品一区二区免费视频| 久久亚洲精华国产精华液 | 91精品国产一区二区三区香蕉| 亚洲va天堂va国产va久| 91麻豆精品91久久久久同性| 免费在线欧美视频| 久久久国产一区二区三区四区小说| 国产一区二区久久| 亚洲视频一区二区在线| 欧美日韩免费高清一区色橹橹| 日产欧产美韩系列久久99| 精品99999| 91免费在线视频观看| 亚洲午夜免费电影| 欧美成人a视频| 99久久精品免费看国产免费软件| 亚洲狠狠丁香婷婷综合久久久| 91精品黄色片免费大全| 精品一区二区三区在线视频| 中文字幕一区二区三| 欧美日韩一区视频| 国产一区二区伦理| 亚洲综合男人的天堂| 精品久久久久香蕉网| www.欧美日韩| 爽好久久久欧美精品| 亚洲国产成人午夜在线一区| 欧美在线免费观看视频| 国产精一品亚洲二区在线视频| 中文字幕中文字幕一区| 欧美夫妻性生活| 成人黄色av网站在线| 五月天欧美精品| 日本一区二区动态图| 欧美日韩免费观看一区三区| 国产成人在线视频免费播放| 亚洲影视在线播放| 久久久国产午夜精品| 欧美日产国产精品| 成人av免费在线| 久久爱www久久做| 亚洲一区二区视频在线| 久久精品亚洲精品国产欧美kt∨| 欧美日韩午夜精品| 成人99免费视频| 日本欧美加勒比视频| 日本美女一区二区三区| 久久精品一区蜜桃臀影院| 欧美中文字幕一区| 成人污视频在线观看| 欧美日本一区二区在线观看| 丰满岳乱妇一区二区三区| 美女精品一区二区| 午夜伦欧美伦电影理论片|