Displaying 1 result from an estimated 1 matches for "engine_get_last".
2008 May 07
2
Request for generic engine support
...> if (CONF_modules_load_file(conffile, stanza, 0) <= 0) {
> ERR_print_errors_fp(stderr);
> error("Auto configuration failed");
> goto finish;
> }
>
> // Fetch the external engine handle
> eng = ENGINE_get_last();
> if (!eng) {
> /* the engine isn't available */
> ERR_print_errors_fp(stderr);
> error("ENGINE_get_last failed.");
> goto finish;
> }
>
> // Fetch and store the private key through th...