crypto.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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_SSL_METHOD 17
  106. #define CRYPTO_LOCK_RAND 18
  107. #define CRYPTO_LOCK_RAND2 19
  108. #define CRYPTO_LOCK_MALLOC 20
  109. #define CRYPTO_LOCK_BIO 21
  110. #define CRYPTO_LOCK_GETHOSTBYNAME 22
  111. #define CRYPTO_LOCK_GETSERVBYNAME 23
  112. #define CRYPTO_LOCK_READDIR 24
  113. #define CRYPTO_LOCK_RSA_BLINDING 25
  114. #define CRYPTO_LOCK_DH 26
  115. #define CRYPTO_LOCK_MALLOC2 27
  116. #define CRYPTO_LOCK_DSO 28
  117. #define CRYPTO_LOCK_DYNLOCK 29
  118. #define CRYPTO_LOCK_ENGINE 30
  119. #define CRYPTO_LOCK_UI 31
  120. #define CRYPTO_NUM_LOCKS 32
  121. #define CRYPTO_LOCK 1
  122. #define CRYPTO_UNLOCK 2
  123. #define CRYPTO_READ 4
  124. #define CRYPTO_WRITE 8
  125. #ifndef OPENSSL_NO_LOCKING
  126. #ifndef CRYPTO_w_lock
  127. #define CRYPTO_w_lock(type) \
  128. CRYPTO_lock(CRYPTO_LOCK|CRYPTO_WRITE,type,__FILE__,__LINE__)
  129. #define CRYPTO_w_unlock(type) \
  130. CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_WRITE,type,__FILE__,__LINE__)
  131. #define CRYPTO_r_lock(type) \
  132. CRYPTO_lock(CRYPTO_LOCK|CRYPTO_READ,type,__FILE__,__LINE__)
  133. #define CRYPTO_r_unlock(type) \
  134. CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_READ,type,__FILE__,__LINE__)
  135. #define CRYPTO_add(addr,amount,type) \
  136. CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
  137. #endif
  138. #else
  139. #define CRYPTO_w_lock(a)
  140. #define CRYPTO_w_unlock(a)
  141. #define CRYPTO_r_lock(a)
  142. #define CRYPTO_r_unlock(a)
  143. #define CRYPTO_add(a,b,c) ((*(a))+=(b))
  144. #endif
  145. /* Some applications as well as some parts of OpenSSL need to allocate
  146. and deallocate locks in a dynamic fashion. The following typedef
  147. makes this possible in a type-safe manner. */
  148. /* struct CRYPTO_dynlock_value has to be defined by the application. */
  149. typedef struct
  150. {
  151. int references;
  152. struct CRYPTO_dynlock_value *data;
  153. } CRYPTO_dynlock;
  154. /* The following can be used to detect memory leaks in the SSLeay library.
  155. * It used, it turns on malloc checking */
  156. #define CRYPTO_MEM_CHECK_OFF 0x0 /* an enume */
  157. #define CRYPTO_MEM_CHECK_ON 0x1 /* a bit */
  158. #define CRYPTO_MEM_CHECK_ENABLE 0x2 /* a bit */
  159. #define CRYPTO_MEM_CHECK_DISABLE 0x3 /* an enume */
  160. /* The following are bit values to turn on or off options connected to the
  161. * malloc checking functionality */
  162. /* Adds time to the memory checking information */
  163. #define V_CRYPTO_MDEBUG_TIME 0x1 /* a bit */
  164. /* Adds thread number to the memory checking information */
  165. #define V_CRYPTO_MDEBUG_THREAD 0x2 /* a bit */
  166. #define V_CRYPTO_MDEBUG_ALL (V_CRYPTO_MDEBUG_TIME | V_CRYPTO_MDEBUG_THREAD)
  167. /* predec of the BIO type */
  168. typedef struct bio_st BIO_dummy;
  169. typedef struct crypto_ex_data_st
  170. {
  171. STACK *sk;
  172. int dummy; /* gcc is screwing up this data structure :-( */
  173. } CRYPTO_EX_DATA;
  174. /* Called when a new object is created */
  175. typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
  176. int idx, long argl, void *argp);
  177. /* Called when an object is free()ed */
  178. typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
  179. int idx, long argl, void *argp);
  180. /* Called when we need to dup an object */
  181. typedef int CRYPTO_EX_dup(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d,
  182. int idx, long argl, void *argp);
  183. /* This stuff is basically class callback functions
  184. * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */
  185. typedef struct crypto_ex_data_func_st
  186. {
  187. long argl; /* Arbitary long */
  188. void *argp; /* Arbitary void * */
  189. CRYPTO_EX_new *new_func;
  190. CRYPTO_EX_free *free_func;
  191. CRYPTO_EX_dup *dup_func;
  192. } CRYPTO_EX_DATA_FUNCS;
  193. DECLARE_STACK_OF(CRYPTO_EX_DATA_FUNCS)
  194. /* Per class, we have a STACK of CRYPTO_EX_DATA_FUNCS for each CRYPTO_EX_DATA
  195. * entry.
  196. */
  197. #define CRYPTO_EX_INDEX_BIO 0
  198. #define CRYPTO_EX_INDEX_SSL 1
  199. #define CRYPTO_EX_INDEX_SSL_CTX 2
  200. #define CRYPTO_EX_INDEX_SSL_SESSION 3
  201. #define CRYPTO_EX_INDEX_X509_STORE 4
  202. #define CRYPTO_EX_INDEX_X509_STORE_CTX 5
  203. #define CRYPTO_EX_INDEX_RSA 6
  204. #define CRYPTO_EX_INDEX_DSA 7
  205. #define CRYPTO_EX_INDEX_DH 8
  206. #define CRYPTO_EX_INDEX_ENGINE 9
  207. #define CRYPTO_EX_INDEX_X509 10
  208. #define CRYPTO_EX_INDEX_UI 11
  209. /* Dynamically assigned indexes start from this value (don't use directly, use
  210. * via CRYPTO_ex_data_new_class). */
  211. #define CRYPTO_EX_INDEX_USER 100
  212. /* This is the default callbacks, but we can have others as well:
  213. * this is needed in Win32 where the application malloc and the
  214. * library malloc may not be the same.
  215. */
  216. #define CRYPTO_malloc_init() CRYPTO_set_mem_functions(\
  217. malloc, realloc, free)
  218. #if defined CRYPTO_MDEBUG_ALL || defined CRYPTO_MDEBUG_TIME || defined CRYPTO_MDEBUG_THREAD
  219. # ifndef CRYPTO_MDEBUG /* avoid duplicate #define */
  220. # define CRYPTO_MDEBUG
  221. # endif
  222. #endif
  223. /* Set standard debugging functions (not done by default
  224. * unless CRYPTO_MDEBUG is defined) */
  225. #define CRYPTO_malloc_debug_init() do {\
  226. CRYPTO_set_mem_debug_functions(\
  227. CRYPTO_dbg_malloc,\
  228. CRYPTO_dbg_realloc,\
  229. CRYPTO_dbg_free,\
  230. CRYPTO_dbg_set_options,\
  231. CRYPTO_dbg_get_options);\
  232. } while(0)
  233. int CRYPTO_mem_ctrl(int mode);
  234. int CRYPTO_is_mem_check_on(void);
  235. /* for applications */
  236. #define MemCheck_start() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON)
  237. #define MemCheck_stop() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_OFF)
  238. /* for library-internal use */
  239. #define MemCheck_on() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE)
  240. #define MemCheck_off() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE)
  241. #define is_MemCheck_on() CRYPTO_is_mem_check_on()
  242. #define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__)
  243. #define OPENSSL_realloc(addr,num) \
  244. CRYPTO_realloc((char *)addr,(int)num,__FILE__,__LINE__)
  245. #define OPENSSL_realloc_clean(addr,old_num,num) \
  246. CRYPTO_realloc_clean(addr,old_num,num,__FILE__,__LINE__)
  247. #define OPENSSL_remalloc(addr,num) \
  248. CRYPTO_remalloc((char **)addr,(int)num,__FILE__,__LINE__)
  249. #define OPENSSL_freeFunc CRYPTO_free
  250. #define OPENSSL_free(addr) CRYPTO_free(addr)
  251. #define OPENSSL_malloc_locked(num) \
  252. CRYPTO_malloc_locked((int)num,__FILE__,__LINE__)
  253. #define OPENSSL_free_locked(addr) CRYPTO_free_locked(addr)
  254. const char *SSLeay_version(int type);
  255. unsigned long SSLeay(void);
  256. int OPENSSL_issetugid(void);
  257. /* An opaque type representing an implementation of "ex_data" support */
  258. typedef struct st_CRYPTO_EX_DATA_IMPL CRYPTO_EX_DATA_IMPL;
  259. /* Return an opaque pointer to the current "ex_data" implementation */
  260. const CRYPTO_EX_DATA_IMPL *CRYPTO_get_ex_data_implementation(void);
  261. /* Sets the "ex_data" implementation to be used (if it's not too late) */
  262. int CRYPTO_set_ex_data_implementation(const CRYPTO_EX_DATA_IMPL *i);
  263. /* Get a new "ex_data" class, and return the corresponding "class_index" */
  264. int CRYPTO_ex_data_new_class(void);
  265. /* Within a given class, get/register a new index */
  266. int CRYPTO_get_ex_new_index(int class_index, long argl, void *argp,
  267. CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func,
  268. CRYPTO_EX_free *free_func);
  269. /* Initialise/duplicate/free CRYPTO_EX_DATA variables corresponding to a given
  270. * class (invokes whatever per-class callbacks are applicable) */
  271. int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
  272. int CRYPTO_dup_ex_data(int class_index, CRYPTO_EX_DATA *to,
  273. CRYPTO_EX_DATA *from);
  274. void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
  275. /* Get/set data in a CRYPTO_EX_DATA variable corresponding to a particular index
  276. * (relative to the class type involved) */
  277. int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val);
  278. void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad,int idx);
  279. /* This function cleans up all "ex_data" state. It mustn't be called under
  280. * potential race-conditions. */
  281. void CRYPTO_cleanup_all_ex_data(void);
  282. int CRYPTO_get_new_lockid(char *name);
  283. int CRYPTO_num_locks(void); /* return CRYPTO_NUM_LOCKS (shared libs!) */
  284. void CRYPTO_lock(int mode, int type,const char *file,int line);
  285. void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
  286. const char *file,int line));
  287. void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
  288. int line);
  289. void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
  290. const char *file, int line));
  291. int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
  292. const char *file,int line);
  293. void CRYPTO_set_id_callback(unsigned long (*func)(void));
  294. unsigned long (*CRYPTO_get_id_callback(void))(void);
  295. unsigned long CRYPTO_thread_id(void);
  296. const char *CRYPTO_get_lock_name(int type);
  297. int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
  298. int line);
  299. int CRYPTO_get_new_dynlockid(void);
  300. void CRYPTO_destroy_dynlockid(int i);
  301. struct CRYPTO_dynlock_value *CRYPTO_get_dynlock_value(int i);
  302. void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function)(const char *file, int line));
  303. void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
  304. void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)(struct CRYPTO_dynlock_value *l, const char *file, int line));
  305. struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))(const char *file,int line);
  306. void (*CRYPTO_get_dynlock_lock_callback(void))(int mode, struct CRYPTO_dynlock_value *l, const char *file,int line);
  307. void (*CRYPTO_get_dynlock_destroy_callback(void))(struct CRYPTO_dynlock_value *l, const char *file,int line);
  308. /* CRYPTO_set_mem_functions includes CRYPTO_set_locked_mem_functions --
  309. * call the latter last if you need different functions */
  310. int CRYPTO_set_mem_functions(void *(*m)(size_t),void *(*r)(void *,size_t), void (*f)(void *));
  311. int CRYPTO_set_locked_mem_functions(void *(*m)(size_t), void (*free_func)(void *));
  312. int CRYPTO_set_mem_ex_functions(void *(*m)(size_t,const char *,int),
  313. void *(*r)(void *,size_t,const char *,int),
  314. void (*f)(void *));
  315. int CRYPTO_set_locked_mem_ex_functions(void *(*m)(size_t,const char *,int),
  316. void (*free_func)(void *));
  317. int CRYPTO_set_mem_debug_functions(void (*m)(void *,int,const char *,int,int),
  318. void (*r)(void *,void *,int,const char *,int,int),
  319. void (*f)(void *,int),
  320. void (*so)(long),
  321. long (*go)(void));
  322. void CRYPTO_get_mem_functions(void *(**m)(size_t),void *(**r)(void *, size_t), void (**f)(void *));
  323. void CRYPTO_get_locked_mem_functions(void *(**m)(size_t), void (**f)(void *));
  324. void CRYPTO_get_mem_ex_functions(void *(**m)(size_t,const char *,int),
  325. void *(**r)(void *, size_t,const char *,int),
  326. void (**f)(void *));
  327. void CRYPTO_get_locked_mem_ex_functions(void *(**m)(size_t,const char *,int),
  328. void (**f)(void *));
  329. void CRYPTO_get_mem_debug_functions(void (**m)(void *,int,const char *,int,int),
  330. void (**r)(void *,void *,int,const char *,int,int),
  331. void (**f)(void *,int),
  332. void (**so)(long),
  333. long (**go)(void));
  334. void *CRYPTO_malloc_locked(int num, const char *file, int line);
  335. void CRYPTO_free_locked(void *);
  336. void *CRYPTO_malloc(int num, const char *file, int line);
  337. void CRYPTO_free(void *);
  338. void *CRYPTO_realloc(void *addr,int num, const char *file, int line);
  339. void *CRYPTO_realloc_clean(void *addr,int old_num,int num,const char *file,
  340. int line);
  341. void *CRYPTO_remalloc(void *addr,int num, const char *file, int line);
  342. void OPENSSL_cleanse(void *ptr, size_t len);
  343. void CRYPTO_set_mem_debug_options(long bits);
  344. long CRYPTO_get_mem_debug_options(void);
  345. #define CRYPTO_push_info(info) \
  346. CRYPTO_push_info_(info, __FILE__, __LINE__);
  347. int CRYPTO_push_info_(const char *info, const char *file, int line);
  348. int CRYPTO_pop_info(void);
  349. int CRYPTO_remove_all_info(void);
  350. /* Default debugging functions (enabled by CRYPTO_malloc_debug_init() macro;
  351. * used as default in CRYPTO_MDEBUG compilations): */
  352. /* The last argument has the following significance:
  353. *
  354. * 0: called before the actual memory allocation has taken place
  355. * 1: called after the actual memory allocation has taken place
  356. */
  357. void CRYPTO_dbg_malloc(void *addr,int num,const char *file,int line,int before_p);
  358. void CRYPTO_dbg_realloc(void *addr1,void *addr2,int num,const char *file,int line,int before_p);
  359. void CRYPTO_dbg_free(void *addr,int before_p);
  360. /* Tell the debugging code about options. By default, the following values
  361. * apply:
  362. *
  363. * 0: Clear all options.
  364. * V_CRYPTO_MDEBUG_TIME (1): Set the "Show Time" option.
  365. * V_CRYPTO_MDEBUG_THREAD (2): Set the "Show Thread Number" option.
  366. * V_CRYPTO_MDEBUG_ALL (3): 1 + 2
  367. */
  368. void CRYPTO_dbg_set_options(long bits);
  369. long CRYPTO_dbg_get_options(void);
  370. #ifndef OPENSSL_NO_FP_API
  371. void CRYPTO_mem_leaks_fp(FILE *);
  372. #endif
  373. void CRYPTO_mem_leaks(struct bio_st *bio);
  374. /* unsigned long order, char *file, int line, int num_bytes, char *addr */
  375. typedef void *CRYPTO_MEM_LEAK_CB(unsigned long, const char *, int, int, void *);
  376. void CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb);
  377. /* die if we have to */
  378. void OpenSSLDie(const char *file,int line,const char *assertion);
  379. #define OPENSSL_assert(e) ((e) ? (void)0 : OpenSSLDie(__FILE__, __LINE__, #e))
  380. /* BEGIN ERROR CODES */
  381. /* The following lines are auto generated by the script mkerr.pl. Any changes
  382. * made after this point may be overwritten when the script is next run.
  383. */
  384. void ERR_load_CRYPTO_strings(void);
  385. /* Error codes for the CRYPTO functions. */
  386. /* Function codes. */
  387. #define CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX 100
  388. #define CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID 103
  389. #define CRYPTO_F_CRYPTO_GET_NEW_LOCKID 101
  390. #define CRYPTO_F_CRYPTO_SET_EX_DATA 102
  391. #define CRYPTO_F_DEF_ADD_INDEX 104
  392. #define CRYPTO_F_DEF_GET_CLASS 105
  393. #define CRYPTO_F_INT_DUP_EX_DATA 106
  394. #define CRYPTO_F_INT_FREE_EX_DATA 107
  395. #define CRYPTO_F_INT_NEW_EX_DATA 108
  396. /* Reason codes. */
  397. #define CRYPTO_R_NO_DYNLOCK_CREATE_CALLBACK 100
  398. #ifdef __cplusplus
  399. }
  400. #endif
  401. #endif