crypto.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  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 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. /* When changing the CRYPTO_LOCK_* list, be sure to maintin the text lock
  86. * names in cryptlib.c
  87. */
  88. #define CRYPTO_LOCK_ERR 1
  89. #define CRYPTO_LOCK_ERR_HASH 2
  90. #define CRYPTO_LOCK_X509 3
  91. #define CRYPTO_LOCK_X509_INFO 4
  92. #define CRYPTO_LOCK_X509_PKEY 5
  93. #define CRYPTO_LOCK_X509_CRL 6
  94. #define CRYPTO_LOCK_X509_REQ 7
  95. #define CRYPTO_LOCK_DSA 8
  96. #define CRYPTO_LOCK_RSA 9
  97. #define CRYPTO_LOCK_EVP_PKEY 10
  98. #define CRYPTO_LOCK_X509_STORE 11
  99. #define CRYPTO_LOCK_SSL_CTX 12
  100. #define CRYPTO_LOCK_SSL_CERT 13
  101. #define CRYPTO_LOCK_SSL_SESSION 14
  102. #define CRYPTO_LOCK_SSL_SESS_CERT 15
  103. #define CRYPTO_LOCK_SSL 16
  104. /* for binary compatibility between 0.9.6 minor versions,
  105. * reuse an existing lock (later version use a new one): */
  106. # define CRYPTO_LOCK_SSL_METHOD CRYPTO_LOCK_SSL_CTX
  107. #define CRYPTO_LOCK_RAND 17
  108. #define CRYPTO_LOCK_RAND2 18
  109. #define CRYPTO_LOCK_MALLOC 19
  110. #define CRYPTO_LOCK_BIO 20
  111. #define CRYPTO_LOCK_GETHOSTBYNAME 21
  112. #define CRYPTO_LOCK_GETSERVBYNAME 22
  113. #define CRYPTO_LOCK_READDIR 23
  114. #define CRYPTO_LOCK_RSA_BLINDING 24
  115. #define CRYPTO_LOCK_DH 25
  116. #define CRYPTO_LOCK_MALLOC2 26
  117. #define CRYPTO_LOCK_DSO 27
  118. #define CRYPTO_LOCK_DYNLOCK 28
  119. #define CRYPTO_NUM_LOCKS 29
  120. #define CRYPTO_LOCK 1
  121. #define CRYPTO_UNLOCK 2
  122. #define CRYPTO_READ 4
  123. #define CRYPTO_WRITE 8
  124. #ifndef 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. /* This is the default callbacks, but we can have others as well:
  203. * this is needed in Win32 where the application malloc and the
  204. * library malloc may not be the same.
  205. */
  206. #define CRYPTO_malloc_init() CRYPTO_set_mem_functions(\
  207. malloc, realloc, free)
  208. #if defined CRYPTO_MDEBUG_ALL || defined CRYPTO_MDEBUG_TIME || defined CRYPTO_MDEBUG_THREAD
  209. # ifndef CRYPTO_MDEBUG /* avoid duplicate #define */
  210. # define CRYPTO_MDEBUG
  211. # endif
  212. #endif
  213. /* Set standard debugging functions (not done by default
  214. * unless CRYPTO_MDEBUG is defined) */
  215. #define CRYPTO_malloc_debug_init() do {\
  216. CRYPTO_set_mem_debug_functions(\
  217. CRYPTO_dbg_malloc,\
  218. CRYPTO_dbg_realloc,\
  219. CRYPTO_dbg_free,\
  220. CRYPTO_dbg_set_options,\
  221. CRYPTO_dbg_get_options);\
  222. } while(0)
  223. int CRYPTO_mem_ctrl(int mode);
  224. int CRYPTO_is_mem_check_on(void);
  225. /* for applications */
  226. #define MemCheck_start() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON)
  227. #define MemCheck_stop() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_OFF)
  228. /* for library-internal use */
  229. #define MemCheck_on() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE)
  230. #define MemCheck_off() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE)
  231. #define is_MemCheck_on() CRYPTO_is_mem_check_on()
  232. #define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__)
  233. #define OPENSSL_realloc(addr,num) \
  234. CRYPTO_realloc((char *)addr,(int)num,__FILE__,__LINE__)
  235. #define OPENSSL_remalloc(addr,num) \
  236. CRYPTO_remalloc((char **)addr,(int)num,__FILE__,__LINE__)
  237. #define OPENSSL_freeFunc CRYPTO_free
  238. #define OPENSSL_free(addr) CRYPTO_free(addr)
  239. #define OPENSSL_malloc_locked(num) \
  240. CRYPTO_malloc_locked((int)num,__FILE__,__LINE__)
  241. #define OPENSSL_free_locked(addr) CRYPTO_free_locked(addr)
  242. const char *SSLeay_version(int type);
  243. unsigned long SSLeay(void);
  244. int OPENSSL_issetugid(void);
  245. int CRYPTO_get_ex_new_index(int idx, STACK_OF(CRYPTO_EX_DATA_FUNCS) **skp, long argl, void *argp,
  246. CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
  247. int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val);
  248. void *CRYPTO_get_ex_data(CRYPTO_EX_DATA *ad,int idx);
  249. int CRYPTO_dup_ex_data(STACK_OF(CRYPTO_EX_DATA_FUNCS) *meth, CRYPTO_EX_DATA *to,
  250. CRYPTO_EX_DATA *from);
  251. void CRYPTO_free_ex_data(STACK_OF(CRYPTO_EX_DATA_FUNCS) *meth, void *obj, CRYPTO_EX_DATA *ad);
  252. void CRYPTO_new_ex_data(STACK_OF(CRYPTO_EX_DATA_FUNCS) *meth, void *obj, CRYPTO_EX_DATA *ad);
  253. int CRYPTO_get_new_lockid(char *name);
  254. int CRYPTO_num_locks(void); /* return CRYPTO_NUM_LOCKS (shared libs!) */
  255. void CRYPTO_lock(int mode, int type,const char *file,int line);
  256. void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
  257. const char *file,int line));
  258. void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
  259. int line);
  260. void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
  261. const char *file, int line));
  262. int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
  263. const char *file,int line);
  264. void CRYPTO_set_id_callback(unsigned long (*func)(void));
  265. unsigned long (*CRYPTO_get_id_callback(void))(void);
  266. unsigned long CRYPTO_thread_id(void);
  267. const char *CRYPTO_get_lock_name(int type);
  268. int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
  269. int line);
  270. int CRYPTO_get_new_dynlockid(void);
  271. void CRYPTO_destroy_dynlockid(int i);
  272. struct CRYPTO_dynlock_value *CRYPTO_get_dynlock_value(int i);
  273. void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function)(const char *file, int line));
  274. void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
  275. void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)(struct CRYPTO_dynlock_value *l, const char *file, int line));
  276. struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))(const char *file,int line);
  277. void (*CRYPTO_get_dynlock_lock_callback(void))(int mode, struct CRYPTO_dynlock_value *l, const char *file,int line);
  278. void (*CRYPTO_get_dynlock_destroy_callback(void))(struct CRYPTO_dynlock_value *l, const char *file,int line);
  279. /* CRYPTO_set_mem_functions includes CRYPTO_set_locked_mem_functions --
  280. * call the latter last if you need different functions */
  281. int CRYPTO_set_mem_functions(void *(*m)(size_t),void *(*r)(void *,size_t), void (*f)(void *));
  282. int CRYPTO_set_locked_mem_functions(void *(*m)(size_t), void (*free_func)(void *));
  283. int CRYPTO_set_mem_debug_functions(void (*m)(void *,int,const char *,int,int),
  284. void (*r)(void *,void *,int,const char *,int,int),
  285. void (*f)(void *,int),
  286. void (*so)(long),
  287. long (*go)(void));
  288. void CRYPTO_get_mem_functions(void *(**m)(size_t),void *(**r)(void *, size_t), void (**f)(void *));
  289. void CRYPTO_get_locked_mem_functions(void *(**m)(size_t), void (**f)(void *));
  290. void CRYPTO_get_mem_debug_functions(void (**m)(void *,int,const char *,int,int),
  291. void (**r)(void *,void *,int,const char *,int,int),
  292. void (**f)(void *,int),
  293. void (**so)(long),
  294. long (**go)(void));
  295. void *CRYPTO_malloc_locked(int num, const char *file, int line);
  296. void CRYPTO_free_locked(void *);
  297. void *CRYPTO_malloc(int num, const char *file, int line);
  298. void CRYPTO_free(void *);
  299. void *CRYPTO_realloc(void *addr,int num, const char *file, int line);
  300. void *CRYPTO_remalloc(void *addr,int num, const char *file, int line);
  301. void OPENSSL_cleanse(void *ptr, size_t len);
  302. void CRYPTO_set_mem_debug_options(long bits);
  303. long CRYPTO_get_mem_debug_options(void);
  304. #define CRYPTO_push_info(info) \
  305. CRYPTO_push_info_(info, __FILE__, __LINE__);
  306. int CRYPTO_push_info_(const char *info, const char *file, int line);
  307. int CRYPTO_pop_info(void);
  308. int CRYPTO_remove_all_info(void);
  309. /* Default debugging functions (enabled by CRYPTO_malloc_debug_init() macro;
  310. * used as default in CRYPTO_MDEBUG compilations): */
  311. /* The last argument has the following significance:
  312. *
  313. * 0: called before the actual memory allocation has taken place
  314. * 1: called after the actual memory allocation has taken place
  315. */
  316. void CRYPTO_dbg_malloc(void *addr,int num,const char *file,int line,int before_p);
  317. void CRYPTO_dbg_realloc(void *addr1,void *addr2,int num,const char *file,int line,int before_p);
  318. void CRYPTO_dbg_free(void *addr,int before_p);
  319. /* Tell the debugging code about options. By default, the following values
  320. * apply:
  321. *
  322. * 0: Clear all options.
  323. * V_CRYPTO_MDEBUG_TIME (1): Set the "Show Time" option.
  324. * V_CRYPTO_MDEBUG_THREAD (2): Set the "Show Thread Number" option.
  325. * V_CRYPTO_MDEBUG_ALL (3): 1 + 2
  326. */
  327. void CRYPTO_dbg_set_options(long bits);
  328. long CRYPTO_dbg_get_options(void);
  329. #ifndef NO_FP_API
  330. void CRYPTO_mem_leaks_fp(FILE *);
  331. #endif
  332. void CRYPTO_mem_leaks(struct bio_st *bio);
  333. /* unsigned long order, char *file, int line, int num_bytes, char *addr */
  334. void CRYPTO_mem_leaks_cb(void (*cb)(unsigned long, const char *, int, int, void *));
  335. /* BEGIN ERROR CODES */
  336. /* The following lines are auto generated by the script mkerr.pl. Any changes
  337. * made after this point may be overwritten when the script is next run.
  338. */
  339. void ERR_load_CRYPTO_strings(void);
  340. /* Error codes for the CRYPTO functions. */
  341. /* Function codes. */
  342. #define CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX 100
  343. #define CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID 103
  344. #define CRYPTO_F_CRYPTO_GET_NEW_LOCKID 101
  345. #define CRYPTO_F_CRYPTO_SET_EX_DATA 102
  346. /* Reason codes. */
  347. #define CRYPTO_R_NO_DYNLOCK_CREATE_CALLBACK 100
  348. #ifdef __cplusplus
  349. }
  350. #endif
  351. #endif