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