亚洲欧美第一页_禁久久精品乱码_粉嫩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丝袜高跟美女视频| 日韩欧美一区二区久久婷婷| 国产精品久久久久一区二区三区 | 亚洲国产电影在线观看| 亚洲一区二区高清| 97久久精品人人做人人爽| 精品三级av在线| 亚洲成av人片在线观看无码| 99久久99久久综合| 国产女主播视频一区二区| 免费成人你懂的| 欧美日韩精品系列| 亚洲一区国产视频| 91亚洲精品一区二区乱码| 久久久久久久电影| 久久99精品久久久久久国产越南| 欧美亚洲一区二区三区四区| 亚洲欧美在线高清| 高清视频一区二区| 国产视频在线观看一区二区三区 | 成人网在线免费视频| 精品福利在线导航| 日韩vs国产vs欧美| 欧美日韩黄色影视| 亚洲国产欧美一区二区三区丁香婷 | 国产jizzjizz一区二区| 精品日产卡一卡二卡麻豆| 日本女人一区二区三区| 欧美人与性动xxxx| 午夜成人免费电影| 欧美精品色一区二区三区| 亚洲一级二级在线| 欧美人与z0zoxxxx视频| 日韩精品久久理论片| 欧美另类高清zo欧美| 性感美女极品91精品| 7777精品伊人久久久大香线蕉| 亚洲成精国产精品女| 欧美挠脚心视频网站| 日韩不卡一区二区三区| 欧美成人精品3d动漫h| 精品一区二区影视| 久久伊人蜜桃av一区二区| 国产精品主播直播| 亚洲国产精品二十页| jizzjizzjizz欧美| 亚洲精品欧美综合四区| 欧美自拍丝袜亚洲| 男女激情视频一区| 国产日韩av一区| 色综合视频一区二区三区高清| 亚洲成人免费视频| 欧美成人国产一区二区| 国产.欧美.日韩| 亚洲永久免费av| 欧美电影免费观看高清完整版在线| 国产一区二区三区四区五区美女| 日本一区二区三区高清不卡| 99re视频精品| 日韩专区在线视频| 久久精品男人的天堂| 欧洲色大大久久| 久草中文综合在线| 18成人在线视频| 欧美一级专区免费大片| 风流少妇一区二区| 亚洲电影第三页| 国产欧美一区二区三区在线老狼| 91黄色在线观看| 精品午夜一区二区三区在线观看| 亚洲欧洲国产日韩| 日韩视频一区二区三区在线播放 | 日本不卡一区二区三区| 久久精品日产第一区二区三区高清版| 色综合久久久久久久久久久| 精品制服美女丁香| 亚洲在线观看免费视频| 国产欧美精品区一区二区三区 | 亚洲成人福利片| 国产人成一区二区三区影院| 欧美色图12p| 成人免费视频播放| 日本亚洲免费观看| 亚洲精品国久久99热| 久久先锋资源网| 7777精品伊人久久久大香线蕉完整版| 成人黄色a**站在线观看| 日韩高清在线一区| 亚洲精品videosex极品| 国产亚洲午夜高清国产拍精品 | 五月激情综合色| 国产精品欧美精品| 精品欧美乱码久久久久久| 91福利视频久久久久| 成人毛片视频在线观看| 国产在线精品一区二区| 午夜影院久久久| 亚洲制服丝袜在线| 亚洲天堂网中文字| 国产精品丝袜一区| 久久久亚洲国产美女国产盗摄| 日韩一级视频免费观看在线| 欧美亚洲高清一区二区三区不卡| av成人老司机| 成人福利视频网站| 成人免费视频视频| 国产成人免费在线视频| 极品少妇一区二区三区精品视频 | 国产成人av自拍| 玖玖九九国产精品| 免费观看30秒视频久久| 日韩黄色免费网站| 日本女优在线视频一区二区| 日韩高清电影一区| 日韩黄色免费网站| 久久99深爱久久99精品| 国产自产高清不卡| 国产精品亚洲一区二区三区在线 | 国产亚洲女人久久久久毛片| 国产午夜精品久久久久久免费视 | 亚洲国产一二三| 亚洲一区二区三区四区在线观看 | 久久精品国产一区二区三| 久久精品国产亚洲高清剧情介绍 | 色香色香欲天天天影视综合网| 9人人澡人人爽人人精品| 91一区在线观看| 在线观看一区二区视频| 欧美女孩性生活视频| 日韩视频一区二区三区 | 日韩亚洲欧美中文三级| www激情久久| 国产精品视频第一区| 一区二区三区中文在线| 丝袜a∨在线一区二区三区不卡 | 亚洲一区二区高清| 蜜臀av一区二区在线观看| 国产一区欧美二区| 97se亚洲国产综合在线| 欧美日韩小视频| 久久蜜桃av一区精品变态类天堂| 亚洲欧洲av另类| 亚洲丰满少妇videoshd| 激情欧美日韩一区二区| 9色porny自拍视频一区二区| 精品视频999| 久久久噜噜噜久久人人看 | 国产视频视频一区| 亚洲女人****多毛耸耸8| 日韩精品一级中文字幕精品视频免费观看| 蜜臀av性久久久久av蜜臀妖精| 国产精品亚洲专一区二区三区| 91久久香蕉国产日韩欧美9色| 欧美一区二区视频在线观看| 国产欧美精品一区| 日韩av二区在线播放| 9i看片成人免费高清| 欧美成人video| 亚洲欧美日韩一区| 激情伊人五月天久久综合| 欧美揉bbbbb揉bbbbb| 国产亚洲综合在线| 美腿丝袜亚洲综合| 91精品福利视频| 国产丝袜在线精品| 蜜臀av性久久久久蜜臀aⅴ | 丁香另类激情小说| 欧美一级高清片| 一区二区三区日韩| 国产精品亚洲一区二区三区在线| 欧美日韩夫妻久久| 亚洲伦理在线精品| 成人综合婷婷国产精品久久 | 久草在线在线精品观看| 欧美日韩午夜精品| 亚洲欧美视频在线观看| 国产精品伊人色| 日韩欧美视频一区| 婷婷成人激情在线网| 91麻豆精品秘密| 8x福利精品第一导航| 91麻豆视频网站| 久久综合九色综合欧美亚洲| 同产精品九九九| 色综合色综合色综合色综合色综合| 久久久99久久| 黄色资源网久久资源365| 3atv一区二区三区| 亚洲国产日韩av| 色拍拍在线精品视频8848| 国产精品久久毛片a| 国产激情91久久精品导航| 日韩亚洲欧美一区| 美女看a上一区| 日韩视频一区二区在线观看| 日韩av网站在线观看| 日韩视频免费观看高清完整版|