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

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

?? engine.h.bak.svn-base

?? 基于openssl開發的簽發證書的工具
?? SVN-BASE
?? 第 1 頁 / 共 3 頁
字號:
/* openssl/engine.h *//* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL * project 2000. *//* ==================================================================== * Copyright (c) 1999-2001 The OpenSSL Project.  All rights reserved. * * 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 above 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 acknowledgment: *    "This product includes software developed by the OpenSSL Project *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to *    endorse or promote products derived from this software without *    prior written permission. For written permission, please contact *    licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" *    nor may "OpenSSL" appear in their names without prior written *    permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following *    acknowledgment: *    "This product includes software developed by the OpenSSL Project *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED 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 OpenSSL PROJECT OR * ITS 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. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com).  This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */#ifndef HEADER_ENGINE_H#define HEADER_ENGINE_H#include <openssl/opensslconf.h>#ifdef OPENSSL_NO_ENGINE#error ENGINE is disabled.#endif#include <openssl/ossl_typ.h>#include <openssl/bn.h>#ifndef OPENSSL_NO_RSA#include <openssl/rsa.h>#endif#ifndef OPENSSL_NO_DSA#include <openssl/dsa.h>#endif#ifndef OPENSSL_NO_DH#include <openssl/dh.h>#endif#include <openssl/rand.h>#include <openssl/ui.h>#include <openssl/symhacks.h>#include <openssl/err.h>#ifdef  __cplusplusextern "C" {#endif/* Fixups for missing algorithms */#ifdef OPENSSL_NO_RSAtypedef void RSA_METHOD;#endif#ifdef OPENSSL_NO_DSAtypedef void DSA_METHOD;#endif#ifdef OPENSSL_NO_DHtypedef void DH_METHOD;#endif/* These flags are used to control combinations of algorithm (methods) * by bitwise "OR"ing. */#define ENGINE_METHOD_RSA		(unsigned int)0x0001#define ENGINE_METHOD_DSA		(unsigned int)0x0002#define ENGINE_METHOD_DH		(unsigned int)0x0004#define ENGINE_METHOD_RAND		(unsigned int)0x0008#define ENGINE_METHOD_CIPHERS		(unsigned int)0x0040#define ENGINE_METHOD_DIGESTS		(unsigned int)0x0080/* Obvious all-or-nothing cases. */#define ENGINE_METHOD_ALL		(unsigned int)0xFFFF#define ENGINE_METHOD_NONE		(unsigned int)0x0000/* This(ese) flag(s) controls behaviour of the ENGINE_TABLE mechanism used * internally to control registration of ENGINE implementations, and can be set * by ENGINE_set_table_flags(). The "NOINIT" flag prevents attempts to * initialise registered ENGINEs if they are not already initialised. */#define ENGINE_TABLE_FLAG_NOINIT	(unsigned int)0x0001/* ENGINE flags that can be set by ENGINE_set_flags(). *//* #define ENGINE_FLAGS_MALLOCED	0x0001 */ /* Not used *//* This flag is for ENGINEs that wish to handle the various 'CMD'-related * control commands on their own. Without this flag, ENGINE_ctrl() handles these * control commands on behalf of the ENGINE using their "cmd_defns" data. */#define ENGINE_FLAGS_MANUAL_CMD_CTRL	(int)0x0002/* This flag is for ENGINEs who return new duplicate structures when found via * "ENGINE_by_id()". When an ENGINE must store state (eg. if ENGINE_ctrl() * commands are called in sequence as part of some stateful process like * key-generation setup and execution), it can set this flag - then each attempt * to obtain the ENGINE will result in it being copied into a new structure. * Normally, ENGINEs don't declare this flag so ENGINE_by_id() just increments * the existing ENGINE's structural reference count. */#define ENGINE_FLAGS_BY_ID_COPY		(int)0x0004/* ENGINEs can support their own command types, and these flags are used in * ENGINE_CTRL_GET_CMD_FLAGS to indicate to the caller what kind of input each * command expects. Currently only numeric and string input is supported. If a * control command supports none of the _NUMERIC, _STRING, or _NO_INPUT options, * then it is regarded as an "internal" control command - and not for use in * config setting situations. As such, they're not available to the * ENGINE_ctrl_cmd_string() function, only raw ENGINE_ctrl() access. Changes to * this list of 'command types' should be reflected carefully in * ENGINE_cmd_is_executable() and ENGINE_ctrl_cmd_string(). *//* accepts a 'long' input value (3rd parameter to ENGINE_ctrl) */#define ENGINE_CMD_FLAG_NUMERIC		(unsigned int)0x0001/* accepts string input (cast from 'void*' to 'const char *', 4th parameter to * ENGINE_ctrl) */#define ENGINE_CMD_FLAG_STRING		(unsigned int)0x0002/* Indicates that the control command takes *no* input. Ie. the control command * is unparameterised. */#define ENGINE_CMD_FLAG_NO_INPUT	(unsigned int)0x0004/* Indicates that the control command is internal. This control command won't * be shown in any output, and is only usable through the ENGINE_ctrl_cmd() * function. */#define ENGINE_CMD_FLAG_INTERNAL	(unsigned int)0x0008/* NB: These 3 control commands are deprecated and should not be used. ENGINEs * relying on these commands should compile conditional support for * compatibility (eg. if these symbols are defined) but should also migrate the * same functionality to their own ENGINE-specific control functions that can be * "discovered" by calling applications. The fact these control commands * wouldn't be "executable" (ie. usable by text-based config) doesn't change the * fact that application code can find and use them without requiring per-ENGINE * hacking. *//* These flags are used to tell the ctrl function what should be done. * All command numbers are shared between all engines, even if some don't * make sense to some engines.  In such a case, they do nothing but return * the error ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED. */#define ENGINE_CTRL_SET_LOGSTREAM		1#define ENGINE_CTRL_SET_PASSWORD_CALLBACK	2#define ENGINE_CTRL_HUP				3 /* Close and reinitialise any						     handles/connections etc. */#define ENGINE_CTRL_SET_USER_INTERFACE          4 /* Alternative to callback */#define ENGINE_CTRL_SET_CALLBACK_DATA           5 /* User-specific data, used                                                     when calling the password                                                     callback and the user                                                     interface *//* These control commands allow an application to deal with an arbitrary engine * in a dynamic way. Warn: Negative return values indicate errors FOR THESE * COMMANDS because zero is used to indicate 'end-of-list'. Other commands, * including ENGINE-specific command types, return zero for an error. * * An ENGINE can choose to implement these ctrl functions, and can internally * manage things however it chooses - it does so by setting the * ENGINE_FLAGS_MANUAL_CMD_CTRL flag (using ENGINE_set_flags()). Otherwise the * ENGINE_ctrl() code handles this on the ENGINE's behalf using the cmd_defns * data (set using ENGINE_set_cmd_defns()). This means an ENGINE's ctrl() * handler need only implement its own commands - the above "meta" commands will * be taken care of. *//* Returns non-zero if the supplied ENGINE has a ctrl() handler. If "not", then * all the remaining control commands will return failure, so it is worth * checking this first if the caller is trying to "discover" the engine's * capabilities and doesn't want errors generated unnecessarily. */#define ENGINE_CTRL_HAS_CTRL_FUNCTION		10/* Returns a positive command number for the first command supported by the * engine. Returns zero if no ctrl commands are supported. */#define ENGINE_CTRL_GET_FIRST_CMD_TYPE		11/* The 'long' argument specifies a command implemented by the engine, and the * return value is the next command supported, or zero if there are no more. */#define ENGINE_CTRL_GET_NEXT_CMD_TYPE		12/* The 'void*' argument is a command name (cast from 'const char *'), and the * return value is the command that corresponds to it. */#define ENGINE_CTRL_GET_CMD_FROM_NAME		13/* The next two allow a command to be converted into its corresponding string * form. In each case, the 'long' argument supplies the command. In the NAME_LEN * case, the return value is the length of the command name (not counting a * trailing EOL). In the NAME case, the 'void*' argument must be a string buffer * large enough, and it will be populated with the name of the command (WITH a * trailing EOL). */#define ENGINE_CTRL_GET_NAME_LEN_FROM_CMD	14#define ENGINE_CTRL_GET_NAME_FROM_CMD		15/* The next two are similar but give a "short description" of a command. */#define ENGINE_CTRL_GET_DESC_LEN_FROM_CMD	16#define ENGINE_CTRL_GET_DESC_FROM_CMD		17/* With this command, the return value is the OR'd combination of * ENGINE_CMD_FLAG_*** values that indicate what kind of input a given * engine-specific ctrl command expects. */#define ENGINE_CTRL_GET_CMD_FLAGS		18/* ENGINE implementations should start the numbering of their own control * commands from this value. (ie. ENGINE_CMD_BASE, ENGINE_CMD_BASE + 1, etc). */#define ENGINE_CMD_BASE		200/* NB: These 2 nCipher "chil" control commands are deprecated, and their * functionality is now available through ENGINE-specific control commands * (exposed through the above-mentioned 'CMD'-handling). Code using these 2 * commands should be migrated to the more general command handling before these * are removed. *//* Flags specific to the nCipher "chil" engine */#define ENGINE_CTRL_CHIL_SET_FORKCHECK		100	/* Depending on the value of the (long)i argument, this sets or	 * unsets the SimpleForkCheck flag in the CHIL API to enable or	 * disable checking and workarounds for applications that fork().	 */#define ENGINE_CTRL_CHIL_NO_LOCKING		101	/* This prevents the initialisation function from providing mutex	 * callbacks to the nCipher library. *//* If an ENGINE supports its own specific control commands and wishes the

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本韩国一区二区三区| 综合欧美一区二区三区| 日韩女优电影在线观看| 欧美videofree性高清杂交| 日韩一区二区三区四区| 2022国产精品视频| 国产午夜精品美女毛片视频| 国产欧美一区二区精品忘忧草| 中文字幕精品—区二区四季| 国产精品久久99| 午夜精品在线视频一区| 亚洲成a人v欧美综合天堂下载| 美女脱光内衣内裤视频久久网站| 毛片不卡一区二区| 欧美日韩高清在线| 日韩一区二区三区四区| 国产女主播在线一区二区| 亚洲免费av在线| 国产高清无密码一区二区三区| 99re视频精品| 久久久久久久久99精品| 午夜精品福利在线| 97久久精品人人澡人人爽| 欧美一级片免费看| 艳妇臀荡乳欲伦亚洲一区| 久久婷婷久久一区二区三区| 国产喷白浆一区二区三区| 天天av天天翘天天综合网色鬼国产 | 色狠狠一区二区三区香蕉| 在线播放中文字幕一区| 亚洲精品高清在线观看| 成人精品视频一区| 日本一区二区三区免费乱视频| 蜜臀久久99精品久久久久宅男| 在线免费观看不卡av| 亚洲乱码中文字幕| 91看片淫黄大片一级在线观看| 三级欧美韩日大片在线看| 国产精品毛片久久久久久久| 亚洲成人在线免费| 99精品偷自拍| 国产精品无遮挡| 国产精品一线二线三线| 国产色91在线| 亚洲情趣在线观看| av在线不卡网| 亚洲人一二三区| 欧美三级视频在线观看| 亚洲成人免费观看| 日韩欧美中文字幕公布| 麻豆久久久久久久| 国产拍欧美日韩视频二区| 国产成人午夜99999| 中文字幕一区二区三| 91免费视频网| 免费在线看成人av| 国产视频一区在线观看| 亚洲激情图片小说视频| 中文字幕国产精品一区二区| av在线综合网| 久久激情五月激情| 亚洲少妇最新在线视频| 日韩一区二区三区视频| 成人午夜电影网站| 午夜国产精品影院在线观看| 国产性色一区二区| 欧美猛男超大videosgay| 久久99精品久久久| 亚洲狠狠爱一区二区三区| 欧美国产视频在线| 欧美mv日韩mv亚洲| 欧美精品日韩一区| a美女胸又www黄视频久久| 精品一区二区三区在线视频| 亚洲国产乱码最新视频| 亚洲免费观看在线观看| 久久久久久**毛片大全| 精品久久久久久久久久久院品网 | 99久久精品免费看| 亚洲国产aⅴ天堂久久| 亚洲国产日韩一级| 亚洲手机成人高清视频| 久久久久成人黄色影片| 精品久久一区二区| 日韩小视频在线观看专区| 欧美日韩精品欧美日韩精品一| 91免费版pro下载短视频| av亚洲精华国产精华| 成人国产精品视频| 91视频观看免费| 色婷婷亚洲婷婷| 欧美片网站yy| 精品欧美一区二区在线观看 | 日韩高清不卡一区二区三区| 日本不卡高清视频| 处破女av一区二区| 91麻豆swag| 精品88久久久久88久久久| 欧美—级在线免费片| 午夜一区二区三区视频| 美女看a上一区| 成人av网站在线观看| 欧美美女网站色| 中文字幕 久热精品 视频在线| 亚洲欧洲一区二区在线播放| 美脚の诱脚舐め脚责91| 国产精品免费久久| 亚洲高清一区二区三区| 粉嫩嫩av羞羞动漫久久久| 欧美性生交片4| 国产欧美日韩三级| 亚洲精品成人少妇| 日韩电影免费在线| 91美女视频网站| 久久精品免视看| 日精品一区二区| 91老师片黄在线观看| 精品免费视频一区二区| 亚洲国产视频一区| 丁香婷婷综合激情五月色| 欧美不卡激情三级在线观看| 一区二区三区四区高清精品免费观看| 黑人巨大精品欧美黑白配亚洲| 欧美丝袜丝nylons| 日本成人在线网站| 正在播放亚洲一区| 亚洲成av人**亚洲成av**| 色天使久久综合网天天| 亚洲另类在线制服丝袜| 91福利小视频| 夜夜嗨av一区二区三区网页| 欧美在线观看视频一区二区三区| 亚洲三级视频在线观看| 91香蕉视频污| 亚洲二区在线观看| 欧美一二三四在线| 激情综合一区二区三区| 97久久超碰国产精品电影| 日韩一区二区影院| 国产高清在线精品| 亚洲午夜一区二区三区| 精品一区二区三区免费播放| 日韩你懂的在线播放| 岛国精品在线播放| 亚洲激情图片qvod| 欧美久久久久久蜜桃| 国产自产高清不卡| 欧美mv日韩mv亚洲| 日本久久精品电影| 久久99久久99| 亚洲一区在线观看视频| 精品电影一区二区三区| 91视频com| 国产成人亚洲综合色影视| 一区二区三区 在线观看视频| 欧美一区二区三区四区久久| 成人精品免费看| 久久久久久久综合| av高清不卡在线| 久久精品国产99| 午夜成人在线视频| 中文字幕日韩一区二区| 欧美精品一区二区三区高清aⅴ | 99精品久久只有精品| 久久国产免费看| 五月激情综合婷婷| 亚洲精品免费在线播放| 国产精品视频第一区| 久久久五月婷婷| 2023国产精品| 国产日本一区二区| 久久久久久久综合狠狠综合| 欧美videossexotv100| 精品国产乱码久久久久久免费| 久久99国产精品免费网站| 中文一区二区在线观看| 国产亚洲精品bt天堂精选| 精品国产电影一区二区| 2023国产一二三区日本精品2022| 粉嫩蜜臀av国产精品网站| 日本va欧美va欧美va精品| 天天综合色天天综合| 免费成人性网站| 久久精品国产澳门| 国产麻豆精品久久一二三| 国产一区二区福利| 91浏览器打开| 日韩精品一区二区三区在线| 精品国产乱码久久久久久蜜臀| 久久久亚洲高清| 一区二区久久久久| 婷婷成人综合网| 国产91在线|亚洲| 色播五月激情综合网| 欧美电视剧在线看免费| 成人欧美一区二区三区黑人麻豆| 夜夜嗨av一区二区三区网页 | av电影在线观看不卡| 国产aⅴ综合色| 欧美偷拍一区二区|