engine.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /* $OpenBSD: engine.h,v 1.44 2024/03/02 10:22:07 tb Exp $ */
  2. /* Written by Geoff Thorpe ([email protected]) 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. * [email protected].
  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. * ([email protected]). This product includes software written by Tim
  55. * Hudson ([email protected]).
  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. #include <openssl/err.h>
  67. #include <openssl/ui.h>
  68. #include <openssl/ossl_typ.h>
  69. #ifdef __cplusplus
  70. extern "C" {
  71. #endif
  72. #define ENGINE_METHOD_RSA (unsigned int)0x0001
  73. #define ENGINE_METHOD_DSA (unsigned int)0x0002
  74. #define ENGINE_METHOD_DH (unsigned int)0x0004
  75. #define ENGINE_METHOD_RAND (unsigned int)0x0008
  76. #define ENGINE_METHOD_CIPHERS (unsigned int)0x0040
  77. #define ENGINE_METHOD_DIGESTS (unsigned int)0x0080
  78. #define ENGINE_METHOD_STORE (unsigned int)0x0100
  79. #define ENGINE_METHOD_PKEY_METHS (unsigned int)0x0200
  80. #define ENGINE_METHOD_PKEY_ASN1_METHS (unsigned int)0x0400
  81. #define ENGINE_METHOD_EC (unsigned int)0x0800
  82. #define ENGINE_METHOD_ALL (unsigned int)0xFFFF
  83. #define ENGINE_METHOD_NONE (unsigned int)0x0000
  84. /*
  85. * Prototypes for the stub functions in engine_stubs.c. They are provided to
  86. * build M2Crypto, Dovecot, apr-utils without patching.
  87. */
  88. void ENGINE_load_builtin_engines(void);
  89. void ENGINE_load_dynamic(void);
  90. void ENGINE_load_openssl(void);
  91. int ENGINE_register_all_complete(void);
  92. void ENGINE_cleanup(void);
  93. ENGINE *ENGINE_new(void);
  94. int ENGINE_free(ENGINE *engine);
  95. int ENGINE_init(ENGINE *engine);
  96. int ENGINE_finish(ENGINE *engine);
  97. ENGINE *ENGINE_by_id(const char *id);
  98. const char *ENGINE_get_id(const ENGINE *engine);
  99. const char *ENGINE_get_name(const ENGINE *engine);
  100. int ENGINE_set_default(ENGINE *engine, unsigned int flags);
  101. ENGINE *ENGINE_get_default_RSA(void);
  102. int ENGINE_set_default_RSA(ENGINE *engine);
  103. int ENGINE_ctrl_cmd(ENGINE *engine, const char *cmd_name, long i, void *p,
  104. void (*f)(void), int cmd_optional);
  105. int ENGINE_ctrl_cmd_string(ENGINE *engine, const char *cmd, const char *arg,
  106. int cmd_optional);
  107. EVP_PKEY *ENGINE_load_private_key(ENGINE *engine, const char *key_id,
  108. UI_METHOD *ui_method, void *callback_data);
  109. EVP_PKEY *ENGINE_load_public_key(ENGINE *engine, const char *key_id,
  110. UI_METHOD *ui_method, void *callback_data);
  111. /* Error codes for the ENGINE functions. */
  112. /* Function codes. */
  113. #define ENGINE_F_DYNAMIC_CTRL 180
  114. #define ENGINE_F_DYNAMIC_GET_DATA_CTX 181
  115. #define ENGINE_F_DYNAMIC_LOAD 182
  116. #define ENGINE_F_DYNAMIC_SET_DATA_CTX 183
  117. #define ENGINE_F_ENGINE_ADD 105
  118. #define ENGINE_F_ENGINE_BY_ID 106
  119. #define ENGINE_F_ENGINE_CMD_IS_EXECUTABLE 170
  120. #define ENGINE_F_ENGINE_CTRL 142
  121. #define ENGINE_F_ENGINE_CTRL_CMD 178
  122. #define ENGINE_F_ENGINE_CTRL_CMD_STRING 171
  123. #define ENGINE_F_ENGINE_FINISH 107
  124. #define ENGINE_F_ENGINE_FREE_UTIL 108
  125. #define ENGINE_F_ENGINE_GET_CIPHER 185
  126. #define ENGINE_F_ENGINE_GET_DEFAULT_TYPE 177
  127. #define ENGINE_F_ENGINE_GET_DIGEST 186
  128. #define ENGINE_F_ENGINE_GET_NEXT 115
  129. #define ENGINE_F_ENGINE_GET_PKEY_ASN1_METH 193
  130. #define ENGINE_F_ENGINE_GET_PKEY_METH 192
  131. #define ENGINE_F_ENGINE_GET_PREV 116
  132. #define ENGINE_F_ENGINE_INIT 119
  133. #define ENGINE_F_ENGINE_LIST_ADD 120
  134. #define ENGINE_F_ENGINE_LIST_REMOVE 121
  135. #define ENGINE_F_ENGINE_LOAD_PRIVATE_KEY 150
  136. #define ENGINE_F_ENGINE_LOAD_PUBLIC_KEY 151
  137. #define ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT 194
  138. #define ENGINE_F_ENGINE_NEW 122
  139. #define ENGINE_F_ENGINE_REMOVE 123
  140. #define ENGINE_F_ENGINE_SET_DEFAULT_STRING 189
  141. #define ENGINE_F_ENGINE_SET_DEFAULT_TYPE 126
  142. #define ENGINE_F_ENGINE_SET_ID 129
  143. #define ENGINE_F_ENGINE_SET_NAME 130
  144. #define ENGINE_F_ENGINE_TABLE_REGISTER 184
  145. #define ENGINE_F_ENGINE_UNLOAD_KEY 152
  146. #define ENGINE_F_ENGINE_UNLOCKED_FINISH 191
  147. #define ENGINE_F_ENGINE_UP_REF 190
  148. #define ENGINE_F_INT_CTRL_HELPER 172
  149. #define ENGINE_F_INT_ENGINE_CONFIGURE 188
  150. #define ENGINE_F_INT_ENGINE_MODULE_INIT 187
  151. #define ENGINE_F_LOG_MESSAGE 141
  152. /* Reason codes. */
  153. #define ENGINE_R_ALREADY_LOADED 100
  154. #define ENGINE_R_ARGUMENT_IS_NOT_A_NUMBER 133
  155. #define ENGINE_R_CMD_NOT_EXECUTABLE 134
  156. #define ENGINE_R_COMMAND_TAKES_INPUT 135
  157. #define ENGINE_R_COMMAND_TAKES_NO_INPUT 136
  158. #define ENGINE_R_CONFLICTING_ENGINE_ID 103
  159. #define ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED 119
  160. #define ENGINE_R_DH_NOT_IMPLEMENTED 139
  161. #define ENGINE_R_DSA_NOT_IMPLEMENTED 140
  162. #define ENGINE_R_DSO_FAILURE 104
  163. #define ENGINE_R_DSO_NOT_FOUND 132
  164. #define ENGINE_R_ENGINES_SECTION_ERROR 148
  165. #define ENGINE_R_ENGINE_CONFIGURATION_ERROR 102
  166. #define ENGINE_R_ENGINE_IS_NOT_IN_LIST 105
  167. #define ENGINE_R_ENGINE_SECTION_ERROR 149
  168. #define ENGINE_R_FAILED_LOADING_PRIVATE_KEY 128
  169. #define ENGINE_R_FAILED_LOADING_PUBLIC_KEY 129
  170. #define ENGINE_R_FINISH_FAILED 106
  171. #define ENGINE_R_GET_HANDLE_FAILED 107
  172. #define ENGINE_R_ID_OR_NAME_MISSING 108
  173. #define ENGINE_R_INIT_FAILED 109
  174. #define ENGINE_R_INTERNAL_LIST_ERROR 110
  175. #define ENGINE_R_INVALID_ARGUMENT 143
  176. #define ENGINE_R_INVALID_CMD_NAME 137
  177. #define ENGINE_R_INVALID_CMD_NUMBER 138
  178. #define ENGINE_R_INVALID_INIT_VALUE 151
  179. #define ENGINE_R_INVALID_STRING 150
  180. #define ENGINE_R_NOT_INITIALISED 117
  181. #define ENGINE_R_NOT_LOADED 112
  182. #define ENGINE_R_NO_CONTROL_FUNCTION 120
  183. #define ENGINE_R_NO_INDEX 144
  184. #define ENGINE_R_NO_LOAD_FUNCTION 125
  185. #define ENGINE_R_NO_REFERENCE 130
  186. #define ENGINE_R_NO_SUCH_ENGINE 116
  187. #define ENGINE_R_NO_UNLOAD_FUNCTION 126
  188. #define ENGINE_R_PROVIDE_PARAMETERS 113
  189. #define ENGINE_R_RSA_NOT_IMPLEMENTED 141
  190. #define ENGINE_R_UNIMPLEMENTED_CIPHER 146
  191. #define ENGINE_R_UNIMPLEMENTED_DIGEST 147
  192. #define ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD 101
  193. #define ENGINE_R_VERSION_INCOMPATIBILITY 145
  194. #ifdef __cplusplus
  195. }
  196. #endif
  197. #endif