crypto.h.in 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. /*
  2. * {- join("\n * ", @autowarntext) -}
  3. *
  4. * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
  5. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
  6. *
  7. * Licensed under the Apache License 2.0 (the "License"). You may not use
  8. * this file except in compliance with the License. You can obtain a copy
  9. * in the file LICENSE in the source distribution or at
  10. * https://www.openssl.org/source/license.html
  11. */
  12. {-
  13. use OpenSSL::stackhash qw(generate_stack_macros);
  14. -}
  15. #ifndef OPENSSL_CRYPTO_H
  16. # define OPENSSL_CRYPTO_H
  17. # pragma once
  18. # include <openssl/macros.h>
  19. # ifndef OPENSSL_NO_DEPRECATED_3_0
  20. # define HEADER_CRYPTO_H
  21. # endif
  22. # include <stdlib.h>
  23. # include <time.h>
  24. # include <openssl/e_os2.h>
  25. # ifndef OPENSSL_NO_STDIO
  26. # include <stdio.h>
  27. # endif
  28. # include <openssl/safestack.h>
  29. # include <openssl/opensslv.h>
  30. # include <openssl/types.h>
  31. # include <openssl/opensslconf.h>
  32. # include <openssl/cryptoerr.h>
  33. # include <openssl/core.h>
  34. # ifdef CHARSET_EBCDIC
  35. # include <openssl/ebcdic.h>
  36. # endif
  37. /*
  38. * Resolve problems on some operating systems with symbol names that clash
  39. * one way or another
  40. */
  41. # include <openssl/symhacks.h>
  42. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  43. # include <openssl/opensslv.h>
  44. # endif
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  49. # define SSLeay OpenSSL_version_num
  50. # define SSLeay_version OpenSSL_version
  51. # define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER
  52. # define SSLEAY_VERSION OPENSSL_VERSION
  53. # define SSLEAY_CFLAGS OPENSSL_CFLAGS
  54. # define SSLEAY_BUILT_ON OPENSSL_BUILT_ON
  55. # define SSLEAY_PLATFORM OPENSSL_PLATFORM
  56. # define SSLEAY_DIR OPENSSL_DIR
  57. /*
  58. * Old type for allocating dynamic locks. No longer used. Use the new thread
  59. * API instead.
  60. */
  61. typedef struct {
  62. int dummy;
  63. } CRYPTO_dynlock;
  64. # endif /* OPENSSL_NO_DEPRECATED_1_1_0 */
  65. typedef void CRYPTO_RWLOCK;
  66. CRYPTO_RWLOCK *CRYPTO_THREAD_lock_new(void);
  67. __owur int CRYPTO_THREAD_read_lock(CRYPTO_RWLOCK *lock);
  68. __owur int CRYPTO_THREAD_write_lock(CRYPTO_RWLOCK *lock);
  69. int CRYPTO_THREAD_unlock(CRYPTO_RWLOCK *lock);
  70. void CRYPTO_THREAD_lock_free(CRYPTO_RWLOCK *lock);
  71. int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock);
  72. int CRYPTO_atomic_or(uint64_t *val, uint64_t op, uint64_t *ret,
  73. CRYPTO_RWLOCK *lock);
  74. int CRYPTO_atomic_load(uint64_t *val, uint64_t *ret, CRYPTO_RWLOCK *lock);
  75. int CRYPTO_atomic_load_int(int *val, int *ret, CRYPTO_RWLOCK *lock);
  76. int CRYPTO_atomic_store(uint64_t *dst, uint64_t val, CRYPTO_RWLOCK *lock);
  77. /* No longer needed, so this is a no-op */
  78. #define OPENSSL_malloc_init() while(0) continue
  79. # define OPENSSL_malloc(num) \
  80. CRYPTO_malloc(num, OPENSSL_FILE, OPENSSL_LINE)
  81. # define OPENSSL_zalloc(num) \
  82. CRYPTO_zalloc(num, OPENSSL_FILE, OPENSSL_LINE)
  83. # define OPENSSL_aligned_alloc(num, alignment, freeptr) \
  84. CRYPTO_aligned_alloc(num, alignment, freeptr, \
  85. OPENSSL_FILE, OPENSSL_LINE)
  86. # define OPENSSL_realloc(addr, num) \
  87. CRYPTO_realloc(addr, num, OPENSSL_FILE, OPENSSL_LINE)
  88. # define OPENSSL_clear_realloc(addr, old_num, num) \
  89. CRYPTO_clear_realloc(addr, old_num, num, OPENSSL_FILE, OPENSSL_LINE)
  90. # define OPENSSL_clear_free(addr, num) \
  91. CRYPTO_clear_free(addr, num, OPENSSL_FILE, OPENSSL_LINE)
  92. # define OPENSSL_free(addr) \
  93. CRYPTO_free(addr, OPENSSL_FILE, OPENSSL_LINE)
  94. # define OPENSSL_memdup(str, s) \
  95. CRYPTO_memdup((str), s, OPENSSL_FILE, OPENSSL_LINE)
  96. # define OPENSSL_strdup(str) \
  97. CRYPTO_strdup(str, OPENSSL_FILE, OPENSSL_LINE)
  98. # define OPENSSL_strndup(str, n) \
  99. CRYPTO_strndup(str, n, OPENSSL_FILE, OPENSSL_LINE)
  100. # define OPENSSL_secure_malloc(num) \
  101. CRYPTO_secure_malloc(num, OPENSSL_FILE, OPENSSL_LINE)
  102. # define OPENSSL_secure_zalloc(num) \
  103. CRYPTO_secure_zalloc(num, OPENSSL_FILE, OPENSSL_LINE)
  104. # define OPENSSL_secure_free(addr) \
  105. CRYPTO_secure_free(addr, OPENSSL_FILE, OPENSSL_LINE)
  106. # define OPENSSL_secure_clear_free(addr, num) \
  107. CRYPTO_secure_clear_free(addr, num, OPENSSL_FILE, OPENSSL_LINE)
  108. # define OPENSSL_secure_actual_size(ptr) \
  109. CRYPTO_secure_actual_size(ptr)
  110. size_t OPENSSL_strlcpy(char *dst, const char *src, size_t siz);
  111. size_t OPENSSL_strlcat(char *dst, const char *src, size_t siz);
  112. size_t OPENSSL_strnlen(const char *str, size_t maxlen);
  113. int OPENSSL_buf2hexstr_ex(char *str, size_t str_n, size_t *strlength,
  114. const unsigned char *buf, size_t buflen,
  115. const char sep);
  116. char *OPENSSL_buf2hexstr(const unsigned char *buf, long buflen);
  117. int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen,
  118. const char *str, const char sep);
  119. unsigned char *OPENSSL_hexstr2buf(const char *str, long *buflen);
  120. int OPENSSL_hexchar2int(unsigned char c);
  121. int OPENSSL_strcasecmp(const char *s1, const char *s2);
  122. int OPENSSL_strncasecmp(const char *s1, const char *s2, size_t n);
  123. # define OPENSSL_MALLOC_MAX_NELEMS(type) (((1U<<(sizeof(int)*8-1))-1)/sizeof(type))
  124. /*
  125. * These functions return the values of OPENSSL_VERSION_MAJOR,
  126. * OPENSSL_VERSION_MINOR, OPENSSL_VERSION_PATCH, OPENSSL_VERSION_PRE_RELEASE
  127. * and OPENSSL_VERSION_BUILD_METADATA, respectively.
  128. */
  129. unsigned int OPENSSL_version_major(void);
  130. unsigned int OPENSSL_version_minor(void);
  131. unsigned int OPENSSL_version_patch(void);
  132. const char *OPENSSL_version_pre_release(void);
  133. const char *OPENSSL_version_build_metadata(void);
  134. unsigned long OpenSSL_version_num(void);
  135. const char *OpenSSL_version(int type);
  136. # define OPENSSL_VERSION 0
  137. # define OPENSSL_CFLAGS 1
  138. # define OPENSSL_BUILT_ON 2
  139. # define OPENSSL_PLATFORM 3
  140. # define OPENSSL_DIR 4
  141. # define OPENSSL_ENGINES_DIR 5
  142. # define OPENSSL_VERSION_STRING 6
  143. # define OPENSSL_FULL_VERSION_STRING 7
  144. # define OPENSSL_MODULES_DIR 8
  145. # define OPENSSL_CPU_INFO 9
  146. const char *OPENSSL_info(int type);
  147. /*
  148. * The series starts at 1001 to avoid confusion with the OpenSSL_version
  149. * types.
  150. */
  151. # define OPENSSL_INFO_CONFIG_DIR 1001
  152. # define OPENSSL_INFO_ENGINES_DIR 1002
  153. # define OPENSSL_INFO_MODULES_DIR 1003
  154. # define OPENSSL_INFO_DSO_EXTENSION 1004
  155. # define OPENSSL_INFO_DIR_FILENAME_SEPARATOR 1005
  156. # define OPENSSL_INFO_LIST_SEPARATOR 1006
  157. # define OPENSSL_INFO_SEED_SOURCE 1007
  158. # define OPENSSL_INFO_CPU_SETTINGS 1008
  159. int OPENSSL_issetugid(void);
  160. struct crypto_ex_data_st {
  161. OSSL_LIB_CTX *ctx;
  162. STACK_OF(void) *sk;
  163. };
  164. {-
  165. generate_stack_macros("void");
  166. -}
  167. /*
  168. * Per class, we have a STACK of function pointers.
  169. */
  170. # define CRYPTO_EX_INDEX_SSL 0
  171. # define CRYPTO_EX_INDEX_SSL_CTX 1
  172. # define CRYPTO_EX_INDEX_SSL_SESSION 2
  173. # define CRYPTO_EX_INDEX_X509 3
  174. # define CRYPTO_EX_INDEX_X509_STORE 4
  175. # define CRYPTO_EX_INDEX_X509_STORE_CTX 5
  176. # define CRYPTO_EX_INDEX_DH 6
  177. # define CRYPTO_EX_INDEX_DSA 7
  178. # define CRYPTO_EX_INDEX_EC_KEY 8
  179. # define CRYPTO_EX_INDEX_RSA 9
  180. # define CRYPTO_EX_INDEX_ENGINE 10
  181. # define CRYPTO_EX_INDEX_UI 11
  182. # define CRYPTO_EX_INDEX_BIO 12
  183. # define CRYPTO_EX_INDEX_APP 13
  184. # define CRYPTO_EX_INDEX_UI_METHOD 14
  185. # define CRYPTO_EX_INDEX_RAND_DRBG 15
  186. # define CRYPTO_EX_INDEX_DRBG CRYPTO_EX_INDEX_RAND_DRBG
  187. # define CRYPTO_EX_INDEX_OSSL_LIB_CTX 16
  188. # define CRYPTO_EX_INDEX_EVP_PKEY 17
  189. # define CRYPTO_EX_INDEX__COUNT 18
  190. typedef void CRYPTO_EX_new (void *parent, void *ptr, CRYPTO_EX_DATA *ad,
  191. int idx, long argl, void *argp);
  192. typedef void CRYPTO_EX_free (void *parent, void *ptr, CRYPTO_EX_DATA *ad,
  193. int idx, long argl, void *argp);
  194. typedef int CRYPTO_EX_dup (CRYPTO_EX_DATA *to, const CRYPTO_EX_DATA *from,
  195. void **from_d, int idx, long argl, void *argp);
  196. __owur int CRYPTO_get_ex_new_index(int class_index, long argl, void *argp,
  197. CRYPTO_EX_new *new_func,
  198. CRYPTO_EX_dup *dup_func,
  199. CRYPTO_EX_free *free_func);
  200. /* No longer use an index. */
  201. int CRYPTO_free_ex_index(int class_index, int idx);
  202. /*
  203. * Initialise/duplicate/free CRYPTO_EX_DATA variables corresponding to a
  204. * given class (invokes whatever per-class callbacks are applicable)
  205. */
  206. int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
  207. int CRYPTO_dup_ex_data(int class_index, CRYPTO_EX_DATA *to,
  208. const CRYPTO_EX_DATA *from);
  209. void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad);
  210. /* Allocate a single item in the CRYPTO_EX_DATA variable */
  211. int CRYPTO_alloc_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad,
  212. int idx);
  213. /*
  214. * Get/set data in a CRYPTO_EX_DATA variable corresponding to a particular
  215. * index (relative to the class type involved)
  216. */
  217. int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val);
  218. void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad, int idx);
  219. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  220. /*
  221. * This function cleans up all "ex_data" state. It mustn't be called under
  222. * potential race-conditions.
  223. */
  224. # define CRYPTO_cleanup_all_ex_data() while(0) continue
  225. /*
  226. * The old locking functions have been removed completely without compatibility
  227. * macros. This is because the old functions either could not properly report
  228. * errors, or the returned error values were not clearly documented.
  229. * Replacing the locking functions with no-ops would cause race condition
  230. * issues in the affected applications. It is far better for them to fail at
  231. * compile time.
  232. * On the other hand, the locking callbacks are no longer used. Consequently,
  233. * the callback management functions can be safely replaced with no-op macros.
  234. */
  235. # define CRYPTO_num_locks() (1)
  236. # define CRYPTO_set_locking_callback(func)
  237. # define CRYPTO_get_locking_callback() (NULL)
  238. # define CRYPTO_set_add_lock_callback(func)
  239. # define CRYPTO_get_add_lock_callback() (NULL)
  240. /*
  241. * These defines where used in combination with the old locking callbacks,
  242. * they are not called anymore, but old code that's not called might still
  243. * use them.
  244. */
  245. # define CRYPTO_LOCK 1
  246. # define CRYPTO_UNLOCK 2
  247. # define CRYPTO_READ 4
  248. # define CRYPTO_WRITE 8
  249. /* This structure is no longer used */
  250. typedef struct crypto_threadid_st {
  251. int dummy;
  252. } CRYPTO_THREADID;
  253. /* Only use CRYPTO_THREADID_set_[numeric|pointer]() within callbacks */
  254. # define CRYPTO_THREADID_set_numeric(id, val)
  255. # define CRYPTO_THREADID_set_pointer(id, ptr)
  256. # define CRYPTO_THREADID_set_callback(threadid_func) (0)
  257. # define CRYPTO_THREADID_get_callback() (NULL)
  258. # define CRYPTO_THREADID_current(id)
  259. # define CRYPTO_THREADID_cmp(a, b) (-1)
  260. # define CRYPTO_THREADID_cpy(dest, src)
  261. # define CRYPTO_THREADID_hash(id) (0UL)
  262. # ifndef OPENSSL_NO_DEPRECATED_1_0_0
  263. # define CRYPTO_set_id_callback(func)
  264. # define CRYPTO_get_id_callback() (NULL)
  265. # define CRYPTO_thread_id() (0UL)
  266. # endif /* OPENSSL_NO_DEPRECATED_1_0_0 */
  267. # define CRYPTO_set_dynlock_create_callback(dyn_create_function)
  268. # define CRYPTO_set_dynlock_lock_callback(dyn_lock_function)
  269. # define CRYPTO_set_dynlock_destroy_callback(dyn_destroy_function)
  270. # define CRYPTO_get_dynlock_create_callback() (NULL)
  271. # define CRYPTO_get_dynlock_lock_callback() (NULL)
  272. # define CRYPTO_get_dynlock_destroy_callback() (NULL)
  273. # endif /* OPENSSL_NO_DEPRECATED_1_1_0 */
  274. typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line);
  275. typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file,
  276. int line);
  277. typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line);
  278. int CRYPTO_set_mem_functions(CRYPTO_malloc_fn malloc_fn,
  279. CRYPTO_realloc_fn realloc_fn,
  280. CRYPTO_free_fn free_fn);
  281. void CRYPTO_get_mem_functions(CRYPTO_malloc_fn *malloc_fn,
  282. CRYPTO_realloc_fn *realloc_fn,
  283. CRYPTO_free_fn *free_fn);
  284. OSSL_CRYPTO_ALLOC void *CRYPTO_malloc(size_t num, const char *file, int line);
  285. OSSL_CRYPTO_ALLOC void *CRYPTO_zalloc(size_t num, const char *file, int line);
  286. OSSL_CRYPTO_ALLOC void *CRYPTO_aligned_alloc(size_t num, size_t align,
  287. void **freeptr, const char *file,
  288. int line);
  289. OSSL_CRYPTO_ALLOC void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line);
  290. OSSL_CRYPTO_ALLOC char *CRYPTO_strdup(const char *str, const char *file, int line);
  291. OSSL_CRYPTO_ALLOC char *CRYPTO_strndup(const char *str, size_t s, const char *file, int line);
  292. void CRYPTO_free(void *ptr, const char *file, int line);
  293. void CRYPTO_clear_free(void *ptr, size_t num, const char *file, int line);
  294. void *CRYPTO_realloc(void *addr, size_t num, const char *file, int line);
  295. void *CRYPTO_clear_realloc(void *addr, size_t old_num, size_t num,
  296. const char *file, int line);
  297. int CRYPTO_secure_malloc_init(size_t sz, size_t minsize);
  298. int CRYPTO_secure_malloc_done(void);
  299. OSSL_CRYPTO_ALLOC void *CRYPTO_secure_malloc(size_t num, const char *file, int line);
  300. OSSL_CRYPTO_ALLOC void *CRYPTO_secure_zalloc(size_t num, const char *file, int line);
  301. void CRYPTO_secure_free(void *ptr, const char *file, int line);
  302. void CRYPTO_secure_clear_free(void *ptr, size_t num,
  303. const char *file, int line);
  304. int CRYPTO_secure_allocated(const void *ptr);
  305. int CRYPTO_secure_malloc_initialized(void);
  306. size_t CRYPTO_secure_actual_size(void *ptr);
  307. size_t CRYPTO_secure_used(void);
  308. void OPENSSL_cleanse(void *ptr, size_t len);
  309. # ifndef OPENSSL_NO_CRYPTO_MDEBUG
  310. /*
  311. * The following can be used to detect memory leaks in the library. If
  312. * used, it turns on malloc checking
  313. */
  314. # define CRYPTO_MEM_CHECK_OFF 0x0 /* Control only */
  315. # define CRYPTO_MEM_CHECK_ON 0x1 /* Control and mode bit */
  316. # define CRYPTO_MEM_CHECK_ENABLE 0x2 /* Control and mode bit */
  317. # define CRYPTO_MEM_CHECK_DISABLE 0x3 /* Control only */
  318. void CRYPTO_get_alloc_counts(int *mcount, int *rcount, int *fcount);
  319. # ifndef OPENSSL_NO_DEPRECATED_3_0
  320. # define OPENSSL_mem_debug_push(info) \
  321. CRYPTO_mem_debug_push(info, OPENSSL_FILE, OPENSSL_LINE)
  322. # define OPENSSL_mem_debug_pop() \
  323. CRYPTO_mem_debug_pop()
  324. # endif
  325. # ifndef OPENSSL_NO_DEPRECATED_3_0
  326. OSSL_DEPRECATEDIN_3_0 int CRYPTO_set_mem_debug(int flag);
  327. OSSL_DEPRECATEDIN_3_0 int CRYPTO_mem_ctrl(int mode);
  328. OSSL_DEPRECATEDIN_3_0 int CRYPTO_mem_debug_push(const char *info,
  329. const char *file, int line);
  330. OSSL_DEPRECATEDIN_3_0 int CRYPTO_mem_debug_pop(void);
  331. OSSL_DEPRECATEDIN_3_0 void CRYPTO_mem_debug_malloc(void *addr, size_t num,
  332. int flag,
  333. const char *file, int line);
  334. OSSL_DEPRECATEDIN_3_0 void CRYPTO_mem_debug_realloc(void *addr1, void *addr2,
  335. size_t num, int flag,
  336. const char *file, int line);
  337. OSSL_DEPRECATEDIN_3_0 void CRYPTO_mem_debug_free(void *addr, int flag,
  338. const char *file, int line);
  339. OSSL_DEPRECATEDIN_3_0
  340. int CRYPTO_mem_leaks_cb(int (*cb)(const char *str, size_t len, void *u),
  341. void *u);
  342. # endif
  343. # ifndef OPENSSL_NO_STDIO
  344. # ifndef OPENSSL_NO_DEPRECATED_3_0
  345. OSSL_DEPRECATEDIN_3_0 int CRYPTO_mem_leaks_fp(FILE *);
  346. # endif
  347. # endif
  348. # ifndef OPENSSL_NO_DEPRECATED_3_0
  349. OSSL_DEPRECATEDIN_3_0 int CRYPTO_mem_leaks(BIO *bio);
  350. # endif
  351. # endif /* OPENSSL_NO_CRYPTO_MDEBUG */
  352. /* die if we have to */
  353. ossl_noreturn void OPENSSL_die(const char *assertion, const char *file, int line);
  354. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  355. # define OpenSSLDie(f,l,a) OPENSSL_die((a),(f),(l))
  356. # endif
  357. # define OPENSSL_assert(e) \
  358. (void)((e) ? 0 : (OPENSSL_die("assertion failed: " #e, OPENSSL_FILE, OPENSSL_LINE), 1))
  359. int OPENSSL_isservice(void);
  360. void OPENSSL_init(void);
  361. # ifdef OPENSSL_SYS_UNIX
  362. # ifndef OPENSSL_NO_DEPRECATED_3_0
  363. OSSL_DEPRECATEDIN_3_0 void OPENSSL_fork_prepare(void);
  364. OSSL_DEPRECATEDIN_3_0 void OPENSSL_fork_parent(void);
  365. OSSL_DEPRECATEDIN_3_0 void OPENSSL_fork_child(void);
  366. # endif
  367. # endif
  368. struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
  369. int OPENSSL_gmtime_adj(struct tm *tm, int offset_day, long offset_sec);
  370. int OPENSSL_gmtime_diff(int *pday, int *psec,
  371. const struct tm *from, const struct tm *to);
  372. /*
  373. * CRYPTO_memcmp returns zero iff the |len| bytes at |a| and |b| are equal.
  374. * It takes an amount of time dependent on |len|, but independent of the
  375. * contents of |a| and |b|. Unlike memcmp, it cannot be used to put elements
  376. * into a defined order as the return value when a != b is undefined, other
  377. * than to be non-zero.
  378. */
  379. int CRYPTO_memcmp(const void * in_a, const void * in_b, size_t len);
  380. /* Standard initialisation options */
  381. # define OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS 0x00000001L
  382. # define OPENSSL_INIT_LOAD_CRYPTO_STRINGS 0x00000002L
  383. # define OPENSSL_INIT_ADD_ALL_CIPHERS 0x00000004L
  384. # define OPENSSL_INIT_ADD_ALL_DIGESTS 0x00000008L
  385. # define OPENSSL_INIT_NO_ADD_ALL_CIPHERS 0x00000010L
  386. # define OPENSSL_INIT_NO_ADD_ALL_DIGESTS 0x00000020L
  387. # define OPENSSL_INIT_LOAD_CONFIG 0x00000040L
  388. # define OPENSSL_INIT_NO_LOAD_CONFIG 0x00000080L
  389. # define OPENSSL_INIT_ASYNC 0x00000100L
  390. # define OPENSSL_INIT_ENGINE_RDRAND 0x00000200L
  391. # define OPENSSL_INIT_ENGINE_DYNAMIC 0x00000400L
  392. # define OPENSSL_INIT_ENGINE_OPENSSL 0x00000800L
  393. # define OPENSSL_INIT_ENGINE_CRYPTODEV 0x00001000L
  394. # define OPENSSL_INIT_ENGINE_CAPI 0x00002000L
  395. # define OPENSSL_INIT_ENGINE_PADLOCK 0x00004000L
  396. # define OPENSSL_INIT_ENGINE_AFALG 0x00008000L
  397. /* FREE: 0x00010000L */
  398. # define OPENSSL_INIT_ATFORK 0x00020000L
  399. /* OPENSSL_INIT_BASE_ONLY 0x00040000L */
  400. # define OPENSSL_INIT_NO_ATEXIT 0x00080000L
  401. /* OPENSSL_INIT flag range 0x03f00000 reserved for OPENSSL_init_ssl() */
  402. /* FREE: 0x04000000L */
  403. /* FREE: 0x08000000L */
  404. /* FREE: 0x10000000L */
  405. /* FREE: 0x20000000L */
  406. /* FREE: 0x40000000L */
  407. /* FREE: 0x80000000L */
  408. /* Max OPENSSL_INIT flag value is 0x80000000 */
  409. /* openssl and dasync not counted as builtin */
  410. # define OPENSSL_INIT_ENGINE_ALL_BUILTIN \
  411. (OPENSSL_INIT_ENGINE_RDRAND | OPENSSL_INIT_ENGINE_DYNAMIC \
  412. | OPENSSL_INIT_ENGINE_CRYPTODEV | OPENSSL_INIT_ENGINE_CAPI | \
  413. OPENSSL_INIT_ENGINE_PADLOCK)
  414. /* Library initialisation functions */
  415. void OPENSSL_cleanup(void);
  416. int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);
  417. int OPENSSL_atexit(void (*handler)(void));
  418. void OPENSSL_thread_stop(void);
  419. void OPENSSL_thread_stop_ex(OSSL_LIB_CTX *ctx);
  420. /* Low-level control of initialization */
  421. OPENSSL_INIT_SETTINGS *OPENSSL_INIT_new(void);
  422. # ifndef OPENSSL_NO_STDIO
  423. int OPENSSL_INIT_set_config_filename(OPENSSL_INIT_SETTINGS *settings,
  424. const char *config_filename);
  425. void OPENSSL_INIT_set_config_file_flags(OPENSSL_INIT_SETTINGS *settings,
  426. unsigned long flags);
  427. int OPENSSL_INIT_set_config_appname(OPENSSL_INIT_SETTINGS *settings,
  428. const char *config_appname);
  429. # endif
  430. void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *settings);
  431. # if defined(OPENSSL_THREADS) && !defined(CRYPTO_TDEBUG)
  432. # if defined(_WIN32)
  433. # if defined(BASETYPES) || defined(_WINDEF_H)
  434. /* application has to include <windows.h> in order to use this */
  435. typedef DWORD CRYPTO_THREAD_LOCAL;
  436. typedef DWORD CRYPTO_THREAD_ID;
  437. typedef LONG CRYPTO_ONCE;
  438. # define CRYPTO_ONCE_STATIC_INIT 0
  439. # endif
  440. # else
  441. # if defined(__TANDEM) && defined(_SPT_MODEL_)
  442. # define SPT_THREAD_SIGNAL 1
  443. # define SPT_THREAD_AWARE 1
  444. # include <spthread.h>
  445. # else
  446. # include <pthread.h>
  447. # endif
  448. typedef pthread_once_t CRYPTO_ONCE;
  449. typedef pthread_key_t CRYPTO_THREAD_LOCAL;
  450. typedef pthread_t CRYPTO_THREAD_ID;
  451. # define CRYPTO_ONCE_STATIC_INIT PTHREAD_ONCE_INIT
  452. # endif
  453. # endif
  454. # if !defined(CRYPTO_ONCE_STATIC_INIT)
  455. typedef unsigned int CRYPTO_ONCE;
  456. typedef unsigned int CRYPTO_THREAD_LOCAL;
  457. typedef unsigned int CRYPTO_THREAD_ID;
  458. # define CRYPTO_ONCE_STATIC_INIT 0
  459. # endif
  460. int CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void));
  461. int CRYPTO_THREAD_init_local(CRYPTO_THREAD_LOCAL *key, void (*cleanup)(void *));
  462. void *CRYPTO_THREAD_get_local(CRYPTO_THREAD_LOCAL *key);
  463. int CRYPTO_THREAD_set_local(CRYPTO_THREAD_LOCAL *key, void *val);
  464. int CRYPTO_THREAD_cleanup_local(CRYPTO_THREAD_LOCAL *key);
  465. CRYPTO_THREAD_ID CRYPTO_THREAD_get_current_id(void);
  466. int CRYPTO_THREAD_compare_id(CRYPTO_THREAD_ID a, CRYPTO_THREAD_ID b);
  467. OSSL_LIB_CTX *OSSL_LIB_CTX_new(void);
  468. OSSL_LIB_CTX *OSSL_LIB_CTX_new_from_dispatch(const OSSL_CORE_HANDLE *handle,
  469. const OSSL_DISPATCH *in);
  470. OSSL_LIB_CTX *OSSL_LIB_CTX_new_child(const OSSL_CORE_HANDLE *handle,
  471. const OSSL_DISPATCH *in);
  472. int OSSL_LIB_CTX_load_config(OSSL_LIB_CTX *ctx, const char *config_file);
  473. void OSSL_LIB_CTX_free(OSSL_LIB_CTX *);
  474. OSSL_LIB_CTX *OSSL_LIB_CTX_get0_global_default(void);
  475. OSSL_LIB_CTX *OSSL_LIB_CTX_set0_default(OSSL_LIB_CTX *libctx);
  476. void OSSL_sleep(uint64_t millis);
  477. # ifdef __cplusplus
  478. }
  479. # endif
  480. #endif