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

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

?? engine.h

?? 一個支持FTP,SFTP的客戶端程序
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* openssl/engine.h *//* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL * project 2000. *//* ==================================================================== * Copyright (c) 1999-2004 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). * *//* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * ECDH support in OpenSSL originally developed by  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */#ifndef HEADER_ENGINE_H#define HEADER_ENGINE_H#include <openssl/opensslconf.h>#ifdef OPENSSL_NO_ENGINE#error ENGINE is disabled.#endif#ifndef OPENSSL_NO_DEPRECATED#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#ifndef OPENSSL_NO_ECDH#include <openssl/ecdh.h>#endif#ifndef OPENSSL_NO_ECDSA#include <openssl/ecdsa.h>#endif#include <openssl/rand.h>#include <openssl/store.h>#include <openssl/ui.h>#include <openssl/err.h>#endif#include <openssl/ossl_typ.h>#include <openssl/symhacks.h>#ifdef  __cplusplusextern "C" {#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_ECDH		(unsigned int)0x0010#define ENGINE_METHOD_ECDSA		(unsigned int)0x0020#define ENGINE_METHOD_CIPHERS		(unsigned int)0x0040#define ENGINE_METHOD_DIGESTS		(unsigned int)0x0080#define ENGINE_METHOD_STORE		(unsigned int)0x0100/* 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 */#define ENGINE_CTRL_LOAD_CONFIGURATION		6 /* Load a configuration, given						     a string that represents a						     file name or so */#define ENGINE_CTRL_LOAD_SECTION		7 /* Load data from a given						     section in the already loaded						     configuration *//* 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 * framework to handle the above 'ENGINE_CMD_***'-manipulation commands on its * behalf, it should supply a null-terminated array of ENGINE_CMD_DEFN entries * to ENGINE_set_cmd_defns(). It should also implement a ctrl() handler that * supports the stated commands (ie. the "cmd_num" entries as described by the * array). NB: The array must be ordered in increasing order of cmd_num. * "null-terminated" means that the last ENGINE_CMD_DEFN element has cmd_num set

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美成人性战久久| 91丝袜国产在线播放| 91精品国产高清一区二区三区| 亚洲一区二区精品久久av| 欧美日韩国产高清一区二区三区| 亚洲区小说区图片区qvod| 91精彩视频在线观看| 日本欧美一区二区三区乱码| 精品三级在线观看| 国产激情视频一区二区在线观看| 国产欧美精品区一区二区三区| 北条麻妃一区二区三区| 亚洲欧美另类小说| 欧美疯狂性受xxxxx喷水图片| 日韩av一区二区三区四区| 久久综合九色综合欧美亚洲| 成人18视频在线播放| 亚洲国产乱码最新视频| 2019国产精品| 色国产综合视频| 免费久久精品视频| 国产精品丝袜一区| 欧美日韩亚州综合| 国产成人综合在线观看| 亚洲美女免费视频| 日韩精品在线看片z| www.欧美日韩| 奇米777欧美一区二区| 亚洲国产高清在线观看视频| 在线精品视频免费观看| 国产乱码精品一区二区三区忘忧草 | 在线亚洲人成电影网站色www| 亚洲国产三级在线| 国产午夜亚洲精品午夜鲁丝片| 91福利资源站| 国产高清在线观看免费不卡| 亚洲国产综合色| 国产日韩影视精品| 欧美人妖巨大在线| 99re热这里只有精品免费视频| 日韩高清不卡在线| 中文字幕五月欧美| 欧美成人福利视频| 精品1区2区3区| 成人黄色小视频| 久久99久久99| 天堂av在线一区| 1区2区3区精品视频| 精品日韩一区二区三区免费视频| 色婷婷综合久色| 国产a精品视频| 美国十次综合导航| 亚洲国产精品一区二区www | 亚洲欧美另类小说| 国产日韩v精品一区二区| 91精品国产综合久久久蜜臀粉嫩| 99国产精品视频免费观看| 激情欧美一区二区| 日韩成人一区二区三区在线观看| 亚洲男人的天堂在线aⅴ视频| 久久久精品tv| 久久众筹精品私拍模特| 欧美精品一二三| 欧美午夜精品免费| 色综合天天综合网国产成人综合天 | 久久久夜色精品亚洲| 欧美一区二区视频在线观看| 欧美视频一区二区在线观看| 一本一本久久a久久精品综合麻豆| 国产99久久久精品| 豆国产96在线|亚洲| 国内欧美视频一区二区| 黄色日韩三级电影| 国产一区二区美女诱惑| 韩国三级在线一区| 国产综合色在线视频区| 国产精品影视网| 国产精品一二三四| 韩国毛片一区二区三区| 国产一区中文字幕| 国产a久久麻豆| a4yy欧美一区二区三区| 96av麻豆蜜桃一区二区| 99国产精品视频免费观看| 99精品欧美一区二区三区小说 | 亚洲一区二区在线免费观看视频| 一区二区三区**美女毛片| 亚洲精品ww久久久久久p站| 一区二区三国产精华液| 婷婷综合在线观看| 免费成人在线网站| 国产一区二区91| 成人精品gif动图一区| 成人av在线电影| 色播五月激情综合网| 欧美日韩国产经典色站一区二区三区| 在线播放91灌醉迷j高跟美女 | 久久久www成人免费无遮挡大片| 久久久久久久久免费| 亚洲视频在线观看一区| 午夜精品福利一区二区三区av | 一区二区三区在线视频免费观看| 亚洲自拍与偷拍| 美国十次综合导航| 成人黄色a**站在线观看| 欧美体内she精高潮| 日韩一区二区三区视频在线| 久久久www免费人成精品| 一区二区三区**美女毛片| 美女视频一区二区| 99久久99久久精品国产片果冻 | 国产亚洲精品7777| 一区二区三区国产精华| 黄色精品一二区| 欧美亚洲综合在线| 精品成人在线观看| 亚洲精品免费电影| 精品一区二区国语对白| 99国产精品国产精品久久| 欧美精品一二三| 欧美激情一区不卡| 免费高清在线一区| 一本一道久久a久久精品| 欧美成人三级在线| 亚洲高清免费在线| 国产精品一区二区久久不卡| 在线观看日韩高清av| 久久网站热最新地址| 夜色激情一区二区| 风间由美一区二区av101 | 亚洲激情中文1区| 国精品**一区二区三区在线蜜桃| 欧美性淫爽ww久久久久无| 2017欧美狠狠色| 日韩不卡一二三区| 色狠狠av一区二区三区| 日本一区二区三区四区在线视频| 污片在线观看一区二区| 99re6这里只有精品视频在线观看| 精品国产在天天线2019| 首页国产丝袜综合| 91黄色小视频| 国产精品精品国产色婷婷| 国产乱码精品一品二品| 欧美一区二区三区在线电影| 亚洲欧洲成人精品av97| 国产一区二区精品在线观看| 日韩视频在线你懂得| 五月天激情综合网| 欧美色欧美亚洲另类二区| 专区另类欧美日韩| 国产高清视频一区| 日韩精品一区二区三区视频播放 | 91丨porny丨蝌蚪视频| 日韩欧美国产三级| 亚洲成人精品一区二区| 91精彩视频在线| 亚洲欧美二区三区| 91视视频在线观看入口直接观看www| 久久久噜噜噜久久人人看 | 三级影片在线观看欧美日韩一区二区| 91啪亚洲精品| 中文字幕在线播放不卡一区| 国产.欧美.日韩| 中文成人av在线| 成人精品视频一区| 中文字幕亚洲在| 91碰在线视频| 亚洲五码中文字幕| 欧美狂野另类xxxxoooo| 午夜久久久久久| 日韩欧美一区二区三区在线| 九九热在线视频观看这里只有精品| 日韩美一区二区三区| 国产一区二区h| 国产精品理伦片| 一本色道a无线码一区v| 亚洲国产精品久久一线不卡| 欧美一区二区网站| 亚洲成av人片在www色猫咪| 欧美另类高清zo欧美| 亚洲综合区在线| 精品视频一区二区三区免费| 三级精品在线观看| 日韩精品一区二| 丁香婷婷综合色啪| 亚洲视频狠狠干| 欧美日韩精品欧美日韩精品一| 午夜精品久久久久久不卡8050| 日韩一区二区三区视频在线| 国产激情一区二区三区四区 | 香港成人在线视频| 日韩欧美在线影院| 国产精品羞羞答答xxdd| 日韩伦理av电影| 91精品国产综合久久久久久久 | 久久国产精品一区二区| 国产日韩精品一区| 欧洲一区在线电影| 美洲天堂一区二卡三卡四卡视频 |