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

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

?? engine.h

?? EmuNation的最初開放版本源代碼
?? H
?? 第 1 頁 / 共 3 頁
字號:
 * 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 * to zero and/or cmd_name set to NULL. */typedef struct ENGINE_CMD_DEFN_st	{	unsigned int cmd_num; /* The command number */	const char *cmd_name; /* The command name itself */	const char *cmd_desc; /* A short description of the command */	unsigned int cmd_flags; /* The input the command expects */	} ENGINE_CMD_DEFN;/* Generic function pointer */typedef int (*ENGINE_GEN_FUNC_PTR)();/* Generic function pointer taking no arguments */typedef int (*ENGINE_GEN_INT_FUNC_PTR)(ENGINE *);/* Specific control function pointer */typedef int (*ENGINE_CTRL_FUNC_PTR)(ENGINE *, int, long, void *, void (*f)());/* Generic load_key function pointer */typedef EVP_PKEY * (*ENGINE_LOAD_KEY_PTR)(ENGINE *, const char *,	UI_METHOD *ui_method, void *callback_data);/* These callback types are for an ENGINE's handler for cipher and digest logic. * These handlers have these prototypes; *   int foo(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); *   int foo(ENGINE *e, const EVP_MD **digest, const int **nids, int nid); * Looking at how to implement these handlers in the case of cipher support, if * the framework wants the EVP_CIPHER for 'nid', it will call; *   foo(e, &p_evp_cipher, NULL, nid);    (return zero for failure) * If the framework wants a list of supported 'nid's, it will call; *   foo(e, NULL, &p_nids, 0); (returns number of 'nids' or -1 for error) *//* Returns to a pointer to the array of supported cipher 'nid's. If the second * parameter is non-NULL it is set to the size of the returned array. */typedef int (*ENGINE_CIPHERS_PTR)(ENGINE *, const EVP_CIPHER **, const int **, int);typedef int (*ENGINE_DIGESTS_PTR)(ENGINE *, const EVP_MD **, const int **, int);/* STRUCTURE functions ... all of these functions deal with pointers to ENGINE * structures where the pointers have a "structural reference". This means that * their reference is to allowed access to the structure but it does not imply * that the structure is functional. To simply increment or decrement the * structural reference count, use ENGINE_by_id and ENGINE_free. NB: This is not * required when iterating using ENGINE_get_next as it will automatically * decrement the structural reference count of the "current" ENGINE and * increment the structural reference count of the ENGINE it returns (unless it * is NULL). *//* Get the first/last "ENGINE" type available. */ENGINE *ENGINE_get_first(void);ENGINE *ENGINE_get_last(void);/* Iterate to the next/previous "ENGINE" type (NULL = end of the list). */ENGINE *ENGINE_get_next(ENGINE *e);ENGINE *ENGINE_get_prev(ENGINE *e);/* Add another "ENGINE" type into the array. */int ENGINE_add(ENGINE *e);/* Remove an existing "ENGINE" type from the array. */int ENGINE_remove(ENGINE *e);/* Retrieve an engine from the list by its unique "id" value. */ENGINE *ENGINE_by_id(const char *id);/* Add all the built-in engines. */void ENGINE_load_openssl(void);void ENGINE_load_dynamic(void);void ENGINE_load_cswift(void);void ENGINE_load_chil(void);void ENGINE_load_atalla(void);void ENGINE_load_nuron(void);void ENGINE_load_ubsec(void);void ENGINE_load_aep(void);void ENGINE_load_sureware(void);void ENGINE_load_4758cca(void);void ENGINE_load_cryptodev(void);void ENGINE_load_builtin_engines(void);/* Get and set global flags (ENGINE_TABLE_FLAG_***) for the implementation * "registry" handling. */unsigned int ENGINE_get_table_flags(void);void ENGINE_set_table_flags(unsigned int flags);/* Manage registration of ENGINEs per "table". For each type, there are 3 * functions; *   ENGINE_register_***(e) - registers the implementation from 'e' (if it has one) *   ENGINE_unregister_***(e) - unregister the implementation from 'e' *   ENGINE_register_all_***() - call ENGINE_register_***() for each 'e' in the list * Cleanup is automatically registered from each table when required, so * ENGINE_cleanup() will reverse any "register" operations. */int ENGINE_register_RSA(ENGINE *e);void ENGINE_unregister_RSA(ENGINE *e);void ENGINE_register_all_RSA(void);int ENGINE_register_DSA(ENGINE *e);void ENGINE_unregister_DSA(ENGINE *e);void ENGINE_register_all_DSA(void);int ENGINE_register_DH(ENGINE *e);void ENGINE_unregister_DH(ENGINE *e);void ENGINE_register_all_DH(void);int ENGINE_register_RAND(ENGINE *e);void ENGINE_unregister_RAND(ENGINE *e);void ENGINE_register_all_RAND(void);int ENGINE_register_ciphers(ENGINE *e);void ENGINE_unregister_ciphers(ENGINE *e);void ENGINE_register_all_ciphers(void);int ENGINE_register_digests(ENGINE *e);void ENGINE_unregister_digests(ENGINE *e);void ENGINE_register_all_digests(void);/* These functions register all support from the above categories. Note, use of * these functions can result in static linkage of code your application may not * need. If you only need a subset of functionality, consider using more * selective initialisation. */int ENGINE_register_complete(ENGINE *e);int ENGINE_register_all_complete(void);/* Send parametrised control commands to the engine. The possibilities to send * down an integer, a pointer to data or a function pointer are provided. Any of * the parameters may or may not be NULL, depending on the command number. In * actuality, this function only requires a structural (rather than functional) * reference to an engine, but many control commands may require the engine be * functional. The caller should be aware of trying commands that require an * operational ENGINE, and only use functional references in such situations. */int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)());/* This function tests if an ENGINE-specific command is usable as a "setting". * Eg. in an application's config file that gets processed through * ENGINE_ctrl_cmd_string(). If this returns zero, it is not available to * ENGINE_ctrl_cmd_string(), only ENGINE_ctrl(). */int ENGINE_cmd_is_executable(ENGINE *e, int cmd);/* This function works like ENGINE_ctrl() with the exception of taking a * command name instead of a command number, and can handle optional commands. * See the comment on ENGINE_ctrl_cmd_string() for an explanation on how to * use the cmd_name and cmd_optional. */int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name,        long i, void *p, void (*f)(), int cmd_optional);/* This function passes a command-name and argument to an ENGINE. The cmd_name * is converted to a command number and the control command is called using * 'arg' as an argument (unless the ENGINE doesn't support such a command, in * which case no control command is called). The command is checked for input * flags, and if necessary the argument will be converted to a numeric value. If * cmd_optional is non-zero, then if the ENGINE doesn't support the given * cmd_name the return value will be success anyway. This function is intended * for applications to use so that users (or config files) can supply * engine-specific config data to the ENGINE at run-time to control behaviour of * specific engines. As such, it shouldn't be used for calling ENGINE_ctrl() * functions that return data, deal with binary data, or that are otherwise * supposed to be used directly through ENGINE_ctrl() in application code. Any * "return" data from an ENGINE_ctrl() operation in this function will be lost - * the return value is interpreted as failure if the return value is zero, * success otherwise, and this function returns a boolean value as a result. In * other words, vendors of 'ENGINE'-enabled devices should write ENGINE * implementations with parameterisations that work in this scheme, so that * compliant ENGINE-based applications can work consistently with the same * configuration for the same ENGINE-enabled devices, across applications. */int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,				int cmd_optional);/* These functions are useful for manufacturing new ENGINE structures. They * don't address reference counting at all - one uses them to populate an ENGINE * structure with personalised implementations of things prior to using it * directly or adding it to the builtin ENGINE list in OpenSSL. These are also * here so that the ENGINE structure doesn't have to be exposed and break binary * compatibility! */ENGINE *ENGINE_new(void);int ENGINE_free(ENGINE *e);int ENGINE_up_ref(ENGINE *e);int ENGINE_set_id(ENGINE *e, const char *id);int ENGINE_set_name(ENGINE *e, const char *name);int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth);int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth);int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth);int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth);int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f);int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f);int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f);int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f);int ENGINE_set_load_privkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpriv_f);int ENGINE_set_load_pubkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpub_f);int ENGINE_set_ciphers(ENGINE *e, ENGINE_CIPHERS_PTR f);int ENGINE_set_digests(ENGINE *e, ENGINE_DIGESTS_PTR f);int ENGINE_set_flags(ENGINE *e, int flags);int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns);/* These functions (and the "get" function lower down) allow control over any * per-structure ENGINE data. */int ENGINE_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,		CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg);/* This function cleans up anything that needs it. Eg. the ENGINE_add() function * automatically ensures the list cleanup function is registered to be called * from ENGINE_cleanup(). Similarly, all ENGINE_register_*** functions ensure * ENGINE_cleanup() will clean up after them. */void ENGINE_cleanup(void);/* These return values from within the ENGINE structure. These can be useful * with functional references as well as structural references - it depends * which you obtained. Using the result for functional purposes if you only * obtained a structural reference may be problematic! */const char *ENGINE_get_id(const ENGINE *e);const char *ENGINE_get_name(const ENGINE *e);const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e);const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e);const DH_METHOD *ENGINE_get_DH(const ENGINE *e);const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e);ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e);ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e);ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e);ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e);ENGINE_LOAD_KEY_PTR ENGINE_get_load_privkey_function(const ENGINE *e);ENGINE_LOAD_KEY_PTR ENGINE_get_load_pubkey_function(const ENGINE *e);ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e);ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e);const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid);const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid);const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e);int ENGINE_get_flags(const ENGINE *e);void *ENGINE_get_ex_data(const ENGINE *e, int idx);/* FUNCTIONAL functions. These functions deal with ENGINE structures * that have (or will) be initialised for use. Broadly speaking, the * structural functions are useful for iterating the list of available * engine types, creating new engine types, and other "list" operations. * These functions actually deal with ENGINEs that are to be used. As * such these functions can fail (if applicable) when particular * engines are unavailable - eg. if a hardware accelerator is not * attached or not functioning correctly. Each ENGINE has 2 reference * counts; structural and functional. Every time a functional reference * is obtained or released, a corresponding structural reference is * automatically obtained or released too. *//* Initialise a engine type for use (or up its reference count if it's * already in use). This will fail if the engine is not currently * operational and cannot initialise. */int ENGINE_init(ENGINE *e);/* Free a functional reference to a engine type. This does not require * a corresponding call to ENGINE_free as it also releases a structural * reference. */int ENGINE_finish(ENGINE *e);/* The following functions handle keys that are stored in some secondary * location, handled by the engine.  The storage may be on a card or * whatever. */EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区四区激情| 日韩avvvv在线播放| 成人国产在线观看| 国产精品伦一区| 91小宝寻花一区二区三区| 亚洲一区二区精品久久av| 欧美三级中文字幕在线观看| 日日夜夜精品视频免费| 久久久久久**毛片大全| eeuss鲁片一区二区三区| 亚洲激情一二三区| 日韩一区二区三区视频| 国产激情一区二区三区四区 | 北条麻妃国产九九精品视频| 最新成人av在线| 欧美日韩午夜影院| 黄色资源网久久资源365| 亚洲色图欧美在线| 69堂国产成人免费视频| 国产成人午夜99999| 亚洲一区二区三区中文字幕| 日韩精品一区二区三区四区| 99精品在线观看视频| 日韩电影在线观看网站| 国产精品成人在线观看| 色久优优欧美色久优优| 久久精品国产一区二区三| 中文乱码免费一区二区| 7777女厕盗摄久久久| 处破女av一区二区| 日本最新不卡在线| 亚洲女同一区二区| 久久亚区不卡日本| 欧美日韩1234| www.亚洲国产| 国产一区二区三区黄视频 | 亚洲成人av一区| 国产亚洲女人久久久久毛片| 欧美剧在线免费观看网站| 高清久久久久久| 久久精品国产一区二区三| 亚洲男人天堂一区| 国产亚洲精久久久久久| 欧美一区二区免费| 欧美性受xxxx黑人xyx性爽| 国产传媒欧美日韩成人| 日韩国产欧美在线观看| 亚洲综合色丁香婷婷六月图片| 久久久久久久久久久电影| 在线电影院国产精品| 91麻豆视频网站| 成人永久免费视频| 国产一区在线观看麻豆| 日本成人在线不卡视频| 亚洲高清免费观看高清完整版在线观看| 国产偷v国产偷v亚洲高清| 精品久久久久99| 在线91免费看| 欧美高清视频一二三区| 欧美日免费三级在线| 91老司机福利 在线| 99久久久精品| 9l国产精品久久久久麻豆| 国产精品18久久久久久久久| 久久精品国产色蜜蜜麻豆| 蜜臀av国产精品久久久久| 亚洲图片欧美综合| 亚洲动漫第一页| 亚洲成av人片一区二区梦乃| 亚洲午夜久久久久久久久电影院 | 精品国一区二区三区| 欧美一级高清片| 日韩欧美亚洲一区二区| 欧美一区午夜精品| 日韩欧美一二三四区| 欧美大片免费久久精品三p| 日韩欧美中文字幕一区| 日韩一区二区电影网| 欧美成va人片在线观看| 亚洲成人午夜影院| 五月激情综合色| 日本欧美一区二区| 久久福利资源站| 国产一区免费电影| 懂色av一区二区在线播放| 成人app网站| 色网站国产精品| 欧美日韩国产一级| 精品少妇一区二区三区在线播放 | 99精品桃花视频在线观看| 成人18精品视频| 色哟哟国产精品免费观看| 在线观看亚洲专区| 日韩一级欧美一级| xvideos.蜜桃一区二区| 中文在线一区二区| 亚洲综合精品自拍| 麻豆成人久久精品二区三区红| 国产真实乱偷精品视频免| 粉嫩绯色av一区二区在线观看| 91麻豆自制传媒国产之光| 7777精品伊人久久久大香线蕉完整版| 日韩一区二区免费电影| 国产偷国产偷亚洲高清人白洁| 亚洲欧美成人一区二区三区| 亚洲va天堂va国产va久| 国产原创一区二区| 色综合欧美在线视频区| 欧美va亚洲va香蕉在线| 国产精品国产a| 日韩精品一二三四| 成人a区在线观看| 欧美久久久久中文字幕| 国产肉丝袜一区二区| 夜夜操天天操亚洲| 国产一区二区三区在线观看精品| 北条麻妃国产九九精品视频| 欧美一三区三区四区免费在线看| 中文字幕二三区不卡| 婷婷综合在线观看| 成人免费不卡视频| 欧美一区二区三区的| 中文字幕在线观看一区二区| 午夜激情一区二区| 成人av在线网| 欧美精品一区二区久久久| 一级中文字幕一区二区| 国产精品一二三四| 欧美一区二区三区免费视频| 日韩精品一二区| 91精品国产综合久久久久久| 国产亚洲欧洲997久久综合| 亚洲网友自拍偷拍| 丁香五精品蜜臀久久久久99网站| 欧美日韩一本到| 最新中文字幕一区二区三区| 久久99国产精品久久| 欧美日韩中文国产| 综合自拍亚洲综合图不卡区| 欧美成人精品1314www| 欧美日韩精品一二三区| 最新中文字幕一区二区三区| 国产精品1区2区3区在线观看| 欧美精品一二三| 亚洲影院理伦片| 一本一道久久a久久精品综合蜜臀| 2020国产精品久久精品美国| 日韩av电影天堂| 欧美日韩亚洲综合| 亚洲精品第一国产综合野| av资源网一区| 国产精品理伦片| 丰满少妇在线播放bd日韩电影| 日韩精品一区二区三区在线观看| 天天影视色香欲综合网老头| 欧美在线你懂得| 亚洲精品免费看| 亚洲老司机在线| 在线观看三级视频欧美| 三级在线观看一区二区| 欧美电影免费观看高清完整版在线| 免费在线观看一区二区三区| 精品88久久久久88久久久| 丁香啪啪综合成人亚洲小说| 玉足女爽爽91| 久久综合九色综合欧美亚洲| 国产精品一区二区在线观看不卡| 久久精品视频在线看| 色综合一个色综合亚洲| 国内精品久久久久影院色| 亚洲人一二三区| 欧美电影免费提供在线观看| 北岛玲一区二区三区四区| 日韩国产欧美在线观看| 国产欧美一区二区三区在线老狼| 欧美午夜精品一区二区蜜桃| 老司机精品视频导航| 看片的网站亚洲| 国产女主播视频一区二区| 久久亚洲影视婷婷| 欧美精品第一页| 日韩精品视频网站| 国产精品日产欧美久久久久| 精品视频一区二区不卡| 91色.com| 精品国产乱码久久久久久免费| 日本中文字幕不卡| 51精品国自产在线| 亚洲高清免费视频| 91福利在线免费观看| 日韩极品在线观看| 久久这里只有精品首页| 成人国产在线观看| 亚洲第一成年网| 久久久亚洲午夜电影| 91美女片黄在线观看91美女| 日本色综合中文字幕| 国产精品美女www爽爽爽| 欧美在线|欧美| 国产在线视频一区二区|