cryptlib_int.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include "internal/cryptlib.h"
  10. /* This file is not scanned by mkdef.pl, whereas cryptlib.h is */
  11. typedef void (*ossl_thread_stop_handler_fn)(OPENSSL_CTX *ctx);
  12. int ossl_init_thread_start(OPENSSL_CTX *ctx,
  13. ossl_thread_stop_handler_fn handfn);
  14. int init_thread(void);
  15. void cleanup_thread(void);
  16. /*
  17. * OPENSSL_INIT flags. The primary list of these is in crypto.h. Flags below
  18. * are those omitted from crypto.h because they are "reserved for internal
  19. * use".
  20. */
  21. # define OPENSSL_INIT_ZLIB 0x00010000L
  22. # define OPENSSL_INIT_BASE_ONLY 0x00040000L
  23. int ossl_trace_init(void);
  24. void ossl_trace_cleanup(void);
  25. void ossl_malloc_setup_failures(void);