node-linux-arm64 16.18.1 → 16.19.1

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 (145) hide show
  1. package/CHANGELOG.md +152 -0
  2. package/LICENSE +124 -51
  3. package/bin/node +0 -0
  4. package/include/node/common.gypi +2 -6
  5. package/include/node/config.gypi +5 -1
  6. package/include/node/js_native_api.h +2 -0
  7. package/include/node/js_native_api_types.h +2 -1
  8. package/include/node/node_api.h +3 -1
  9. package/include/node/node_version.h +1 -1
  10. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  11. package/include/node/openssl/archs/BSD-x86/asm/include/progs.h +1 -1
  12. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  13. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/progs.h +1 -1
  14. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  15. package/include/node/openssl/archs/BSD-x86/no-asm/include/progs.h +1 -1
  16. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  17. package/include/node/openssl/archs/BSD-x86_64/asm/include/progs.h +1 -1
  18. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  19. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/progs.h +1 -1
  20. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  21. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/progs.h +1 -1
  22. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  23. package/include/node/openssl/archs/VC-WIN32/asm/include/progs.h +1 -1
  24. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  25. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/progs.h +1 -1
  26. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  27. package/include/node/openssl/archs/VC-WIN32/no-asm/include/progs.h +1 -1
  28. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  29. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/progs.h +1 -1
  30. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  31. package/include/node/openssl/archs/VC-WIN64A/asm/include/progs.h +1 -1
  32. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  33. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/progs.h +1 -1
  34. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  35. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/progs.h +1 -1
  36. package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +1 -1
  37. package/include/node/openssl/archs/aix-gcc/asm/include/progs.h +1 -1
  38. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +1 -1
  39. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/progs.h +1 -1
  40. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +1 -1
  41. package/include/node/openssl/archs/aix-gcc/no-asm/include/progs.h +1 -1
  42. package/include/node/openssl/archs/aix64-gcc/asm/crypto/buildinf.h +1 -1
  43. package/include/node/openssl/archs/aix64-gcc/asm/include/progs.h +1 -1
  44. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  45. package/include/node/openssl/archs/aix64-gcc/asm_avx2/include/progs.h +1 -1
  46. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/buildinf.h +1 -1
  47. package/include/node/openssl/archs/aix64-gcc/no-asm/include/progs.h +1 -1
  48. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  49. package/include/node/openssl/archs/darwin-i386-cc/asm/include/progs.h +1 -1
  50. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  51. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/progs.h +1 -1
  52. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  53. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/progs.h +1 -1
  54. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  55. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/progs.h +1 -1
  56. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  57. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/progs.h +1 -1
  58. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  59. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/progs.h +1 -1
  60. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  61. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/progs.h +1 -1
  62. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/progs.h +1 -1
  64. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  65. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/progs.h +1 -1
  66. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  67. package/include/node/openssl/archs/linux-aarch64/asm/include/progs.h +1 -1
  68. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  69. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/progs.h +1 -1
  70. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  71. package/include/node/openssl/archs/linux-aarch64/no-asm/include/progs.h +1 -1
  72. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  73. package/include/node/openssl/archs/linux-armv4/asm/include/progs.h +1 -1
  74. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  75. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/progs.h +1 -1
  76. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  77. package/include/node/openssl/archs/linux-armv4/no-asm/include/progs.h +1 -1
  78. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  79. package/include/node/openssl/archs/linux-elf/asm/include/progs.h +1 -1
  80. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  81. package/include/node/openssl/archs/linux-elf/asm_avx2/include/progs.h +1 -1
  82. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  83. package/include/node/openssl/archs/linux-elf/no-asm/include/progs.h +1 -1
  84. package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +1 -1
  85. package/include/node/openssl/archs/linux-ppc/asm/include/progs.h +1 -1
  86. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +1 -1
  87. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/progs.h +1 -1
  88. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +1 -1
  89. package/include/node/openssl/archs/linux-ppc/no-asm/include/progs.h +1 -1
  90. package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +1 -1
  91. package/include/node/openssl/archs/linux-ppc64/asm/include/progs.h +1 -1
  92. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +1 -1
  93. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/progs.h +1 -1
  94. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +1 -1
  95. package/include/node/openssl/archs/linux-ppc64/no-asm/include/progs.h +1 -1
  96. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  97. package/include/node/openssl/archs/linux-ppc64le/asm/include/progs.h +1 -1
  98. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  99. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/progs.h +1 -1
  100. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  101. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/progs.h +1 -1
  102. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  103. package/include/node/openssl/archs/linux-x86_64/asm/include/progs.h +1 -1
  104. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  105. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/progs.h +1 -1
  106. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  107. package/include/node/openssl/archs/linux-x86_64/no-asm/include/progs.h +1 -1
  108. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  109. package/include/node/openssl/archs/linux32-s390x/asm/include/progs.h +1 -1
  110. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  111. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/progs.h +1 -1
  112. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  113. package/include/node/openssl/archs/linux32-s390x/no-asm/include/progs.h +1 -1
  114. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  115. package/include/node/openssl/archs/linux64-mips64/asm/include/progs.h +1 -1
  116. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  117. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/progs.h +1 -1
  118. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  119. package/include/node/openssl/archs/linux64-mips64/no-asm/include/progs.h +1 -1
  120. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  121. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/progs.h +1 -1
  122. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  123. package/include/node/openssl/archs/linux64-s390x/asm/include/progs.h +1 -1
  124. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  125. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/progs.h +1 -1
  126. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  127. package/include/node/openssl/archs/linux64-s390x/no-asm/include/progs.h +1 -1
  128. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  129. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/progs.h +1 -1
  130. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  131. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/progs.h +1 -1
  132. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  133. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/progs.h +1 -1
  134. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  135. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/progs.h +1 -1
  136. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  137. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/progs.h +1 -1
  138. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  139. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/progs.h +1 -1
  140. package/include/node/openssl/bnerr.h +2 -1
  141. package/include/node/openssl/cmserr.h +1 -0
  142. package/include/node/openssl/opensslv.h +2 -2
  143. package/include/node/openssl/x509v3.h +2 -2
  144. package/package.json +1 -1
  145. package/share/systemtap/tapset/node.stp +146 -0
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-elf"
14
- #define DATE "built on: Tue Jul 5 15:03:14 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:03:52 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc"
14
- #define DATE "built on: Tue Jul 5 15:03:26 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:02 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc"
14
- #define DATE "built on: Tue Jul 5 15:03:27 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:04 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc"
14
- #define DATE "built on: Tue Jul 5 15:03:29 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:05 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64"
14
- #define DATE "built on: Tue Jul 5 15:03:30 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:06 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64"
14
- #define DATE "built on: Tue Jul 5 15:03:32 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:08 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64"
14
- #define DATE "built on: Tue Jul 5 15:03:34 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:10 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64le"
14
- #define DATE "built on: Tue Jul 5 15:03:35 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:11 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64le"
14
- #define DATE "built on: Tue Jul 5 15:03:38 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:13 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64le"
14
- #define DATE "built on: Tue Jul 5 15:03:39 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:14 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x86_64"
14
- #define DATE "built on: Tue Jul 5 15:03:16 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:03:53 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x86_64"
14
- #define DATE "built on: Tue Jul 5 15:03:20 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:03:57 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x86_64"
14
- #define DATE "built on: Tue Jul 5 15:03:24 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:01 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux32-s390x"
14
- #define DATE "built on: Tue Jul 5 15:03:41 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:16 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux32-s390x"
14
- #define DATE "built on: Tue Jul 5 15:03:42 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:17 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux32-s390x"
14
- #define DATE "built on: Tue Jul 5 15:03:44 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:18 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-mips64"
14
- #define DATE "built on: Tue Jul 5 15:03:49 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:23 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-mips64"
14
- #define DATE "built on: Tue Jul 5 15:03:50 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:24 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-mips64"
14
- #define DATE "built on: Tue Jul 5 15:03:52 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:26 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-riscv64"
14
- #define DATE "built on: Tue Jul 5 15:04:24 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:55 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-s390x"
14
- #define DATE "built on: Tue Jul 5 15:03:45 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:19 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-s390x"
14
- #define DATE "built on: Tue Jul 5 15:03:46 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:21 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux64-s390x"
14
- #define DATE "built on: Tue Jul 5 15:03:48 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:22 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris-x86-gcc"
14
- #define DATE "built on: Tue Jul 5 15:03:53 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:27 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris-x86-gcc"
14
- #define DATE "built on: Tue Jul 5 15:03:55 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:29 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris-x86-gcc"
14
- #define DATE "built on: Tue Jul 5 15:03:57 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:30 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris64-x86_64-gcc"
14
- #define DATE "built on: Tue Jul 5 15:03:58 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:32 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris64-x86_64-gcc"
14
- #define DATE "built on: Tue Jul 5 15:04:03 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:36 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: solaris64-x86_64-gcc"
14
- #define DATE "built on: Tue Jul 5 15:04:07 2022 UTC"
14
+ #define DATE "built on: Wed Feb 8 13:04:40 2023 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by apps/progs.pl
4
4
  *
