node-linux-arm64 20.5.0 → 20.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. package/CHANGELOG.md +262 -0
  2. package/LICENSE +1 -1
  3. package/README.md +6 -0
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +1 -1
  6. package/include/node/cppgc/allocation.h +310 -0
  7. package/include/node/cppgc/cross-thread-persistent.h +466 -0
  8. package/include/node/cppgc/custom-space.h +97 -0
  9. package/include/node/cppgc/default-platform.h +67 -0
  10. package/include/node/cppgc/ephemeron-pair.h +30 -0
  11. package/include/node/cppgc/explicit-management.h +100 -0
  12. package/include/node/cppgc/garbage-collected.h +106 -0
  13. package/include/node/cppgc/heap-consistency.h +309 -0
  14. package/include/node/cppgc/heap-handle.h +48 -0
  15. package/include/node/cppgc/heap-state.h +82 -0
  16. package/include/node/cppgc/heap-statistics.h +120 -0
  17. package/include/node/cppgc/heap.h +202 -0
  18. package/include/node/cppgc/internal/api-constants.h +68 -0
  19. package/include/node/cppgc/internal/atomic-entry-flag.h +48 -0
  20. package/include/node/cppgc/internal/base-page-handle.h +45 -0
  21. package/include/node/cppgc/internal/caged-heap-local-data.h +111 -0
  22. package/include/node/cppgc/internal/caged-heap.h +61 -0
  23. package/include/node/cppgc/internal/compiler-specific.h +38 -0
  24. package/include/node/cppgc/internal/finalizer-trait.h +93 -0
  25. package/include/node/cppgc/internal/gc-info.h +157 -0
  26. package/include/node/cppgc/internal/logging.h +50 -0
  27. package/include/node/cppgc/internal/member-storage.h +248 -0
  28. package/include/node/cppgc/internal/name-trait.h +137 -0
  29. package/include/node/cppgc/internal/persistent-node.h +214 -0
  30. package/include/node/cppgc/internal/pointer-policies.h +243 -0
  31. package/include/node/cppgc/internal/write-barrier.h +487 -0
  32. package/include/node/cppgc/liveness-broker.h +78 -0
  33. package/include/node/cppgc/macros.h +35 -0
  34. package/include/node/cppgc/member.h +604 -0
  35. package/include/node/cppgc/name-provider.h +65 -0
  36. package/include/node/cppgc/object-size-trait.h +58 -0
  37. package/include/node/cppgc/persistent.h +373 -0
  38. package/include/node/cppgc/platform.h +158 -0
  39. package/include/node/cppgc/prefinalizer.h +75 -0
  40. package/include/node/cppgc/process-heap-statistics.h +36 -0
  41. package/include/node/cppgc/sentinel-pointer.h +32 -0
  42. package/include/node/cppgc/source-location.h +92 -0
  43. package/include/node/cppgc/testing.h +106 -0
  44. package/include/node/cppgc/trace-trait.h +120 -0
  45. package/include/node/cppgc/type-traits.h +250 -0
  46. package/include/node/cppgc/visitor.h +426 -0
  47. package/include/node/node.h +26 -3
  48. package/include/node/node_version.h +1 -1
  49. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  50. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslv.h +5 -5
  51. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  52. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h +5 -5
  53. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  54. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslv.h +5 -5
  55. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  56. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslv.h +5 -5
  57. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  58. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
  59. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  60. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h +5 -5
  61. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  62. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslv.h +5 -5
  63. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  64. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h +5 -5
  65. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  66. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslv.h +5 -5
  67. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  68. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h +5 -5
  69. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  70. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslv.h +5 -5
  71. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  72. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h +5 -5
  73. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  74. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h +5 -5
  75. package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
  76. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/opensslv.h +5 -5
  77. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
  78. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h +5 -5
  79. package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
  80. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h +5 -5
  81. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  82. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslv.h +5 -5
  83. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  84. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  85. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  86. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h +5 -5
  87. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  88. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h +5 -5
  89. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  90. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  91. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  92. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h +5 -5
  93. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  94. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h +5 -5
  95. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  96. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  97. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  98. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h +5 -5
  99. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  100. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslv.h +5 -5
  101. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  102. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h +5 -5
  103. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  104. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslv.h +5 -5
  105. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  106. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslv.h +5 -5
  107. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  108. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h +5 -5
  109. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  110. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslv.h +5 -5
  111. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  112. package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslv.h +5 -5
  113. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  114. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslv.h +5 -5
  115. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  116. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslv.h +5 -5
  117. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  118. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslv.h +5 -5
  119. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  120. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h +5 -5
  121. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  122. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h +5 -5
  123. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  124. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslv.h +5 -5
  125. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  126. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
  127. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  128. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslv.h +5 -5
  129. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  130. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslv.h +5 -5
  131. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  132. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
  133. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  134. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslv.h +5 -5
  135. package/include/node/openssl/archs/linux64-loongarch64/no-asm/crypto/buildinf.h +1 -1
  136. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/opensslv.h +5 -5
  137. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  138. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslv.h +5 -5
  139. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  140. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h +5 -5
  141. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  142. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslv.h +5 -5
  143. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  144. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h +5 -5
  145. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  146. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslv.h +5 -5
  147. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  148. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
  149. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  150. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslv.h +5 -5
  151. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  152. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h +5 -5
  153. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  154. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  155. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  156. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h +5 -5
  157. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  158. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h +5 -5
  159. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  160. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  161. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  162. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h +5 -5
  163. package/include/node/openssl/dh.h +6 -2
  164. package/include/node/openssl/x509err.h +2 -1
  165. package/include/node/v8-cppgc.h +245 -0
  166. package/package.json +1 -1
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-riscv64"
14
- #define DATE "built on: Fri Jun 9 12:16:36 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:44:48 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-s390x"
14
- #define DATE "built on: Fri Jun 9 12:10:05 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:37:26 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-s390x"
14
- #define DATE "built on: Fri Jun 9 12:10:26 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:37:50 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-s390x"
14
- #define DATE "built on: Fri Jun 9 12:10:47 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:38:14 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris-x86-gcc"
14
- #define DATE "built on: Fri Jun 9 12:12:04 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:39:44 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris-x86-gcc"
14
- #define DATE "built on: Fri Jun 9 12:12:25 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:40:07 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris-x86-gcc"
14
- #define DATE "built on: Fri Jun 9 12:12:46 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:40:30 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris64-x86_64-gcc"
14
- #define DATE "built on: Fri Jun 9 12:13:05 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:40:52 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris64-x86_64-gcc"
14
- #define DATE "built on: Fri Jun 9 12:13:30 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:41:20 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris64-x86_64-gcc"
14
- #define DATE "built on: Fri Jun 9 12:13:56 2023 UTC"
14
+ #define DATE "built on: Sun Aug 6 00:41:48 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -29,7 +29,7 @@ extern "C" {
29
29
  */
