opensslv.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * WARNING: do not edit!
  3. * Generated by Makefile from include/openssl/opensslv.h.in
  4. *
  5. * Copyright 1999-2020 The OpenSSL Project Authors. 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. #ifndef OPENSSL_OPENSSLV_H
  13. # define OPENSSL_OPENSSLV_H
  14. # pragma once
  15. # ifdef __cplusplus
  16. extern "C" {
  17. # endif
  18. /*
  19. * SECTION 1: VERSION DATA. These will change for each release
  20. */
  21. /*
  22. * Base version macros
  23. *
  24. * These macros express version number MAJOR.MINOR.PATCH exactly
  25. */
  26. # define OPENSSL_VERSION_MAJOR 3
  27. # define OPENSSL_VERSION_MINOR 0
  28. # define OPENSSL_VERSION_PATCH 9
  29. /*
  30. * Additional version information
  31. *
  32. * These are also part of the new version scheme, but aren't part
  33. * of the version number itself.
  34. */
  35. /* Could be: #define OPENSSL_VERSION_PRE_RELEASE "-alpha.1" */
  36. # define OPENSSL_VERSION_PRE_RELEASE ""
  37. /* Could be: #define OPENSSL_VERSION_BUILD_METADATA "+fips" */
  38. /* Could be: #define OPENSSL_VERSION_BUILD_METADATA "+vendor.1" */
  39. # define OPENSSL_VERSION_BUILD_METADATA ""
  40. /*
  41. * Note: The OpenSSL Project will never define OPENSSL_VERSION_BUILD_METADATA
  42. * to be anything but the empty string. Its use is entirely reserved for
  43. * others
  44. */
  45. /*
  46. * Shared library version
  47. *
  48. * This is strictly to express ABI version, which may or may not
  49. * be related to the API version expressed with the macros above.
  50. * This is defined in free form.
  51. */
  52. # define OPENSSL_SHLIB_VERSION 3
  53. /*
  54. * SECTION 2: USEFUL MACROS
  55. */
  56. /* For checking general API compatibility when preprocessing */
  57. # define OPENSSL_VERSION_PREREQ(maj,min) \
  58. ((OPENSSL_VERSION_MAJOR << 16) + OPENSSL_VERSION_MINOR >= ((maj) << 16) + (min))
  59. /*
  60. * Macros to get the version in easily digested string form, both the short
  61. * "MAJOR.MINOR.PATCH" variant (where MAJOR, MINOR and PATCH are replaced
  62. * with the values from the corresponding OPENSSL_VERSION_ macros) and the
  63. * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
  64. * OPENSSL_VERSION_BUILD_METADATA_STR appended.
  65. */
  66. # define OPENSSL_VERSION_STR "3.0.9"
  67. # define OPENSSL_FULL_VERSION_STR "3.0.9"
  68. /*
  69. * SECTION 3: ADDITIONAL METADATA
  70. *
  71. * These strings are defined separately to allow them to be parsable.
  72. */
  73. # define OPENSSL_RELEASE_DATE "30 May 2023"
  74. /*
  75. * SECTION 4: BACKWARD COMPATIBILITY
  76. */
  77. # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9 30 May 2023"
  78. /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
  79. # ifdef OPENSSL_VERSION_PRE_RELEASE
  80. # define _OPENSSL_VERSION_PRE_RELEASE 0x0L
  81. # else
  82. # define _OPENSSL_VERSION_PRE_RELEASE 0xfL
  83. # endif
  84. # define OPENSSL_VERSION_NUMBER \
  85. ( (OPENSSL_VERSION_MAJOR<<28) \
  86. |(OPENSSL_VERSION_MINOR<<20) \
  87. |(OPENSSL_VERSION_PATCH<<4) \
  88. |_OPENSSL_VERSION_PRE_RELEASE )
  89. # ifdef __cplusplus
  90. }
  91. # endif
  92. # include <openssl/macros.h>
  93. # ifndef OPENSSL_NO_DEPRECATED_3_0
  94. # define HEADER_OPENSSLV_H
  95. # endif
  96. #endif /* OPENSSL_OPENSSLV_H */