亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美日韩中文另类| 亚洲精品国产a久久久久久| 国产精品久久久久久久久免费桃花| 欧美一三区三区四区免费在线看| 欧美色视频一区| 欧美亚洲综合网| 欧洲精品中文字幕| 欧美在线高清视频| 欧美亚洲一区二区在线观看| 欧美性大战久久久久久久| 在线观看国产精品网站| 在线视频一区二区三| 在线看国产一区| 欧美午夜精品久久久久久超碰| 欧美在线999| 欧美日韩一区二区在线观看| 欧美日韩一区 二区 三区 久久精品| 色婷婷亚洲婷婷| 欧美日免费三级在线| 欧美日韩国产精品成人| 日韩午夜在线观看视频| 精品剧情v国产在线观看在线| 精品国产百合女同互慰| 久久这里只精品最新地址| 久久综合色一综合色88| 国产精品女同互慰在线看| 亚洲人成网站在线| 亚洲午夜在线观看视频在线| 亚洲一区二区不卡免费| 日本不卡一二三区黄网| 精品在线免费视频| 国产精品亚洲一区二区三区妖精 | 欧美日韩国产美| 日韩一区二区中文字幕| 久久久国产精品麻豆| 中文字幕av资源一区| 一区二区在线观看不卡| 丝袜亚洲另类欧美| 国产米奇在线777精品观看| 91农村精品一区二区在线| 欧美日韩精品一区二区三区蜜桃 | 欧美韩日一区二区三区| 一区二区激情视频| 美国精品在线观看| 成人国产视频在线观看| 欧美女孩性生活视频| wwww国产精品欧美| 樱花影视一区二区| 国产主播一区二区三区| aaa欧美日韩| 日韩一区二区影院| 1区2区3区国产精品| 日韩精品福利网| 成人爽a毛片一区二区免费| 欧美日韩电影在线播放| 久久精品视频一区二区| 亚洲国产cao| 成人综合婷婷国产精品久久| 欧美美女激情18p| 亚洲国产精品成人综合色在线婷婷| 亚洲国产裸拍裸体视频在线观看乱了| 精品系列免费在线观看| 91麻豆免费观看| 久久影院电视剧免费观看| 一区二区在线看| 国产成人精品影视| 91精品蜜臀在线一区尤物| 国产精品高潮呻吟| 精品一区二区在线免费观看| 在线区一区二视频| 国产精品青草综合久久久久99| 人人超碰91尤物精品国产| 色域天天综合网| 国产精品私人影院| 精品系列免费在线观看| 欧美精品在线视频| 亚洲日本乱码在线观看| 国产成人在线电影| 欧美一二三四区在线| 亚洲线精品一区二区三区| 91一区二区三区在线播放| 久久久国产一区二区三区四区小说 | 国产无遮挡一区二区三区毛片日本| 亚洲综合在线第一页| gogo大胆日本视频一区| 国产婷婷色一区二区三区| 蜜桃视频在线观看一区二区| 欧美日韩久久一区| 亚洲中国最大av网站| 91丝袜美女网| 亚洲人成亚洲人成在线观看图片| 成人国产精品免费观看视频| 久久麻豆一区二区| 久久疯狂做爰流白浆xx| 日韩欧美精品在线| 人禽交欧美网站| 欧美日韩另类一区| 亚洲成人福利片| 欧美日韩久久一区| 无吗不卡中文字幕| 欧美日韩在线精品一区二区三区激情 | www欧美成人18+| 乱中年女人伦av一区二区| 8v天堂国产在线一区二区| 偷拍自拍另类欧美| 91精品国产综合久久婷婷香蕉| 日日摸夜夜添夜夜添精品视频 | 亚洲日本青草视频在线怡红院| 成人av网站在线观看免费| 国产清纯在线一区二区www| 国产一区二区导航在线播放| 久久久精品人体av艺术| 岛国精品在线播放| 国产精品亲子乱子伦xxxx裸| 成人午夜伦理影院| 中文字幕亚洲不卡| 在线观看av一区| 五月婷婷激情综合网| 91精品国产综合久久福利软件| 免费人成黄页网站在线一区二区 | 亚洲一区二区美女| 欧美肥大bbwbbw高潮| 久久国产综合精品| 国产无人区一区二区三区| 成人激情免费网站| 亚洲精品伦理在线| 911精品产国品一二三产区| 日韩高清在线电影| 精品成人佐山爱一区二区| 国产成人精品免费在线| 国产精品福利电影一区二区三区四区 | 色欧美日韩亚洲| 日本在线播放一区二区三区| 欧美成人乱码一区二区三区| 国产精品正在播放| 一区二区三区在线视频播放| 91麻豆精品国产自产在线观看一区 | 国产亚洲综合av| 91丨porny丨国产| 亚洲成人免费影院| 26uuu亚洲综合色| 91免费国产视频网站| 亚洲高清在线精品| 精品日本一线二线三线不卡| 丁香六月综合激情| 亚洲国产日韩a在线播放性色| 日韩欧美一区在线| 白白色 亚洲乱淫| 日日夜夜一区二区| 国产清纯在线一区二区www| 欧美色偷偷大香| 粉嫩aⅴ一区二区三区四区| 亚洲精品自拍动漫在线| 欧美成人精品二区三区99精品| 99国产精品99久久久久久| 日本伊人色综合网| 国产精品女主播av| 日韩一区二区精品| 91小视频免费看| 久久激情五月婷婷| 一区二区三区不卡视频| 久久精品人人做人人爽97| 欧美视频日韩视频| 国产成人免费视频网站| 五月婷婷综合激情| 国产精品福利一区二区三区| 欧美成人vr18sexvr| 91国产丝袜在线播放| 国产成人自拍网| 欧美a级理论片| 亚洲一区二区三区自拍| 国产精品白丝在线| 久久女同精品一区二区| 欧美裸体一区二区三区| 99久久99久久精品国产片果冻 | 91精品91久久久中77777| 精彩视频一区二区| 石原莉奈一区二区三区在线观看| 国产精品国模大尺度视频| 日韩免费观看2025年上映的电影 | 国产精品日韩精品欧美在线| 日韩精品一区二区三区中文不卡 | 一区二区三区四区在线免费观看| 精品日韩av一区二区| 欧美日韩免费在线视频| 91视频免费观看| 国产不卡在线播放| 激情图区综合网| 日本午夜一区二区| 亚洲一二三区不卡| 亚洲欧美电影一区二区| 国产欧美日韩三区| 久久午夜免费电影| 日韩欧美电影一区| 日韩欧美成人激情| 日韩丝袜美女视频| 日韩欧美一区中文| 日韩免费性生活视频播放| 欧美一级电影网站| 制服丝袜国产精品|