node-linux-arm64 18.6.0 → 18.9.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 (589) hide show
  1. package/CHANGELOG.md +502 -0
  2. package/LICENSE +33 -1
  3. package/README.md +22 -6
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +1 -1
  6. package/include/node/config.gypi +7 -3
  7. package/include/node/node.h +38 -1
  8. package/include/node/node_api.h +1 -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_avx2/crypto/buildinf.h +1 -1
  12. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  13. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  14. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  15. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  16. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  17. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  18. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  19. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  20. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  21. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  22. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  23. package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
  24. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
  25. package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
  26. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  27. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  28. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  29. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  30. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  31. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  32. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  33. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  34. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  35. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  36. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  37. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  38. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  39. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  40. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  41. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  42. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  43. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  44. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  45. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  46. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  47. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  48. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  49. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  50. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  51. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  52. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  53. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  54. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  55. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  56. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  57. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  58. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  59. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  60. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  61. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  62. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  64. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  65. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  66. package/include/node/v8-array-buffer.h +12 -0
  67. package/include/node/v8-version.h +1 -1
  68. package/package.json +1 -1
  69. package/share/man/man1/node.1 +15 -0
  70. package/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/bn_conf.h +0 -28
  71. package/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/dso_conf.h +0 -17
  72. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslconf.h +0 -197
  73. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  74. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  75. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslconf.h +0 -197
  76. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/bn_conf.h +0 -28
  77. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/dso_conf.h +0 -17
  78. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslconf.h +0 -200
  79. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/bn_conf.h +0 -28
  80. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/dso_conf.h +0 -17
  81. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslconf.h +0 -197
  82. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  83. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  84. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslconf.h +0 -197
  85. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  86. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  87. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslconf.h +0 -200
  88. package/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/bn_conf.h +0 -28
  89. package/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/dso_conf.h +0 -16
  90. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslconf.h +0 -203
  91. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  92. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/dso_conf.h +0 -16
  93. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslconf.h +0 -203
  94. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/bn_conf.h +0 -28
  95. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/dso_conf.h +0 -16
  96. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslconf.h +0 -206
  97. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/bn_conf.h +0 -28
  98. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/dso_conf.h +0 -16
  99. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslconf.h +0 -203
  100. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/bn_conf.h +0 -28
  101. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/dso_conf.h +0 -16
  102. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslconf.h +0 -203
  103. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  104. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/dso_conf.h +0 -16
  105. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslconf.h +0 -203
  106. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/bn_conf.h +0 -28
  107. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/dso_conf.h +0 -16
  108. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslconf.h +0 -206
  109. package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +0 -29
  110. package/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  111. package/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  112. package/include/node/openssl/archs/aix-gcc/asm/include/crypto/bn_conf.h +0 -29
  113. package/include/node/openssl/archs/aix-gcc/asm/include/crypto/dso_conf.h +0 -19
  114. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/asn1.h +0 -1128
  115. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/asn1t.h +0 -946
  116. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/bio.h +0 -886
  117. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/cmp.h +0 -592
  118. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/cms.h +0 -493
  119. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/conf.h +0 -211
  120. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/configuration.h +0 -136
  121. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/crmf.h +0 -227
  122. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/crypto.h +0 -556
  123. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ct.h +0 -573
  124. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/err.h +0 -492
  125. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ess.h +0 -128
  126. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/fipskey.h +0 -36
  127. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/lhash.h +0 -288
  128. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ocsp.h +0 -483
  129. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/opensslconf.h +0 -203
  130. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/opensslv.h +0 -114
  131. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/pkcs12.h +0 -350
  132. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/pkcs7.h +0 -427
  133. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/safestack.h +0 -297
  134. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/srp.h +0 -285
  135. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ssl.h +0 -2657
  136. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ui.h +0 -407
  137. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/x509.h +0 -1276
  138. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/x509_vfy.h +0 -894
  139. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/x509v3.h +0 -1450
  140. package/include/node/openssl/archs/aix-gcc/asm/include/progs.h +0 -123
  141. package/include/node/openssl/archs/aix-gcc/asm/providers/common/include/prov/der_digests.h +0 -160
  142. package/include/node/openssl/archs/aix-gcc/asm/providers/common/include/prov/der_dsa.h +0 -94
  143. package/include/node/openssl/archs/aix-gcc/asm/providers/common/include/prov/der_ec.h +0 -286
  144. package/include/node/openssl/archs/aix-gcc/asm/providers/common/include/prov/der_ecx.h +0 -50
  145. package/include/node/openssl/archs/aix-gcc/asm/providers/common/include/prov/der_rsa.h +0 -187
  146. package/include/node/openssl/archs/aix-gcc/asm/providers/common/include/prov/der_sm2.h +0 -37
  147. package/include/node/openssl/archs/aix-gcc/asm/providers/common/include/prov/der_wrap.h +0 -46
  148. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +0 -30
  149. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  150. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  151. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/crypto/bn_conf.h +0 -29
  152. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/crypto/dso_conf.h +0 -19
  153. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/asn1.h +0 -1128
  154. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/asn1t.h +0 -946
  155. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/bio.h +0 -886
  156. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/cmp.h +0 -592
  157. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/cms.h +0 -493
  158. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/conf.h +0 -211
  159. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/configuration.h +0 -136
  160. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/crmf.h +0 -227
  161. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/crypto.h +0 -556
  162. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ct.h +0 -573
  163. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/err.h +0 -492
  164. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ess.h +0 -128
  165. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/fipskey.h +0 -36
  166. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/lhash.h +0 -288
  167. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ocsp.h +0 -483
  168. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/opensslconf.h +0 -203
  169. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/opensslv.h +0 -114
  170. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/pkcs12.h +0 -350
  171. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/pkcs7.h +0 -427
  172. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/safestack.h +0 -297
  173. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/srp.h +0 -285
  174. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ssl.h +0 -2657
  175. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ui.h +0 -407
  176. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/x509.h +0 -1276
  177. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/x509_vfy.h +0 -894
  178. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/x509v3.h +0 -1450
  179. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/progs.h +0 -123
  180. package/include/node/openssl/archs/aix-gcc/asm_avx2/providers/common/include/prov/der_digests.h +0 -160
  181. package/include/node/openssl/archs/aix-gcc/asm_avx2/providers/common/include/prov/der_dsa.h +0 -94
  182. package/include/node/openssl/archs/aix-gcc/asm_avx2/providers/common/include/prov/der_ec.h +0 -286
  183. package/include/node/openssl/archs/aix-gcc/asm_avx2/providers/common/include/prov/der_ecx.h +0 -50
  184. package/include/node/openssl/archs/aix-gcc/asm_avx2/providers/common/include/prov/der_rsa.h +0 -187
  185. package/include/node/openssl/archs/aix-gcc/asm_avx2/providers/common/include/prov/der_sm2.h +0 -37
  186. package/include/node/openssl/archs/aix-gcc/asm_avx2/providers/common/include/prov/der_wrap.h +0 -46
  187. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +0 -28
  188. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  189. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  190. package/include/node/openssl/archs/aix-gcc/no-asm/include/crypto/bn_conf.h +0 -29
  191. package/include/node/openssl/archs/aix-gcc/no-asm/include/crypto/dso_conf.h +0 -19
  192. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/asn1.h +0 -1128
  193. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/asn1t.h +0 -946
  194. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/bio.h +0 -886
  195. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/cmp.h +0 -592
  196. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/cms.h +0 -493
  197. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/conf.h +0 -211
  198. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/configuration.h +0 -139
  199. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/crmf.h +0 -227
  200. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/crypto.h +0 -556
  201. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ct.h +0 -573
  202. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/err.h +0 -492
  203. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ess.h +0 -128
  204. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/fipskey.h +0 -36
  205. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/lhash.h +0 -288
  206. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ocsp.h +0 -483
  207. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/opensslconf.h +0 -206
  208. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/opensslv.h +0 -114
  209. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/pkcs12.h +0 -350
  210. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/pkcs7.h +0 -427
  211. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/safestack.h +0 -297
  212. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/srp.h +0 -285
  213. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ssl.h +0 -2657
  214. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ui.h +0 -407
  215. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/x509.h +0 -1276
  216. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/x509_vfy.h +0 -894
  217. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/x509v3.h +0 -1450
  218. package/include/node/openssl/archs/aix-gcc/no-asm/include/progs.h +0 -123
  219. package/include/node/openssl/archs/aix-gcc/no-asm/providers/common/include/prov/der_digests.h +0 -160
  220. package/include/node/openssl/archs/aix-gcc/no-asm/providers/common/include/prov/der_dsa.h +0 -94
  221. package/include/node/openssl/archs/aix-gcc/no-asm/providers/common/include/prov/der_ec.h +0 -286
  222. package/include/node/openssl/archs/aix-gcc/no-asm/providers/common/include/prov/der_ecx.h +0 -50
  223. package/include/node/openssl/archs/aix-gcc/no-asm/providers/common/include/prov/der_rsa.h +0 -187
  224. package/include/node/openssl/archs/aix-gcc/no-asm/providers/common/include/prov/der_sm2.h +0 -37
  225. package/include/node/openssl/archs/aix-gcc/no-asm/providers/common/include/prov/der_wrap.h +0 -46
  226. package/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  227. package/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  228. package/include/node/openssl/archs/aix64-gcc/asm/include/openssl/opensslconf.h +0 -203
  229. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  230. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  231. package/include/node/openssl/archs/aix64-gcc/asm_avx2/include/openssl/opensslconf.h +0 -203
  232. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  233. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  234. package/include/node/openssl/archs/aix64-gcc/no-asm/include/openssl/opensslconf.h +0 -206
  235. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/bn_conf.h +0 -28
  236. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/dso_conf.h +0 -17
  237. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslconf.h +0 -203
  238. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  239. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  240. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslconf.h +0 -203
  241. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  242. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  243. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslconf.h +0 -206
  244. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/bn_conf.h +0 -28
  245. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/dso_conf.h +0 -17
  246. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslconf.h +0 -203
  247. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  248. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  249. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslconf.h +0 -203
  250. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  251. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  252. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslconf.h +0 -206
  253. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/bn_conf.h +0 -28
  254. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/dso_conf.h +0 -17
  255. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslconf.h +0 -203
  256. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  257. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  258. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslconf.h +0 -203
  259. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  260. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  261. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslconf.h +0 -206
  262. package/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/bn_conf.h +0 -28
  263. package/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/dso_conf.h +0 -17
  264. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslconf.h +0 -200
  265. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  266. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  267. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslconf.h +0 -200
  268. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  269. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  270. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslconf.h +0 -203
  271. package/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/bn_conf.h +0 -28
  272. package/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/dso_conf.h +0 -17
  273. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslconf.h +0 -200
  274. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  275. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  276. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslconf.h +0 -200
  277. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/bn_conf.h +0 -28
  278. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/dso_conf.h +0 -17
  279. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslconf.h +0 -203
  280. package/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/bn_conf.h +0 -28
  281. package/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/dso_conf.h +0 -17
  282. package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslconf.h +0 -200
  283. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  284. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  285. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslconf.h +0 -200
  286. package/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/bn_conf.h +0 -28
  287. package/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/dso_conf.h +0 -17
  288. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslconf.h +0 -203
  289. package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +0 -31
  290. package/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/bn_conf.h +0 -28
  291. package/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/dso_conf.h +0 -17
  292. package/include/node/openssl/archs/linux-ppc/asm/include/crypto/bn_conf.h +0 -29
  293. package/include/node/openssl/archs/linux-ppc/asm/include/crypto/dso_conf.h +0 -19
  294. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/asn1.h +0 -1128
  295. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/asn1t.h +0 -946
  296. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/bio.h +0 -886
  297. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/cmp.h +0 -592
  298. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/cms.h +0 -493
  299. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/conf.h +0 -211
  300. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/configuration.h +0 -133
  301. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/crmf.h +0 -227
  302. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/crypto.h +0 -556
  303. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ct.h +0 -573
  304. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/err.h +0 -492
  305. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ess.h +0 -128
  306. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/fipskey.h +0 -36
  307. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/lhash.h +0 -288
  308. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ocsp.h +0 -483
  309. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/opensslconf.h +0 -200
  310. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/opensslv.h +0 -114
  311. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/pkcs12.h +0 -350
  312. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/pkcs7.h +0 -427
  313. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/safestack.h +0 -297
  314. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/srp.h +0 -285
  315. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ssl.h +0 -2657
  316. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ui.h +0 -407
  317. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/x509.h +0 -1276
  318. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/x509_vfy.h +0 -894
  319. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/x509v3.h +0 -1450
  320. package/include/node/openssl/archs/linux-ppc/asm/include/progs.h +0 -123
  321. package/include/node/openssl/archs/linux-ppc/asm/providers/common/include/prov/der_digests.h +0 -160
  322. package/include/node/openssl/archs/linux-ppc/asm/providers/common/include/prov/der_dsa.h +0 -94
  323. package/include/node/openssl/archs/linux-ppc/asm/providers/common/include/prov/der_ec.h +0 -286
  324. package/include/node/openssl/archs/linux-ppc/asm/providers/common/include/prov/der_ecx.h +0 -50
  325. package/include/node/openssl/archs/linux-ppc/asm/providers/common/include/prov/der_rsa.h +0 -187
  326. package/include/node/openssl/archs/linux-ppc/asm/providers/common/include/prov/der_sm2.h +0 -37
  327. package/include/node/openssl/archs/linux-ppc/asm/providers/common/include/prov/der_wrap.h +0 -46
  328. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +0 -32
  329. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  330. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  331. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/crypto/bn_conf.h +0 -29
  332. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/crypto/dso_conf.h +0 -19
  333. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/asn1.h +0 -1128
  334. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/asn1t.h +0 -946
  335. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/bio.h +0 -886
  336. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/cmp.h +0 -592
  337. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/cms.h +0 -493
  338. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/conf.h +0 -211
  339. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/configuration.h +0 -133
  340. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/crmf.h +0 -227
  341. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/crypto.h +0 -556
  342. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ct.h +0 -573
  343. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/err.h +0 -492
  344. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ess.h +0 -128
  345. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/fipskey.h +0 -36
  346. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/lhash.h +0 -288
  347. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ocsp.h +0 -483
  348. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/opensslconf.h +0 -200
  349. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/opensslv.h +0 -114
  350. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/pkcs12.h +0 -350
  351. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/pkcs7.h +0 -427
  352. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/safestack.h +0 -297
  353. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/srp.h +0 -285
  354. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ssl.h +0 -2657
  355. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ui.h +0 -407
  356. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/x509.h +0 -1276
  357. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/x509_vfy.h +0 -894
  358. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/x509v3.h +0 -1450
  359. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/progs.h +0 -123
  360. package/include/node/openssl/archs/linux-ppc/asm_avx2/providers/common/include/prov/der_digests.h +0 -160
  361. package/include/node/openssl/archs/linux-ppc/asm_avx2/providers/common/include/prov/der_dsa.h +0 -94
  362. package/include/node/openssl/archs/linux-ppc/asm_avx2/providers/common/include/prov/der_ec.h +0 -286
  363. package/include/node/openssl/archs/linux-ppc/asm_avx2/providers/common/include/prov/der_ecx.h +0 -50
  364. package/include/node/openssl/archs/linux-ppc/asm_avx2/providers/common/include/prov/der_rsa.h +0 -187
  365. package/include/node/openssl/archs/linux-ppc/asm_avx2/providers/common/include/prov/der_sm2.h +0 -37
  366. package/include/node/openssl/archs/linux-ppc/asm_avx2/providers/common/include/prov/der_wrap.h +0 -46
  367. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +0 -30
  368. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  369. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  370. package/include/node/openssl/archs/linux-ppc/no-asm/include/crypto/bn_conf.h +0 -29
  371. package/include/node/openssl/archs/linux-ppc/no-asm/include/crypto/dso_conf.h +0 -19
  372. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/asn1.h +0 -1128
  373. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/asn1t.h +0 -946
  374. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/bio.h +0 -886
  375. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/cmp.h +0 -592
  376. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/cms.h +0 -493
  377. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/conf.h +0 -211
  378. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/configuration.h +0 -136
  379. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/crmf.h +0 -227
  380. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/crypto.h +0 -556
  381. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ct.h +0 -573
  382. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/err.h +0 -492
  383. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ess.h +0 -128
  384. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/fipskey.h +0 -36
  385. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/lhash.h +0 -288
  386. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ocsp.h +0 -483
  387. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/opensslconf.h +0 -203
  388. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/opensslv.h +0 -114
  389. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/pkcs12.h +0 -350
  390. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/pkcs7.h +0 -427
  391. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/safestack.h +0 -297
  392. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/srp.h +0 -285
  393. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ssl.h +0 -2657
  394. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ui.h +0 -407
  395. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/x509.h +0 -1276
  396. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/x509_vfy.h +0 -894
  397. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/x509v3.h +0 -1450
  398. package/include/node/openssl/archs/linux-ppc/no-asm/include/progs.h +0 -123
  399. package/include/node/openssl/archs/linux-ppc/no-asm/providers/common/include/prov/der_digests.h +0 -160
  400. package/include/node/openssl/archs/linux-ppc/no-asm/providers/common/include/prov/der_dsa.h +0 -94
  401. package/include/node/openssl/archs/linux-ppc/no-asm/providers/common/include/prov/der_ec.h +0 -286
  402. package/include/node/openssl/archs/linux-ppc/no-asm/providers/common/include/prov/der_ecx.h +0 -50
  403. package/include/node/openssl/archs/linux-ppc/no-asm/providers/common/include/prov/der_rsa.h +0 -187
  404. package/include/node/openssl/archs/linux-ppc/no-asm/providers/common/include/prov/der_sm2.h +0 -37
  405. package/include/node/openssl/archs/linux-ppc/no-asm/providers/common/include/prov/der_wrap.h +0 -46
  406. package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +0 -32
  407. package/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/bn_conf.h +0 -28
  408. package/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/dso_conf.h +0 -17
  409. package/include/node/openssl/archs/linux-ppc64/asm/include/crypto/bn_conf.h +0 -29
  410. package/include/node/openssl/archs/linux-ppc64/asm/include/crypto/dso_conf.h +0 -19
  411. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/asn1.h +0 -1128
  412. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/asn1t.h +0 -946
  413. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/bio.h +0 -886
  414. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/cmp.h +0 -592
  415. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/cms.h +0 -493
  416. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/conf.h +0 -211
  417. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/configuration.h +0 -133
  418. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/crmf.h +0 -227
  419. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/crypto.h +0 -556
  420. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ct.h +0 -573
  421. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/err.h +0 -492
  422. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ess.h +0 -128
  423. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/fipskey.h +0 -36
  424. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/lhash.h +0 -288
  425. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ocsp.h +0 -483
  426. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/opensslconf.h +0 -200
  427. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/opensslv.h +0 -114
  428. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/pkcs12.h +0 -350
  429. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/pkcs7.h +0 -427
  430. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/safestack.h +0 -297
  431. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/srp.h +0 -285
  432. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ssl.h +0 -2657
  433. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ui.h +0 -407
  434. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/x509.h +0 -1276
  435. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/x509_vfy.h +0 -894
  436. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/x509v3.h +0 -1450
  437. package/include/node/openssl/archs/linux-ppc64/asm/include/progs.h +0 -123
  438. package/include/node/openssl/archs/linux-ppc64/asm/providers/common/include/prov/der_digests.h +0 -160
  439. package/include/node/openssl/archs/linux-ppc64/asm/providers/common/include/prov/der_dsa.h +0 -94
  440. package/include/node/openssl/archs/linux-ppc64/asm/providers/common/include/prov/der_ec.h +0 -286
  441. package/include/node/openssl/archs/linux-ppc64/asm/providers/common/include/prov/der_ecx.h +0 -50
  442. package/include/node/openssl/archs/linux-ppc64/asm/providers/common/include/prov/der_rsa.h +0 -187
  443. package/include/node/openssl/archs/linux-ppc64/asm/providers/common/include/prov/der_sm2.h +0 -37
  444. package/include/node/openssl/archs/linux-ppc64/asm/providers/common/include/prov/der_wrap.h +0 -46
  445. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +0 -33
  446. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  447. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  448. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/crypto/bn_conf.h +0 -29
  449. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/crypto/dso_conf.h +0 -19
  450. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/asn1.h +0 -1128
  451. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/asn1t.h +0 -946
  452. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/bio.h +0 -886
  453. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/cmp.h +0 -592
  454. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/cms.h +0 -493
  455. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/conf.h +0 -211
  456. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/configuration.h +0 -133
  457. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/crmf.h +0 -227
  458. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/crypto.h +0 -556
  459. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ct.h +0 -573
  460. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/err.h +0 -492
  461. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ess.h +0 -128
  462. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/fipskey.h +0 -36
  463. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/lhash.h +0 -288
  464. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ocsp.h +0 -483
  465. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/opensslconf.h +0 -200
  466. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/opensslv.h +0 -114
  467. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/pkcs12.h +0 -350
  468. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/pkcs7.h +0 -427
  469. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/safestack.h +0 -297
  470. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/srp.h +0 -285
  471. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ssl.h +0 -2657
  472. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ui.h +0 -407
  473. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/x509.h +0 -1276
  474. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/x509_vfy.h +0 -894
  475. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/x509v3.h +0 -1450
  476. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/progs.h +0 -123
  477. package/include/node/openssl/archs/linux-ppc64/asm_avx2/providers/common/include/prov/der_digests.h +0 -160
  478. package/include/node/openssl/archs/linux-ppc64/asm_avx2/providers/common/include/prov/der_dsa.h +0 -94
  479. package/include/node/openssl/archs/linux-ppc64/asm_avx2/providers/common/include/prov/der_ec.h +0 -286
  480. package/include/node/openssl/archs/linux-ppc64/asm_avx2/providers/common/include/prov/der_ecx.h +0 -50
  481. package/include/node/openssl/archs/linux-ppc64/asm_avx2/providers/common/include/prov/der_rsa.h +0 -187
  482. package/include/node/openssl/archs/linux-ppc64/asm_avx2/providers/common/include/prov/der_sm2.h +0 -37
  483. package/include/node/openssl/archs/linux-ppc64/asm_avx2/providers/common/include/prov/der_wrap.h +0 -46
  484. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +0 -30
  485. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  486. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  487. package/include/node/openssl/archs/linux-ppc64/no-asm/include/crypto/bn_conf.h +0 -29
  488. package/include/node/openssl/archs/linux-ppc64/no-asm/include/crypto/dso_conf.h +0 -19
  489. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/asn1.h +0 -1128
  490. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/asn1t.h +0 -946
  491. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/bio.h +0 -886
  492. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/cmp.h +0 -592
  493. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/cms.h +0 -493
  494. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/conf.h +0 -211
  495. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/configuration.h +0 -136
  496. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/crmf.h +0 -227
  497. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/crypto.h +0 -556
  498. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ct.h +0 -573
  499. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/err.h +0 -492
  500. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ess.h +0 -128
  501. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/fipskey.h +0 -36
  502. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/lhash.h +0 -288
  503. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ocsp.h +0 -483
  504. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/opensslconf.h +0 -203
  505. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/opensslv.h +0 -114
  506. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/pkcs12.h +0 -350
  507. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/pkcs7.h +0 -427
  508. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/safestack.h +0 -297
  509. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/srp.h +0 -285
  510. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ssl.h +0 -2657
  511. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ui.h +0 -407
  512. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/x509.h +0 -1276
  513. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/x509_vfy.h +0 -894
  514. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/x509v3.h +0 -1450
  515. package/include/node/openssl/archs/linux-ppc64/no-asm/include/progs.h +0 -123
  516. package/include/node/openssl/archs/linux-ppc64/no-asm/providers/common/include/prov/der_digests.h +0 -160
  517. package/include/node/openssl/archs/linux-ppc64/no-asm/providers/common/include/prov/der_dsa.h +0 -94
  518. package/include/node/openssl/archs/linux-ppc64/no-asm/providers/common/include/prov/der_ec.h +0 -286
  519. package/include/node/openssl/archs/linux-ppc64/no-asm/providers/common/include/prov/der_ecx.h +0 -50
  520. package/include/node/openssl/archs/linux-ppc64/no-asm/providers/common/include/prov/der_rsa.h +0 -187
  521. package/include/node/openssl/archs/linux-ppc64/no-asm/providers/common/include/prov/der_sm2.h +0 -37
  522. package/include/node/openssl/archs/linux-ppc64/no-asm/providers/common/include/prov/der_wrap.h +0 -46
  523. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/bn_conf.h +0 -28
  524. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/dso_conf.h +0 -17
  525. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslconf.h +0 -200
  526. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  527. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  528. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslconf.h +0 -200
  529. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/bn_conf.h +0 -28
  530. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/dso_conf.h +0 -17
  531. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslconf.h +0 -203
  532. package/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/bn_conf.h +0 -28
  533. package/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/dso_conf.h +0 -17
  534. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslconf.h +0 -200
  535. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  536. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  537. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslconf.h +0 -200
  538. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  539. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  540. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslconf.h +0 -203
  541. package/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/bn_conf.h +0 -28
  542. package/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/dso_conf.h +0 -17
  543. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslconf.h +0 -200
  544. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  545. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  546. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslconf.h +0 -200
  547. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/bn_conf.h +0 -28
  548. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/dso_conf.h +0 -17
  549. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslconf.h +0 -203
  550. package/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/bn_conf.h +0 -28
  551. package/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/dso_conf.h +0 -17
  552. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslconf.h +0 -200
  553. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  554. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  555. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslconf.h +0 -200
  556. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  557. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  558. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslconf.h +0 -203
  559. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  560. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  561. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslconf.h +0 -203
  562. package/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/bn_conf.h +0 -28
  563. package/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/dso_conf.h +0 -17
  564. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslconf.h +0 -200
  565. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  566. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  567. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslconf.h +0 -200
  568. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/bn_conf.h +0 -28
  569. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/dso_conf.h +0 -17
  570. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslconf.h +0 -203
  571. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  572. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  573. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslconf.h +0 -200
  574. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  575. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  576. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslconf.h +0 -200
  577. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  578. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  579. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslconf.h +0 -203
  580. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  581. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  582. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslconf.h +0 -200
  583. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  584. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  585. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslconf.h +0 -200
  586. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  587. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  588. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslconf.h +0 -203
  589. package/share/systemtap/tapset/node.stp +0 -146