30
30
  # define OPENSSL_VERSION_MAJOR 3
31
31
  # define OPENSSL_VERSION_MINOR 0
32
- # define OPENSSL_VERSION_PATCH 9
32
+ # define OPENSSL_VERSION_PATCH 10
33
33
 
34
34
  /*
35
35
  * Additional version information
@@ -74,21 +74,21 @@ extern "C" {
74
74
  * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
75
75
  * OPENSSL_VERSION_BUILD_METADATA_STR appended.
76
76
  */
77
- # define OPENSSL_VERSION_STR "3.0.9"
78
- # define OPENSSL_FULL_VERSION_STR "3.0.9+quic"
77
+ # define OPENSSL_VERSION_STR "3.0.10"
78
+ # define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
79
79
 
80
80
  /*
81
81
  * SECTION 3: ADDITIONAL METADATA
82
82
  *
83
83
  * These strings are defined separately to allow them to be parsable.
84
84
  */
85
- # define OPENSSL_RELEASE_DATE "30 May 2023"
85
+ # define OPENSSL_RELEASE_DATE "1 Aug 2023"
86
86
 
87
87
  /*
88
88
  * SECTION 4: BACKWARD COMPATIBILITY
89
89
  */
90
90
 
91
- # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.9+quic 30 May 2023"
91
+ # define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
92
92
 
93
93
  /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
94
94
  # ifdef OPENSSL_VERSION_PRE_RELEASE
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
2
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License 2.0 (the "License"). You may not use
5
5
  * this file except in compliance with the License. You can obtain a copy
@@ -89,7 +89,11 @@ int EVP_PKEY_CTX_get0_dh_kdf_ukm(EVP_PKEY_CTX *ctx, unsigned char **ukm);
89
89
  # include <openssl/dherr.h>
90
90
 
91
91
  # ifndef OPENSSL_DH_MAX_MODULUS_BITS
92
- # define OPENSSL_DH_MAX_MODULUS_BITS 10000
92
+ # define OPENSSL_DH_MAX_MODULUS_BITS 10000
93
+ # endif
94
+
95
+ # ifndef OPENSSL_DH_CHECK_MAX_MODULUS_BITS
96
+ # define OPENSSL_DH_CHECK_MAX_MODULUS_BITS 32768
93
97
  # endif
94
98
 
95
99
  # define OPENSSL_DH_FIPS_MIN_MODULUS_BITS 1024
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * Generated by util/mkerr.pl DO NOT EDIT
3
- * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
4
4
  *
5
5
  * Licensed under the Apache License 2.0 (the "License"). You may not use
6
6
  * this file except in compliance with the License. You can obtain a copy
@@ -30,6 +30,7 @@
30
30
  # define X509_R_CERT_ALREADY_IN_HASH_TABLE 101
31
31
  # define X509_R_CRL_ALREADY_DELTA 127
32
32
  # define X509_R_CRL_VERIFY_FAILURE 131
33
+ # define X509_R_DUPLICATE_ATTRIBUTE 140
33
34
  # define X509_R_ERROR_GETTING_MD_BY_NID 141
34
35
  # define X509_R_ERROR_USING_SIGINF_SET 142
35
36
  # define X509_R_IDP_MISMATCH 128