5
- * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the OpenSSL license (the "License"). You may not use
8
8
  * this file except in compliance with the License. You can obtain a copy
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * Generated by util/mkerr.pl DO NOT EDIT
3
- * Copyright 1995-2019 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 OpenSSL license (the "License"). You may not use
6
6
  * this file except in compliance with the License. You can obtain a copy
@@ -72,6 +72,7 @@ int ERR_load_BN_strings(void);
72
72
  # define BN_F_BN_SET_WORDS 144
73
73
  # define BN_F_BN_STACK_PUSH 148
74
74
  # define BN_F_BN_USUB 115
75
+ # define BN_F_OSSL_BN_RSA_DO_UNBLIND 151
75
76
 
76
77
  /*
77
78
  * BN reason codes.
@@ -187,6 +187,7 @@ int ERR_load_CMS_strings(void);
187
187
  # define CMS_R_UNKNOWN_DIGEST_ALGORITHM 149
188
188
  # define CMS_R_UNKNOWN_ID 150
189
189
  # define CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM 151
190
+ # define CMS_R_UNSUPPORTED_CONTENT_ENCRYPTION_ALGORITHM 194
190
191
  # define CMS_R_UNSUPPORTED_CONTENT_TYPE 152
191
192
  # define CMS_R_UNSUPPORTED_KEK_ALGORITHM 153
192
193
  # define CMS_R_UNSUPPORTED_KEY_ENCRYPTION_ALGORITHM 179