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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? engine.h

?? mediastreamer2是開源的網(wǎng)絡(luò)傳輸媒體流的庫
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* 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,	UI_METHOD *ui_method, void *callback_data);EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,	UI_METHOD *ui_method, void *callback_data);/* This returns a pointer for the current ENGINE structure that * is (by default) performing any RSA operations. The value returned * is an incremented reference, so it should be free'd (ENGINE_finish) * before it is discarded. */ENGINE *ENGINE_get_default_RSA(void);/* Same for the other "methods" */ENGINE *ENGINE_get_default_DSA(void);ENGINE *ENGINE_get_default_ECDH(void);ENGINE *ENGINE_get_default_ECDSA(void);ENGINE *ENGINE_get_default_DH(void);ENGINE *ENGINE_get_default_RAND(void);/* These functions can be used to get a functional reference to perform * ciphering or digesting corresponding to "nid". */ENGINE *ENGINE_get_cipher_engine(int nid);ENGINE *ENGINE_get_digest_engine(int nid);/* This sets a new default ENGINE structure for performing RSA * operations. If the result is non-zero (success) then the ENGINE * structure will have had its reference count up'd so the caller * should still free their own reference 'e'. */int ENGINE_set_default_RSA(ENGINE *e);int ENGINE_set_default_string(ENGINE *e, const char *def_list);/* Same for the other "methods" */int ENGINE_set_default_DSA(ENGINE *e);int ENGINE_set_default_ECDH(ENGINE *e);int ENGINE_set_default_ECDSA(ENGINE *e);int ENGINE_set_default_DH(ENGINE *e);int ENGINE_set_default_RAND(ENGINE *e);int ENGINE_set_default_ciphers(ENGINE *e);int ENGINE_set_default_digests(ENGINE *e);/* The combination "set" - the flags are bitwise "OR"d from the * ENGINE_METHOD_*** defines above. As with the "ENGINE_register_complete()" * function, this function can result in unnecessary static linkage. If your * application requires only specific functionality, consider using more * selective functions. */int ENGINE_set_default(ENGINE *e, unsigned int flags);void ENGINE_add_conf_module(void);/* Deprecated functions ... *//* int ENGINE_clear_defaults(void); *//**************************//* DYNAMIC ENGINE SUPPORT *//**************************//* Binary/behaviour compatibility levels */#define OSSL_DYNAMIC_VERSION		(unsigned long)0x00020000/* Binary versions older than this are too old for us (whether we're a loader or * a loadee) */#define OSSL_DYNAMIC_OLDEST		(unsigned long)0x00020000/* When compiling an ENGINE entirely as an external shared library, loadable by * the "dynamic" ENGINE, these types are needed. The 'dynamic_fns' structure * type provides the calling application's (or library's) error functionality * and memory management function pointers to the loaded library. These should * be used/set in the loaded library code so that the loading application's * 'state' will be used/changed in all operations. The 'static_state' pointer * allows the loaded library to know if it shares the same static data as the * calling application (or library), and thus whether these callbacks need to be * set or not. */typedef void *(*dyn_MEM_malloc_cb)(size_t);typedef void *(*dyn_MEM_realloc_cb)(void *, size_t);typedef void (*dyn_MEM_free_cb)(void *);typedef struct st_dynamic_MEM_fns {	dyn_MEM_malloc_cb			malloc_cb;	dyn_MEM_realloc_cb			realloc_cb;	dyn_MEM_free_cb				free_cb;	} dynamic_MEM_fns;/* FIXME: Perhaps the memory and locking code (crypto.h) should declare and use * these types so we (and any other dependant code) can simplify a bit?? */typedef void (*dyn_lock_locking_cb)(int,int,const char *,int);typedef int (*dyn_lock_add_lock_cb)(int*,int,int,const char *,int);typedef struct CRYPTO_dynlock_value *(*dyn_dynlock_create_cb)(						const char *,int);typedef void (*dyn_dynlock_lock_cb)(int,struct CRYPTO_dynlock_value *,						const char *,int);typedef void (*dyn_dynlock_destroy_cb)(struct CRYPTO_dynlock_value *,						const char *,int);typedef struct st_dynamic_LOCK_fns {	dyn_lock_locking_cb			lock_locking_cb;	dyn_lock_add_lock_cb			lock_add_lock_cb;	dyn_dynlock_create_cb			dynlock_create_cb;	dyn_dynlock_lock_cb			dynlock_lock_cb;	dyn_dynlock_destroy_cb			dynlock_destroy_cb;	} dynamic_LOCK_fns;/* The top-level structure */typedef struct st_dynamic_fns {	void 					*static_state;	const ERR_FNS				*err_fns;	const CRYPTO_EX_DATA_IMPL		*ex_data_fns;	dynamic_MEM_fns				mem_fns;	dynamic_LOCK_fns			lock_fns;	} dynamic_fns;/* The version checking function should be of this prototype. NB: The * ossl_version value passed in is the OSSL_DYNAMIC_VERSION of the loading code. * If this function returns zero, it indicates a (potential) version * incompatibility and the loaded library doesn't believe it can proceed. * Otherwise, the returned value is the (latest) version supported by the * loading library. The loader may still decide that the loaded code's version * is unsatisfactory and could veto the load. The function is expected to * be implemented with the symbol name "v_check", and a default implementation * can be fully instantiated with IMPLEMENT_DYNAMIC_CHECK_FN(). */typedef unsigned long (*dynamic_v_check_fn)(unsigned long ossl_version);#define IMPLEMENT_DYNAMIC_CHECK_FN() \	unsigned long v_check(unsigned long v) { \		if(v >= OSSL_DYNAMIC_OLDEST) return OSSL_DYNAMIC_VERSION; \		return 0; }/* This function is passed the ENGINE structure to initialise with its own * function and command settings. It should not adjust the structural or * functional reference counts. If this function returns zero, (a) the load will * be aborted, (b) the previous ENGINE state will be memcpy'd back onto the * structure, and (c) the shared library will be unloaded. So implementations * should do their own internal cleanup in failure circumstances otherwise they * could leak. The 'id' parameter, if non-NULL, represents the ENGINE id that * the loader is looking for. If this is NULL, the shared library can choose to * return failure or to initialise a 'default' ENGINE. If non-NULL, the shared * library must initialise only an ENGINE matching the passed 'id'. The function * is expected to be implemented with the symbol name "bind_engine". A standard * implementation can be instantiated with IMPLEMENT_DYNAMIC_BIND_FN(fn) where * the parameter 'fn' is a callback function that populates the ENGINE structure * and returns an int value (zero for failure). 'fn' should have prototype; *    [static] int fn(ENGINE *e, const char *id); */typedef int (*dynamic_bind_engine)(ENGINE *e, const char *id,				const dynamic_fns *fns);#define IMPLEMENT_DYNAMIC_BIND_FN(fn) \	int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) { \		if(ENGINE_get_static_state() == fns->static_state) goto skip_cbs; \		if(!CRYPTO_set_mem_functions(fns->mem_fns.malloc_cb, \			fns->mem_fns.realloc_cb, fns->mem_fns.free_cb)) \			return 0; \		CRYPTO_set_locking_callback(fns->lock_fns.lock_locking_cb); \		CRYPTO_set_add_lock_callback(fns->lock_fns.lock_add_lock_cb); \		CRYPTO_set_dynlock_create_callback(fns->lock_fns.dynlock_create_cb); \		CRYPTO_set_dynlock_lock_callback(fns->lock_fns.dynlock_lock_cb); \		CRYPTO_set_dynlock_destroy_callback(fns->lock_fns.dynlock_destroy_cb); \		if(!CRYPTO_set_ex_data_implementation(fns->ex_data_fns)) \			return 0; \		if(!ERR_set_implementation(fns->err_fns)) return 0; \	skip_cbs: \		if(!fn(e,id)) return 0; \		return 1; }/* If the loading application (or library) and the loaded ENGINE library share * the same static data (eg. they're both dynamically linked to the same * libcrypto.so) we need a way to avoid trying to set system callbacks - this * would fail, and for the same reason that it's unnecessary to try. If the * loaded ENGINE has (or gets from through the loader) its own copy of the * libcrypto static data, we will need to set the callbacks. The easiest way to * detect this is to have a function that returns a pointer to some static data * and let the loading application and loaded ENGINE compare their respective * values. */void *ENGINE_get_static_state(void);#if defined(__OpenBSD__) || defined(__FreeBSD__)void ENGINE_setup_bsd_cryptodev(void);#endif/* BEGIN ERROR CODES *//* The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */void ERR_load_ENGINE_strings(void);/* Error codes for the ENGINE functions. *//* Function codes. */#define ENGINE_F_DYNAMIC_CTRL				 180#define ENGINE_F_DYNAMIC_GET_DATA_CTX			 181#define ENGINE_F_DYNAMIC_LOAD				 182#define ENGINE_F_DYNAMIC_SET_DATA_CTX			 183#define ENGINE_F_ENGINE_ADD				 105#define ENGINE_F_ENGINE_BY_ID				 106#define ENGINE_F_ENGINE_CMD_IS_EXECUTABLE		 170#define ENGINE_F_ENGINE_CTRL				 142#define ENGINE_F_ENGINE_CTRL_CMD			 178#define ENGINE_F_ENGINE_CTRL_CMD_STRING			 171#define ENGINE_F_ENGINE_FINISH				 107#define ENGINE_F_ENGINE_FREE_UTIL			 108#define ENGINE_F_ENGINE_GET_CIPHER			 185#define ENGINE_F_ENGINE_GET_DEFAULT_TYPE		 177#define ENGINE_F_ENGINE_GET_DIGEST			 186#define ENGINE_F_ENGINE_GET_NEXT			 115#define ENGINE_F_ENGINE_GET_PREV			 116#define ENGINE_F_ENGINE_INIT				 119#define ENGINE_F_ENGINE_LIST_ADD			 120#define ENGINE_F_ENGINE_LIST_REMOVE			 121#define ENGINE_F_ENGINE_LOAD_PRIVATE_KEY		 150#define ENGINE_F_ENGINE_LOAD_PUBLIC_KEY			 151#define ENGINE_F_ENGINE_NEW				 122#define ENGINE_F_ENGINE_REMOVE				 123#define ENGINE_F_ENGINE_SET_DEFAULT_STRING		 189#define ENGINE_F_ENGINE_SET_DEFAULT_TYPE		 126#define ENGINE_F_ENGINE_SET_ID				 129#define ENGINE_F_ENGINE_SET_NAME			 130#define ENGINE_F_ENGINE_TABLE_REGISTER			 184#define ENGINE_F_ENGINE_UNLOAD_KEY			 152#define ENGINE_F_ENGINE_UNLOCKED_FINISH			 191#define ENGINE_F_ENGINE_UP_REF				 190#define ENGINE_F_INT_CTRL_HELPER			 172#define ENGINE_F_INT_ENGINE_CONFIGURE			 188#define ENGINE_F_INT_ENGINE_MODULE_INIT			 187#define ENGINE_F_LOG_MESSAGE				 141/* Reason codes. */#define ENGINE_R_ALREADY_LOADED				 100#define ENGINE_R_ARGUMENT_IS_NOT_A_NUMBER		 133#define ENGINE_R_CMD_NOT_EXECUTABLE			 134#define ENGINE_R_COMMAND_TAKES_INPUT			 135#define ENGINE_R_COMMAND_TAKES_NO_INPUT			 136#define ENGINE_R_CONFLICTING_ENGINE_ID			 103#define ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED		 119#define ENGINE_R_DH_NOT_IMPLEMENTED			 139#define ENGINE_R_DSA_NOT_IMPLEMENTED			 140#define ENGINE_R_DSO_FAILURE				 104#define ENGINE_R_DSO_NOT_FOUND				 132#define ENGINE_R_ENGINES_SECTION_ERROR			 148#define ENGINE_R_ENGINE_IS_NOT_IN_LIST			 105#define ENGINE_R_ENGINE_SECTION_ERROR			 149#define ENGINE_R_FAILED_LOADING_PRIVATE_KEY		 128#define ENGINE_R_FAILED_LOADING_PUBLIC_KEY		 129#define ENGINE_R_FINISH_FAILED				 106#define ENGINE_R_GET_HANDLE_FAILED			 107#define ENGINE_R_ID_OR_NAME_MISSING			 108#define ENGINE_R_INIT_FAILED				 109#define ENGINE_R_INTERNAL_LIST_ERROR			 110#define ENGINE_R_INVALID_ARGUMENT			 143#define ENGINE_R_INVALID_CMD_NAME			 137#define ENGINE_R_INVALID_CMD_NUMBER			 138#define ENGINE_R_INVALID_INIT_VALUE			 151#define ENGINE_R_INVALID_STRING				 150#define ENGINE_R_NOT_INITIALISED			 117#define ENGINE_R_NOT_LOADED				 112#define ENGINE_R_NO_CONTROL_FUNCTION			 120#define ENGINE_R_NO_INDEX				 144#define ENGINE_R_NO_LOAD_FUNCTION			 125#define ENGINE_R_NO_REFERENCE				 130#define ENGINE_R_NO_SUCH_ENGINE				 116#define ENGINE_R_NO_UNLOAD_FUNCTION			 126#define ENGINE_R_PROVIDE_PARAMETERS			 113#define ENGINE_R_RSA_NOT_IMPLEMENTED			 141#define ENGINE_R_UNIMPLEMENTED_CIPHER			 146#define ENGINE_R_UNIMPLEMENTED_DIGEST			 147#define ENGINE_R_VERSION_INCOMPATIBILITY		 145#ifdef  __cplusplus}#endif#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲va综合人人澡精品| 国产午夜久久久久| 国产一区二区三区四区在线观看| 亚洲丝袜美腿综合| 日韩美女主播在线视频一区二区三区 | 久久婷婷国产综合国色天香| www.av精品| 麻豆精品视频在线观看免费| 亚洲人成电影网站色mp4| 精品久久一区二区| 日本高清视频一区二区| 国产精品一区二区久久精品爱涩| 亚洲一区二区三区中文字幕| 欧美国产一区在线| 日韩欧美激情在线| 欧美日韩亚洲综合在线| 91香蕉视频mp4| 国产在线日韩欧美| 美国毛片一区二区三区| 亚洲一区中文在线| 亚洲日本一区二区三区| 日本一区二区成人| 久久久精品免费免费| 日韩免费看的电影| 欧美一区二区日韩| 欧美日韩成人一区二区| 在线观看日韩电影| 色综合色狠狠综合色| 成人免费黄色大片| 国产精品影视网| 国内精品写真在线观看| 青娱乐精品视频| 日韩国产欧美视频| 午夜一区二区三区在线观看| 一区二区三区免费网站| 中文字幕一区在线| 国产精品网站在线| 中文字幕乱码亚洲精品一区| 久久午夜色播影院免费高清| 日韩美女天天操| 精品人在线二区三区| 日韩小视频在线观看专区| 欧美精品三级在线观看| 在线观看国产日韩| 欧美日韩亚洲高清一区二区| 在线观看日产精品| 欧美日韩一级二级| 欧美精品777| 911国产精品| 日韩欧美综合一区| 精品1区2区在线观看| 久久久电影一区二区三区| 久久精品视频免费观看| 国产精品麻豆99久久久久久| 国产精品毛片久久久久久| 亚洲欧美在线视频| 亚洲午夜在线电影| 日韩成人精品在线观看| 精久久久久久久久久久| 久久机这里只有精品| 精品亚洲国产成人av制服丝袜| 韩国毛片一区二区三区| 国产成人丝袜美腿| 91性感美女视频| 欧美高清视频一二三区 | 国产成人av电影| 99久久久免费精品国产一区二区 | 成人美女在线观看| 欧美最新大片在线看| 欧美一区二区三区在线观看视频| 51午夜精品国产| 久久久91精品国产一区二区三区| 中文字幕一区在线| 日韩成人午夜精品| 大胆欧美人体老妇| 欧美性猛交xxxx黑人交| 日韩小视频在线观看专区| 日本一区二区三区四区在线视频| 亚洲欧美aⅴ...| 免费看日韩精品| jlzzjlzz国产精品久久| 欧美性感一类影片在线播放| 精品日韩一区二区三区免费视频| 国产精品热久久久久夜色精品三区| 一区二区三区四区乱视频| 免费一级片91| 成人精品在线视频观看| 欧美日韩一区久久| 国产亚洲综合在线| 一区二区免费看| 九九**精品视频免费播放| 色视频欧美一区二区三区| 日韩欧美在线123| 成人欧美一区二区三区| 免费成人美女在线观看.| 91丝袜呻吟高潮美腿白嫩在线观看| 欧美一区二区三区免费视频| 国产精品美女久久久久久2018 | 亚洲国产精品v| 午夜精品影院在线观看| 成人综合在线观看| 日韩限制级电影在线观看| 亚洲手机成人高清视频| 精品一区二区久久久| 欧美午夜在线观看| 国产精品无人区| 久久99久久精品| 欧美精品aⅴ在线视频| 亚洲欧美日韩在线播放| 国产麻豆视频一区二区| 91精品福利在线一区二区三区| 亚洲欧美色一区| 国产成人夜色高潮福利影视| 欧美色综合天天久久综合精品| 中文字幕欧美国产| 国内成人自拍视频| 欧美大片免费久久精品三p| 亚洲一级片在线观看| 99re热这里只有精品视频| 国产性做久久久久久| 精品一区二区在线视频| 9191久久久久久久久久久| 亚洲欧美日韩国产成人精品影院 | 精品福利一区二区三区免费视频| 亚洲国产wwwccc36天堂| 99久久精品情趣| 久久奇米777| 国内精品免费在线观看| 日韩免费高清电影| 看电视剧不卡顿的网站| 在线成人小视频| 亚洲高清免费在线| 欧亚洲嫩模精品一区三区| 亚洲欧美日韩在线| 色婷婷av一区二区| 亚洲精品成人天堂一二三| 91小视频免费看| 亚洲男人天堂av| 在线亚洲精品福利网址导航| 亚洲精品国产精华液| 色婷婷av一区二区三区大白胸| 中文字幕在线观看不卡| av在线播放不卡| 亚洲精品视频一区二区| 色婷婷激情综合| 亚洲国产精品一区二区www在线| 91久久国产最好的精华液| 悠悠色在线精品| 欧美日韩成人综合天天影院 | 国产69精品久久99不卡| 中文子幕无线码一区tr| 99riav久久精品riav| 亚洲自拍偷拍网站| 欧美日韩免费高清一区色橹橹| 视频一区欧美精品| 日韩欧美一区二区免费| 国产毛片一区二区| 国产精品成人一区二区三区夜夜夜| 成人黄页在线观看| 亚洲欧美激情小说另类| 在线不卡免费av| 韩日精品视频一区| 国产精品国产三级国产普通话三级| 色综合色综合色综合| 天天综合天天做天天综合| 精品国产污网站| 不卡的av中国片| 亚洲国产综合人成综合网站| 欧美一区二区三区在线观看视频| 国产麻豆精品95视频| 成人免费一区二区三区视频 | 欧美三级三级三级| 久久精品久久精品| 成人欧美一区二区三区白人| 欧美日韩免费视频| 国模娜娜一区二区三区| 亚洲欧美激情小说另类| 欧美一区二区人人喊爽| 丰满少妇在线播放bd日韩电影| 一区二区三区四区视频精品免费 | 国产一区二区三区最好精华液| 综合久久久久综合| 欧美一二三区精品| 91亚洲大成网污www| 免费久久精品视频| 综合在线观看色| 在线播放91灌醉迷j高跟美女| 国产在线一区观看| 亚洲午夜日本在线观看| 26uuu国产在线精品一区二区| 91免费精品国自产拍在线不卡| 人妖欧美一区二区| 亚洲日本在线观看| 精品捆绑美女sm三区| 色综合久久88色综合天天6 | 日本成人中文字幕在线视频| 国产午夜精品美女毛片视频| 欧美日本韩国一区二区三区视频 | 亚洲视频在线观看三级| 欧美成人r级一区二区三区|