@@ -1,483 +0,0 @@
1
- /*
2
- * WARNING: do not edit!
3
- * Generated by Makefile from include/openssl/ocsp.h.in
4
- *
5
- * Copyright 2000-2021 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
-
13
-
14
-
15
- #ifndef OPENSSL_OCSP_H
16
- # define OPENSSL_OCSP_H
17
- # pragma once
18
-
19
- # include <openssl/macros.h>
20
- # ifndef OPENSSL_NO_DEPRECATED_3_0
21
- # define HEADER_OCSP_H
22
- # endif
23
-
24
- # include <openssl/opensslconf.h>
25
- # include <openssl/http.h>
26
- # include <openssl/asn1.h>
27
-
28
- /*
29
- * These definitions are outside the OPENSSL_NO_OCSP guard because although for
30
- * historical reasons they have OCSP_* names, they can actually be used
31
- * independently of OCSP. E.g. see RFC5280
32
- */
33
- /*-
34
- * CRLReason ::= ENUMERATED {
35
- * unspecified (0),
36
- * keyCompromise (1),
37
- * cACompromise (2),
38
- * affiliationChanged (3),
39
- * superseded (4),
40
- * cessationOfOperation (5),
41
- * certificateHold (6),
42
- * -- value 7 is not used
43
- * removeFromCRL (8),
44
- * privilegeWithdrawn (9),
45
- * aACompromise (10) }
46
- */
47
- # define OCSP_REVOKED_STATUS_NOSTATUS -1
48
- # define OCSP_REVOKED_STATUS_UNSPECIFIED 0
49
- # define OCSP_REVOKED_STATUS_KEYCOMPROMISE 1
50
- # define OCSP_REVOKED_STATUS_CACOMPROMISE 2
51
- # define OCSP_REVOKED_STATUS_AFFILIATIONCHANGED 3
52
- # define OCSP_REVOKED_STATUS_SUPERSEDED 4
53
- # define OCSP_REVOKED_STATUS_CESSATIONOFOPERATION 5
54
- # define OCSP_REVOKED_STATUS_CERTIFICATEHOLD 6
55
- # define OCSP_REVOKED_STATUS_REMOVEFROMCRL 8
56
- # define OCSP_REVOKED_STATUS_PRIVILEGEWITHDRAWN 9
57
- # define OCSP_REVOKED_STATUS_AACOMPROMISE 10
58
-
59
-
60
- # ifndef OPENSSL_NO_OCSP
61
-
62
- # include <openssl/x509.h>
63
- # include <openssl/x509v3.h>
64
- # include <openssl/safestack.h>
65
- # include <openssl/ocsperr.h>
66
-
67
- # ifdef __cplusplus
68
- extern "C" {
69
- # endif
70
-
71
- /* Various flags and values */
72
-
73
- # define OCSP_DEFAULT_NONCE_LENGTH 16
74
-
75
- # define OCSP_NOCERTS 0x1
76
- # define OCSP_NOINTERN 0x2
77
- # define OCSP_NOSIGS 0x4
78
- # define OCSP_NOCHAIN 0x8
79
- # define OCSP_NOVERIFY 0x10
80
- # define OCSP_NOEXPLICIT 0x20
81
- # define OCSP_NOCASIGN 0x40
82
- # define OCSP_NODELEGATED 0x80
83
- # define OCSP_NOCHECKS 0x100
84
- # define OCSP_TRUSTOTHER 0x200
85
- # define OCSP_RESPID_KEY 0x400
86
- # define OCSP_NOTIME 0x800
87
- # define OCSP_PARTIAL_CHAIN 0x1000
88
-
89
- typedef struct ocsp_cert_id_st OCSP_CERTID;
90
- typedef struct ocsp_one_request_st OCSP_ONEREQ;
91
- typedef struct ocsp_req_info_st OCSP_REQINFO;
92
- typedef struct ocsp_signature_st OCSP_SIGNATURE;
93
- typedef struct ocsp_request_st OCSP_REQUEST;
94
-
95
- SKM_DEFINE_STACK_OF_INTERNAL(OCSP_CERTID, OCSP_CERTID, OCSP_CERTID)
96
- #define sk_OCSP_CERTID_num(sk) OPENSSL_sk_num(ossl_check_const_OCSP_CERTID_sk_type(sk))
97
- #define sk_OCSP_CERTID_value(sk, idx) ((OCSP_CERTID *)OPENSSL_sk_value(ossl_check_const_OCSP_CERTID_sk_type(sk), (idx)))
98
- #define sk_OCSP_CERTID_new(cmp) ((STACK_OF(OCSP_CERTID) *)OPENSSL_sk_new(ossl_check_OCSP_CERTID_compfunc_type(cmp)))
99
- #define sk_OCSP_CERTID_new_null() ((STACK_OF(OCSP_CERTID) *)OPENSSL_sk_new_null())
100
- #define sk_OCSP_CERTID_new_reserve(cmp, n) ((STACK_OF(OCSP_CERTID) *)OPENSSL_sk_new_reserve(ossl_check_OCSP_CERTID_compfunc_type(cmp), (n)))
101
- #define sk_OCSP_CERTID_reserve(sk, n) OPENSSL_sk_reserve(ossl_check_OCSP_CERTID_sk_type(sk), (n))
102
- #define sk_OCSP_CERTID_free(sk) OPENSSL_sk_free(ossl_check_OCSP_CERTID_sk_type(sk))
103
- #define sk_OCSP_CERTID_zero(sk) OPENSSL_sk_zero(ossl_check_OCSP_CERTID_sk_type(sk))
104
- #define sk_OCSP_CERTID_delete(sk, i) ((OCSP_CERTID *)OPENSSL_sk_delete(ossl_check_OCSP_CERTID_sk_type(sk), (i)))
105
- #define sk_OCSP_CERTID_delete_ptr(sk, ptr) ((OCSP_CERTID *)OPENSSL_sk_delete_ptr(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_type(ptr)))
106
- #define sk_OCSP_CERTID_push(sk, ptr) OPENSSL_sk_push(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_type(ptr))
107
- #define sk_OCSP_CERTID_unshift(sk, ptr) OPENSSL_sk_unshift(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_type(ptr))
108
- #define sk_OCSP_CERTID_pop(sk) ((OCSP_CERTID *)OPENSSL_sk_pop(ossl_check_OCSP_CERTID_sk_type(sk)))
109
- #define sk_OCSP_CERTID_shift(sk) ((OCSP_CERTID *)OPENSSL_sk_shift(ossl_check_OCSP_CERTID_sk_type(sk)))
110
- #define sk_OCSP_CERTID_pop_free(sk, freefunc) OPENSSL_sk_pop_free(ossl_check_OCSP_CERTID_sk_type(sk),ossl_check_OCSP_CERTID_freefunc_type(freefunc))
111
- #define sk_OCSP_CERTID_insert(sk, ptr, idx) OPENSSL_sk_insert(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_type(ptr), (idx))
112
- #define sk_OCSP_CERTID_set(sk, idx, ptr) ((OCSP_CERTID *)OPENSSL_sk_set(ossl_check_OCSP_CERTID_sk_type(sk), (idx), ossl_check_OCSP_CERTID_type(ptr)))
113
- #define sk_OCSP_CERTID_find(sk, ptr) OPENSSL_sk_find(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_type(ptr))
114
- #define sk_OCSP_CERTID_find_ex(sk, ptr) OPENSSL_sk_find_ex(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_type(ptr))
115
- #define sk_OCSP_CERTID_find_all(sk, ptr, pnum) OPENSSL_sk_find_all(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_type(ptr), pnum)
116
- #define sk_OCSP_CERTID_sort(sk) OPENSSL_sk_sort(ossl_check_OCSP_CERTID_sk_type(sk))
117
- #define sk_OCSP_CERTID_is_sorted(sk) OPENSSL_sk_is_sorted(ossl_check_const_OCSP_CERTID_sk_type(sk))
118
- #define sk_OCSP_CERTID_dup(sk) ((STACK_OF(OCSP_CERTID) *)OPENSSL_sk_dup(ossl_check_const_OCSP_CERTID_sk_type(sk)))
119
- #define sk_OCSP_CERTID_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(OCSP_CERTID) *)OPENSSL_sk_deep_copy(ossl_check_const_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_copyfunc_type(copyfunc), ossl_check_OCSP_CERTID_freefunc_type(freefunc)))
120
- #define sk_OCSP_CERTID_set_cmp_func(sk, cmp) ((sk_OCSP_CERTID_compfunc)OPENSSL_sk_set_cmp_func(ossl_check_OCSP_CERTID_sk_type(sk), ossl_check_OCSP_CERTID_compfunc_type(cmp)))
121
- SKM_DEFINE_STACK_OF_INTERNAL(OCSP_ONEREQ, OCSP_ONEREQ, OCSP_ONEREQ)
122
- #define sk_OCSP_ONEREQ_num(sk) OPENSSL_sk_num(ossl_check_const_OCSP_ONEREQ_sk_type(sk))
123
- #define sk_OCSP_ONEREQ_value(sk, idx) ((OCSP_ONEREQ *)OPENSSL_sk_value(ossl_check_const_OCSP_ONEREQ_sk_type(sk), (idx)))
124
- #define sk_OCSP_ONEREQ_new(cmp) ((STACK_OF(OCSP_ONEREQ) *)OPENSSL_sk_new(ossl_check_OCSP_ONEREQ_compfunc_type(cmp)))
125
- #define sk_OCSP_ONEREQ_new_null() ((STACK_OF(OCSP_ONEREQ) *)OPENSSL_sk_new_null())
126
- #define sk_OCSP_ONEREQ_new_reserve(cmp, n) ((STACK_OF(OCSP_ONEREQ) *)OPENSSL_sk_new_reserve(ossl_check_OCSP_ONEREQ_compfunc_type(cmp), (n)))
127
- #define sk_OCSP_ONEREQ_reserve(sk, n) OPENSSL_sk_reserve(ossl_check_OCSP_ONEREQ_sk_type(sk), (n))
128
- #define sk_OCSP_ONEREQ_free(sk) OPENSSL_sk_free(ossl_check_OCSP_ONEREQ_sk_type(sk))
129
- #define sk_OCSP_ONEREQ_zero(sk) OPENSSL_sk_zero(ossl_check_OCSP_ONEREQ_sk_type(sk))
130
- #define sk_OCSP_ONEREQ_delete(sk, i) ((OCSP_ONEREQ *)OPENSSL_sk_delete(ossl_check_OCSP_ONEREQ_sk_type(sk), (i)))
131
- #define sk_OCSP_ONEREQ_delete_ptr(sk, ptr) ((OCSP_ONEREQ *)OPENSSL_sk_delete_ptr(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_type(ptr)))
132
- #define sk_OCSP_ONEREQ_push(sk, ptr) OPENSSL_sk_push(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_type(ptr))
133
- #define sk_OCSP_ONEREQ_unshift(sk, ptr) OPENSSL_sk_unshift(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_type(ptr))
134
- #define sk_OCSP_ONEREQ_pop(sk) ((OCSP_ONEREQ *)OPENSSL_sk_pop(ossl_check_OCSP_ONEREQ_sk_type(sk)))
135
- #define sk_OCSP_ONEREQ_shift(sk) ((OCSP_ONEREQ *)OPENSSL_sk_shift(ossl_check_OCSP_ONEREQ_sk_type(sk)))
136
- #define sk_OCSP_ONEREQ_pop_free(sk, freefunc) OPENSSL_sk_pop_free(ossl_check_OCSP_ONEREQ_sk_type(sk),ossl_check_OCSP_ONEREQ_freefunc_type(freefunc))
137
- #define sk_OCSP_ONEREQ_insert(sk, ptr, idx) OPENSSL_sk_insert(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_type(ptr), (idx))
138
- #define sk_OCSP_ONEREQ_set(sk, idx, ptr) ((OCSP_ONEREQ *)OPENSSL_sk_set(ossl_check_OCSP_ONEREQ_sk_type(sk), (idx), ossl_check_OCSP_ONEREQ_type(ptr)))
139
- #define sk_OCSP_ONEREQ_find(sk, ptr) OPENSSL_sk_find(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_type(ptr))
140
- #define sk_OCSP_ONEREQ_find_ex(sk, ptr) OPENSSL_sk_find_ex(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_type(ptr))
141
- #define sk_OCSP_ONEREQ_find_all(sk, ptr, pnum) OPENSSL_sk_find_all(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_type(ptr), pnum)
142
- #define sk_OCSP_ONEREQ_sort(sk) OPENSSL_sk_sort(ossl_check_OCSP_ONEREQ_sk_type(sk))
143
- #define sk_OCSP_ONEREQ_is_sorted(sk) OPENSSL_sk_is_sorted(ossl_check_const_OCSP_ONEREQ_sk_type(sk))
144
- #define sk_OCSP_ONEREQ_dup(sk) ((STACK_OF(OCSP_ONEREQ) *)OPENSSL_sk_dup(ossl_check_const_OCSP_ONEREQ_sk_type(sk)))
145
- #define sk_OCSP_ONEREQ_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(OCSP_ONEREQ) *)OPENSSL_sk_deep_copy(ossl_check_const_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_copyfunc_type(copyfunc), ossl_check_OCSP_ONEREQ_freefunc_type(freefunc)))
146
- #define sk_OCSP_ONEREQ_set_cmp_func(sk, cmp) ((sk_OCSP_ONEREQ_compfunc)OPENSSL_sk_set_cmp_func(ossl_check_OCSP_ONEREQ_sk_type(sk), ossl_check_OCSP_ONEREQ_compfunc_type(cmp)))
147
-
148
-
149
- # define OCSP_RESPONSE_STATUS_SUCCESSFUL 0
150
- # define OCSP_RESPONSE_STATUS_MALFORMEDREQUEST 1
151
- # define OCSP_RESPONSE_STATUS_INTERNALERROR 2
152
- # define OCSP_RESPONSE_STATUS_TRYLATER 3
153
- # define OCSP_RESPONSE_STATUS_SIGREQUIRED 5
154
- # define OCSP_RESPONSE_STATUS_UNAUTHORIZED 6
155
-
156
- typedef struct ocsp_resp_bytes_st OCSP_RESPBYTES;
157
-
158
- # define V_OCSP_RESPID_NAME 0
159
- # define V_OCSP_RESPID_KEY 1
160
-
161
- SKM_DEFINE_STACK_OF_INTERNAL(OCSP_RESPID, OCSP_RESPID, OCSP_RESPID)
162
- #define sk_OCSP_RESPID_num(sk) OPENSSL_sk_num(ossl_check_const_OCSP_RESPID_sk_type(sk))
163
- #define sk_OCSP_RESPID_value(sk, idx) ((OCSP_RESPID *)OPENSSL_sk_value(ossl_check_const_OCSP_RESPID_sk_type(sk), (idx)))
164
- #define sk_OCSP_RESPID_new(cmp) ((STACK_OF(OCSP_RESPID) *)OPENSSL_sk_new(ossl_check_OCSP_RESPID_compfunc_type(cmp)))
165
- #define sk_OCSP_RESPID_new_null() ((STACK_OF(OCSP_RESPID) *)OPENSSL_sk_new_null())
166
- #define sk_OCSP_RESPID_new_reserve(cmp, n) ((STACK_OF(OCSP_RESPID) *)OPENSSL_sk_new_reserve(ossl_check_OCSP_RESPID_compfunc_type(cmp), (n)))
167
- #define sk_OCSP_RESPID_reserve(sk, n) OPENSSL_sk_reserve(ossl_check_OCSP_RESPID_sk_type(sk), (n))
168
- #define sk_OCSP_RESPID_free(sk) OPENSSL_sk_free(ossl_check_OCSP_RESPID_sk_type(sk))
169
- #define sk_OCSP_RESPID_zero(sk) OPENSSL_sk_zero(ossl_check_OCSP_RESPID_sk_type(sk))
170
- #define sk_OCSP_RESPID_delete(sk, i) ((OCSP_RESPID *)OPENSSL_sk_delete(ossl_check_OCSP_RESPID_sk_type(sk), (i)))
171
- #define sk_OCSP_RESPID_delete_ptr(sk, ptr) ((OCSP_RESPID *)OPENSSL_sk_delete_ptr(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_type(ptr)))
172
- #define sk_OCSP_RESPID_push(sk, ptr) OPENSSL_sk_push(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_type(ptr))
173
- #define sk_OCSP_RESPID_unshift(sk, ptr) OPENSSL_sk_unshift(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_type(ptr))
174
- #define sk_OCSP_RESPID_pop(sk) ((OCSP_RESPID *)OPENSSL_sk_pop(ossl_check_OCSP_RESPID_sk_type(sk)))
175
- #define sk_OCSP_RESPID_shift(sk) ((OCSP_RESPID *)OPENSSL_sk_shift(ossl_check_OCSP_RESPID_sk_type(sk)))
176
- #define sk_OCSP_RESPID_pop_free(sk, freefunc) OPENSSL_sk_pop_free(ossl_check_OCSP_RESPID_sk_type(sk),ossl_check_OCSP_RESPID_freefunc_type(freefunc))
177
- #define sk_OCSP_RESPID_insert(sk, ptr, idx) OPENSSL_sk_insert(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_type(ptr), (idx))
178
- #define sk_OCSP_RESPID_set(sk, idx, ptr) ((OCSP_RESPID *)OPENSSL_sk_set(ossl_check_OCSP_RESPID_sk_type(sk), (idx), ossl_check_OCSP_RESPID_type(ptr)))
179
- #define sk_OCSP_RESPID_find(sk, ptr) OPENSSL_sk_find(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_type(ptr))
180
- #define sk_OCSP_RESPID_find_ex(sk, ptr) OPENSSL_sk_find_ex(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_type(ptr))
181
- #define sk_OCSP_RESPID_find_all(sk, ptr, pnum) OPENSSL_sk_find_all(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_type(ptr), pnum)
182
- #define sk_OCSP_RESPID_sort(sk) OPENSSL_sk_sort(ossl_check_OCSP_RESPID_sk_type(sk))
183
- #define sk_OCSP_RESPID_is_sorted(sk) OPENSSL_sk_is_sorted(ossl_check_const_OCSP_RESPID_sk_type(sk))
184
- #define sk_OCSP_RESPID_dup(sk) ((STACK_OF(OCSP_RESPID) *)OPENSSL_sk_dup(ossl_check_const_OCSP_RESPID_sk_type(sk)))
185
- #define sk_OCSP_RESPID_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(OCSP_RESPID) *)OPENSSL_sk_deep_copy(ossl_check_const_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_copyfunc_type(copyfunc), ossl_check_OCSP_RESPID_freefunc_type(freefunc)))
186
- #define sk_OCSP_RESPID_set_cmp_func(sk, cmp) ((sk_OCSP_RESPID_compfunc)OPENSSL_sk_set_cmp_func(ossl_check_OCSP_RESPID_sk_type(sk), ossl_check_OCSP_RESPID_compfunc_type(cmp)))
187
-
188
-
189
- typedef struct ocsp_revoked_info_st OCSP_REVOKEDINFO;
190
-
191
- # define V_OCSP_CERTSTATUS_GOOD 0
192
- # define V_OCSP_CERTSTATUS_REVOKED 1
193
- # define V_OCSP_CERTSTATUS_UNKNOWN 2
194
-
195
- typedef struct ocsp_cert_status_st OCSP_CERTSTATUS;
196
- typedef struct ocsp_single_response_st OCSP_SINGLERESP;
197
-
198
- SKM_DEFINE_STACK_OF_INTERNAL(OCSP_SINGLERESP, OCSP_SINGLERESP, OCSP_SINGLERESP)
199
- #define sk_OCSP_SINGLERESP_num(sk) OPENSSL_sk_num(ossl_check_const_OCSP_SINGLERESP_sk_type(sk))
200
- #define sk_OCSP_SINGLERESP_value(sk, idx) ((OCSP_SINGLERESP *)OPENSSL_sk_value(ossl_check_const_OCSP_SINGLERESP_sk_type(sk), (idx)))
201
- #define sk_OCSP_SINGLERESP_new(cmp) ((STACK_OF(OCSP_SINGLERESP) *)OPENSSL_sk_new(ossl_check_OCSP_SINGLERESP_compfunc_type(cmp)))
202
- #define sk_OCSP_SINGLERESP_new_null() ((STACK_OF(OCSP_SINGLERESP) *)OPENSSL_sk_new_null())
203
- #define sk_OCSP_SINGLERESP_new_reserve(cmp, n) ((STACK_OF(OCSP_SINGLERESP) *)OPENSSL_sk_new_reserve(ossl_check_OCSP_SINGLERESP_compfunc_type(cmp), (n)))
204
- #define sk_OCSP_SINGLERESP_reserve(sk, n) OPENSSL_sk_reserve(ossl_check_OCSP_SINGLERESP_sk_type(sk), (n))
205
- #define sk_OCSP_SINGLERESP_free(sk) OPENSSL_sk_free(ossl_check_OCSP_SINGLERESP_sk_type(sk))
206
- #define sk_OCSP_SINGLERESP_zero(sk) OPENSSL_sk_zero(ossl_check_OCSP_SINGLERESP_sk_type(sk))
207
- #define sk_OCSP_SINGLERESP_delete(sk, i) ((OCSP_SINGLERESP *)OPENSSL_sk_delete(ossl_check_OCSP_SINGLERESP_sk_type(sk), (i)))
208
- #define sk_OCSP_SINGLERESP_delete_ptr(sk, ptr) ((OCSP_SINGLERESP *)OPENSSL_sk_delete_ptr(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_type(ptr)))
209
- #define sk_OCSP_SINGLERESP_push(sk, ptr) OPENSSL_sk_push(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_type(ptr))
210
- #define sk_OCSP_SINGLERESP_unshift(sk, ptr) OPENSSL_sk_unshift(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_type(ptr))
211
- #define sk_OCSP_SINGLERESP_pop(sk) ((OCSP_SINGLERESP *)OPENSSL_sk_pop(ossl_check_OCSP_SINGLERESP_sk_type(sk)))
212
- #define sk_OCSP_SINGLERESP_shift(sk) ((OCSP_SINGLERESP *)OPENSSL_sk_shift(ossl_check_OCSP_SINGLERESP_sk_type(sk)))
213
- #define sk_OCSP_SINGLERESP_pop_free(sk, freefunc) OPENSSL_sk_pop_free(ossl_check_OCSP_SINGLERESP_sk_type(sk),ossl_check_OCSP_SINGLERESP_freefunc_type(freefunc))
214
- #define sk_OCSP_SINGLERESP_insert(sk, ptr, idx) OPENSSL_sk_insert(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_type(ptr), (idx))
215
- #define sk_OCSP_SINGLERESP_set(sk, idx, ptr) ((OCSP_SINGLERESP *)OPENSSL_sk_set(ossl_check_OCSP_SINGLERESP_sk_type(sk), (idx), ossl_check_OCSP_SINGLERESP_type(ptr)))
216
- #define sk_OCSP_SINGLERESP_find(sk, ptr) OPENSSL_sk_find(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_type(ptr))
217
- #define sk_OCSP_SINGLERESP_find_ex(sk, ptr) OPENSSL_sk_find_ex(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_type(ptr))
218
- #define sk_OCSP_SINGLERESP_find_all(sk, ptr, pnum) OPENSSL_sk_find_all(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_type(ptr), pnum)
219
- #define sk_OCSP_SINGLERESP_sort(sk) OPENSSL_sk_sort(ossl_check_OCSP_SINGLERESP_sk_type(sk))
220
- #define sk_OCSP_SINGLERESP_is_sorted(sk) OPENSSL_sk_is_sorted(ossl_check_const_OCSP_SINGLERESP_sk_type(sk))
221
- #define sk_OCSP_SINGLERESP_dup(sk) ((STACK_OF(OCSP_SINGLERESP) *)OPENSSL_sk_dup(ossl_check_const_OCSP_SINGLERESP_sk_type(sk)))
222
- #define sk_OCSP_SINGLERESP_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(OCSP_SINGLERESP) *)OPENSSL_sk_deep_copy(ossl_check_const_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_copyfunc_type(copyfunc), ossl_check_OCSP_SINGLERESP_freefunc_type(freefunc)))
223
- #define sk_OCSP_SINGLERESP_set_cmp_func(sk, cmp) ((sk_OCSP_SINGLERESP_compfunc)OPENSSL_sk_set_cmp_func(ossl_check_OCSP_SINGLERESP_sk_type(sk), ossl_check_OCSP_SINGLERESP_compfunc_type(cmp)))
224
-
225
-
226
- typedef struct ocsp_response_data_st OCSP_RESPDATA;
227
-
228
- typedef struct ocsp_basic_response_st OCSP_BASICRESP;
229
-
230
- typedef struct ocsp_crl_id_st OCSP_CRLID;
231
- typedef struct ocsp_service_locator_st OCSP_SERVICELOC;
232
-
233
- # define PEM_STRING_OCSP_REQUEST "OCSP REQUEST"
234
- # define PEM_STRING_OCSP_RESPONSE "OCSP RESPONSE"
235
-
236
- # define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p)
237
-
238
- # define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p)
239
-
240
- # define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \
241
- (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST, \
242
- bp,(char **)(x),cb,NULL)
243
-
244
- # define PEM_read_bio_OCSP_RESPONSE(bp,x,cb) (OCSP_RESPONSE *)PEM_ASN1_read_bio(\
245
- (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE, \
246
- bp,(char **)(x),cb,NULL)
247
-
248
- # define PEM_write_bio_OCSP_REQUEST(bp,o) \
249
- PEM_ASN1_write_bio((int (*)())i2d_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,\
250
- bp,(char *)(o), NULL,NULL,0,NULL,NULL)
251
-
252
- # define PEM_write_bio_OCSP_RESPONSE(bp,o) \
253
- PEM_ASN1_write_bio((int (*)())i2d_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,\
254
- bp,(char *)(o), NULL,NULL,0,NULL,NULL)
255
-
256
- # define i2d_OCSP_RESPONSE_bio(bp,o) ASN1_i2d_bio_of(OCSP_RESPONSE,i2d_OCSP_RESPONSE,bp,o)
257
-
258
- # define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio_of(OCSP_REQUEST,i2d_OCSP_REQUEST,bp,o)
259
-
260
- # define ASN1_BIT_STRING_digest(data,type,md,len) \
261
- ASN1_item_digest(ASN1_ITEM_rptr(ASN1_BIT_STRING),type,data,md,len)
262
-
263
- # define OCSP_CERTSTATUS_dup(cs)\
264
- (OCSP_CERTSTATUS*)ASN1_dup((i2d_of_void *)i2d_OCSP_CERTSTATUS,\
265
- (d2i_of_void *)d2i_OCSP_CERTSTATUS,(char *)(cs))
266
-
267
- DECLARE_ASN1_DUP_FUNCTION(OCSP_CERTID)
268
-
269
- OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
270
- const OCSP_REQUEST *req, int buf_size);
271
- OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req);
272
-
273
- # ifndef OPENSSL_NO_DEPRECATED_3_0
274
- typedef OSSL_HTTP_REQ_CTX OCSP_REQ_CTX;
275
- # define OCSP_REQ_CTX_new(io, buf_size) \
276
- OSSL_HTTP_REQ_CTX_new(io, io, buf_size)
277
- # define OCSP_REQ_CTX_free OSSL_HTTP_REQ_CTX_free
278
- # define OCSP_REQ_CTX_http(rctx, op, path) \
279
- (OSSL_HTTP_REQ_CTX_set_expected(rctx, NULL, 1 /* asn1 */, 0, 0) && \
280
- OSSL_HTTP_REQ_CTX_set_request_line(rctx, strcmp(op, "POST") == 0, \
281
- NULL, NULL, path))
282
- # define OCSP_REQ_CTX_add1_header OSSL_HTTP_REQ_CTX_add1_header
283
- # define OCSP_REQ_CTX_i2d(r, it, req) \
284
- OSSL_HTTP_REQ_CTX_set1_req(r, "application/ocsp-request", it, req)
285
- # define OCSP_REQ_CTX_set1_req(r, req) \
286
- OCSP_REQ_CTX_i2d(r, ASN1_ITEM_rptr(OCSP_REQUEST), (ASN1_VALUE *)(req))
287
- # define OCSP_REQ_CTX_nbio OSSL_HTTP_REQ_CTX_nbio
288
- # define OCSP_REQ_CTX_nbio_d2i OSSL_HTTP_REQ_CTX_nbio_d2i
289
- # define OCSP_sendreq_nbio(p, r) \
290
- OSSL_HTTP_REQ_CTX_nbio_d2i(r, (ASN1_VALUE **)(p), \
291
- ASN1_ITEM_rptr(OCSP_RESPONSE))
292
- # define OCSP_REQ_CTX_get0_mem_bio OSSL_HTTP_REQ_CTX_get0_mem_bio
293
- # define OCSP_set_max_response_length OSSL_HTTP_REQ_CTX_set_max_response_length
294
- # endif
295
-
296
- OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, const X509 *subject,
297
- const X509 *issuer);
298
-
299
- OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst,
300
- const X509_NAME *issuerName,
301
- const ASN1_BIT_STRING *issuerKey,
302
- const ASN1_INTEGER *serialNumber);
303
-
304
- OCSP_ONEREQ *OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid);
305
-
306
- int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len);
307
- int OCSP_basic_add1_nonce(OCSP_BASICRESP *resp, unsigned char *val, int len);
308
- int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs);
309
- int OCSP_copy_nonce(OCSP_BASICRESP *resp, OCSP_REQUEST *req);
310
-
311
- int OCSP_request_set1_name(OCSP_REQUEST *req, const X509_NAME *nm);
312
- int OCSP_request_add1_cert(OCSP_REQUEST *req, X509 *cert);
313
-
314
- int OCSP_request_sign(OCSP_REQUEST *req,
315
- X509 *signer,
316
- EVP_PKEY *key,
317
- const EVP_MD *dgst,
318
- STACK_OF(X509) *certs, unsigned long flags);
319
-
320
- int OCSP_response_status(OCSP_RESPONSE *resp);
321
- OCSP_BASICRESP *OCSP_response_get1_basic(OCSP_RESPONSE *resp);
322
-
323
- const ASN1_OCTET_STRING *OCSP_resp_get0_signature(const OCSP_BASICRESP *bs);
324
- const X509_ALGOR *OCSP_resp_get0_tbs_sigalg(const OCSP_BASICRESP *bs);
325
- const OCSP_RESPDATA *OCSP_resp_get0_respdata(const OCSP_BASICRESP *bs);
326
- int OCSP_resp_get0_signer(OCSP_BASICRESP *bs, X509 **signer,
327
- STACK_OF(X509) *extra_certs);
328
-
329
- int OCSP_resp_count(OCSP_BASICRESP *bs);
330
- OCSP_SINGLERESP *OCSP_resp_get0(OCSP_BASICRESP *bs, int idx);
331
- const ASN1_GENERALIZEDTIME *OCSP_resp_get0_produced_at(const OCSP_BASICRESP* bs);
332
- const STACK_OF(X509) *OCSP_resp_get0_certs(const OCSP_BASICRESP *bs);
333
- int OCSP_resp_get0_id(const OCSP_BASICRESP *bs,
334
- const ASN1_OCTET_STRING **pid,
335
- const X509_NAME **pname);
336
- int OCSP_resp_get1_id(const OCSP_BASICRESP *bs,
337
- ASN1_OCTET_STRING **pid,
338
- X509_NAME **pname);
339
-
340
- int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last);
341
- int OCSP_single_get0_status(OCSP_SINGLERESP *single, int *reason,
342
- ASN1_GENERALIZEDTIME **revtime,
343
- ASN1_GENERALIZEDTIME **thisupd,
344
- ASN1_GENERALIZEDTIME **nextupd);
345
- int OCSP_resp_find_status(OCSP_BASICRESP *bs, OCSP_CERTID *id, int *status,
346
- int *reason,
347
- ASN1_GENERALIZEDTIME **revtime,
348
- ASN1_GENERALIZEDTIME **thisupd,
349
- ASN1_GENERALIZEDTIME **nextupd);
350
- int OCSP_check_validity(ASN1_GENERALIZEDTIME *thisupd,
351
- ASN1_GENERALIZEDTIME *nextupd, long sec, long maxsec);
352
-
353
- int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs,
354
- X509_STORE *store, unsigned long flags);
355
-
356
- # define OCSP_parse_url(url, host, port, path, ssl) \
357
- OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL)
358
-
359
- int OCSP_id_issuer_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
360
- int OCSP_id_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
361
-
362
- int OCSP_request_onereq_count(OCSP_REQUEST *req);
363
- OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i);
364
- OCSP_CERTID *OCSP_onereq_get0_id(OCSP_ONEREQ *one);
365
- int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd,
366
- ASN1_OCTET_STRING **pikeyHash,
367
- ASN1_INTEGER **pserial, OCSP_CERTID *cid);
368
- int OCSP_request_is_signed(OCSP_REQUEST *req);
369
- OCSP_RESPONSE *OCSP_response_create(int status, OCSP_BASICRESP *bs);
370
- OCSP_SINGLERESP *OCSP_basic_add1_status(OCSP_BASICRESP *rsp,
371
- OCSP_CERTID *cid,
372
- int status, int reason,
373
- ASN1_TIME *revtime,
374
- ASN1_TIME *thisupd,
375
- ASN1_TIME *nextupd);
376
- int OCSP_basic_add1_cert(OCSP_BASICRESP *resp, X509 *cert);
377
- int OCSP_basic_sign(OCSP_BASICRESP *brsp,
378
- X509 *signer, EVP_PKEY *key, const EVP_MD *dgst,
379
- STACK_OF(X509) *certs, unsigned long flags);
380
- int OCSP_basic_sign_ctx(OCSP_BASICRESP *brsp,
381
- X509 *signer, EVP_MD_CTX *ctx,
382
- STACK_OF(X509) *certs, unsigned long flags);
383
- int OCSP_RESPID_set_by_name(OCSP_RESPID *respid, X509 *cert);
384
- int OCSP_RESPID_set_by_key_ex(OCSP_RESPID *respid, X509 *cert,
385
- OSSL_LIB_CTX *libctx, const char *propq);
386
- int OCSP_RESPID_set_by_key(OCSP_RESPID *respid, X509 *cert);
387
- int OCSP_RESPID_match_ex(OCSP_RESPID *respid, X509 *cert, OSSL_LIB_CTX *libctx,
388
- const char *propq);
389
- int OCSP_RESPID_match(OCSP_RESPID *respid, X509 *cert);
390
-
391
- X509_EXTENSION *OCSP_crlID_new(const char *url, long *n, char *tim);
392
-
393
- X509_EXTENSION *OCSP_accept_responses_new(char **oids);
394
-
395
- X509_EXTENSION *OCSP_archive_cutoff_new(char *tim);
396
-
397
- X509_EXTENSION *OCSP_url_svcloc_new(const X509_NAME *issuer, const char **urls);
398
-
399
- int OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x);
400
- int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
401
- int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, const ASN1_OBJECT *obj,
402
- int lastpos);
403
- int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
404
- X509_EXTENSION *OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc);
405
- X509_EXTENSION *OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc);
406
- void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit,
407
- int *idx);
408
- int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
409
- unsigned long flags);
410
- int OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc);
411
-
412
- int OCSP_ONEREQ_get_ext_count(OCSP_ONEREQ *x);
413
- int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
414
- int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, const ASN1_OBJECT *obj, int lastpos);
415
- int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
416
- X509_EXTENSION *OCSP_ONEREQ_get_ext(OCSP_ONEREQ *x, int loc);
417
- X509_EXTENSION *OCSP_ONEREQ_delete_ext(OCSP_ONEREQ *x, int loc);
418
- void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx);
419
- int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit,
420
- unsigned long flags);
421
- int OCSP_ONEREQ_add_ext(OCSP_ONEREQ *x, X509_EXTENSION *ex, int loc);
422
-
423
- int OCSP_BASICRESP_get_ext_count(OCSP_BASICRESP *x);
424
- int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
425
- int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, const ASN1_OBJECT *obj,
426
- int lastpos);
427
- int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit,
428
- int lastpos);
429
- X509_EXTENSION *OCSP_BASICRESP_get_ext(OCSP_BASICRESP *x, int loc);
430
- X509_EXTENSION *OCSP_BASICRESP_delete_ext(OCSP_BASICRESP *x, int loc);
431
- void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit,
432
- int *idx);
433
- int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value,
434
- int crit, unsigned long flags);
435
- int OCSP_BASICRESP_add_ext(OCSP_BASICRESP *x, X509_EXTENSION *ex, int loc);
436
-
437
- int OCSP_SINGLERESP_get_ext_count(OCSP_SINGLERESP *x);
438
- int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
439
- int OCSP_SINGLERESP_get_ext_by_OBJ(OCSP_SINGLERESP *x, const ASN1_OBJECT *obj,
440
- int lastpos);
441
- int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit,
442
- int lastpos);
443
- X509_EXTENSION *OCSP_SINGLERESP_get_ext(OCSP_SINGLERESP *x, int loc);
444
- X509_EXTENSION *OCSP_SINGLERESP_delete_ext(OCSP_SINGLERESP *x, int loc);
445
- void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit,
446
- int *idx);
447
- int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value,
448
- int crit, unsigned long flags);
449
- int OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP *x, X509_EXTENSION *ex, int loc);
450
- const OCSP_CERTID *OCSP_SINGLERESP_get0_id(const OCSP_SINGLERESP *x);
451
-
452
- DECLARE_ASN1_FUNCTIONS(OCSP_SINGLERESP)
453
- DECLARE_ASN1_FUNCTIONS(OCSP_CERTSTATUS)
454
- DECLARE_ASN1_FUNCTIONS(OCSP_REVOKEDINFO)
455
- DECLARE_ASN1_FUNCTIONS(OCSP_BASICRESP)
456
- DECLARE_ASN1_FUNCTIONS(OCSP_RESPDATA)
457
- DECLARE_ASN1_FUNCTIONS(OCSP_RESPID)
458
- DECLARE_ASN1_FUNCTIONS(OCSP_RESPONSE)
459
- DECLARE_ASN1_FUNCTIONS(OCSP_RESPBYTES)
460
- DECLARE_ASN1_FUNCTIONS(OCSP_ONEREQ)
461
- DECLARE_ASN1_FUNCTIONS(OCSP_CERTID)
462
- DECLARE_ASN1_FUNCTIONS(OCSP_REQUEST)
463
- DECLARE_ASN1_FUNCTIONS(OCSP_SIGNATURE)
464
- DECLARE_ASN1_FUNCTIONS(OCSP_REQINFO)
465
- DECLARE_ASN1_FUNCTIONS(OCSP_CRLID)
466
- DECLARE_ASN1_FUNCTIONS(OCSP_SERVICELOC)
467
-
468
- const char *OCSP_response_status_str(long s);
469
- const char *OCSP_cert_status_str(long s);
470
- const char *OCSP_crl_reason_str(long s);
471
-
472
- int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *a, unsigned long flags);
473
- int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags);
474
-
475
- int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,
476
- X509_STORE *st, unsigned long flags);
477
-
478
-
479
- # ifdef __cplusplus
480
- }
481
- # endif
482
- # endif /* !defined(OPENSSL_NO_OCSP) */
483
- #endif
@@ -1,203 +0,0 @@
1
- /*
2
- * WARNING: do not edit!
3
- * Generated by Makefile from include/openssl/opensslconf.h.in
4
- *
5
- * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
6
- *
7
- * Licensed under the OpenSSL license (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
-
13
- #include <openssl/opensslv.h>
14
-
15
- #ifdef __cplusplus
16
- extern "C" {
17
- #endif
18
-
19
- #ifdef OPENSSL_ALGORITHM_DEFINES
20
- # error OPENSSL_ALGORITHM_DEFINES no longer supported
21
- #endif
22
-
23
- /*
24
- * OpenSSL was configured with the following options:
25
- */
26
-
27
- #ifndef OPENSSL_SYS_AIX
28
- # define OPENSSL_SYS_AIX 1
29
- #endif
30
- #ifndef OPENSSL_NO_COMP
31
- # define OPENSSL_NO_COMP
32
- #endif
33
- #ifndef OPENSSL_NO_MD2
34
- # define OPENSSL_NO_MD2
35
- #endif
36
- #ifndef OPENSSL_NO_RC5
37
- # define OPENSSL_NO_RC5
38
- #endif
39
- #ifndef OPENSSL_THREADS
40
- # define OPENSSL_THREADS
41
- #endif
42
- #ifndef OPENSSL_RAND_SEED_OS
43
- # define OPENSSL_RAND_SEED_OS
44
- #endif
45
- #ifndef OPENSSL_NO_AFALGENG
46
- # define OPENSSL_NO_AFALGENG
47
- #endif
48
- #ifndef OPENSSL_NO_ASAN
49
- # define OPENSSL_NO_ASAN
50
- #endif
51
- #ifndef OPENSSL_NO_CRYPTO_MDEBUG
52
- # define OPENSSL_NO_CRYPTO_MDEBUG
53
- #endif
54
- #ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
55
- # define OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
56
- #endif
57
- #ifndef OPENSSL_NO_DEVCRYPTOENG
58
- # define OPENSSL_NO_DEVCRYPTOENG
59
- #endif
60
- #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
61
- # define OPENSSL_NO_EC_NISTP_64_GCC_128
62
- #endif
63
- #ifndef OPENSSL_NO_EGD
64
- # define OPENSSL_NO_EGD
65
- #endif
66
- #ifndef OPENSSL_NO_EXTERNAL_TESTS
67
- # define OPENSSL_NO_EXTERNAL_TESTS
68
- #endif
69
- #ifndef OPENSSL_NO_FUZZ_AFL
70
- # define OPENSSL_NO_FUZZ_AFL
71
- #endif
72
- #ifndef OPENSSL_NO_FUZZ_LIBFUZZER
73
- # define OPENSSL_NO_FUZZ_LIBFUZZER
74
- #endif
75
- #ifndef OPENSSL_NO_HEARTBEATS
76
- # define OPENSSL_NO_HEARTBEATS
77
- #endif
78
- #ifndef OPENSSL_NO_MSAN
79
- # define OPENSSL_NO_MSAN
80
- #endif
81
- #ifndef OPENSSL_NO_SCTP
82
- # define OPENSSL_NO_SCTP
83
- #endif
84
- #ifndef OPENSSL_NO_SSL3
85
- # define OPENSSL_NO_SSL3
86
- #endif
87
- #ifndef OPENSSL_NO_SSL3_METHOD
88
- # define OPENSSL_NO_SSL3_METHOD
89
- #endif
90
- #ifndef OPENSSL_NO_UBSAN
91
- # define OPENSSL_NO_UBSAN
92
- #endif
93
- #ifndef OPENSSL_NO_UNIT_TEST
94
- # define OPENSSL_NO_UNIT_TEST
95
- #endif
96
- #ifndef OPENSSL_NO_WEAK_SSL_CIPHERS
97
- # define OPENSSL_NO_WEAK_SSL_CIPHERS
98
- #endif
99
- #ifndef OPENSSL_NO_DYNAMIC_ENGINE
100
- # define OPENSSL_NO_DYNAMIC_ENGINE
101
- #endif
102
-
103
-
104
- /*
105
- * Sometimes OPENSSSL_NO_xxx ends up with an empty file and some compilers
106
- * don't like that. This will hopefully silence them.
107
- */
108
- #define NON_EMPTY_TRANSLATION_UNIT static void *dummy = &dummy;
109
-
110
- /*
111
- * Applications should use -DOPENSSL_API_COMPAT=<version> to suppress the
112
- * declarations of functions deprecated in or before <version>. Otherwise, they
113
- * still won't see them if the library has been built to disable deprecated
114
- * functions.
115
- */
116
- #ifndef DECLARE_DEPRECATED
117
- # define DECLARE_DEPRECATED(f) f;
118
- # ifdef __GNUC__
119
- # if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 0)
120
- # undef DECLARE_DEPRECATED
121
- # define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
122
- # endif
123
- # elif defined(__SUNPRO_C)
124
- # if (__SUNPRO_C >= 0x5130)
125
- # undef DECLARE_DEPRECATED
126
- # define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
127
- # endif
128
- # endif
129
- #endif
130
-
131
- #ifndef OPENSSL_FILE
132
- # ifdef OPENSSL_NO_FILENAMES
133
- # define OPENSSL_FILE ""
134
- # define OPENSSL_LINE 0
135
- # else
136
- # define OPENSSL_FILE __FILE__
137
- # define OPENSSL_LINE __LINE__
138
- # endif
139
- #endif
140
-
141
- #ifndef OPENSSL_MIN_API
142
- # define OPENSSL_MIN_API 0
143
- #endif
144
-
145
- #if !defined(OPENSSL_API_COMPAT) || OPENSSL_API_COMPAT < OPENSSL_MIN_API
146
- # undef OPENSSL_API_COMPAT
147
- # define OPENSSL_API_COMPAT OPENSSL_MIN_API
148
- #endif
149
-
150
- /*
151
- * Do not deprecate things to be deprecated in version 1.2.0 before the
152
- * OpenSSL version number matches.
153
- */
154
- #if OPENSSL_VERSION_NUMBER < 0x10200000L
155
- # define DEPRECATEDIN_1_2_0(f) f;
156
- #elif OPENSSL_API_COMPAT < 0x10200000L
157
- # define DEPRECATEDIN_1_2_0(f) DECLARE_DEPRECATED(f)
158
- #else
159
- # define DEPRECATEDIN_1_2_0(f)
160
- #endif
161
-
162
- #if OPENSSL_API_COMPAT < 0x10100000L
163
- # define DEPRECATEDIN_1_1_0(f) DECLARE_DEPRECATED(f)
164
- #else
165
- # define DEPRECATEDIN_1_1_0(f)
166
- #endif
167
-
168
- #if OPENSSL_API_COMPAT < 0x10000000L
169
- # define DEPRECATEDIN_1_0_0(f) DECLARE_DEPRECATED(f)
170
- #else
171
- # define DEPRECATEDIN_1_0_0(f)
172
- #endif
173
-
174
- #if OPENSSL_API_COMPAT < 0x00908000L
175
- # define DEPRECATEDIN_0_9_8(f) DECLARE_DEPRECATED(f)
176
- #else
177
- # define DEPRECATEDIN_0_9_8(f)
178
- #endif
179
-
180
- /* Generate 80386 code? */
181
- #undef I386_ONLY
182
-
183
- #undef OPENSSL_UNISTD
184
- #define OPENSSL_UNISTD <unistd.h>
185
-
186
- #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
187
-
188
- /*
189
- * The following are cipher-specific, but are part of the public API.
190
- */
191
- #if !defined(OPENSSL_SYS_UEFI)
192
- # define BN_LLONG
193
- /* Only one for the following should be defined */
194
- # undef SIXTY_FOUR_BIT_LONG
195
- # undef SIXTY_FOUR_BIT
196
- # define THIRTY_TWO_BIT
197
- #endif
198
-
199
- #define RC4_INT unsigned char
200
-
201
- #ifdef __cplusplus
202
- }
203
- #endif