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

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

?? engine.pod

?? OpenSSL 0.9.8k 最新版OpenSSL
?? POD
?? 第 1 頁 / 共 2 頁
字號:
=pod=head1 NAMEengine - ENGINE cryptographic module support=head1 SYNOPSIS #include <openssl/engine.h> ENGINE *ENGINE_get_first(void); ENGINE *ENGINE_get_last(void); ENGINE *ENGINE_get_next(ENGINE *e); ENGINE *ENGINE_get_prev(ENGINE *e); int ENGINE_add(ENGINE *e); int ENGINE_remove(ENGINE *e); ENGINE *ENGINE_by_id(const char *id); int ENGINE_init(ENGINE *e); int ENGINE_finish(ENGINE *e); void ENGINE_load_openssl(void); void ENGINE_load_dynamic(void); #ifndef OPENSSL_NO_STATIC_ENGINE void ENGINE_load_4758cca(void); void ENGINE_load_aep(void); void ENGINE_load_atalla(void); void ENGINE_load_chil(void); void ENGINE_load_cswift(void); void ENGINE_load_gmp(void); void ENGINE_load_nuron(void); void ENGINE_load_sureware(void); void ENGINE_load_ubsec(void); #endif void ENGINE_load_cryptodev(void); void ENGINE_load_builtin_engines(void); void ENGINE_cleanup(void); ENGINE *ENGINE_get_default_RSA(void); 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); ENGINE *ENGINE_get_cipher_engine(int nid); ENGINE *ENGINE_get_digest_engine(int nid); int ENGINE_set_default_RSA(ENGINE *e); 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); int ENGINE_set_default_string(ENGINE *e, const char *list); int ENGINE_set_default(ENGINE *e, unsigned int flags); unsigned int ENGINE_get_table_flags(void); void ENGINE_set_table_flags(unsigned int flags); 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_ECDH(ENGINE *e); void ENGINE_unregister_ECDH(ENGINE *e); void ENGINE_register_all_ECDH(void); int ENGINE_register_ECDSA(ENGINE *e); void ENGINE_unregister_ECDSA(ENGINE *e); void ENGINE_register_all_ECDSA(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_STORE(ENGINE *e); void ENGINE_unregister_STORE(ENGINE *e); void ENGINE_register_all_STORE(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); int ENGINE_register_complete(ENGINE *e); int ENGINE_register_all_complete(void); int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)); int ENGINE_cmd_is_executable(ENGINE *e, int cmd); int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name,         long i, void *p, void (*f)(void), int cmd_optional); int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,         int cmd_optional); int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg); void *ENGINE_get_ex_data(const ENGINE *e, int idx); 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); 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_ECDH(ENGINE *e, const ECDH_METHOD *dh_meth); int ENGINE_set_ECDSA(ENGINE *e, const ECDSA_METHOD *dh_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_STORE(ENGINE *e, const STORE_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); 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 ECDH_METHOD *ENGINE_get_ECDH(const ENGINE *e); const ECDSA_METHOD *ENGINE_get_ECDSA(const ENGINE *e); const DH_METHOD *ENGINE_get_DH(const ENGINE *e); const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e); const STORE_METHOD *ENGINE_get_STORE(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); int ENGINE_get_flags(const ENGINE *e); const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e); 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); void ENGINE_add_conf_module(void);=head1 DESCRIPTIONThese functions create, manipulate, and use cryptographic modules in theform of B<ENGINE> objects. These objects act as containers forimplementations of cryptographic algorithms, and support areference-counted mechanism to allow them to be dynamically loaded in andout of the running application.The cryptographic functionality that can be provided by an B<ENGINE>implementation includes the following abstractions; RSA_METHOD - for providing alternative RSA implementations DSA_METHOD, DH_METHOD, RAND_METHOD, ECDH_METHOD, ECDSA_METHOD,       STORE_METHOD - similarly for other OpenSSL APIs EVP_CIPHER - potentially multiple cipher algorithms (indexed by 'nid') EVP_DIGEST - potentially multiple hash algorithms (indexed by 'nid') key-loading - loading public and/or private EVP_PKEY keys=head2 Reference counting and handlesDue to the modular nature of the ENGINE API, pointers to ENGINEs need to betreated as handles - ie. not only as pointers, but also as references tothe underlying ENGINE object. Ie. one should obtain a new reference whenmaking copies of an ENGINE pointer if the copies will be used (andreleased) independently.ENGINE objects have two levels of reference-counting to match the way inwhich the objects are used. At the most basic level, each ENGINE pointer isinherently a B<structural> reference - a structural reference is requiredto use the pointer value at all, as this kind of reference is a guaranteethat the structure can not be deallocated until the reference is released.However, a structural reference provides no guarantee that the ENGINE isinitiliased and able to use any of its cryptographicimplementations. Indeed it's quite possible that most ENGINEs will notinitialise at all in typical environments, as ENGINEs are typically used tosupport specialised hardware. To use an ENGINE's functionality, you need aB<functional> reference. This kind of reference can be considered aspecialised form of structural reference, because each functional referenceimplicitly contains a structural reference as well - however to avoiddifficult-to-find programming bugs, it is recommended to treat the twokinds of reference independently. If you have a functional reference to anENGINE, you have a guarantee that the ENGINE has been initialised ready toperform cryptographic operations and will remain uninitialiseduntil after you have released your reference.I<Structural references>This basic type of reference is used for instantiating new ENGINEs,iterating across OpenSSL's internal linked-list of loadedENGINEs, reading information about an ENGINE, etc. Essentially a structuralreference is sufficient if you only need to query or manipulate the data ofan ENGINE implementation rather than use its functionality.The ENGINE_new() function returns a structural reference to a new (empty)ENGINE object. There are other ENGINE API functions that return structuralreferences such as; ENGINE_by_id(), ENGINE_get_first(), ENGINE_get_last(),ENGINE_get_next(), ENGINE_get_prev(). All structural references should bereleased by a corresponding to call to the ENGINE_free() function - theENGINE object itself will only actually be cleaned up and deallocated whenthe last structural reference is released.It should also be noted that many ENGINE API function calls that accept astructural reference will internally obtain another reference - typicallythis happens whenever the supplied ENGINE will be needed by OpenSSL afterthe function has returned. Eg. the function to add a new ENGINE toOpenSSL's internal list is ENGINE_add() - if this function returns success,then OpenSSL will have stored a new structural reference internally so thecaller is still responsible for freeing their own reference withENGINE_free() when they are finished with it. In a similar way, somefunctions will automatically release the structural reference passed to itif part of the function's job is to do so. Eg. the ENGINE_get_next() andENGINE_get_prev() functions are used for iterating across the internalENGINE list - they will return a new structural reference to the next (orprevious) ENGINE in the list or NULL if at the end (or beginning) of thelist, but in either case the structural reference passed to the function isreleased on behalf of the caller.To clarify a particular function's handling of references, one shouldalways consult that function's documentation "man" page, or failing thatthe openssl/engine.h header file includes some hints.I<Functional references>As mentioned, functional references exist when the cryptographicfunctionality of an ENGINE is required to be available. A functionalreference can be obtained in one of two ways; from an existing structuralreference to the required ENGINE, or by asking OpenSSL for the defaultoperational ENGINE for a given cryptographic purpose.To obtain a functional reference from an existing structural reference,call the ENGINE_init() function. This returns zero if the ENGINE was notalready operational and couldn't be successfully initialised (eg. lack ofsystem drivers, no special hardware attached, etc), otherwise it willreturn non-zero to indicate that the ENGINE is now operational and willhave allocated a new B<functional> reference to the ENGINE. All functionalreferences are released by calling ENGINE_finish() (which removes theimplicit structural reference as well).The second way to get a functional reference is by asking OpenSSL for adefault implementation for a given task, eg. by ENGINE_get_default_RSA(),ENGINE_get_default_cipher_engine(), etc. These are discussed in the nextsection, though they are not usually required by application programmers asthey are used automatically when creating and using the relevantalgorithm-specific types in OpenSSL, such as RSA, DSA, EVP_CIPHER_CTX, etc.=head2 Default implementationsFor each supported abstraction, the ENGINE code maintains an internal tableof state to control which implementations are available for a givenabstraction and which should be used by default. These implementations areregistered in the tables and indexed by an 'nid' value, becauseabstractions like EVP_CIPHER and EVP_DIGEST support many distinctalgorithms and modes, and ENGINEs can support arbitrarily many of them.In the case of other abstractions like RSA, DSA, etc, there is only one"algorithm" so all implementations implicitly register using the same 'nid'index.When a default ENGINE is requested for a given abstraction/algorithm/mode, (eg.when calling RSA_new_method(NULL)), a "get_default" call will be made to theENGINE subsystem to process the corresponding state table and return afunctional reference to an initialised ENGINE whose implementation should beused. If no ENGINE should (or can) be used, it will return NULL and the callerwill operate with a NULL ENGINE handle - this usually equates to using theconventional software implementation. In the latter case, OpenSSL will fromthen on behave the way it used to before the ENGINE API existed.Each state table has a flag to note whether it has processed this"get_default" query since the table was last modified, because to processthis question it must iterate across all the registered ENGINEs in thetable trying to initialise each of them in turn, in case one of them isoperational. If it returns a functional reference to an ENGINE, it willalso cache another reference to speed up processing future queries (withoutneeding to iterate across the table). Likewise, it will cache a NULLresponse if no ENGINE was available so that future queries won't repeat thesame iteration unless the state table changes. This behaviour can also bechanged; if the ENGINE_TABLE_FLAG_NOINIT flag is set (usingENGINE_set_table_flags()), no attempted initialisations will take place,instead the only way for the state table to return a non-NULL ENGINE to the

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲大尺度视频在线观看| 欧美一区二区在线不卡| 欧美日韩大陆一区二区| 亚洲国产精品t66y| 免费不卡在线视频| 欧美亚洲一区三区| 国产精品久99| 国产一区二区视频在线播放| 欧美影片第一页| 国产精品久线在线观看| 国产一区二区视频在线| 56国语精品自产拍在线观看| 自拍偷拍欧美激情| 国产精品99久久久久久有的能看| 91麻豆精品国产无毒不卡在线观看| 亚洲免费看黄网站| 成人免费毛片高清视频| 久久综合九色综合97婷婷女人 | 欧美日韩日日骚| 中文字幕欧美日本乱码一线二线| 久久精品国产亚洲a| 欧美久久一二区| 亚洲一二三四在线| 色8久久人人97超碰香蕉987| 国产精品乱码一区二区三区软件| 国产一区二区不卡在线| 欧美成人精品高清在线播放 | 一区在线观看视频| 东方aⅴ免费观看久久av| 精品久久久久久久久久久久久久久久久 | 亚洲国产精品精华液网站| 99天天综合性| 国产农村妇女毛片精品久久麻豆| 国产精品自拍三区| 欧美精品一区二区三区蜜桃视频| 日韩专区欧美专区| 欧美精品第一页| 日韩在线播放一区二区| 欧美在线影院一区二区| 亚洲自拍偷拍麻豆| 在线观看日韩一区| 一区二区三区 在线观看视频| 91色porny蝌蚪| 亚洲精品欧美综合四区| 一本久久精品一区二区| 亚洲女与黑人做爰| 在线看国产一区二区| 夜夜精品浪潮av一区二区三区| 一本大道综合伊人精品热热| 亚洲免费观看高清完整版在线观看熊 | 丝瓜av网站精品一区二区 | 成人夜色视频网站在线观看| 国产欧美一区二区精品性色超碰 | 麻豆91免费看| 精品少妇一区二区三区视频免付费 | 久久久.com| 成人禁用看黄a在线| 亚洲欧美一区二区三区孕妇| 欧美午夜视频网站| 日韩激情一二三区| 精品国产区一区| 成人丝袜视频网| 亚洲免费观看高清在线观看| 欧美日韩国产综合一区二区| 日本视频中文字幕一区二区三区| 日韩欧美国产三级电影视频| 国产成人亚洲综合a∨猫咪| 国产精品美女视频| 欧美色中文字幕| 久久精品av麻豆的观看方式| 久久久精品tv| 在线观看欧美精品| 蜜臀av性久久久久蜜臀aⅴ流畅| 国产亚洲婷婷免费| 91丨porny丨最新| 亚欧色一区w666天堂| 欧美精品一区二区三| 不卡电影免费在线播放一区| 亚洲午夜激情网站| 精品国产乱码久久久久久1区2区| 高潮精品一区videoshd| 伊人婷婷欧美激情| 日韩欧美国产一区二区在线播放| 大白屁股一区二区视频| 一区二区三区波多野结衣在线观看| 91精品国产综合久久久久久漫画 | 五月天丁香久久| 国产日韩影视精品| 在线观看一区二区视频| 精品一区二区三区久久| 亚洲天堂网中文字| 日韩精品一区二区三区老鸭窝| jiyouzz国产精品久久| 无吗不卡中文字幕| 国产精品二三区| 日韩一级黄色片| eeuss鲁片一区二区三区 | 亚洲男人都懂的| 精品精品欲导航| 91国产福利在线| 国产一区二区三区四区五区入口 | 三级精品在线观看| 国产精品午夜久久| 欧美日韩国产一级| 成年人国产精品| 久久99精品国产麻豆婷婷| 亚洲视频 欧洲视频| 精品国产伦一区二区三区观看体验| 91小视频在线免费看| 国产一区二区三区av电影| 一区二区三区不卡视频 | 日韩欧美久久一区| 在线免费不卡视频| www.66久久| 国产美女娇喘av呻吟久久| 午夜电影一区二区| 亚洲精品亚洲人成人网| 欧美高清在线精品一区| 日韩视频免费观看高清完整版| 色哟哟亚洲精品| 高清在线不卡av| 久久精品国产免费看久久精品| 亚洲免费观看高清| 中文子幕无线码一区tr | 欧美性视频一区二区三区| 福利一区福利二区| 狠狠色狠狠色综合日日91app| 亚洲成人在线网站| 亚洲激情五月婷婷| 国产精品成人网| 国产婷婷精品av在线| 欧美哺乳videos| 欧美一区二区三区啪啪| 欧美电影影音先锋| 欧美私模裸体表演在线观看| av在线不卡电影| 成人免费黄色大片| 国产成人午夜高潮毛片| 寂寞少妇一区二区三区| 日本欧美在线看| 日韩精品91亚洲二区在线观看 | 国产欧美日韩麻豆91| 精品理论电影在线观看| 日韩一级完整毛片| 日韩一区二区三区精品视频| 欧美日韩精品是欧美日韩精品| 色狠狠一区二区| 色综合久久天天| 99久久er热在这里只有精品66| 懂色av一区二区三区蜜臀| 国产成人小视频| 成人精品免费网站| 北条麻妃一区二区三区| 成人一级片网址| www.色精品| 91免费看`日韩一区二区| 不卡一区二区三区四区| 99久久99久久久精品齐齐| www.日韩在线| 色婷婷香蕉在线一区二区| 91麻豆国产福利在线观看| 91蝌蚪porny| 色综合久久中文字幕| 欧美在线999| 欧美另类久久久品| 日韩一卡二卡三卡四卡| 欧美精品一区二区三区视频| 久久欧美一区二区| 亚洲国产精品99久久久久久久久| 国产精品久久看| 一区二区三区四区av| 午夜久久久久久久久久一区二区| 三级影片在线观看欧美日韩一区二区| 秋霞电影网一区二区| 久久99精品久久久| 成人深夜在线观看| 91在线码无精品| 欧美日韩欧美一区二区| 日韩欧美电影在线| 国产午夜一区二区三区| 1000部国产精品成人观看| 亚洲影院在线观看| 日韩高清国产一区在线| 国产一区二区三区在线观看精品 | 91亚洲精品乱码久久久久久蜜桃| 色妞www精品视频| 欧美日韩另类一区| 欧美一卡在线观看| 久久精品亚洲精品国产欧美kt∨ | 国产精品久久久爽爽爽麻豆色哟哟| 亚洲区小说区图片区qvod| 午夜免费久久看| 国产麻豆一精品一av一免费| 成人性色生活片免费看爆迷你毛片| av不卡免费在线观看| 欧美欧美欧美欧美首页| 国产亚洲一区二区三区| 一区二区三区国产精华| 看电视剧不卡顿的网站| 丁香婷婷综合激情五月色|