engine.h 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802
  1. /* openssl/engine.h */
  2. /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
  3. * project 2000.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. All advertising materials mentioning features or use of this
  21. * software must display the following acknowledgment:
  22. * "This product includes software developed by the OpenSSL Project
  23. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  24. *
  25. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26. * endorse or promote products derived from this software without
  27. * prior written permission. For written permission, please contact
  28. * licensing@OpenSSL.org.
  29. *
  30. * 5. Products derived from this software may not be called "OpenSSL"
  31. * nor may "OpenSSL" appear in their names without prior written
  32. * permission of the OpenSSL Project.
  33. *
  34. * 6. Redistributions of any form whatsoever must retain the following
  35. * acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50. * OF THE POSSIBILITY OF SUCH DAMAGE.
  51. * ====================================================================
  52. *
  53. * This product includes cryptographic software written by Eric Young
  54. * (eay@cryptsoft.com). This product includes software written by Tim
  55. * Hudson (tjh@cryptsoft.com).
  56. *
  57. */
  58. /* ====================================================================
  59. * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  60. * ECDH support in OpenSSL originally developed by
  61. * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
  62. */
  63. #ifndef HEADER_ENGINE_H
  64. #define HEADER_ENGINE_H
  65. #include <openssl/opensslconf.h>
  66. #ifdef OPENSSL_NO_ENGINE
  67. #error ENGINE is disabled.
  68. #endif
  69. #ifndef OPENSSL_NO_DEPRECATED
  70. #include <openssl/bn.h>
  71. #ifndef OPENSSL_NO_RSA
  72. #include <openssl/rsa.h>
  73. #endif
  74. #ifndef OPENSSL_NO_DSA
  75. #include <openssl/dsa.h>
  76. #endif
  77. #ifndef OPENSSL_NO_DH
  78. #include <openssl/dh.h>
  79. #endif
  80. #ifndef OPENSSL_NO_ECDH
  81. #include <openssl/ecdh.h>
  82. #endif
  83. #ifndef OPENSSL_NO_ECDSA
  84. #include <openssl/ecdsa.h>
  85. #endif
  86. #include <openssl/rand.h>
  87. #include <openssl/store.h>
  88. #include <openssl/ui.h>
  89. #include <openssl/err.h>
  90. #endif
  91. #include <openssl/x509.h>
  92. #include <openssl/ossl_typ.h>
  93. #include <openssl/symhacks.h>
  94. #ifdef __cplusplus
  95. extern "C" {
  96. #endif
  97. /* These flags are used to control combinations of algorithm (methods)
  98. * by bitwise "OR"ing. */
  99. #define ENGINE_METHOD_RSA (unsigned int)0x0001
  100. #define ENGINE_METHOD_DSA (unsigned int)0x0002
  101. #define ENGINE_METHOD_DH (unsigned int)0x0004
  102. #define ENGINE_METHOD_RAND (unsigned int)0x0008
  103. #define ENGINE_METHOD_ECDH (unsigned int)0x0010
  104. #define ENGINE_METHOD_ECDSA (unsigned int)0x0020
  105. #define ENGINE_METHOD_CIPHERS (unsigned int)0x0040
  106. #define ENGINE_METHOD_DIGESTS (unsigned int)0x0080
  107. #define ENGINE_METHOD_STORE (unsigned int)0x0100
  108. /* Obvious all-or-nothing cases. */
  109. #define ENGINE_METHOD_ALL (unsigned int)0xFFFF
  110. #define ENGINE_METHOD_NONE (unsigned int)0x0000
  111. /* This(ese) flag(s) controls behaviour of the ENGINE_TABLE mechanism used
  112. * internally to control registration of ENGINE implementations, and can be set
  113. * by ENGINE_set_table_flags(). The "NOINIT" flag prevents attempts to
  114. * initialise registered ENGINEs if they are not already initialised. */
  115. #define ENGINE_TABLE_FLAG_NOINIT (unsigned int)0x0001
  116. /* ENGINE flags that can be set by ENGINE_set_flags(). */
  117. /* #define ENGINE_FLAGS_MALLOCED 0x0001 */ /* Not used */
  118. /* This flag is for ENGINEs that wish to handle the various 'CMD'-related
  119. * control commands on their own. Without this flag, ENGINE_ctrl() handles these
  120. * control commands on behalf of the ENGINE using their "cmd_defns" data. */
  121. #define ENGINE_FLAGS_MANUAL_CMD_CTRL (int)0x0002
  122. /* This flag is for ENGINEs who return new duplicate structures when found via
  123. * "ENGINE_by_id()". When an ENGINE must store state (eg. if ENGINE_ctrl()
  124. * commands are called in sequence as part of some stateful process like
  125. * key-generation setup and execution), it can set this flag - then each attempt
  126. * to obtain the ENGINE will result in it being copied into a new structure.
  127. * Normally, ENGINEs don't declare this flag so ENGINE_by_id() just increments
  128. * the existing ENGINE's structural reference count. */
  129. #define ENGINE_FLAGS_BY_ID_COPY (int)0x0004
  130. /* ENGINEs can support their own command types, and these flags are used in
  131. * ENGINE_CTRL_GET_CMD_FLAGS to indicate to the caller what kind of input each
  132. * command expects. Currently only numeric and string input is supported. If a
  133. * control command supports none of the _NUMERIC, _STRING, or _NO_INPUT options,
  134. * then it is regarded as an "internal" control command - and not for use in
  135. * config setting situations. As such, they're not available to the
  136. * ENGINE_ctrl_cmd_string() function, only raw ENGINE_ctrl() access. Changes to
  137. * this list of 'command types' should be reflected carefully in
  138. * ENGINE_cmd_is_executable() and ENGINE_ctrl_cmd_string(). */
  139. /* accepts a 'long' input value (3rd parameter to ENGINE_ctrl) */
  140. #define ENGINE_CMD_FLAG_NUMERIC (unsigned int)0x0001
  141. /* accepts string input (cast from 'void*' to 'const char *', 4th parameter to
  142. * ENGINE_ctrl) */
  143. #define ENGINE_CMD_FLAG_STRING (unsigned int)0x0002
  144. /* Indicates that the control command takes *no* input. Ie. the control command
  145. * is unparameterised. */
  146. #define ENGINE_CMD_FLAG_NO_INPUT (unsigned int)0x0004
  147. /* Indicates that the control command is internal. This control command won't
  148. * be shown in any output, and is only usable through the ENGINE_ctrl_cmd()
  149. * function. */
  150. #define ENGINE_CMD_FLAG_INTERNAL (unsigned int)0x0008
  151. /* NB: These 3 control commands are deprecated and should not be used. ENGINEs
  152. * relying on these commands should compile conditional support for
  153. * compatibility (eg. if these symbols are defined) but should also migrate the
  154. * same functionality to their own ENGINE-specific control functions that can be
  155. * "discovered" by calling applications. The fact these control commands
  156. * wouldn't be "executable" (ie. usable by text-based config) doesn't change the
  157. * fact that application code can find and use them without requiring per-ENGINE
  158. * hacking. */
  159. /* These flags are used to tell the ctrl function what should be done.
  160. * All command numbers are shared between all engines, even if some don't
  161. * make sense to some engines. In such a case, they do nothing but return
  162. * the error ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED. */
  163. #define ENGINE_CTRL_SET_LOGSTREAM 1
  164. #define ENGINE_CTRL_SET_PASSWORD_CALLBACK 2
  165. #define ENGINE_CTRL_HUP 3 /* Close and reinitialise any
  166. handles/connections etc. */
  167. #define ENGINE_CTRL_SET_USER_INTERFACE 4 /* Alternative to callback */
  168. #define ENGINE_CTRL_SET_CALLBACK_DATA 5 /* User-specific data, used
  169. when calling the password
  170. callback and the user
  171. interface */
  172. #define ENGINE_CTRL_LOAD_CONFIGURATION 6 /* Load a configuration, given
  173. a string that represents a
  174. file name or so */
  175. #define ENGINE_CTRL_LOAD_SECTION 7 /* Load data from a given
  176. section in the already loaded
  177. configuration */
  178. /* These control commands allow an application to deal with an arbitrary engine
  179. * in a dynamic way. Warn: Negative return values indicate errors FOR THESE
  180. * COMMANDS because zero is used to indicate 'end-of-list'. Other commands,
  181. * including ENGINE-specific command types, return zero for an error.
  182. *
  183. * An ENGINE can choose to implement these ctrl functions, and can internally
  184. * manage things however it chooses - it does so by setting the
  185. * ENGINE_FLAGS_MANUAL_CMD_CTRL flag (using ENGINE_set_flags()). Otherwise the
  186. * ENGINE_ctrl() code handles this on the ENGINE's behalf using the cmd_defns
  187. * data (set using ENGINE_set_cmd_defns()). This means an ENGINE's ctrl()
  188. * handler need only implement its own commands - the above "meta" commands will
  189. * be taken care of. */
  190. /* Returns non-zero if the supplied ENGINE has a ctrl() handler. If "not", then
  191. * all the remaining control commands will return failure, so it is worth
  192. * checking this first if the caller is trying to "discover" the engine's
  193. * capabilities and doesn't want errors generated unnecessarily. */
  194. #define ENGINE_CTRL_HAS_CTRL_FUNCTION 10
  195. /* Returns a positive command number for the first command supported by the
  196. * engine. Returns zero if no ctrl commands are supported. */
  197. #define ENGINE_CTRL_GET_FIRST_CMD_TYPE 11
  198. /* The 'long' argument specifies a command implemented by the engine, and the
  199. * return value is the next command supported, or zero if there are no more. */
  200. #define ENGINE_CTRL_GET_NEXT_CMD_TYPE 12
  201. /* The 'void*' argument is a command name (cast from 'const char *'), and the
  202. * return value is the command that corresponds to it. */
  203. #define ENGINE_CTRL_GET_CMD_FROM_NAME 13
  204. /* The next two allow a command to be converted into its corresponding string
  205. * form. In each case, the 'long' argument supplies the command. In the NAME_LEN
  206. * case, the return value is the length of the command name (not counting a
  207. * trailing EOL). In the NAME case, the 'void*' argument must be a string buffer
  208. * large enough, and it will be populated with the name of the command (WITH a
  209. * trailing EOL). */
  210. #define ENGINE_CTRL_GET_NAME_LEN_FROM_CMD 14
  211. #define ENGINE_CTRL_GET_NAME_FROM_CMD 15
  212. /* The next two are similar but give a "short description" of a command. */
  213. #define ENGINE_CTRL_GET_DESC_LEN_FROM_CMD 16
  214. #define ENGINE_CTRL_GET_DESC_FROM_CMD 17
  215. /* With this command, the return value is the OR'd combination of
  216. * ENGINE_CMD_FLAG_*** values that indicate what kind of input a given
  217. * engine-specific ctrl command expects. */
  218. #define ENGINE_CTRL_GET_CMD_FLAGS 18
  219. /* ENGINE implementations should start the numbering of their own control
  220. * commands from this value. (ie. ENGINE_CMD_BASE, ENGINE_CMD_BASE + 1, etc). */
  221. #define ENGINE_CMD_BASE 200
  222. /* NB: These 2 nCipher "chil" control commands are deprecated, and their
  223. * functionality is now available through ENGINE-specific control commands
  224. * (exposed through the above-mentioned 'CMD'-handling). Code using these 2
  225. * commands should be migrated to the more general command handling before these
  226. * are removed. */
  227. /* Flags specific to the nCipher "chil" engine */
  228. #define ENGINE_CTRL_CHIL_SET_FORKCHECK 100
  229. /* Depending on the value of the (long)i argument, this sets or
  230. * unsets the SimpleForkCheck flag in the CHIL API to enable or
  231. * disable checking and workarounds for applications that fork().
  232. */
  233. #define ENGINE_CTRL_CHIL_NO_LOCKING 101
  234. /* This prevents the initialisation function from providing mutex
  235. * callbacks to the nCipher library. */
  236. /* If an ENGINE supports its own specific control commands and wishes the
  237. * framework to handle the above 'ENGINE_CMD_***'-manipulation commands on its
  238. * behalf, it should supply a null-terminated array of ENGINE_CMD_DEFN entries
  239. * to ENGINE_set_cmd_defns(). It should also implement a ctrl() handler that
  240. * supports the stated commands (ie. the "cmd_num" entries as described by the
  241. * array). NB: The array must be ordered in increasing order of cmd_num.
  242. * "null-terminated" means that the last ENGINE_CMD_DEFN element has cmd_num set
  243. * to zero and/or cmd_name set to NULL. */
  244. typedef struct ENGINE_CMD_DEFN_st
  245. {
  246. unsigned int cmd_num; /* The command number */
  247. const char *cmd_name; /* The command name itself */
  248. const char *cmd_desc; /* A short description of the command */
  249. unsigned int cmd_flags; /* The input the command expects */
  250. } ENGINE_CMD_DEFN;
  251. /* Generic function pointer */
  252. typedef int (*ENGINE_GEN_FUNC_PTR)(void);
  253. /* Generic function pointer taking no arguments */
  254. typedef int (*ENGINE_GEN_INT_FUNC_PTR)(ENGINE *);
  255. /* Specific control function pointer */
  256. typedef int (*ENGINE_CTRL_FUNC_PTR)(ENGINE *, int, long, void *, void (*f)(void));
  257. /* Generic load_key function pointer */
  258. typedef EVP_PKEY * (*ENGINE_LOAD_KEY_PTR)(ENGINE *, const char *,
  259. UI_METHOD *ui_method, void *callback_data);
  260. typedef int (*ENGINE_SSL_CLIENT_CERT_PTR)(ENGINE *, SSL *ssl,
  261. STACK_OF(X509_NAME) *ca_dn, X509 **pcert, EVP_PKEY **pkey,
  262. STACK_OF(X509) **pother, UI_METHOD *ui_method, void *callback_data);
  263. /* These callback types are for an ENGINE's handler for cipher and digest logic.
  264. * These handlers have these prototypes;
  265. * int foo(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid);
  266. * int foo(ENGINE *e, const EVP_MD **digest, const int **nids, int nid);
  267. * Looking at how to implement these handlers in the case of cipher support, if
  268. * the framework wants the EVP_CIPHER for 'nid', it will call;
  269. * foo(e, &p_evp_cipher, NULL, nid); (return zero for failure)
  270. * If the framework wants a list of supported 'nid's, it will call;
  271. * foo(e, NULL, &p_nids, 0); (returns number of 'nids' or -1 for error)
  272. */
  273. /* Returns to a pointer to the array of supported cipher 'nid's. If the second
  274. * parameter is non-NULL it is set to the size of the returned array. */
  275. typedef int (*ENGINE_CIPHERS_PTR)(ENGINE *, const EVP_CIPHER **, const int **, int);
  276. typedef int (*ENGINE_DIGESTS_PTR)(ENGINE *, const EVP_MD **, const int **, int);
  277. /* STRUCTURE functions ... all of these functions deal with pointers to ENGINE
  278. * structures where the pointers have a "structural reference". This means that
  279. * their reference is to allowed access to the structure but it does not imply
  280. * that the structure is functional. To simply increment or decrement the
  281. * structural reference count, use ENGINE_by_id and ENGINE_free. NB: This is not
  282. * required when iterating using ENGINE_get_next as it will automatically
  283. * decrement the structural reference count of the "current" ENGINE and
  284. * increment the structural reference count of the ENGINE it returns (unless it
  285. * is NULL). */
  286. /* Get the first/last "ENGINE" type available. */
  287. ENGINE *ENGINE_get_first(void);
  288. ENGINE *ENGINE_get_last(void);
  289. /* Iterate to the next/previous "ENGINE" type (NULL = end of the list). */
  290. ENGINE *ENGINE_get_next(ENGINE *e);
  291. ENGINE *ENGINE_get_prev(ENGINE *e);
  292. /* Add another "ENGINE" type into the array. */
  293. int ENGINE_add(ENGINE *e);
  294. /* Remove an existing "ENGINE" type from the array. */
  295. int ENGINE_remove(ENGINE *e);
  296. /* Retrieve an engine from the list by its unique "id" value. */
  297. ENGINE *ENGINE_by_id(const char *id);
  298. /* Add all the built-in engines. */
  299. void ENGINE_load_openssl(void);
  300. void ENGINE_load_dynamic(void);
  301. #ifndef OPENSSL_NO_STATIC_ENGINE
  302. void ENGINE_load_4758cca(void);
  303. void ENGINE_load_aep(void);
  304. void ENGINE_load_atalla(void);
  305. void ENGINE_load_chil(void);
  306. void ENGINE_load_cswift(void);
  307. #ifndef OPENSSL_NO_GMP
  308. void ENGINE_load_gmp(void);
  309. #endif
  310. void ENGINE_load_nuron(void);
  311. void ENGINE_load_sureware(void);
  312. void ENGINE_load_ubsec(void);
  313. #endif
  314. void ENGINE_load_cryptodev(void);
  315. void ENGINE_load_padlock(void);
  316. void ENGINE_load_builtin_engines(void);
  317. #ifndef OPENSSL_NO_CAPIENG
  318. void ENGINE_load_capi(void);
  319. #endif
  320. /* Get and set global flags (ENGINE_TABLE_FLAG_***) for the implementation
  321. * "registry" handling. */
  322. unsigned int ENGINE_get_table_flags(void);
  323. void ENGINE_set_table_flags(unsigned int flags);
  324. /* Manage registration of ENGINEs per "table". For each type, there are 3
  325. * functions;
  326. * ENGINE_register_***(e) - registers the implementation from 'e' (if it has one)
  327. * ENGINE_unregister_***(e) - unregister the implementation from 'e'
  328. * ENGINE_register_all_***() - call ENGINE_register_***() for each 'e' in the list
  329. * Cleanup is automatically registered from each table when required, so
  330. * ENGINE_cleanup() will reverse any "register" operations. */
  331. int ENGINE_register_RSA(ENGINE *e);
  332. void ENGINE_unregister_RSA(ENGINE *e);
  333. void ENGINE_register_all_RSA(void);
  334. int ENGINE_register_DSA(ENGINE *e);
  335. void ENGINE_unregister_DSA(ENGINE *e);
  336. void ENGINE_register_all_DSA(void);
  337. int ENGINE_register_ECDH(ENGINE *e);
  338. void ENGINE_unregister_ECDH(ENGINE *e);
  339. void ENGINE_register_all_ECDH(void);
  340. int ENGINE_register_ECDSA(ENGINE *e);
  341. void ENGINE_unregister_ECDSA(ENGINE *e);
  342. void ENGINE_register_all_ECDSA(void);
  343. int ENGINE_register_DH(ENGINE *e);
  344. void ENGINE_unregister_DH(ENGINE *e);
  345. void ENGINE_register_all_DH(void);
  346. int ENGINE_register_RAND(ENGINE *e);
  347. void ENGINE_unregister_RAND(ENGINE *e);
  348. void ENGINE_register_all_RAND(void);
  349. int ENGINE_register_STORE(ENGINE *e);
  350. void ENGINE_unregister_STORE(ENGINE *e);
  351. void ENGINE_register_all_STORE(void);
  352. int ENGINE_register_ciphers(ENGINE *e);
  353. void ENGINE_unregister_ciphers(ENGINE *e);
  354. void ENGINE_register_all_ciphers(void);
  355. int ENGINE_register_digests(ENGINE *e);
  356. void ENGINE_unregister_digests(ENGINE *e);
  357. void ENGINE_register_all_digests(void);
  358. /* These functions register all support from the above categories. Note, use of
  359. * these functions can result in static linkage of code your application may not
  360. * need. If you only need a subset of functionality, consider using more
  361. * selective initialisation. */
  362. int ENGINE_register_complete(ENGINE *e);
  363. int ENGINE_register_all_complete(void);
  364. /* Send parametrised control commands to the engine. The possibilities to send
  365. * down an integer, a pointer to data or a function pointer are provided. Any of
  366. * the parameters may or may not be NULL, depending on the command number. In
  367. * actuality, this function only requires a structural (rather than functional)
  368. * reference to an engine, but many control commands may require the engine be
  369. * functional. The caller should be aware of trying commands that require an
  370. * operational ENGINE, and only use functional references in such situations. */
  371. int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void));
  372. /* This function tests if an ENGINE-specific command is usable as a "setting".
  373. * Eg. in an application's config file that gets processed through
  374. * ENGINE_ctrl_cmd_string(). If this returns zero, it is not available to
  375. * ENGINE_ctrl_cmd_string(), only ENGINE_ctrl(). */
  376. int ENGINE_cmd_is_executable(ENGINE *e, int cmd);
  377. /* This function works like ENGINE_ctrl() with the exception of taking a
  378. * command name instead of a command number, and can handle optional commands.
  379. * See the comment on ENGINE_ctrl_cmd_string() for an explanation on how to
  380. * use the cmd_name and cmd_optional. */
  381. int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name,
  382. long i, void *p, void (*f)(void), int cmd_optional);
  383. /* This function passes a command-name and argument to an ENGINE. The cmd_name
  384. * is converted to a command number and the control command is called using
  385. * 'arg' as an argument (unless the ENGINE doesn't support such a command, in
  386. * which case no control command is called). The command is checked for input
  387. * flags, and if necessary the argument will be converted to a numeric value. If
  388. * cmd_optional is non-zero, then if the ENGINE doesn't support the given
  389. * cmd_name the return value will be success anyway. This function is intended
  390. * for applications to use so that users (or config files) can supply
  391. * engine-specific config data to the ENGINE at run-time to control behaviour of
  392. * specific engines. As such, it shouldn't be used for calling ENGINE_ctrl()
  393. * functions that return data, deal with binary data, or that are otherwise
  394. * supposed to be used directly through ENGINE_ctrl() in application code. Any
  395. * "return" data from an ENGINE_ctrl() operation in this function will be lost -
  396. * the return value is interpreted as failure if the return value is zero,
  397. * success otherwise, and this function returns a boolean value as a result. In
  398. * other words, vendors of 'ENGINE'-enabled devices should write ENGINE
  399. * implementations with parameterisations that work in this scheme, so that
  400. * compliant ENGINE-based applications can work consistently with the same
  401. * configuration for the same ENGINE-enabled devices, across applications. */
  402. int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
  403. int cmd_optional);
  404. /* These functions are useful for manufacturing new ENGINE structures. They
  405. * don't address reference counting at all - one uses them to populate an ENGINE
  406. * structure with personalised implementations of things prior to using it
  407. * directly or adding it to the builtin ENGINE list in OpenSSL. These are also
  408. * here so that the ENGINE structure doesn't have to be exposed and break binary
  409. * compatibility! */
  410. ENGINE *ENGINE_new(void);
  411. int ENGINE_free(ENGINE *e);
  412. int ENGINE_up_ref(ENGINE *e);
  413. int ENGINE_set_id(ENGINE *e, const char *id);
  414. int ENGINE_set_name(ENGINE *e, const char *name);
  415. int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth);
  416. int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth);
  417. int ENGINE_set_ECDH(ENGINE *e, const ECDH_METHOD *ecdh_meth);
  418. int ENGINE_set_ECDSA(ENGINE *e, const ECDSA_METHOD *ecdsa_meth);
  419. int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth);
  420. int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth);
  421. int ENGINE_set_STORE(ENGINE *e, const STORE_METHOD *store_meth);
  422. int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f);
  423. int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f);
  424. int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f);
  425. int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f);
  426. int ENGINE_set_load_privkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpriv_f);
  427. int ENGINE_set_load_pubkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpub_f);
  428. int ENGINE_set_load_ssl_client_cert_function(ENGINE *e,
  429. ENGINE_SSL_CLIENT_CERT_PTR loadssl_f);
  430. int ENGINE_set_ciphers(ENGINE *e, ENGINE_CIPHERS_PTR f);
  431. int ENGINE_set_digests(ENGINE *e, ENGINE_DIGESTS_PTR f);
  432. int ENGINE_set_flags(ENGINE *e, int flags);
  433. int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns);
  434. /* These functions allow control over any per-structure ENGINE data. */
  435. int ENGINE_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
  436. CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
  437. int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg);
  438. void *ENGINE_get_ex_data(const ENGINE *e, int idx);
  439. /* This function cleans up anything that needs it. Eg. the ENGINE_add() function
  440. * automatically ensures the list cleanup function is registered to be called
  441. * from ENGINE_cleanup(). Similarly, all ENGINE_register_*** functions ensure
  442. * ENGINE_cleanup() will clean up after them. */
  443. void ENGINE_cleanup(void);
  444. /* These return values from within the ENGINE structure. These can be useful
  445. * with functional references as well as structural references - it depends
  446. * which you obtained. Using the result for functional purposes if you only
  447. * obtained a structural reference may be problematic! */
  448. const char *ENGINE_get_id(const ENGINE *e);
  449. const char *ENGINE_get_name(const ENGINE *e);
  450. const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e);
  451. const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e);
  452. const ECDH_METHOD *ENGINE_get_ECDH(const ENGINE *e);
  453. const ECDSA_METHOD *ENGINE_get_ECDSA(const ENGINE *e);
  454. const DH_METHOD *ENGINE_get_DH(const ENGINE *e);
  455. const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e);
  456. const STORE_METHOD *ENGINE_get_STORE(const ENGINE *e);
  457. ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e);
  458. ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e);
  459. ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e);
  460. ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e);
  461. ENGINE_LOAD_KEY_PTR ENGINE_get_load_privkey_function(const ENGINE *e);
  462. ENGINE_LOAD_KEY_PTR ENGINE_get_load_pubkey_function(const ENGINE *e);
  463. ENGINE_SSL_CLIENT_CERT_PTR ENGINE_get_ssl_client_cert_function(const ENGINE *e);
  464. ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e);
  465. ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e);
  466. const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid);
  467. const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid);
  468. const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e);
  469. int ENGINE_get_flags(const ENGINE *e);
  470. /* FUNCTIONAL functions. These functions deal with ENGINE structures
  471. * that have (or will) be initialised for use. Broadly speaking, the
  472. * structural functions are useful for iterating the list of available
  473. * engine types, creating new engine types, and other "list" operations.
  474. * These functions actually deal with ENGINEs that are to be used. As
  475. * such these functions can fail (if applicable) when particular
  476. * engines are unavailable - eg. if a hardware accelerator is not
  477. * attached or not functioning correctly. Each ENGINE has 2 reference
  478. * counts; structural and functional. Every time a functional reference
  479. * is obtained or released, a corresponding structural reference is
  480. * automatically obtained or released too. */
  481. /* Initialise a engine type for use (or up its reference count if it's
  482. * already in use). This will fail if the engine is not currently
  483. * operational and cannot initialise. */
  484. int ENGINE_init(ENGINE *e);
  485. /* Free a functional reference to a engine type. This does not require
  486. * a corresponding call to ENGINE_free as it also releases a structural
  487. * reference. */
  488. int ENGINE_finish(ENGINE *e);
  489. /* The following functions handle keys that are stored in some secondary
  490. * location, handled by the engine. The storage may be on a card or
  491. * whatever. */
  492. EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id,
  493. UI_METHOD *ui_method, void *callback_data);
  494. EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,
  495. UI_METHOD *ui_method, void *callback_data);
  496. int ENGINE_load_ssl_client_cert(ENGINE *e, SSL *s,
  497. STACK_OF(X509_NAME) *ca_dn, X509 **pcert, EVP_PKEY **ppkey,
  498. STACK_OF(X509) **pother,
  499. UI_METHOD *ui_method, void *callback_data);
  500. /* This returns a pointer for the current ENGINE structure that
  501. * is (by default) performing any RSA operations. The value returned
  502. * is an incremented reference, so it should be free'd (ENGINE_finish)
  503. * before it is discarded. */
  504. ENGINE *ENGINE_get_default_RSA(void);
  505. /* Same for the other "methods" */
  506. ENGINE *ENGINE_get_default_DSA(void);
  507. ENGINE *ENGINE_get_default_ECDH(void);
  508. ENGINE *ENGINE_get_default_ECDSA(void);
  509. ENGINE *ENGINE_get_default_DH(void);
  510. ENGINE *ENGINE_get_default_RAND(void);
  511. /* These functions can be used to get a functional reference to perform
  512. * ciphering or digesting corresponding to "nid". */
  513. ENGINE *ENGINE_get_cipher_engine(int nid);
  514. ENGINE *ENGINE_get_digest_engine(int nid);
  515. /* This sets a new default ENGINE structure for performing RSA
  516. * operations. If the result is non-zero (success) then the ENGINE
  517. * structure will have had its reference count up'd so the caller
  518. * should still free their own reference 'e'. */
  519. int ENGINE_set_default_RSA(ENGINE *e);
  520. int ENGINE_set_default_string(ENGINE *e, const char *def_list);
  521. /* Same for the other "methods" */
  522. int ENGINE_set_default_DSA(ENGINE *e);
  523. int ENGINE_set_default_ECDH(ENGINE *e);
  524. int ENGINE_set_default_ECDSA(ENGINE *e);
  525. int ENGINE_set_default_DH(ENGINE *e);
  526. int ENGINE_set_default_RAND(ENGINE *e);
  527. int ENGINE_set_default_ciphers(ENGINE *e);
  528. int ENGINE_set_default_digests(ENGINE *e);
  529. /* The combination "set" - the flags are bitwise "OR"d from the
  530. * ENGINE_METHOD_*** defines above. As with the "ENGINE_register_complete()"
  531. * function, this function can result in unnecessary static linkage. If your
  532. * application requires only specific functionality, consider using more
  533. * selective functions. */
  534. int ENGINE_set_default(ENGINE *e, unsigned int flags);
  535. void ENGINE_add_conf_module(void);
  536. /* Deprecated functions ... */
  537. /* int ENGINE_clear_defaults(void); */
  538. /**************************/
  539. /* DYNAMIC ENGINE SUPPORT */
  540. /**************************/
  541. /* Binary/behaviour compatibility levels */
  542. #define OSSL_DYNAMIC_VERSION (unsigned long)0x00020000
  543. /* Binary versions older than this are too old for us (whether we're a loader or
  544. * a loadee) */
  545. #define OSSL_DYNAMIC_OLDEST (unsigned long)0x00020000
  546. /* When compiling an ENGINE entirely as an external shared library, loadable by
  547. * the "dynamic" ENGINE, these types are needed. The 'dynamic_fns' structure
  548. * type provides the calling application's (or library's) error functionality
  549. * and memory management function pointers to the loaded library. These should
  550. * be used/set in the loaded library code so that the loading application's
  551. * 'state' will be used/changed in all operations. The 'static_state' pointer
  552. * allows the loaded library to know if it shares the same static data as the
  553. * calling application (or library), and thus whether these callbacks need to be
  554. * set or not. */
  555. typedef void *(*dyn_MEM_malloc_cb)(size_t);
  556. typedef void *(*dyn_MEM_realloc_cb)(void *, size_t);
  557. typedef void (*dyn_MEM_free_cb)(void *);
  558. typedef struct st_dynamic_MEM_fns {
  559. dyn_MEM_malloc_cb malloc_cb;
  560. dyn_MEM_realloc_cb realloc_cb;
  561. dyn_MEM_free_cb free_cb;
  562. } dynamic_MEM_fns;
  563. /* FIXME: Perhaps the memory and locking code (crypto.h) should declare and use
  564. * these types so we (and any other dependant code) can simplify a bit?? */
  565. typedef void (*dyn_lock_locking_cb)(int,int,const char *,int);
  566. typedef int (*dyn_lock_add_lock_cb)(int*,int,int,const char *,int);
  567. typedef struct CRYPTO_dynlock_value *(*dyn_dynlock_create_cb)(
  568. const char *,int);
  569. typedef void (*dyn_dynlock_lock_cb)(int,struct CRYPTO_dynlock_value *,
  570. const char *,int);
  571. typedef void (*dyn_dynlock_destroy_cb)(struct CRYPTO_dynlock_value *,
  572. const char *,int);
  573. typedef struct st_dynamic_LOCK_fns {
  574. dyn_lock_locking_cb lock_locking_cb;
  575. dyn_lock_add_lock_cb lock_add_lock_cb;
  576. dyn_dynlock_create_cb dynlock_create_cb;
  577. dyn_dynlock_lock_cb dynlock_lock_cb;
  578. dyn_dynlock_destroy_cb dynlock_destroy_cb;
  579. } dynamic_LOCK_fns;
  580. /* The top-level structure */
  581. typedef struct st_dynamic_fns {
  582. void *static_state;
  583. const ERR_FNS *err_fns;
  584. const CRYPTO_EX_DATA_IMPL *ex_data_fns;
  585. dynamic_MEM_fns mem_fns;
  586. dynamic_LOCK_fns lock_fns;
  587. } dynamic_fns;
  588. /* The version checking function should be of this prototype. NB: The
  589. * ossl_version value passed in is the OSSL_DYNAMIC_VERSION of the loading code.
  590. * If this function returns zero, it indicates a (potential) version
  591. * incompatibility and the loaded library doesn't believe it can proceed.
  592. * Otherwise, the returned value is the (latest) version supported by the
  593. * loading library. The loader may still decide that the loaded code's version
  594. * is unsatisfactory and could veto the load. The function is expected to
  595. * be implemented with the symbol name "v_check", and a default implementation
  596. * can be fully instantiated with IMPLEMENT_DYNAMIC_CHECK_FN(). */
  597. typedef unsigned long (*dynamic_v_check_fn)(unsigned long ossl_version);
  598. #define IMPLEMENT_DYNAMIC_CHECK_FN() \
  599. OPENSSL_EXPORT unsigned long v_check(unsigned long v) { \
  600. if(v >= OSSL_DYNAMIC_OLDEST) return OSSL_DYNAMIC_VERSION; \
  601. return 0; }
  602. /* This function is passed the ENGINE structure to initialise with its own
  603. * function and command settings. It should not adjust the structural or
  604. * functional reference counts. If this function returns zero, (a) the load will
  605. * be aborted, (b) the previous ENGINE state will be memcpy'd back onto the
  606. * structure, and (c) the shared library will be unloaded. So implementations
  607. * should do their own internal cleanup in failure circumstances otherwise they
  608. * could leak. The 'id' parameter, if non-NULL, represents the ENGINE id that
  609. * the loader is looking for. If this is NULL, the shared library can choose to
  610. * return failure or to initialise a 'default' ENGINE. If non-NULL, the shared
  611. * library must initialise only an ENGINE matching the passed 'id'. The function
  612. * is expected to be implemented with the symbol name "bind_engine". A standard
  613. * implementation can be instantiated with IMPLEMENT_DYNAMIC_BIND_FN(fn) where
  614. * the parameter 'fn' is a callback function that populates the ENGINE structure
  615. * and returns an int value (zero for failure). 'fn' should have prototype;
  616. * [static] int fn(ENGINE *e, const char *id); */
  617. typedef int (*dynamic_bind_engine)(ENGINE *e, const char *id,
  618. const dynamic_fns *fns);
  619. #define IMPLEMENT_DYNAMIC_BIND_FN(fn) \
  620. OPENSSL_EXPORT \
  621. int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) { \
  622. if(ENGINE_get_static_state() == fns->static_state) goto skip_cbs; \
  623. if(!CRYPTO_set_mem_functions(fns->mem_fns.malloc_cb, \
  624. fns->mem_fns.realloc_cb, fns->mem_fns.free_cb)) \
  625. return 0; \
  626. CRYPTO_set_locking_callback(fns->lock_fns.lock_locking_cb); \
  627. CRYPTO_set_add_lock_callback(fns->lock_fns.lock_add_lock_cb); \
  628. CRYPTO_set_dynlock_create_callback(fns->lock_fns.dynlock_create_cb); \
  629. CRYPTO_set_dynlock_lock_callback(fns->lock_fns.dynlock_lock_cb); \
  630. CRYPTO_set_dynlock_destroy_callback(fns->lock_fns.dynlock_destroy_cb); \
  631. if(!CRYPTO_set_ex_data_implementation(fns->ex_data_fns)) \
  632. return 0; \
  633. if(!ERR_set_implementation(fns->err_fns)) return 0; \
  634. skip_cbs: \
  635. if(!fn(e,id)) return 0; \
  636. return 1; }
  637. /* If the loading application (or library) and the loaded ENGINE library share
  638. * the same static data (eg. they're both dynamically linked to the same
  639. * libcrypto.so) we need a way to avoid trying to set system callbacks - this
  640. * would fail, and for the same reason that it's unnecessary to try. If the
  641. * loaded ENGINE has (or gets from through the loader) its own copy of the
  642. * libcrypto static data, we will need to set the callbacks. The easiest way to
  643. * detect this is to have a function that returns a pointer to some static data
  644. * and let the loading application and loaded ENGINE compare their respective
  645. * values. */
  646. void *ENGINE_get_static_state(void);
  647. #if defined(__OpenBSD__) || defined(__FreeBSD__)
  648. void ENGINE_setup_bsd_cryptodev(void);
  649. #endif
  650. /* BEGIN ERROR CODES */
  651. /* The following lines are auto generated by the script mkerr.pl. Any changes
  652. * made after this point may be overwritten when the script is next run.
  653. */
  654. void ERR_load_ENGINE_strings(void);
  655. /* Error codes for the ENGINE functions. */
  656. /* Function codes. */
  657. #define ENGINE_F_DYNAMIC_CTRL 180
  658. #define ENGINE_F_DYNAMIC_GET_DATA_CTX 181
  659. #define ENGINE_F_DYNAMIC_LOAD 182
  660. #define ENGINE_F_DYNAMIC_SET_DATA_CTX 183
  661. #define ENGINE_F_ENGINE_ADD 105
  662. #define ENGINE_F_ENGINE_BY_ID 106
  663. #define ENGINE_F_ENGINE_CMD_IS_EXECUTABLE 170
  664. #define ENGINE_F_ENGINE_CTRL 142
  665. #define ENGINE_F_ENGINE_CTRL_CMD 178
  666. #define ENGINE_F_ENGINE_CTRL_CMD_STRING 171
  667. #define ENGINE_F_ENGINE_FINISH 107
  668. #define ENGINE_F_ENGINE_FREE_UTIL 108
  669. #define ENGINE_F_ENGINE_GET_CIPHER 185
  670. #define ENGINE_F_ENGINE_GET_DEFAULT_TYPE 177
  671. #define ENGINE_F_ENGINE_GET_DIGEST 186
  672. #define ENGINE_F_ENGINE_GET_NEXT 115
  673. #define ENGINE_F_ENGINE_GET_PREV 116
  674. #define ENGINE_F_ENGINE_INIT 119
  675. #define ENGINE_F_ENGINE_LIST_ADD 120
  676. #define ENGINE_F_ENGINE_LIST_REMOVE 121
  677. #define ENGINE_F_ENGINE_LOAD_PRIVATE_KEY 150
  678. #define ENGINE_F_ENGINE_LOAD_PUBLIC_KEY 151
  679. #define ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT 192
  680. #define ENGINE_F_ENGINE_NEW 122
  681. #define ENGINE_F_ENGINE_REMOVE 123
  682. #define ENGINE_F_ENGINE_SET_DEFAULT_STRING 189
  683. #define ENGINE_F_ENGINE_SET_DEFAULT_TYPE 126
  684. #define ENGINE_F_ENGINE_SET_ID 129
  685. #define ENGINE_F_ENGINE_SET_NAME 130
  686. #define ENGINE_F_ENGINE_TABLE_REGISTER 184
  687. #define ENGINE_F_ENGINE_UNLOAD_KEY 152
  688. #define ENGINE_F_ENGINE_UNLOCKED_FINISH 191
  689. #define ENGINE_F_ENGINE_UP_REF 190
  690. #define ENGINE_F_INT_CTRL_HELPER 172
  691. #define ENGINE_F_INT_ENGINE_CONFIGURE 188
  692. #define ENGINE_F_INT_ENGINE_MODULE_INIT 187
  693. #define ENGINE_F_LOG_MESSAGE 141
  694. /* Reason codes. */
  695. #define ENGINE_R_ALREADY_LOADED 100
  696. #define ENGINE_R_ARGUMENT_IS_NOT_A_NUMBER 133
  697. #define ENGINE_R_CMD_NOT_EXECUTABLE 134
  698. #define ENGINE_R_COMMAND_TAKES_INPUT 135
  699. #define ENGINE_R_COMMAND_TAKES_NO_INPUT 136
  700. #define ENGINE_R_CONFLICTING_ENGINE_ID 103
  701. #define ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED 119
  702. #define ENGINE_R_DH_NOT_IMPLEMENTED 139
  703. #define ENGINE_R_DSA_NOT_IMPLEMENTED 140
  704. #define ENGINE_R_DSO_FAILURE 104
  705. #define ENGINE_R_DSO_NOT_FOUND 132
  706. #define ENGINE_R_ENGINES_SECTION_ERROR 148
  707. #define ENGINE_R_ENGINE_IS_NOT_IN_LIST 105
  708. #define ENGINE_R_ENGINE_SECTION_ERROR 149
  709. #define ENGINE_R_FAILED_LOADING_PRIVATE_KEY 128
  710. #define ENGINE_R_FAILED_LOADING_PUBLIC_KEY 129
  711. #define ENGINE_R_FINISH_FAILED 106
  712. #define ENGINE_R_GET_HANDLE_FAILED 107
  713. #define ENGINE_R_ID_OR_NAME_MISSING 108
  714. #define ENGINE_R_INIT_FAILED 109
  715. #define ENGINE_R_INTERNAL_LIST_ERROR 110
  716. #define ENGINE_R_INVALID_ARGUMENT 143
  717. #define ENGINE_R_INVALID_CMD_NAME 137
  718. #define ENGINE_R_INVALID_CMD_NUMBER 138
  719. #define ENGINE_R_INVALID_INIT_VALUE 151
  720. #define ENGINE_R_INVALID_STRING 150
  721. #define ENGINE_R_NOT_INITIALISED 117
  722. #define ENGINE_R_NOT_LOADED 112
  723. #define ENGINE_R_NO_CONTROL_FUNCTION 120
  724. #define ENGINE_R_NO_INDEX 144
  725. #define ENGINE_R_NO_LOAD_FUNCTION 125
  726. #define ENGINE_R_NO_REFERENCE 130
  727. #define ENGINE_R_NO_SUCH_ENGINE 116
  728. #define ENGINE_R_NO_UNLOAD_FUNCTION 126
  729. #define ENGINE_R_PROVIDE_PARAMETERS 113
  730. #define ENGINE_R_RSA_NOT_IMPLEMENTED 141
  731. #define ENGINE_R_UNIMPLEMENTED_CIPHER 146
  732. #define ENGINE_R_UNIMPLEMENTED_DIGEST 147
  733. #define ENGINE_R_VERSION_INCOMPATIBILITY 145
  734. #ifdef __cplusplus
  735. }
  736. #endif
  737. #endif