cryptlib.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (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. #ifndef HEADER_CRYPTLIB_H
  10. # define HEADER_CRYPTLIB_H
  11. # include <stdlib.h>
  12. # include <string.h>
  13. # ifdef OPENSSL_USE_APPLINK
  14. # undef BIO_FLAGS_UPLINK
  15. # define BIO_FLAGS_UPLINK 0x8000
  16. # include "ms/uplink.h"
  17. # endif
  18. # include <openssl/crypto.h>
  19. # include <openssl/buffer.h>
  20. # include <openssl/bio.h>
  21. # include <openssl/err.h>
  22. # include "internal/nelem.h"
  23. #ifdef NDEBUG
  24. # define ossl_assert(x) ((x) != 0)
  25. #else
  26. __owur static ossl_inline int ossl_assert_int(int expr, const char *exprstr,
  27. const char *file, int line)
  28. {
  29. if (!expr)
  30. OPENSSL_die(exprstr, file, line);
  31. return expr;
  32. }
  33. # define ossl_assert(x) ossl_assert_int((x) != 0, "Assertion failed: "#x, \
  34. __FILE__, __LINE__)
  35. #endif
  36. typedef struct ex_callback_st EX_CALLBACK;
  37. DEFINE_STACK_OF(EX_CALLBACK)
  38. typedef struct app_mem_info_st APP_INFO;
  39. typedef struct mem_st MEM;
  40. DEFINE_LHASH_OF(MEM);
  41. # define OPENSSL_CONF "openssl.cnf"
  42. # ifndef OPENSSL_SYS_VMS
  43. # define X509_CERT_AREA OPENSSLDIR
  44. # define X509_CERT_DIR OPENSSLDIR "/certs"
  45. # define X509_CERT_FILE OPENSSLDIR "/cert.pem"
  46. # define X509_PRIVATE_DIR OPENSSLDIR "/private"
  47. # define CTLOG_FILE OPENSSLDIR "/ct_log_list.cnf"
  48. # else
  49. # define X509_CERT_AREA "OSSL$DATAROOT:[000000]"
  50. # define X509_CERT_DIR "OSSL$DATAROOT:[CERTS]"
  51. # define X509_CERT_FILE "OSSL$DATAROOT:[000000]cert.pem"
  52. # define X509_PRIVATE_DIR "OSSL$DATAROOT:[PRIVATE]"
  53. # define CTLOG_FILE "OSSL$DATAROOT:[000000]ct_log_list.cnf"
  54. # endif
  55. # define X509_CERT_DIR_EVP "SSL_CERT_DIR"
  56. # define X509_CERT_FILE_EVP "SSL_CERT_FILE"
  57. # define CTLOG_FILE_EVP "CTLOG_FILE"
  58. /* size of string representations */
  59. # define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
  60. # define HEX_SIZE(type) (sizeof(type)*2)
  61. void OPENSSL_cpuid_setup(void);
  62. extern unsigned int OPENSSL_ia32cap_P[];
  63. void OPENSSL_showfatal(const char *fmta, ...);
  64. void crypto_cleanup_all_ex_data_int(void);
  65. int openssl_init_fork_handlers(void);
  66. char *ossl_safe_getenv(const char *name);
  67. extern CRYPTO_RWLOCK *memdbg_lock;
  68. int openssl_strerror_r(int errnum, char *buf, size_t buflen);
  69. # if !defined(OPENSSL_NO_STDIO)
  70. FILE *openssl_fopen(const char *filename, const char *mode);
  71. # else
  72. void *openssl_fopen(const char *filename, const char *mode);
  73. # endif
  74. uint32_t OPENSSL_rdtsc(void);
  75. #endif