crypto.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. /* crypto/crypto.h */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. #ifndef HEADER_CRYPTO_H
  59. #define HEADER_CRYPTO_H
  60. #include <stdlib.h>
  61. #ifndef OPENSSL_NO_FP_API
  62. #include <stdio.h>
  63. #endif
  64. #include <openssl/stack.h>
  65. #include <openssl/safestack.h>
  66. #include <openssl/opensslv.h>
  67. #ifdef CHARSET_EBCDIC
  68. #include <openssl/ebcdic.h>
  69. #endif
  70. /* Resolve problems on some operating systems with symbol names that clash
  71. one way or another */
  72. #include <openssl/symhacks.h>
  73. #ifdef __cplusplus
  74. extern "C" {
  75. #endif
  76. /* Backward compatibility to SSLeay */
  77. /* This is more to be used to check the correct DLL is being used
  78. * in the MS world. */
  79. #define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER
  80. #define SSLEAY_VERSION 0
  81. /* #define SSLEAY_OPTIONS 1 no longer supported */
  82. #define SSLEAY_CFLAGS 2
  83. #define SSLEAY_BUILT_ON 3
  84. #define SSLEAY_PLATFORM 4
  85. #define SSLEAY_DIR 5
  86. /* When changing the CRYPTO_LOCK_* list, be sure to maintin the text lock
  87. * names in cryptlib.c
  88. */
  89. #define CRYPTO_LOCK_ERR 1
  90. #define CRYPTO_LOCK_EX_DATA 2
  91. #define CRYPTO_LOCK_X509 3
  92. #define CRYPTO_LOCK_X509_INFO 4
  93. #define CRYPTO_LOCK_X509_PKEY 5
  94. #define CRYPTO_LOCK_X509_CRL 6
  95. #define CRYPTO_LOCK_X509_REQ 7
  96. #define CRYPTO_LOCK_DSA 8
  97. #define CRYPTO_LOCK_RSA 9
  98. #define CRYPTO_LOCK_EVP_PKEY 10
  99. #define CRYPTO_LOCK_X509_STORE 11
  100. #define CRYPTO_LOCK_SSL_CTX 12
  101. #define CRYPTO_LOCK_SSL_CERT 13
  102. #define CRYPTO_LOCK_SSL_SESSION 14
  103. #define CRYPTO_LOCK_SSL_SESS_CERT 15
  104. #define CRYPTO_LOCK_SSL 16
  105. #define CRYPTO_LOCK_RAND 17
  106. #define CRYPTO_LOCK_RAND2 18
  107. #define CRYPTO_LOCK_MALLOC 19
  108. #define CRYPTO_LOCK_BIO 20
  109. #define CRYPTO_LOCK_GETHOSTBYNAME 21
  110. #define CRYPTO_LOCK_GETSERVBYNAME 22
  111. #define CRYPTO_LOCK_READDIR 23
  112. #define CRYPTO_LOCK_RSA_BLINDING 24
  113. #define CRYPTO_LOCK_DH 25
  114. #define CRYPTO_LOCK_MALLOC2 26
  115. #define CRYPTO_LOCK_DSO 27
  116. #define CRYPTO_LOCK_DYNLOCK 28
  117. #define CRYPTO_LOCK_ENGINE 29
  118. #define CRYPTO_LOCK_UI 30
  119. #define CRYPTO_NUM_LOCKS 31
  120. #define CRYPTO_LOCK 1
  121. #define CRYPTO_UNLOCK 2
  122. #define CRYPTO_READ 4
  123. #define CRYPTO_WRITE 8
  124. #ifndef OPENSSL_NO_LOCKING
  125. #ifndef CRYPTO_w_lock
  126. #define CRYPTO_w_lock(type) \
  127. CRYPTO_lock(CRYPTO_LOCK|CRYPTO_WRITE,type,__FILE__,__LINE__)
  128. #define CRYPTO_w_unlock(type) \
  129. CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_WRITE,type,__FILE__,__LINE__)
  130. #define CRYPTO_r_lock(type) \
  131. CRYPTO_lock(CRYPTO_LOCK|CRYPTO_READ,type,__FILE__,__LINE__)
  132. #define CRYPTO_r_unlock(type) \
  133. CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_READ,type,__FILE__,__LINE__)
  134. #define CRYPTO_add(addr,amount,type) \
  135. CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
  136. #endif
  137. #else
  138. #define CRYPTO_w_lock(a)
  139. #define CRYPTO_w_unlock(a)
  140. #define CRYPTO_r_lock(a)
  141. #define CRYPTO_r_unlock(a)
  142. #define CRYPTO_add(a,b,c) ((*(a))+=(b))
  143. #endif
  144. /* Some applications as well as some parts of OpenSSL need to allocate
  145. and deallocate locks in a dynamic fashion. The following typedef
  146. makes this possible in a type-safe manner. */
  147. /* struct CRYPTO_dynlock_value has to be defined by the application. */
  148. typedef struct
  149. {
  150. int references;
  151. struct CRYPTO_dynlock_value *data;
  152. } CRYPTO_dynlock;
  153. /* The following can be used to detect memory leaks in the SSLeay library.
  154. * It used, it turns on malloc checking */
  155. #define CRYPTO_MEM_CHECK_OFF 0x0 /* an enume */
  156. #define CRYPTO_MEM_CHECK_ON 0x1 /* a bit */
  157. #define CRYPTO_MEM_CHECK_ENABLE 0x2 /* a bit */
  158. #define CRYPTO_MEM_CHECK_DISABLE 0x3 /* an enume */
  159. /* The following are bit values to turn on or off options connected to the
  160. * malloc checking functionality */
  161. /* Adds time to the memory checking information */
  162. #define V_CRYPTO_MDEBUG_TIME 0x1 /* a bit */
  163. /* Adds thread number to the memory checking information */
  164. #define V_CRYPTO_MDEBUG_THREAD 0x2 /* a bit */
  165. #define V_CRYPTO_MDEBUG_ALL (V_CRYPTO_MDEBUG_TIME | V_CRYPTO_MDEBUG_THREAD)
  166. /* predec of the BIO type */
  167. typedef struct bio_st BIO_dummy;
  168. typedef struct crypto_ex_data_st
  169. {
  170. STACK *sk;
  171. int dummy; /* gcc is screwing up this data structure :-( */
  172. } CRYPTO_EX_DATA;
  173. /* Called when a new object is created */
  174. typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
  175. int idx, long argl, void *argp);
  176. /* Called when an object is free()ed */
  177. typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
  178. int idx, long argl, void *argp);
  179. /* Called when we need to dup an object */
  180. typedef int CRYPTO_EX_dup(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d,
  181. int idx, long argl, void *argp);
  182. /* This stuff is basically class callback functions
  183. * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */
  184. typedef struct crypto_ex_data_func_st
  185. {
  186. long argl; /* Arbitary long */
  187. void *argp; /* Arbitary void * */
  188. CRYPTO_EX_new *new_func;
  189. CRYPTO_EX_free *free_func;
  190. CRYPTO_EX_dup *dup_func;
  191. } CRYPTO_EX_DATA_FUNCS;
  192. DECLARE_STACK_OF(CRYPTO_EX_DATA_FUNCS)
  193. /* Per class, we have a STACK of CRYPTO_EX_DATA_FUNCS for each CRYPTO_EX_DATA
  194. * entry.
  195. */
  196. #define CRYPTO_EX_INDEX_BIO 0
  197. #define CRYPTO_EX_INDEX_SSL 1
  198. #define CRYPTO_EX_INDEX_SSL_CTX 2
  199. #define CRYPTO_EX_INDEX_SSL_SESSION 3
  200. #define CRYPTO_EX_INDEX_X509_STORE 4
  201. #define CRYPTO_EX_INDEX_X509_STORE_CTX 5
  202. #define CRYPTO_EX_INDEX_RSA 6
  203. #define CRYPTO_EX_INDEX_DSA 7
  204. #define CRYPTO_EX_INDEX_DH 8
  205. #define CRYPTO_EX_INDEX_ENGINE 9
  206. #define CRYPTO_EX_INDEX_X509 10
  207. #define CRYPTO_EX_INDEX_UI 11
  208. /* Dynamically assigned indexes start from this value (don't use directly, use
  209. * via CRYPTO_ex_data_new_class). */
  210. #define CRYPTO_EX_INDEX_USER 100
  211. /* This is the default callbacks, but we can have others as well:
  212. * this is needed in Win32 where the application malloc and the
  213. * library malloc may not be the same.
  214. */
  215. #define CRYPTO_malloc_init() CRYPTO_set_mem_functions(\
  216. malloc, realloc, free)
  217. #if defined CRYPTO_MDEBUG_ALL || defined CRYPTO_MDEBUG_TIME || defined CRYPTO_MDEBUG_THREAD
  218. # ifndef CRYPTO_MDEBUG /* avoid duplicate #define */
  219. # define CRYPTO_MDEBUG
  220. # endif
  221. #endif
  222. /* Set standard debugging functions (not done by default
  223. * unless CRYPTO_MDEBUG is defined) */
  224. #define CRYPTO_malloc_debug_init() do {\
  225. CRYPTO_set_mem_debug_functions(\
  226. CRYPTO_dbg_malloc,\
  227. CRYPTO_dbg_realloc,\
  228. CRYPTO_dbg_free,\
  229. CRYPTO_dbg_set_options,\
  230. CRYPTO_dbg_get_options);\
  231. } while(0)
  232. int CRYPTO_mem_ctrl(int mode);
  233. int CRYPTO_is_mem_check_on(void);
  234. /* for applications */
  235. #define MemCheck_start() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON)
  236. #define MemCheck_stop() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_OFF)
  237. /* for library-internal use */
  238. #define MemCheck_on() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE)
  239. #define MemCheck_off() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE)
  240. #define is_MemCheck_on() CRYPTO_is_mem_check_on()
  241. #define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__)
  242. #define OPENSSL_realloc(addr,num) \
  243. CRYPTO_realloc((char *)addr,(int)num,__FILE__,__LINE__)
  244. #define OPENSSL_remalloc(addr,num) \
  245. CRYPTO_remalloc((char **)addr,(int)num,__FILE__,__LINE__)
  246. #define OPENSSL_freeFunc CRYPTO_free
  247. #define OPENSSL_free(addr) CRYPTO_free(addr)
  248. #define OPENSSL_malloc_locked(num) \
  249. CRYPTO_malloc_locked((int)num,__FILE__,__LINE__)
  250. #define OPENSSL_free_locked(addr) CRYPTO_free_locked(addr)
  251. const char *SSLeay_version(int type);
  252. unsigned long SSLeay(void);
  253. int OPENSSL_issetugid(void);
  254. /* An opaque type representing an implementation of "ex_data" support */
  255. typedef struct st_CRYPTO_EX_DATA_IMPL CRYPTO_EX_DATA_IMPL;
  256. /* Return an opaque pointer to the current "ex_data" implementation */
  257. const CRYPTO_EX_DATA_IMPL *CRYPTO_get_ex_data_implementation(void);
  258. /* Sets the "ex_data" implementation to be used (if it's not too late) */
  259. int CRYPTO_set_ex_data_implementation(const CRYPTO_EX_DATA_IMPL *i);
  260. /* Get a new "ex_data" class, and return the corresponding "class_index" */
  261. int CRYPTO_ex_data_new_class(void);
  262. /* Within a given class, get/register a new index */
  263. int CRYPTO_get_ex_new_index(int class_index, long argl, void *argp,
  264. CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func,
  265. CRYPTO_EX_free *free_func);
  266. /* Initialise/duplicate/free CRYPTO_EX_DATA variables corresponding to a given
  267. * class (invokes whatever per-class callbacks are applicable) */
  268. int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
  269. int CRYPTO_dup_ex_data(int class_index, CRYPTO_EX_DATA *to,
  270. CRYPTO_EX_DATA *from);
  271. void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
  272. /* Get/set data in a CRYPTO_EX_DATA variable corresponding to a particular index
  273. * (relative to the class type involved) */
  274. int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val);
  275. void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad,int idx);
  276. /* This function cleans up all "ex_data" state. It mustn't be called under
  277. * potential race-conditions. */
  278. void CRYPTO_cleanup_all_ex_data(void);
  279. int CRYPTO_get_new_lockid(char *name);
  280. int CRYPTO_num_locks(void); /* return CRYPTO_NUM_LOCKS (shared libs!) */
  281. void CRYPTO_lock(int mode, int type,const char *file,int line);
  282. void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
  283. const char *file,int line));
  284. void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
  285. int line);
  286. void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
  287. const char *file, int line));
  288. int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
  289. const char *file,int line);
  290. void CRYPTO_set_id_callback(unsigned long (*func)(void));
  291. unsigned long (*CRYPTO_get_id_callback(void))(void);
  292. unsigned long CRYPTO_thread_id(void);
  293. const char *CRYPTO_get_lock_name(int type);
  294. int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
  295. int line);
  296. int CRYPTO_get_new_dynlockid(void);
  297. void CRYPTO_destroy_dynlockid(int i);
  298. struct CRYPTO_dynlock_value *CRYPTO_get_dynlock_value(int i);
  299. void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function)(const char *file, int line));
  300. void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
  301. void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)(struct CRYPTO_dynlock_value *l, const char *file, int line));
  302. struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))(const char *file,int line);
  303. void (*CRYPTO_get_dynlock_lock_callback(void))(int mode, struct CRYPTO_dynlock_value *l, const char *file,int line);
  304. void (*CRYPTO_get_dynlock_destroy_callback(void))(struct CRYPTO_dynlock_value *l, const char *file,int line);
  305. /* CRYPTO_set_mem_functions includes CRYPTO_set_locked_mem_functions --
  306. * call the latter last if you need different functions */
  307. int CRYPTO_set_mem_functions(void *(*m)(size_t),void *(*r)(void *,size_t), void (*f)(void *));
  308. int CRYPTO_set_locked_mem_functions(void *(*m)(size_t), void (*free_func)(void *));
  309. int CRYPTO_set_mem_ex_functions(void *(*m)(size_t,const char *,int),
  310. void *(*r)(void *,size_t,const char *,int),
  311. void (*f)(void *));
  312. int CRYPTO_set_locked_mem_ex_functions(void *(*m)(size_t,const char *,int),
  313. void (*free_func)(void *));
  314. int CRYPTO_set_mem_debug_functions(void (*m)(void *,int,const char *,int,int),
  315. void (*r)(void *,void *,int,const char *,int,int),
  316. void (*f)(void *,int),
  317. void (*so)(long),
  318. long (*go)(void));
  319. void CRYPTO_get_mem_functions(void *(**m)(size_t),void *(**r)(void *, size_t), void (**f)(void *));
  320. void CRYPTO_get_locked_mem_functions(void *(**m)(size_t), void (**f)(void *));
  321. void CRYPTO_get_mem_ex_functions(void *(**m)(size_t,const char *,int),
  322. void *(**r)(void *, size_t,const char *,int),
  323. void (**f)(void *));
  324. void CRYPTO_get_locked_mem_ex_functions(void *(**m)(size_t,const char *,int),
  325. void (**f)(void *));
  326. void CRYPTO_get_mem_debug_functions(void (**m)(void *,int,const char *,int,int),
  327. void (**r)(void *,void *,int,const char *,int,int),
  328. void (**f)(void *,int),
  329. void (**so)(long),
  330. long (**go)(void));
  331. void *CRYPTO_malloc_locked(int num, const char *file, int line);
  332. void CRYPTO_free_locked(void *);
  333. void *CRYPTO_malloc(int num, const char *file, int line);
  334. void CRYPTO_free(void *);
  335. void *CRYPTO_realloc(void *addr,int num, const char *file, int line);
  336. void *CRYPTO_remalloc(void *addr,int num, const char *file, int line);
  337. void CRYPTO_set_mem_debug_options(long bits);
  338. long CRYPTO_get_mem_debug_options(void);
  339. #define CRYPTO_push_info(info) \
  340. CRYPTO_push_info_(info, __FILE__, __LINE__);
  341. int CRYPTO_push_info_(const char *info, const char *file, int line);
  342. int CRYPTO_pop_info(void);
  343. int CRYPTO_remove_all_info(void);
  344. /* The last argument has the following significance:
  345. *
  346. * 0: called before the actual memory allocation has taken place
  347. * 1: called after the actual memory allocation has taken place
  348. */
  349. void CRYPTO_dbg_malloc(void *addr,int num,const char *file,int line,int before_p);
  350. void CRYPTO_dbg_realloc(void *addr1,void *addr2,int num,const char *file,int line,int before_p);
  351. void CRYPTO_dbg_free(void *addr,int before_p);
  352. /* Tell the debugging code about options. By default, the following values
  353. * apply:
  354. *
  355. * 0: Clear all options.
  356. * 1: Set the "Show Time" option.
  357. * 2: Set the "Show Thread Number" option.
  358. * 3: 1 + 2
  359. */
  360. void CRYPTO_dbg_set_options(long bits);
  361. long CRYPTO_dbg_get_options(void);
  362. #ifndef OPENSSL_NO_FP_API
  363. void CRYPTO_mem_leaks_fp(FILE *);
  364. #endif
  365. void CRYPTO_mem_leaks(struct bio_st *bio);
  366. /* unsigned long order, char *file, int line, int num_bytes, char *addr */
  367. typedef void *CRYPTO_MEM_LEAK_CB(unsigned long, const char *, int, int, void *);
  368. void CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb);
  369. /* BEGIN ERROR CODES */
  370. /* The following lines are auto generated by the script mkerr.pl. Any changes
  371. * made after this point may be overwritten when the script is next run.
  372. */
  373. void ERR_load_CRYPTO_strings(void);
  374. /* Error codes for the CRYPTO functions. */
  375. /* Function codes. */
  376. #define CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX 100
  377. #define CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID 103
  378. #define CRYPTO_F_CRYPTO_GET_NEW_LOCKID 101
  379. #define CRYPTO_F_CRYPTO_SET_EX_DATA 102
  380. #define CRYPTO_F_DEF_ADD_INDEX 104
  381. #define CRYPTO_F_DEF_GET_CLASS 105
  382. #define CRYPTO_F_INT_DUP_EX_DATA 106
  383. #define CRYPTO_F_INT_FREE_EX_DATA 107
  384. #define CRYPTO_F_INT_NEW_EX_DATA 108
  385. /* Reason codes. */
  386. #define CRYPTO_R_NO_DYNLOCK_CREATE_CALLBACK 100
  387. #ifdef __cplusplus
  388. }
  389. #endif
  390. #endif