node-linux-arm64 24.4.1 → 24.5.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 (1617) hide show
  1. package/CHANGELOG.md +173 -0
  2. package/LICENSE +1 -1
  3. package/README.md +31 -28
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +1 -1
  6. package/include/node/config.gypi +2 -0
  7. package/include/node/node_version.h +2 -2
  8. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  9. package/include/node/openssl/archs/BSD-x86/asm/include/internal/param_names.h +469 -0
  10. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/asn1.h +22 -16
  11. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/bio.h +157 -22
  12. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/cmp.h +137 -7
  13. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/cms.h +28 -10
  14. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/comp.h +98 -0
  15. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/conf.h +4 -1
  16. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/configuration.h +52 -1
  17. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/core_names.h +575 -0
  18. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crmf.h +59 -8
  19. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crypto.h +33 -8
  20. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/ct.h +1 -1
  21. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/err.h +10 -2
  22. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/fipskey.h +6 -1
  23. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/lhash.h +158 -48
  24. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslv.h +6 -6
  25. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/pkcs12.h +17 -1
  26. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/pkcs7.h +12 -9
  27. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/ssl.h +382 -48
  28. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509.h +46 -19
  29. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509_acert.h +294 -0
  30. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509_vfy.h +65 -56
  31. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509v3.h +534 -16
  32. package/include/node/openssl/archs/BSD-x86/asm/include/progs.h +2 -0
  33. package/include/node/openssl/archs/BSD-x86/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  34. package/include/node/openssl/archs/BSD-x86/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  35. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  36. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/internal/param_names.h +469 -0
  37. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/asn1.h +22 -16
  38. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/bio.h +157 -22
  39. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/cmp.h +137 -7
  40. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/cms.h +28 -10
  41. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/comp.h +98 -0
  42. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/conf.h +4 -1
  43. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/configuration.h +52 -1
  44. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/core_names.h +575 -0
  45. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crmf.h +59 -8
  46. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crypto.h +33 -8
  47. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ct.h +1 -1
  48. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/err.h +10 -2
  49. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/fipskey.h +6 -1
  50. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/lhash.h +158 -48
  51. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h +6 -6
  52. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/pkcs12.h +17 -1
  53. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/pkcs7.h +12 -9
  54. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ssl.h +382 -48
  55. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509.h +46 -19
  56. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509_acert.h +294 -0
  57. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509_vfy.h +65 -56
  58. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509v3.h +534 -16
  59. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/progs.h +2 -0
  60. package/include/node/openssl/archs/BSD-x86/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  61. package/include/node/openssl/archs/BSD-x86/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  62. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/BSD-x86/no-asm/include/internal/param_names.h +469 -0
  64. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/asn1.h +22 -16
  65. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/bio.h +157 -22
  66. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/cmp.h +137 -7
  67. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/cms.h +28 -10
  68. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/comp.h +98 -0
  69. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/conf.h +4 -1
  70. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/configuration.h +52 -1
  71. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/core_names.h +575 -0
  72. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crmf.h +59 -8
  73. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crypto.h +33 -8
  74. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ct.h +1 -1
  75. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/err.h +10 -2
  76. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/fipskey.h +6 -1
  77. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/lhash.h +158 -48
  78. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslv.h +6 -6
  79. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/pkcs12.h +17 -1
  80. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/pkcs7.h +12 -9
  81. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ssl.h +382 -48
  82. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509.h +46 -19
  83. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509_acert.h +294 -0
  84. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509_vfy.h +65 -56
  85. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509v3.h +534 -16
  86. package/include/node/openssl/archs/BSD-x86/no-asm/include/progs.h +2 -0
  87. package/include/node/openssl/archs/BSD-x86/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  88. package/include/node/openssl/archs/BSD-x86/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  89. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  90. package/include/node/openssl/archs/BSD-x86_64/asm/include/internal/param_names.h +469 -0
  91. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/asn1.h +22 -16
  92. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/bio.h +157 -22
  93. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/cmp.h +137 -7
  94. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/cms.h +28 -10
  95. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/comp.h +98 -0
  96. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/conf.h +4 -1
  97. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/configuration.h +52 -1
  98. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/core_names.h +575 -0
  99. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crmf.h +59 -8
  100. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crypto.h +33 -8
  101. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ct.h +1 -1
  102. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/err.h +10 -2
  103. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/fipskey.h +6 -1
  104. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/lhash.h +158 -48
  105. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslv.h +6 -6
  106. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/pkcs12.h +17 -1
  107. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/pkcs7.h +12 -9
  108. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ssl.h +382 -48
  109. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509.h +46 -19
  110. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509_acert.h +294 -0
  111. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509_vfy.h +65 -56
  112. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509v3.h +534 -16
  113. package/include/node/openssl/archs/BSD-x86_64/asm/include/progs.h +2 -0
  114. package/include/node/openssl/archs/BSD-x86_64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  115. package/include/node/openssl/archs/BSD-x86_64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  116. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  117. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/internal/param_names.h +469 -0
  118. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/asn1.h +22 -16
  119. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/bio.h +157 -22
  120. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/cmp.h +137 -7
  121. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/cms.h +28 -10
  122. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/comp.h +98 -0
  123. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/conf.h +4 -1
  124. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/configuration.h +52 -1
  125. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/core_names.h +575 -0
  126. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crmf.h +59 -8
  127. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crypto.h +33 -8
  128. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ct.h +1 -1
  129. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/err.h +10 -2
  130. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/fipskey.h +6 -1
  131. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/lhash.h +158 -48
  132. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h +6 -6
  133. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs12.h +17 -1
  134. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs7.h +12 -9
  135. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ssl.h +382 -48
  136. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509.h +46 -19
  137. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509_acert.h +294 -0
  138. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509_vfy.h +65 -56
  139. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509v3.h +534 -16
  140. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/progs.h +2 -0
  141. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  142. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  143. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  144. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/internal/param_names.h +469 -0
  145. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/asn1.h +22 -16
  146. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/bio.h +157 -22
  147. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/cmp.h +137 -7
  148. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/cms.h +28 -10
  149. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/comp.h +98 -0
  150. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/conf.h +4 -1
  151. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/configuration.h +52 -1
  152. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/core_names.h +575 -0
  153. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crmf.h +59 -8
  154. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crypto.h +33 -8
  155. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ct.h +1 -1
  156. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/err.h +10 -2
  157. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/fipskey.h +6 -1
  158. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/lhash.h +158 -48
  159. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h +6 -6
  160. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/pkcs12.h +17 -1
  161. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/pkcs7.h +12 -9
  162. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ssl.h +382 -48
  163. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509.h +46 -19
  164. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509_acert.h +294 -0
  165. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509_vfy.h +65 -56
  166. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509v3.h +534 -16
  167. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/progs.h +2 -0
  168. package/include/node/openssl/archs/BSD-x86_64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  169. package/include/node/openssl/archs/BSD-x86_64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  170. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  171. package/include/node/openssl/archs/VC-WIN32/asm/include/internal/param_names.h +469 -0
  172. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/asn1.h +22 -16
  173. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/bio.h +157 -22
  174. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/cmp.h +137 -7
  175. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/cms.h +28 -10
  176. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/comp.h +98 -0
  177. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/conf.h +4 -1
  178. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/configuration.h +49 -1
  179. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/core_names.h +575 -0
  180. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crmf.h +59 -8
  181. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crypto.h +33 -8
  182. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ct.h +1 -1
  183. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/err.h +10 -2
  184. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/fipskey.h +6 -1
  185. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/lhash.h +158 -48
  186. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslv.h +6 -6
  187. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/pkcs12.h +17 -1
  188. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/pkcs7.h +12 -9
  189. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ssl.h +382 -48
  190. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509.h +46 -19
  191. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509_acert.h +294 -0
  192. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509_vfy.h +65 -56
  193. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509v3.h +534 -16
  194. package/include/node/openssl/archs/VC-WIN32/asm/include/progs.h +2 -0
  195. package/include/node/openssl/archs/VC-WIN32/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  196. package/include/node/openssl/archs/VC-WIN32/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  197. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  198. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/internal/param_names.h +469 -0
  199. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/asn1.h +22 -16
  200. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/bio.h +157 -22
  201. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/cmp.h +137 -7
  202. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/cms.h +28 -10
  203. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/comp.h +98 -0
  204. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/conf.h +4 -1
  205. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/configuration.h +49 -1
  206. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/core_names.h +575 -0
  207. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crmf.h +59 -8
  208. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crypto.h +33 -8
  209. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ct.h +1 -1
  210. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/err.h +10 -2
  211. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/fipskey.h +6 -1
  212. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/lhash.h +158 -48
  213. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h +6 -6
  214. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/pkcs12.h +17 -1
  215. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/pkcs7.h +12 -9
  216. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ssl.h +382 -48
  217. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509.h +46 -19
  218. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509_acert.h +294 -0
  219. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509_vfy.h +65 -56
  220. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509v3.h +534 -16
  221. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/progs.h +2 -0
  222. package/include/node/openssl/archs/VC-WIN32/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  223. package/include/node/openssl/archs/VC-WIN32/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  224. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  225. package/include/node/openssl/archs/VC-WIN32/no-asm/include/internal/param_names.h +469 -0
  226. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/asn1.h +22 -16
  227. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/bio.h +157 -22
  228. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/cmp.h +137 -7
  229. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/cms.h +28 -10
  230. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/comp.h +98 -0
  231. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/conf.h +4 -1
  232. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/configuration.h +49 -1
  233. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/core_names.h +575 -0
  234. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crmf.h +59 -8
  235. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crypto.h +33 -8
  236. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ct.h +1 -1
  237. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/err.h +10 -2
  238. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/fipskey.h +6 -1
  239. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/lhash.h +158 -48
  240. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslv.h +6 -6
  241. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/pkcs12.h +17 -1
  242. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/pkcs7.h +12 -9
  243. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ssl.h +382 -48
  244. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509.h +46 -19
  245. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509_acert.h +294 -0
  246. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509_vfy.h +65 -56
  247. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509v3.h +534 -16
  248. package/include/node/openssl/archs/VC-WIN32/no-asm/include/progs.h +2 -0
  249. package/include/node/openssl/archs/VC-WIN32/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  250. package/include/node/openssl/archs/VC-WIN32/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  251. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  252. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/internal/param_names.h +469 -0
  253. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/asn1.h +22 -16
  254. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/bio.h +157 -22
  255. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/cmp.h +137 -7
  256. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/cms.h +28 -10
  257. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/comp.h +98 -0
  258. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/conf.h +4 -1
  259. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/configuration.h +49 -1
  260. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/core_names.h +575 -0
  261. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crmf.h +59 -8
  262. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crypto.h +33 -8
  263. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ct.h +1 -1
  264. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/err.h +10 -2
  265. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/fipskey.h +6 -1
  266. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/lhash.h +158 -48
  267. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h +6 -6
  268. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs12.h +17 -1
  269. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs7.h +12 -9
  270. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ssl.h +382 -48
  271. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509.h +46 -19
  272. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509_acert.h +294 -0
  273. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509_vfy.h +65 -56
  274. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509v3.h +534 -16
  275. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/progs.h +2 -0
  276. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  277. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  278. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  279. package/include/node/openssl/archs/VC-WIN64A/asm/include/internal/param_names.h +469 -0
  280. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/asn1.h +22 -16
  281. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/bio.h +157 -22
  282. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/cmp.h +137 -7
  283. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/cms.h +28 -10
  284. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/comp.h +98 -0
  285. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/conf.h +4 -1
  286. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/configuration.h +49 -1
  287. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/core_names.h +575 -0
  288. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crmf.h +59 -8
  289. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crypto.h +33 -8
  290. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ct.h +1 -1
  291. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/err.h +10 -2
  292. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/fipskey.h +6 -1
  293. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/lhash.h +158 -48
  294. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslv.h +6 -6
  295. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/pkcs12.h +17 -1
  296. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/pkcs7.h +12 -9
  297. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ssl.h +382 -48
  298. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509.h +46 -19
  299. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509_acert.h +294 -0
  300. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509_vfy.h +65 -56
  301. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509v3.h +534 -16
  302. package/include/node/openssl/archs/VC-WIN64A/asm/include/progs.h +2 -0
  303. package/include/node/openssl/archs/VC-WIN64A/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  304. package/include/node/openssl/archs/VC-WIN64A/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  305. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  306. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/internal/param_names.h +469 -0
  307. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/asn1.h +22 -16
  308. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/bio.h +157 -22
  309. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/cmp.h +137 -7
  310. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/cms.h +28 -10
  311. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/comp.h +98 -0
  312. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/conf.h +4 -1
  313. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/configuration.h +49 -1
  314. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/core_names.h +575 -0
  315. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crmf.h +59 -8
  316. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crypto.h +33 -8
  317. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ct.h +1 -1
  318. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/err.h +10 -2
  319. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/fipskey.h +6 -1
  320. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/lhash.h +158 -48
  321. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h +6 -6
  322. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs12.h +17 -1
  323. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs7.h +12 -9
  324. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ssl.h +382 -48
  325. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509.h +46 -19
  326. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509_acert.h +294 -0
  327. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509_vfy.h +65 -56
  328. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509v3.h +534 -16
  329. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/progs.h +2 -0
  330. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  331. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  332. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  333. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/internal/param_names.h +469 -0
  334. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/asn1.h +22 -16
  335. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/bio.h +157 -22
  336. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/cmp.h +137 -7
  337. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/cms.h +28 -10
  338. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/comp.h +98 -0
  339. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/conf.h +4 -1
  340. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/configuration.h +49 -1
  341. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/core_names.h +575 -0
  342. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crmf.h +59 -8
  343. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crypto.h +33 -8
  344. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ct.h +1 -1
  345. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/err.h +10 -2
  346. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/fipskey.h +6 -1
  347. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/lhash.h +158 -48
  348. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h +6 -6
  349. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/pkcs12.h +17 -1
  350. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/pkcs7.h +12 -9
  351. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ssl.h +382 -48
  352. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509.h +46 -19
  353. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509_acert.h +294 -0
  354. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509_vfy.h +65 -56
  355. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509v3.h +534 -16
  356. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/progs.h +2 -0
  357. package/include/node/openssl/archs/VC-WIN64A/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  358. package/include/node/openssl/archs/VC-WIN64A/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  359. package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
  360. package/include/node/openssl/archs/aix64-gcc-as/asm/include/internal/param_names.h +469 -0
  361. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/asn1.h +22 -16
  362. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/bio.h +157 -22
  363. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/cmp.h +137 -7
  364. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/cms.h +28 -10
  365. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/comp.h +98 -0
  366. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/conf.h +4 -1
  367. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/configuration.h +52 -1
  368. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/core_names.h +575 -0
  369. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crmf.h +59 -8
  370. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crypto.h +33 -8
  371. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ct.h +1 -1
  372. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/err.h +10 -2
  373. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/fipskey.h +6 -1
  374. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/lhash.h +158 -48
  375. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/opensslv.h +6 -6
  376. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/pkcs12.h +17 -1
  377. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/pkcs7.h +12 -9
  378. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ssl.h +382 -48
  379. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509.h +46 -19
  380. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509_acert.h +294 -0
  381. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509_vfy.h +65 -56
  382. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509v3.h +534 -16
  383. package/include/node/openssl/archs/aix64-gcc-as/asm/include/progs.h +2 -0
  384. package/include/node/openssl/archs/aix64-gcc-as/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  385. package/include/node/openssl/archs/aix64-gcc-as/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  386. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
  387. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/internal/param_names.h +469 -0
  388. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/asn1.h +22 -16
  389. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/bio.h +157 -22
  390. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/cmp.h +137 -7
  391. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/cms.h +28 -10
  392. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/comp.h +98 -0
  393. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/conf.h +4 -1
  394. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/configuration.h +52 -1
  395. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/core_names.h +575 -0
  396. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crmf.h +59 -8
  397. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crypto.h +33 -8
  398. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ct.h +1 -1
  399. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/err.h +10 -2
  400. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/fipskey.h +6 -1
  401. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/lhash.h +158 -48
  402. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h +6 -6
  403. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs12.h +17 -1
  404. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs7.h +12 -9
  405. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ssl.h +382 -48
  406. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509.h +46 -19
  407. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509_acert.h +294 -0
  408. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509_vfy.h +65 -56
  409. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509v3.h +534 -16
  410. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/progs.h +2 -0
  411. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  412. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  413. package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
  414. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/internal/param_names.h +469 -0
  415. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/asn1.h +22 -16
  416. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/bio.h +157 -22
  417. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/cmp.h +137 -7
  418. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/cms.h +28 -10
  419. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/comp.h +98 -0
  420. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/conf.h +4 -1
  421. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/configuration.h +52 -1
  422. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/core_names.h +575 -0
  423. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crmf.h +59 -8
  424. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crypto.h +33 -8
  425. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ct.h +1 -1
  426. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/err.h +10 -2
  427. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/fipskey.h +6 -1
  428. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/lhash.h +158 -48
  429. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h +6 -6
  430. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/pkcs12.h +17 -1
  431. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/pkcs7.h +12 -9
  432. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ssl.h +382 -48
  433. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509.h +46 -19
  434. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509_acert.h +294 -0
  435. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509_vfy.h +65 -56
  436. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509v3.h +534 -16
  437. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/progs.h +2 -0
  438. package/include/node/openssl/archs/aix64-gcc-as/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  439. package/include/node/openssl/archs/aix64-gcc-as/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  440. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  441. package/include/node/openssl/archs/darwin-i386-cc/asm/include/internal/param_names.h +469 -0
  442. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/asn1.h +22 -16
  443. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/bio.h +157 -22
  444. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/cmp.h +137 -7
  445. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/cms.h +28 -10
  446. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/comp.h +98 -0
  447. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/conf.h +4 -1
  448. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/configuration.h +52 -1
  449. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/core_names.h +575 -0
  450. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crmf.h +59 -8
  451. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crypto.h +33 -8
  452. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ct.h +1 -1
  453. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/err.h +10 -2
  454. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/fipskey.h +6 -1
  455. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/lhash.h +158 -48
  456. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslv.h +6 -6
  457. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/pkcs12.h +17 -1
  458. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/pkcs7.h +12 -9
  459. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ssl.h +382 -48
  460. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509.h +46 -19
  461. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509_acert.h +294 -0
  462. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509_vfy.h +65 -56
  463. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509v3.h +534 -16
  464. package/include/node/openssl/archs/darwin-i386-cc/asm/include/progs.h +2 -0
  465. package/include/node/openssl/archs/darwin-i386-cc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  466. package/include/node/openssl/archs/darwin-i386-cc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  467. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  468. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/internal/param_names.h +469 -0
  469. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/asn1.h +22 -16
  470. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/bio.h +157 -22
  471. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/cmp.h +137 -7
  472. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/cms.h +28 -10
  473. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/comp.h +98 -0
  474. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/conf.h +4 -1
  475. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/configuration.h +52 -1
  476. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/core_names.h +575 -0
  477. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crmf.h +59 -8
  478. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crypto.h +33 -8
  479. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ct.h +1 -1
  480. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/err.h +10 -2
  481. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/fipskey.h +6 -1
  482. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/lhash.h +158 -48
  483. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h +6 -6
  484. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs12.h +17 -1
  485. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs7.h +12 -9
  486. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ssl.h +382 -48
  487. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509.h +46 -19
  488. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509_acert.h +294 -0
  489. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509_vfy.h +65 -56
  490. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509v3.h +534 -16
  491. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/progs.h +2 -0
  492. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  493. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  494. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  495. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/internal/param_names.h +469 -0
  496. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/asn1.h +22 -16
  497. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/bio.h +157 -22
  498. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/cmp.h +137 -7
  499. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/cms.h +28 -10
  500. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/comp.h +98 -0
  501. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/conf.h +4 -1
  502. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/configuration.h +52 -1
  503. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/core_names.h +575 -0
  504. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crmf.h +59 -8
  505. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crypto.h +33 -8
  506. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ct.h +1 -1
  507. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/err.h +10 -2
  508. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/fipskey.h +6 -1
  509. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/lhash.h +158 -48
  510. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h +6 -6
  511. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/pkcs12.h +17 -1
  512. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/pkcs7.h +12 -9
  513. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ssl.h +382 -48
  514. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509.h +46 -19
  515. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509_acert.h +294 -0
  516. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509_vfy.h +65 -56
  517. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509v3.h +534 -16
  518. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/progs.h +2 -0
  519. package/include/node/openssl/archs/darwin-i386-cc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  520. package/include/node/openssl/archs/darwin-i386-cc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  521. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  522. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/internal/param_names.h +469 -0
  523. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/asn1.h +22 -16
  524. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/bio.h +157 -22
  525. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/cmp.h +137 -7
  526. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/cms.h +28 -10
  527. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/comp.h +98 -0
  528. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/conf.h +4 -1
  529. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/configuration.h +52 -1
  530. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/core_names.h +575 -0
  531. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crmf.h +59 -8
  532. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crypto.h +33 -8
  533. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ct.h +1 -1
  534. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/err.h +10 -2
  535. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/fipskey.h +6 -1
  536. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/lhash.h +158 -48
  537. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h +6 -6
  538. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/pkcs12.h +17 -1
  539. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/pkcs7.h +12 -9
  540. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ssl.h +382 -48
  541. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509.h +46 -19
  542. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509_acert.h +294 -0
  543. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509_vfy.h +65 -56
  544. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509v3.h +534 -16
  545. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/progs.h +2 -0
  546. package/include/node/openssl/archs/darwin64-arm64-cc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  547. package/include/node/openssl/archs/darwin64-arm64-cc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  548. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  549. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/internal/param_names.h +469 -0
  550. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/asn1.h +22 -16
  551. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/bio.h +157 -22
  552. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/cmp.h +137 -7
  553. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/cms.h +28 -10
  554. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/comp.h +98 -0
  555. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/conf.h +4 -1
  556. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/configuration.h +52 -1
  557. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/core_names.h +575 -0
  558. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crmf.h +59 -8
  559. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crypto.h +33 -8
  560. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ct.h +1 -1
  561. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/err.h +10 -2
  562. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/fipskey.h +6 -1
  563. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/lhash.h +158 -48
  564. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h +6 -6
  565. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs12.h +17 -1
  566. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs7.h +12 -9
  567. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ssl.h +382 -48
  568. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509.h +46 -19
  569. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509_acert.h +294 -0
  570. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509_vfy.h +65 -56
  571. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509v3.h +534 -16
  572. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/progs.h +2 -0
  573. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  574. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  575. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  576. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/internal/param_names.h +469 -0
  577. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/asn1.h +22 -16
  578. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/bio.h +157 -22
  579. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/cmp.h +137 -7
  580. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/cms.h +28 -10
  581. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/comp.h +98 -0
  582. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/conf.h +4 -1
  583. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/configuration.h +52 -1
  584. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/core_names.h +575 -0
  585. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crmf.h +59 -8
  586. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crypto.h +33 -8
  587. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ct.h +1 -1
  588. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/err.h +10 -2
  589. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/fipskey.h +6 -1
  590. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/lhash.h +158 -48
  591. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h +6 -6
  592. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs12.h +17 -1
  593. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs7.h +12 -9
  594. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ssl.h +382 -48
  595. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509.h +46 -19
  596. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509_acert.h +294 -0
  597. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509_vfy.h +65 -56
  598. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509v3.h +534 -16
  599. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/progs.h +2 -0
  600. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  601. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  602. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  603. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/internal/param_names.h +469 -0
  604. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/asn1.h +22 -16
  605. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/bio.h +157 -22
  606. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/cmp.h +137 -7
  607. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/cms.h +28 -10
  608. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/comp.h +98 -0
  609. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/conf.h +4 -1
  610. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/configuration.h +52 -1
  611. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/core_names.h +575 -0
  612. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crmf.h +59 -8
  613. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crypto.h +33 -8
  614. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ct.h +1 -1
  615. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/err.h +10 -2
  616. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/fipskey.h +6 -1
  617. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/lhash.h +158 -48
  618. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h +6 -6
  619. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs12.h +17 -1
  620. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs7.h +12 -9
  621. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ssl.h +382 -48
  622. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509.h +46 -19
  623. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509_acert.h +294 -0
  624. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509_vfy.h +65 -56
  625. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509v3.h +534 -16
  626. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/progs.h +2 -0
  627. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  628. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  629. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  630. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/internal/param_names.h +469 -0
  631. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/asn1.h +22 -16
  632. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/bio.h +157 -22
  633. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/cmp.h +137 -7
  634. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/cms.h +28 -10
  635. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/comp.h +98 -0
  636. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/conf.h +4 -1
  637. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/configuration.h +52 -1
  638. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/core_names.h +575 -0
  639. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crmf.h +59 -8
  640. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crypto.h +33 -8
  641. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ct.h +1 -1
  642. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/err.h +10 -2
  643. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/fipskey.h +6 -1
  644. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/lhash.h +158 -48
  645. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h +6 -6
  646. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs12.h +17 -1
  647. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs7.h +12 -9
  648. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ssl.h +382 -48
  649. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509.h +46 -19
  650. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509_acert.h +294 -0
  651. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509_vfy.h +65 -56
  652. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509v3.h +534 -16
  653. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/progs.h +2 -0
  654. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  655. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  656. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  657. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/internal/param_names.h +469 -0
  658. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/asn1.h +22 -16
  659. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/bio.h +157 -22
  660. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/cmp.h +137 -7
  661. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/cms.h +28 -10
  662. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/comp.h +98 -0
  663. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/conf.h +4 -1
  664. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/configuration.h +52 -1
  665. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/core_names.h +575 -0
  666. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crmf.h +59 -8
  667. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crypto.h +33 -8
  668. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ct.h +1 -1
  669. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/err.h +10 -2
  670. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/fipskey.h +6 -1
  671. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/lhash.h +158 -48
  672. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h +6 -6
  673. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs12.h +17 -1
  674. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs7.h +12 -9
  675. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ssl.h +382 -48
  676. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509.h +46 -19
  677. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509_acert.h +294 -0
  678. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509_vfy.h +65 -56
  679. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509v3.h +534 -16
  680. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/progs.h +2 -0
  681. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  682. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  683. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  684. package/include/node/openssl/archs/linux-aarch64/asm/include/internal/param_names.h +469 -0
  685. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/asn1.h +22 -16
  686. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/bio.h +157 -22
  687. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/cmp.h +137 -7
  688. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/cms.h +28 -10
  689. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/comp.h +98 -0
  690. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/conf.h +4 -1
  691. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/configuration.h +52 -1
  692. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/core_names.h +575 -0
  693. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crmf.h +59 -8
  694. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crypto.h +33 -8
  695. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ct.h +1 -1
  696. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/err.h +10 -2
  697. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/fipskey.h +6 -1
  698. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/lhash.h +158 -48
  699. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslv.h +6 -6
  700. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/pkcs12.h +17 -1
  701. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/pkcs7.h +12 -9
  702. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ssl.h +382 -48
  703. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509.h +46 -19
  704. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509_acert.h +294 -0
  705. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509_vfy.h +65 -56
  706. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509v3.h +534 -16
  707. package/include/node/openssl/archs/linux-aarch64/asm/include/progs.h +2 -0
  708. package/include/node/openssl/archs/linux-aarch64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  709. package/include/node/openssl/archs/linux-aarch64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  710. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  711. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/internal/param_names.h +469 -0
  712. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/asn1.h +22 -16
  713. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/bio.h +157 -22
  714. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/cmp.h +137 -7
  715. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/cms.h +28 -10
  716. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/comp.h +98 -0
  717. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/conf.h +4 -1
  718. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/configuration.h +52 -1
  719. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/core_names.h +575 -0
  720. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crmf.h +59 -8
  721. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crypto.h +33 -8
  722. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ct.h +1 -1
  723. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/err.h +10 -2
  724. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/fipskey.h +6 -1
  725. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/lhash.h +158 -48
  726. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h +6 -6
  727. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/pkcs12.h +17 -1
  728. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/pkcs7.h +12 -9
  729. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ssl.h +382 -48
  730. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509.h +46 -19
  731. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509_acert.h +294 -0
  732. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509_vfy.h +65 -56
  733. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509v3.h +534 -16
  734. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/progs.h +2 -0
  735. package/include/node/openssl/archs/linux-aarch64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  736. package/include/node/openssl/archs/linux-aarch64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  737. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  738. package/include/node/openssl/archs/linux-aarch64/no-asm/include/internal/param_names.h +469 -0
  739. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/asn1.h +22 -16
  740. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/bio.h +157 -22
  741. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/cmp.h +137 -7
  742. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/cms.h +28 -10
  743. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/comp.h +98 -0
  744. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/conf.h +4 -1
  745. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/configuration.h +52 -1
  746. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/core_names.h +575 -0
  747. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crmf.h +59 -8
  748. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crypto.h +33 -8
  749. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ct.h +1 -1
  750. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/err.h +10 -2
  751. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/fipskey.h +6 -1
  752. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/lhash.h +158 -48
  753. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslv.h +6 -6
  754. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/pkcs12.h +17 -1
  755. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/pkcs7.h +12 -9
  756. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ssl.h +382 -48
  757. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509.h +46 -19
  758. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509_acert.h +294 -0
  759. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509_vfy.h +65 -56
  760. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509v3.h +534 -16
  761. package/include/node/openssl/archs/linux-aarch64/no-asm/include/progs.h +2 -0
  762. package/include/node/openssl/archs/linux-aarch64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  763. package/include/node/openssl/archs/linux-aarch64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  764. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  765. package/include/node/openssl/archs/linux-armv4/asm/include/internal/param_names.h +469 -0
  766. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/asn1.h +22 -16
  767. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/bio.h +157 -22
  768. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/cmp.h +137 -7
  769. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/cms.h +28 -10
  770. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/comp.h +98 -0
  771. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/conf.h +4 -1
  772. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/configuration.h +52 -1
  773. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/core_names.h +575 -0
  774. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crmf.h +59 -8
  775. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crypto.h +33 -8
  776. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ct.h +1 -1
  777. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/err.h +10 -2
  778. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/fipskey.h +6 -1
  779. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/lhash.h +158 -48
  780. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslv.h +6 -6
  781. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/pkcs12.h +17 -1
  782. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/pkcs7.h +12 -9
  783. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ssl.h +382 -48
  784. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509.h +46 -19
  785. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509_acert.h +294 -0
  786. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509_vfy.h +65 -56
  787. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509v3.h +534 -16
  788. package/include/node/openssl/archs/linux-armv4/asm/include/progs.h +2 -0
  789. package/include/node/openssl/archs/linux-armv4/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  790. package/include/node/openssl/archs/linux-armv4/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  791. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  792. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/internal/param_names.h +469 -0
  793. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/asn1.h +22 -16
  794. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/bio.h +157 -22
  795. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/cmp.h +137 -7
  796. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/cms.h +28 -10
  797. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/comp.h +98 -0
  798. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/conf.h +4 -1
  799. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/configuration.h +52 -1
  800. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/core_names.h +575 -0
  801. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crmf.h +59 -8
  802. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crypto.h +33 -8
  803. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ct.h +1 -1
  804. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/err.h +10 -2
  805. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/fipskey.h +6 -1
  806. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/lhash.h +158 -48
  807. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h +6 -6
  808. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/pkcs12.h +17 -1
  809. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/pkcs7.h +12 -9
  810. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ssl.h +382 -48
  811. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509.h +46 -19
  812. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509_acert.h +294 -0
  813. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509_vfy.h +65 -56
  814. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509v3.h +534 -16
  815. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/progs.h +2 -0
  816. package/include/node/openssl/archs/linux-armv4/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  817. package/include/node/openssl/archs/linux-armv4/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  818. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  819. package/include/node/openssl/archs/linux-armv4/no-asm/include/internal/param_names.h +469 -0
  820. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/asn1.h +22 -16
  821. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/bio.h +157 -22
  822. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/cmp.h +137 -7
  823. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/cms.h +28 -10
  824. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/comp.h +98 -0
  825. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/conf.h +4 -1
  826. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/configuration.h +52 -1
  827. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/core_names.h +575 -0
  828. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crmf.h +59 -8
  829. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crypto.h +33 -8
  830. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ct.h +1 -1
  831. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/err.h +10 -2
  832. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/fipskey.h +6 -1
  833. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/lhash.h +158 -48
  834. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslv.h +6 -6
  835. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/pkcs12.h +17 -1
  836. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/pkcs7.h +12 -9
  837. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ssl.h +382 -48
  838. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509.h +46 -19
  839. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509_acert.h +294 -0
  840. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509_vfy.h +65 -56
  841. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509v3.h +534 -16
  842. package/include/node/openssl/archs/linux-armv4/no-asm/include/progs.h +2 -0
  843. package/include/node/openssl/archs/linux-armv4/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  844. package/include/node/openssl/archs/linux-armv4/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  845. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  846. package/include/node/openssl/archs/linux-elf/asm/include/internal/param_names.h +469 -0
  847. package/include/node/openssl/archs/linux-elf/asm/include/openssl/asn1.h +22 -16
  848. package/include/node/openssl/archs/linux-elf/asm/include/openssl/bio.h +157 -22
  849. package/include/node/openssl/archs/linux-elf/asm/include/openssl/cmp.h +137 -7
  850. package/include/node/openssl/archs/linux-elf/asm/include/openssl/cms.h +28 -10
  851. package/include/node/openssl/archs/linux-elf/asm/include/openssl/comp.h +98 -0
  852. package/include/node/openssl/archs/linux-elf/asm/include/openssl/conf.h +4 -1
  853. package/include/node/openssl/archs/linux-elf/asm/include/openssl/configuration.h +52 -1
  854. package/include/node/openssl/archs/linux-elf/asm/include/openssl/core_names.h +575 -0
  855. package/include/node/openssl/archs/linux-elf/asm/include/openssl/crmf.h +59 -8
  856. package/include/node/openssl/archs/linux-elf/asm/include/openssl/crypto.h +33 -8
  857. package/include/node/openssl/archs/linux-elf/asm/include/openssl/ct.h +1 -1
  858. package/include/node/openssl/archs/linux-elf/asm/include/openssl/err.h +10 -2
  859. package/include/node/openssl/archs/linux-elf/asm/include/openssl/fipskey.h +6 -1
  860. package/include/node/openssl/archs/linux-elf/asm/include/openssl/lhash.h +158 -48
  861. package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslv.h +6 -6
  862. package/include/node/openssl/archs/linux-elf/asm/include/openssl/pkcs12.h +17 -1
  863. package/include/node/openssl/archs/linux-elf/asm/include/openssl/pkcs7.h +12 -9
  864. package/include/node/openssl/archs/linux-elf/asm/include/openssl/ssl.h +382 -48
  865. package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509.h +46 -19
  866. package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509_acert.h +294 -0
  867. package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509_vfy.h +65 -56
  868. package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509v3.h +534 -16
  869. package/include/node/openssl/archs/linux-elf/asm/include/progs.h +2 -0
  870. package/include/node/openssl/archs/linux-elf/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  871. package/include/node/openssl/archs/linux-elf/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  872. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  873. package/include/node/openssl/archs/linux-elf/asm_avx2/include/internal/param_names.h +469 -0
  874. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/asn1.h +22 -16
  875. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/bio.h +157 -22
  876. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/cmp.h +137 -7
  877. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/cms.h +28 -10
  878. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/comp.h +98 -0
  879. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/conf.h +4 -1
  880. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/configuration.h +52 -1
  881. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/core_names.h +575 -0
  882. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crmf.h +59 -8
  883. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crypto.h +33 -8
  884. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ct.h +1 -1
  885. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/err.h +10 -2
  886. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/fipskey.h +6 -1
  887. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/lhash.h +158 -48
  888. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslv.h +6 -6
  889. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/pkcs12.h +17 -1
  890. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/pkcs7.h +12 -9
  891. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ssl.h +382 -48
  892. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509.h +46 -19
  893. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509_acert.h +294 -0
  894. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509_vfy.h +65 -56
  895. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509v3.h +534 -16
  896. package/include/node/openssl/archs/linux-elf/asm_avx2/include/progs.h +2 -0
  897. package/include/node/openssl/archs/linux-elf/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  898. package/include/node/openssl/archs/linux-elf/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  899. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  900. package/include/node/openssl/archs/linux-elf/no-asm/include/internal/param_names.h +469 -0
  901. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/asn1.h +22 -16
  902. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/bio.h +157 -22
  903. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/cmp.h +137 -7
  904. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/cms.h +28 -10
  905. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/comp.h +98 -0
  906. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/conf.h +4 -1
  907. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/configuration.h +52 -1
  908. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/core_names.h +575 -0
  909. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crmf.h +59 -8
  910. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crypto.h +33 -8
  911. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ct.h +1 -1
  912. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/err.h +10 -2
  913. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/fipskey.h +6 -1
  914. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/lhash.h +158 -48
  915. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslv.h +6 -6
  916. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/pkcs12.h +17 -1
  917. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/pkcs7.h +12 -9
  918. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ssl.h +382 -48
  919. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509.h +46 -19
  920. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509_acert.h +294 -0
  921. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509_vfy.h +65 -56
  922. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509v3.h +534 -16
  923. package/include/node/openssl/archs/linux-elf/no-asm/include/progs.h +2 -0
  924. package/include/node/openssl/archs/linux-elf/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  925. package/include/node/openssl/archs/linux-elf/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  926. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  927. package/include/node/openssl/archs/linux-ppc64le/asm/include/internal/param_names.h +469 -0
  928. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/asn1.h +22 -16
  929. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/bio.h +157 -22
  930. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/cmp.h +137 -7
  931. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/cms.h +28 -10
  932. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/comp.h +98 -0
  933. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/conf.h +4 -1
  934. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/configuration.h +52 -1
  935. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/core_names.h +575 -0
  936. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crmf.h +59 -8
  937. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crypto.h +33 -8
  938. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ct.h +1 -1
  939. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/err.h +10 -2
  940. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/fipskey.h +6 -1
  941. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/lhash.h +158 -48
  942. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslv.h +6 -6
  943. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/pkcs12.h +17 -1
  944. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/pkcs7.h +12 -9
  945. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ssl.h +382 -48
  946. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509.h +46 -19
  947. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509_acert.h +294 -0
  948. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509_vfy.h +65 -56
  949. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509v3.h +534 -16
  950. package/include/node/openssl/archs/linux-ppc64le/asm/include/progs.h +2 -0
  951. package/include/node/openssl/archs/linux-ppc64le/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  952. package/include/node/openssl/archs/linux-ppc64le/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  953. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  954. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/internal/param_names.h +469 -0
  955. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/asn1.h +22 -16
  956. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/bio.h +157 -22
  957. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/cmp.h +137 -7
  958. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/cms.h +28 -10
  959. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/comp.h +98 -0
  960. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/conf.h +4 -1
  961. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/configuration.h +52 -1
  962. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/core_names.h +575 -0
  963. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crmf.h +59 -8
  964. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crypto.h +33 -8
  965. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ct.h +1 -1
  966. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/err.h +10 -2
  967. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/fipskey.h +6 -1
  968. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/lhash.h +158 -48
  969. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h +6 -6
  970. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs12.h +17 -1
  971. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs7.h +12 -9
  972. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ssl.h +382 -48
  973. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509.h +46 -19
  974. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509_acert.h +294 -0
  975. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509_vfy.h +65 -56
  976. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509v3.h +534 -16
  977. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/progs.h +2 -0
  978. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  979. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  980. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  981. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/internal/param_names.h +469 -0
  982. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/asn1.h +22 -16
  983. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/bio.h +157 -22
  984. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/cmp.h +137 -7
  985. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/cms.h +28 -10
  986. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/comp.h +98 -0
  987. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/conf.h +4 -1
  988. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/configuration.h +52 -1
  989. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/core_names.h +575 -0
  990. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crmf.h +59 -8
  991. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crypto.h +33 -8
  992. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ct.h +1 -1
  993. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/err.h +10 -2
  994. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/fipskey.h +6 -1
  995. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/lhash.h +158 -48
  996. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h +6 -6
  997. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/pkcs12.h +17 -1
  998. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/pkcs7.h +12 -9
  999. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ssl.h +382 -48
  1000. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509.h +46 -19
  1001. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509_acert.h +294 -0
  1002. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509_vfy.h +65 -56
  1003. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509v3.h +534 -16
  1004. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/progs.h +2 -0
  1005. package/include/node/openssl/archs/linux-ppc64le/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1006. package/include/node/openssl/archs/linux-ppc64le/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1007. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  1008. package/include/node/openssl/archs/linux-x86_64/asm/include/internal/param_names.h +469 -0
  1009. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/asn1.h +22 -16
  1010. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/bio.h +157 -22
  1011. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/cmp.h +137 -7
  1012. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/cms.h +28 -10
  1013. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/comp.h +98 -0
  1014. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/conf.h +4 -1
  1015. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/configuration.h +52 -1
  1016. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/core_names.h +575 -0
  1017. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crmf.h +59 -8
  1018. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crypto.h +33 -8
  1019. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ct.h +1 -1
  1020. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/err.h +10 -2
  1021. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/fipskey.h +6 -1
  1022. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/lhash.h +158 -48
  1023. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslv.h +6 -6
  1024. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/pkcs12.h +17 -1
  1025. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/pkcs7.h +12 -9
  1026. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ssl.h +382 -48
  1027. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509.h +46 -19
  1028. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509_acert.h +294 -0
  1029. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509_vfy.h +65 -56
  1030. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509v3.h +534 -16
  1031. package/include/node/openssl/archs/linux-x86_64/asm/include/progs.h +2 -0
  1032. package/include/node/openssl/archs/linux-x86_64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1033. package/include/node/openssl/archs/linux-x86_64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1034. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  1035. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/internal/param_names.h +469 -0
  1036. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/asn1.h +22 -16
  1037. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/bio.h +157 -22
  1038. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/cmp.h +137 -7
  1039. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/cms.h +28 -10
  1040. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/comp.h +98 -0
  1041. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/conf.h +4 -1
  1042. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/configuration.h +52 -1
  1043. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/core_names.h +575 -0
  1044. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crmf.h +59 -8
  1045. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crypto.h +33 -8
  1046. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ct.h +1 -1
  1047. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/err.h +10 -2
  1048. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/fipskey.h +6 -1
  1049. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/lhash.h +158 -48
  1050. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h +6 -6
  1051. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/pkcs12.h +17 -1
  1052. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/pkcs7.h +12 -9
  1053. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ssl.h +382 -48
  1054. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509.h +46 -19
  1055. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509_acert.h +294 -0
  1056. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509_vfy.h +65 -56
  1057. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509v3.h +534 -16
  1058. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/progs.h +2 -0
  1059. package/include/node/openssl/archs/linux-x86_64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  1060. package/include/node/openssl/archs/linux-x86_64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  1061. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  1062. package/include/node/openssl/archs/linux-x86_64/no-asm/include/internal/param_names.h +469 -0
  1063. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/asn1.h +22 -16
  1064. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/bio.h +157 -22
  1065. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/cmp.h +137 -7
  1066. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/cms.h +28 -10
  1067. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/comp.h +98 -0
  1068. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/conf.h +4 -1
  1069. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/configuration.h +52 -1
  1070. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/core_names.h +575 -0
  1071. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crmf.h +59 -8
  1072. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crypto.h +33 -8
  1073. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ct.h +1 -1
  1074. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/err.h +10 -2
  1075. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/fipskey.h +6 -1
  1076. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/lhash.h +158 -48
  1077. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslv.h +6 -6
  1078. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/pkcs12.h +17 -1
  1079. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/pkcs7.h +12 -9
  1080. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ssl.h +382 -48
  1081. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509.h +46 -19
  1082. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509_acert.h +294 -0
  1083. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509_vfy.h +65 -56
  1084. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509v3.h +534 -16
  1085. package/include/node/openssl/archs/linux-x86_64/no-asm/include/progs.h +2 -0
  1086. package/include/node/openssl/archs/linux-x86_64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1087. package/include/node/openssl/archs/linux-x86_64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1088. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  1089. package/include/node/openssl/archs/linux32-s390x/asm/include/internal/param_names.h +469 -0
  1090. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/asn1.h +22 -16
  1091. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/bio.h +157 -22
  1092. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/cmp.h +137 -7
  1093. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/cms.h +28 -10
  1094. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/comp.h +98 -0
  1095. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/conf.h +4 -1
  1096. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/configuration.h +52 -1
  1097. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/core_names.h +575 -0
  1098. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crmf.h +59 -8
  1099. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crypto.h +33 -8
  1100. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ct.h +1 -1
  1101. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/err.h +10 -2
  1102. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/fipskey.h +6 -1
  1103. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/lhash.h +158 -48
  1104. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslv.h +6 -6
  1105. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/pkcs12.h +17 -1
  1106. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/pkcs7.h +12 -9
  1107. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ssl.h +382 -48
  1108. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509.h +46 -19
  1109. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509_acert.h +294 -0
  1110. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509_vfy.h +65 -56
  1111. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509v3.h +534 -16
  1112. package/include/node/openssl/archs/linux32-s390x/asm/include/progs.h +2 -0
  1113. package/include/node/openssl/archs/linux32-s390x/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1114. package/include/node/openssl/archs/linux32-s390x/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1115. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  1116. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/internal/param_names.h +469 -0
  1117. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/asn1.h +22 -16
  1118. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/bio.h +157 -22
  1119. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/cmp.h +137 -7
  1120. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/cms.h +28 -10
  1121. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/comp.h +98 -0
  1122. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/conf.h +4 -1
  1123. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/configuration.h +52 -1
  1124. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/core_names.h +575 -0
  1125. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crmf.h +59 -8
  1126. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crypto.h +33 -8
  1127. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ct.h +1 -1
  1128. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/err.h +10 -2
  1129. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/fipskey.h +6 -1
  1130. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/lhash.h +158 -48
  1131. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h +6 -6
  1132. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/pkcs12.h +17 -1
  1133. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/pkcs7.h +12 -9
  1134. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ssl.h +382 -48
  1135. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509.h +46 -19
  1136. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509_acert.h +294 -0
  1137. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509_vfy.h +65 -56
  1138. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509v3.h +534 -16
  1139. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/progs.h +2 -0
  1140. package/include/node/openssl/archs/linux32-s390x/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  1141. package/include/node/openssl/archs/linux32-s390x/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  1142. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  1143. package/include/node/openssl/archs/linux32-s390x/no-asm/include/internal/param_names.h +469 -0
  1144. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/asn1.h +22 -16
  1145. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/bio.h +157 -22
  1146. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/cmp.h +137 -7
  1147. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/cms.h +28 -10
  1148. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/comp.h +98 -0
  1149. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/conf.h +4 -1
  1150. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/configuration.h +52 -1
  1151. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/core_names.h +575 -0
  1152. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crmf.h +59 -8
  1153. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crypto.h +33 -8
  1154. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ct.h +1 -1
  1155. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/err.h +10 -2
  1156. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/fipskey.h +6 -1
  1157. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/lhash.h +158 -48
  1158. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslv.h +6 -6
  1159. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/pkcs12.h +17 -1
  1160. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/pkcs7.h +12 -9
  1161. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ssl.h +382 -48
  1162. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509.h +46 -19
  1163. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509_acert.h +294 -0
  1164. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509_vfy.h +65 -56
  1165. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509v3.h +534 -16
  1166. package/include/node/openssl/archs/linux32-s390x/no-asm/include/progs.h +2 -0
  1167. package/include/node/openssl/archs/linux32-s390x/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1168. package/include/node/openssl/archs/linux32-s390x/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1169. package/include/node/openssl/archs/linux64-loongarch64/no-asm/crypto/buildinf.h +5 -4
  1170. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/internal/param_names.h +469 -0
  1171. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/asn1.h +22 -16
  1172. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/bio.h +157 -22
  1173. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/cmp.h +137 -7
  1174. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/cms.h +28 -10
  1175. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/comp.h +98 -0
  1176. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/conf.h +4 -1
  1177. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/configuration.h +52 -1
  1178. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/core_names.h +575 -0
  1179. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/crmf.h +59 -8
  1180. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/crypto.h +33 -8
  1181. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ct.h +1 -1
  1182. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/err.h +10 -2
  1183. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/fipskey.h +6 -1
  1184. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/lhash.h +158 -48
  1185. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/opensslv.h +6 -6
  1186. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/pkcs12.h +17 -1
  1187. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/pkcs7.h +12 -9
  1188. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ssl.h +382 -48
  1189. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509.h +46 -19
  1190. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509_acert.h +294 -0
  1191. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509_vfy.h +65 -56
  1192. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509v3.h +534 -16
  1193. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/progs.h +2 -0
  1194. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1195. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1196. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  1197. package/include/node/openssl/archs/linux64-mips64/asm/include/internal/param_names.h +469 -0
  1198. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/asn1.h +22 -16
  1199. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/bio.h +157 -22
  1200. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/cmp.h +137 -7
  1201. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/cms.h +28 -10
  1202. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/comp.h +98 -0
  1203. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/conf.h +4 -1
  1204. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/configuration.h +52 -1
  1205. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/core_names.h +575 -0
  1206. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crmf.h +59 -8
  1207. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crypto.h +33 -8
  1208. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ct.h +1 -1
  1209. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/err.h +10 -2
  1210. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/fipskey.h +6 -1
  1211. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/lhash.h +158 -48
  1212. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslv.h +6 -6
  1213. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/pkcs12.h +17 -1
  1214. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/pkcs7.h +12 -9
  1215. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ssl.h +382 -48
  1216. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509.h +46 -19
  1217. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509_acert.h +294 -0
  1218. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509_vfy.h +65 -56
  1219. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509v3.h +534 -16
  1220. package/include/node/openssl/archs/linux64-mips64/asm/include/progs.h +2 -0
  1221. package/include/node/openssl/archs/linux64-mips64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1222. package/include/node/openssl/archs/linux64-mips64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1223. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  1224. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/internal/param_names.h +469 -0
  1225. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/asn1.h +22 -16
  1226. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/bio.h +157 -22
  1227. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/cmp.h +137 -7
  1228. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/cms.h +28 -10
  1229. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/comp.h +98 -0
  1230. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/conf.h +4 -1
  1231. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/configuration.h +52 -1
  1232. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/core_names.h +575 -0
  1233. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crmf.h +59 -8
  1234. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crypto.h +33 -8
  1235. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ct.h +1 -1
  1236. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/err.h +10 -2
  1237. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/fipskey.h +6 -1
  1238. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/lhash.h +158 -48
  1239. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h +6 -6
  1240. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/pkcs12.h +17 -1
  1241. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/pkcs7.h +12 -9
  1242. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ssl.h +382 -48
  1243. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509.h +46 -19
  1244. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509_acert.h +294 -0
  1245. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509_vfy.h +65 -56
  1246. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509v3.h +534 -16
  1247. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/progs.h +2 -0
  1248. package/include/node/openssl/archs/linux64-mips64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  1249. package/include/node/openssl/archs/linux64-mips64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  1250. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  1251. package/include/node/openssl/archs/linux64-mips64/no-asm/include/internal/param_names.h +469 -0
  1252. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/asn1.h +22 -16
  1253. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/bio.h +157 -22
  1254. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/cmp.h +137 -7
  1255. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/cms.h +28 -10
  1256. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/comp.h +98 -0
  1257. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/conf.h +4 -1
  1258. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/configuration.h +52 -1
  1259. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/core_names.h +575 -0
  1260. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crmf.h +59 -8
  1261. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crypto.h +33 -8
  1262. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ct.h +1 -1
  1263. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/err.h +10 -2
  1264. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/fipskey.h +6 -1
  1265. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/lhash.h +158 -48
  1266. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslv.h +6 -6
  1267. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/pkcs12.h +17 -1
  1268. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/pkcs7.h +12 -9
  1269. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ssl.h +382 -48
  1270. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509.h +46 -19
  1271. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509_acert.h +294 -0
  1272. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509_vfy.h +65 -56
  1273. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509v3.h +534 -16
  1274. package/include/node/openssl/archs/linux64-mips64/no-asm/include/progs.h +2 -0
  1275. package/include/node/openssl/archs/linux64-mips64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1276. package/include/node/openssl/archs/linux64-mips64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1277. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  1278. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/internal/param_names.h +469 -0
  1279. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/asn1.h +22 -16
  1280. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/bio.h +157 -22
  1281. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/cmp.h +137 -7
  1282. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/cms.h +28 -10
  1283. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/comp.h +98 -0
  1284. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/conf.h +4 -1
  1285. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/configuration.h +52 -1
  1286. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/core_names.h +575 -0
  1287. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crmf.h +59 -8
  1288. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crypto.h +33 -8
  1289. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ct.h +1 -1
  1290. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/err.h +10 -2
  1291. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/fipskey.h +6 -1
  1292. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/lhash.h +158 -48
  1293. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h +6 -6
  1294. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/pkcs12.h +17 -1
  1295. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/pkcs7.h +12 -9
  1296. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ssl.h +382 -48
  1297. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509.h +46 -19
  1298. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509_acert.h +294 -0
  1299. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509_vfy.h +65 -56
  1300. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509v3.h +534 -16
  1301. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/progs.h +2 -0
  1302. package/include/node/openssl/archs/linux64-riscv64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1303. package/include/node/openssl/archs/linux64-riscv64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1304. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  1305. package/include/node/openssl/archs/linux64-s390x/asm/include/internal/param_names.h +469 -0
  1306. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/asn1.h +22 -16
  1307. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/bio.h +157 -22
  1308. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/cmp.h +137 -7
  1309. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/cms.h +28 -10
  1310. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/comp.h +98 -0
  1311. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/conf.h +4 -1
  1312. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/configuration.h +52 -1
  1313. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/core_names.h +575 -0
  1314. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crmf.h +59 -8
  1315. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crypto.h +33 -8
  1316. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ct.h +1 -1
  1317. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/err.h +10 -2
  1318. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/fipskey.h +6 -1
  1319. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/lhash.h +158 -48
  1320. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslv.h +6 -6
  1321. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/pkcs12.h +17 -1
  1322. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/pkcs7.h +12 -9
  1323. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ssl.h +382 -48
  1324. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509.h +46 -19
  1325. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509_acert.h +294 -0
  1326. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509_vfy.h +65 -56
  1327. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509v3.h +534 -16
  1328. package/include/node/openssl/archs/linux64-s390x/asm/include/progs.h +2 -0
  1329. package/include/node/openssl/archs/linux64-s390x/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1330. package/include/node/openssl/archs/linux64-s390x/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1331. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  1332. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/internal/param_names.h +469 -0
  1333. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/asn1.h +22 -16
  1334. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/bio.h +157 -22
  1335. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/cmp.h +137 -7
  1336. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/cms.h +28 -10
  1337. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/comp.h +98 -0
  1338. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/conf.h +4 -1
  1339. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/configuration.h +52 -1
  1340. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/core_names.h +575 -0
  1341. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crmf.h +59 -8
  1342. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crypto.h +33 -8
  1343. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ct.h +1 -1
  1344. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/err.h +10 -2
  1345. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/fipskey.h +6 -1
  1346. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/lhash.h +158 -48
  1347. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h +6 -6
  1348. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/pkcs12.h +17 -1
  1349. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/pkcs7.h +12 -9
  1350. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ssl.h +382 -48
  1351. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509.h +46 -19
  1352. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509_acert.h +294 -0
  1353. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509_vfy.h +65 -56
  1354. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509v3.h +534 -16
  1355. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/progs.h +2 -0
  1356. package/include/node/openssl/archs/linux64-s390x/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  1357. package/include/node/openssl/archs/linux64-s390x/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  1358. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  1359. package/include/node/openssl/archs/linux64-s390x/no-asm/include/internal/param_names.h +469 -0
  1360. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/asn1.h +22 -16
  1361. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/bio.h +157 -22
  1362. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/cmp.h +137 -7
  1363. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/cms.h +28 -10
  1364. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/comp.h +98 -0
  1365. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/conf.h +4 -1
  1366. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/configuration.h +52 -1
  1367. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/core_names.h +575 -0
  1368. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crmf.h +59 -8
  1369. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crypto.h +33 -8
  1370. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ct.h +1 -1
  1371. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/err.h +10 -2
  1372. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/fipskey.h +6 -1
  1373. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/lhash.h +158 -48
  1374. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslv.h +6 -6
  1375. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/pkcs12.h +17 -1
  1376. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/pkcs7.h +12 -9
  1377. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ssl.h +382 -48
  1378. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509.h +46 -19
  1379. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509_acert.h +294 -0
  1380. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509_vfy.h +65 -56
  1381. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509v3.h +534 -16
  1382. package/include/node/openssl/archs/linux64-s390x/no-asm/include/progs.h +2 -0
  1383. package/include/node/openssl/archs/linux64-s390x/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1384. package/include/node/openssl/archs/linux64-s390x/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1385. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +9 -10
  1386. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/internal/param_names.h +469 -0
  1387. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/asn1.h +22 -16
  1388. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/bio.h +157 -22
  1389. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/cmp.h +137 -7
  1390. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/cms.h +28 -10
  1391. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/comp.h +98 -0
  1392. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/conf.h +4 -1
  1393. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/configuration.h +52 -1
  1394. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/core_names.h +575 -0
  1395. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crmf.h +59 -8
  1396. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crypto.h +33 -8
  1397. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ct.h +1 -1
  1398. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/err.h +10 -2
  1399. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/fipskey.h +6 -1
  1400. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/lhash.h +158 -48
  1401. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h +6 -6
  1402. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/pkcs12.h +17 -1
  1403. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/pkcs7.h +12 -9
  1404. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ssl.h +382 -48
  1405. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509.h +46 -19
  1406. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509_acert.h +294 -0
  1407. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509_vfy.h +65 -56
  1408. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509v3.h +534 -16
  1409. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/progs.h +2 -0
  1410. package/include/node/openssl/archs/solaris-x86-gcc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1411. package/include/node/openssl/archs/solaris-x86-gcc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1412. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +9 -10
  1413. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/internal/param_names.h +469 -0
  1414. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/asn1.h +22 -16
  1415. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/bio.h +157 -22
  1416. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/cmp.h +137 -7
  1417. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/cms.h +28 -10
  1418. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/comp.h +98 -0
  1419. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/conf.h +4 -1
  1420. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/configuration.h +52 -1
  1421. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/core_names.h +575 -0
  1422. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crmf.h +59 -8
  1423. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crypto.h +33 -8
  1424. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ct.h +1 -1
  1425. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/err.h +10 -2
  1426. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/fipskey.h +6 -1
  1427. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/lhash.h +158 -48
  1428. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h +6 -6
  1429. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs12.h +17 -1
  1430. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs7.h +12 -9
  1431. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ssl.h +382 -48
  1432. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509.h +46 -19
  1433. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509_acert.h +294 -0
  1434. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509_vfy.h +65 -56
  1435. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509v3.h +534 -16
  1436. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/progs.h +2 -0
  1437. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  1438. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  1439. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +8 -9
  1440. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/internal/param_names.h +469 -0
  1441. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/asn1.h +22 -16
  1442. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/bio.h +157 -22
  1443. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/cmp.h +137 -7
  1444. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/cms.h +28 -10
  1445. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/comp.h +98 -0
  1446. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/conf.h +4 -1
  1447. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/configuration.h +52 -1
  1448. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/core_names.h +575 -0
  1449. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crmf.h +59 -8
  1450. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crypto.h +33 -8
  1451. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ct.h +1 -1
  1452. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/err.h +10 -2
  1453. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/fipskey.h +6 -1
  1454. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/lhash.h +158 -48
  1455. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h +6 -6
  1456. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs12.h +17 -1
  1457. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs7.h +12 -9
  1458. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ssl.h +382 -48
  1459. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509.h +46 -19
  1460. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509_acert.h +294 -0
  1461. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509_vfy.h +65 -56
  1462. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509v3.h +534 -16
  1463. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/progs.h +2 -0
  1464. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1465. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1466. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +8 -9
  1467. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/internal/param_names.h +469 -0
  1468. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/asn1.h +22 -16
  1469. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/bio.h +157 -22
  1470. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/cmp.h +137 -7
  1471. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/cms.h +28 -10
  1472. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/comp.h +98 -0
  1473. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/conf.h +4 -1
  1474. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/configuration.h +52 -1
  1475. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/core_names.h +575 -0
  1476. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crmf.h +59 -8
  1477. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crypto.h +33 -8
  1478. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ct.h +1 -1
  1479. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/err.h +10 -2
  1480. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/fipskey.h +6 -1
  1481. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/lhash.h +158 -48
  1482. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h +6 -6
  1483. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs12.h +17 -1
  1484. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs7.h +12 -9
  1485. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ssl.h +382 -48
  1486. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509.h +46 -19
  1487. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509_acert.h +294 -0
  1488. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509_vfy.h +65 -56
  1489. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509v3.h +534 -16
  1490. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/progs.h +2 -0
  1491. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1492. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1493. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +8 -9
  1494. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/internal/param_names.h +469 -0
  1495. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/asn1.h +22 -16
  1496. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/bio.h +157 -22
  1497. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/cmp.h +137 -7
  1498. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/cms.h +28 -10
  1499. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/comp.h +98 -0
  1500. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/conf.h +4 -1
  1501. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/configuration.h +52 -1
  1502. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/core_names.h +575 -0
  1503. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crmf.h +59 -8
  1504. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crypto.h +33 -8
  1505. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ct.h +1 -1
  1506. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/err.h +10 -2
  1507. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/fipskey.h +6 -1
  1508. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/lhash.h +158 -48
  1509. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h +6 -6
  1510. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs12.h +17 -1
  1511. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs7.h +12 -9
  1512. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ssl.h +382 -48
  1513. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509.h +46 -19
  1514. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509_acert.h +294 -0
  1515. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509_vfy.h +65 -56
  1516. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509v3.h +534 -16
  1517. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/progs.h +2 -0
  1518. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
  1519. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
  1520. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +7 -8
  1521. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/internal/param_names.h +469 -0
  1522. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/asn1.h +22 -16
  1523. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/bio.h +157 -22
  1524. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/cmp.h +137 -7
  1525. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/cms.h +28 -10
  1526. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/comp.h +98 -0
  1527. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/conf.h +4 -1
  1528. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/configuration.h +52 -1
  1529. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/core_names.h +575 -0
  1530. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crmf.h +59 -8
  1531. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crypto.h +33 -8
  1532. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ct.h +1 -1
  1533. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/err.h +10 -2
  1534. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/fipskey.h +6 -1
  1535. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/lhash.h +158 -48
  1536. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h +6 -6
  1537. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs12.h +17 -1
  1538. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs7.h +12 -9
  1539. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ssl.h +382 -48
  1540. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509.h +46 -19
  1541. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509_acert.h +294 -0
  1542. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509_vfy.h +65 -56
  1543. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509v3.h +534 -16
  1544. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/progs.h +2 -0
  1545. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
  1546. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
  1547. package/include/node/openssl/asn1err.h +3 -1
  1548. package/include/node/openssl/async.h +9 -1
  1549. package/include/node/openssl/bioerr.h +8 -1
  1550. package/include/node/openssl/bn.h +8 -1
  1551. package/include/node/openssl/byteorder.h +339 -0
  1552. package/include/node/openssl/cmperr.h +19 -1
  1553. package/include/node/openssl/cmserr.h +1 -0
  1554. package/include/node/openssl/comp.h +4 -58
  1555. package/include/node/openssl/comp_asm.h +53 -0
  1556. package/include/node/openssl/comp_no-asm.h +57 -0
  1557. package/include/node/openssl/comperr.h +7 -0
  1558. package/include/node/openssl/conferr.h +1 -1
  1559. package/include/node/openssl/core.h +4 -1
  1560. package/include/node/openssl/core_dispatch.h +211 -13
  1561. package/include/node/openssl/core_names.h +4 -555
  1562. package/include/node/openssl/core_names_asm.h +53 -0
  1563. package/include/node/openssl/core_names_no-asm.h +57 -0
  1564. package/include/node/openssl/crmferr.h +8 -1
  1565. package/include/node/openssl/cryptoerr.h +11 -1
  1566. package/include/node/openssl/dh.h +8 -1
  1567. package/include/node/openssl/dherr.h +1 -0
  1568. package/include/node/openssl/dsa.h +17 -12
  1569. package/include/node/openssl/e_os2.h +8 -3
  1570. package/include/node/openssl/e_ostime.h +38 -0
  1571. package/include/node/openssl/ec.h +22 -3
  1572. package/include/node/openssl/engine.h +3 -3
  1573. package/include/node/openssl/evp.h +185 -47
  1574. package/include/node/openssl/evperr.h +15 -1
  1575. package/include/node/openssl/fips_names.h +12 -22
  1576. package/include/node/openssl/hpke.h +169 -0
  1577. package/include/node/openssl/http.h +16 -7
  1578. package/include/node/openssl/httperr.h +2 -1
  1579. package/include/node/openssl/indicator.h +31 -0
  1580. package/include/node/openssl/macros.h +47 -2
  1581. package/include/node/openssl/ml_kem.h +31 -0
  1582. package/include/node/openssl/obj_mac.h +1172 -17
  1583. package/include/node/openssl/objects.h +2 -1
  1584. package/include/node/openssl/param_names.h +5 -0
  1585. package/include/node/openssl/param_names_asm.h +53 -0
  1586. package/include/node/openssl/param_names_no-asm.h +57 -0
  1587. package/include/node/openssl/params.h +3 -0
  1588. package/include/node/openssl/pem.h +10 -1
  1589. package/include/node/openssl/pemerr.h +2 -1
  1590. package/include/node/openssl/pkcs12err.h +2 -1
  1591. package/include/node/openssl/prov_ssl.h +5 -1
  1592. package/include/node/openssl/proverr.h +22 -1
  1593. package/include/node/openssl/provider.h +36 -2
  1594. package/include/node/openssl/quic.h +75 -0
  1595. package/include/node/openssl/rand.h +13 -5
  1596. package/include/node/openssl/randerr.h +3 -1
  1597. package/include/node/openssl/rsa.h +11 -0
  1598. package/include/node/openssl/self_test.h +21 -1
  1599. package/include/node/openssl/sha.h +2 -1
  1600. package/include/node/openssl/srtp.h +20 -8
  1601. package/include/node/openssl/ssl3.h +12 -1
  1602. package/include/node/openssl/sslerr.h +37 -1
  1603. package/include/node/openssl/sslerr_legacy.h +1 -2
  1604. package/include/node/openssl/store.h +10 -2
  1605. package/include/node/openssl/thread.h +31 -0
  1606. package/include/node/openssl/tls1.h +68 -73
  1607. package/include/node/openssl/trace.h +13 -2
  1608. package/include/node/openssl/ts.h +23 -4
  1609. package/include/node/openssl/types.h +23 -11
  1610. package/include/node/openssl/x509_acert.h +5 -0
  1611. package/include/node/openssl/x509_acert_asm.h +53 -0
  1612. package/include/node/openssl/x509_acert_no-asm.h +57 -0
  1613. package/include/node/openssl/x509err.h +2 -1
  1614. package/include/node/openssl/x509v3err.h +5 -1
  1615. package/package.json +1 -1
  1616. package/share/man/man1/node.1 +38 -3
  1617. package/include/node/openssl/asn1_mac.h +0 -10
@@ -2,7 +2,7 @@
2
2
  * WARNING: do not edit!
3
3
  * Generated by crypto/objects/objects.pl
4
4
  *
5
- * Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
5
+ * Copyright 2000-2025 The OpenSSL Project Authors. All Rights Reserved.
6
6
  * Licensed under the Apache License 2.0 (the "License"). You may not use
7
7
  * this file except in compliance with the License. You can obtain a copy
8
8
  * in the file LICENSE in the source distribution or at
@@ -886,6 +886,18 @@
886
886
  #define NID_id_ct_signedChecklist 1247
887
887
  #define OBJ_id_ct_signedChecklist OBJ_id_smime_ct,48L
888
888
 
889
+ #define SN_id_ct_ASPA "id-ct-ASPA"
890
+ #define NID_id_ct_ASPA 1250
891
+ #define OBJ_id_ct_ASPA OBJ_id_smime_ct,49L
892
+
893
+ #define SN_id_ct_signedTAL "id-ct-signedTAL"
894
+ #define NID_id_ct_signedTAL 1284
895
+ #define OBJ_id_ct_signedTAL OBJ_id_smime_ct,50L
896
+
897
+ #define SN_id_ct_rpkiSignedPrefixList "id-ct-rpkiSignedPrefixList"
898
+ #define NID_id_ct_rpkiSignedPrefixList 1320
899
+ #define OBJ_id_ct_rpkiSignedPrefixList OBJ_id_smime_ct,51L
900
+
889
901
  #define SN_id_smime_aa_receiptRequest "id-smime-aa-receiptRequest"
890
902
  #define NID_id_smime_aa_receiptRequest 212
891
903
  #define OBJ_id_smime_aa_receiptRequest OBJ_id_smime_aa,1L
@@ -1002,10 +1014,22 @@
1002
1014
  #define NID_id_smime_aa_dvcs_dvc 240
1003
1015
  #define OBJ_id_smime_aa_dvcs_dvc OBJ_id_smime_aa,29L
1004
1016
 
1017
+ #define SN_id_aa_ets_attrCertificateRefs "id-aa-ets-attrCertificateRefs"
1018
+ #define NID_id_aa_ets_attrCertificateRefs 1261
1019
+ #define OBJ_id_aa_ets_attrCertificateRefs OBJ_id_smime_aa,44L
1020
+
1021
+ #define SN_id_aa_ets_attrRevocationRefs "id-aa-ets-attrRevocationRefs"
1022
+ #define NID_id_aa_ets_attrRevocationRefs 1262
1023
+ #define OBJ_id_aa_ets_attrRevocationRefs OBJ_id_smime_aa,45L
1024
+
1005
1025
  #define SN_id_smime_aa_signingCertificateV2 "id-smime-aa-signingCertificateV2"
1006
1026
  #define NID_id_smime_aa_signingCertificateV2 1086
1007
1027
  #define OBJ_id_smime_aa_signingCertificateV2 OBJ_id_smime_aa,47L
1008
1028
 
1029
+ #define SN_id_aa_ets_archiveTimestampV2 "id-aa-ets-archiveTimestampV2"
1030
+ #define NID_id_aa_ets_archiveTimestampV2 1280
1031
+ #define OBJ_id_aa_ets_archiveTimestampV2 OBJ_id_smime_aa,48L
1032
+
1009
1033
  #define SN_id_smime_alg_ESDHwith3DES "id-smime-alg-ESDHwith3DES"
1010
1034
  #define NID_id_smime_alg_ESDHwith3DES 241
1011
1035
  #define OBJ_id_smime_alg_ESDHwith3DES OBJ_id_smime_alg,1L
@@ -1082,15 +1106,17 @@
1082
1106
  #define NID_localKeyID 157
1083
1107
  #define OBJ_localKeyID OBJ_pkcs9,21L
1084
1108
 
1109
+ #define OBJ_ms_corp 1L,3L,6L,1L,4L,1L,311L
1110
+
1085
1111
  #define SN_ms_csp_name "CSPName"
1086
1112
  #define LN_ms_csp_name "Microsoft CSP Name"
1087
1113
  #define NID_ms_csp_name 417
1088
- #define OBJ_ms_csp_name 1L,3L,6L,1L,4L,1L,311L,17L,1L
1114
+ #define OBJ_ms_csp_name OBJ_ms_corp,17L,1L
1089
1115
 
1090
1116
  #define SN_LocalKeySet "LocalKeySet"
1091
1117
  #define LN_LocalKeySet "Microsoft Local Key set"
1092
1118
  #define NID_LocalKeySet 856
1093
- #define OBJ_LocalKeySet 1L,3L,6L,1L,4L,1L,311L,17L,2L
1119
+ #define OBJ_LocalKeySet OBJ_ms_corp,17L,2L
1094
1120
 
1095
1121
  #define OBJ_certTypes OBJ_pkcs9,22L
1096
1122
 
@@ -1108,6 +1134,10 @@
1108
1134
  #define NID_x509Crl 160
1109
1135
  #define OBJ_x509Crl OBJ_crlTypes,1L
1110
1136
 
1137
+ #define SN_id_aa_CMSAlgorithmProtection "id-aa-CMSAlgorithmProtection"
1138
+ #define NID_id_aa_CMSAlgorithmProtection 1263
1139
+ #define OBJ_id_aa_CMSAlgorithmProtection OBJ_pkcs9,52L
1140
+
1111
1141
  #define OBJ_pkcs12 OBJ_pkcs,12L
1112
1142
 
1113
1143
  #define OBJ_pkcs12_pbeids OBJ_pkcs12,1L
@@ -1217,6 +1247,10 @@
1217
1247
  #define NID_SM2_with_SM3 1204
1218
1248
  #define OBJ_SM2_with_SM3 OBJ_sm_scheme,501L
1219
1249
 
1250
+ #define LN_hmacWithSM3 "hmacWithSM3"
1251
+ #define NID_hmacWithSM3 1281
1252
+ #define OBJ_hmacWithSM3 OBJ_sm3,3L,1L
1253
+
1220
1254
  #define LN_hmacWithSHA224 "hmacWithSHA224"
1221
1255
  #define NID_hmacWithSHA224 798
1222
1256
  #define OBJ_hmacWithSHA224 OBJ_rsadsi,2L,8L
@@ -1300,42 +1334,62 @@
1300
1334
  #define SN_ms_ext_req "msExtReq"
1301
1335
  #define LN_ms_ext_req "Microsoft Extension Request"
1302
1336
  #define NID_ms_ext_req 171
1303
- #define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L
1337
+ #define OBJ_ms_ext_req OBJ_ms_corp,2L,1L,14L
1304
1338
 
1305
1339
  #define SN_ms_code_ind "msCodeInd"
1306
1340
  #define LN_ms_code_ind "Microsoft Individual Code Signing"
1307
1341
  #define NID_ms_code_ind 134
1308
- #define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L
1342
+ #define OBJ_ms_code_ind OBJ_ms_corp,2L,1L,21L
1309
1343
 
1310
1344
  #define SN_ms_code_com "msCodeCom"
1311
1345
  #define LN_ms_code_com "Microsoft Commercial Code Signing"
1312
1346
  #define NID_ms_code_com 135
1313
- #define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L
1347
+ #define OBJ_ms_code_com OBJ_ms_corp,2L,1L,22L
1314
1348
 
1315
1349
  #define SN_ms_ctl_sign "msCTLSign"
1316
1350
  #define LN_ms_ctl_sign "Microsoft Trust List Signing"
1317
1351
  #define NID_ms_ctl_sign 136
1318
- #define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L
1352
+ #define OBJ_ms_ctl_sign OBJ_ms_corp,10L,3L,1L
1319
1353
 
1320
1354
  #define SN_ms_sgc "msSGC"
1321
1355
  #define LN_ms_sgc "Microsoft Server Gated Crypto"
1322
1356
  #define NID_ms_sgc 137
1323
- #define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L
1357
+ #define OBJ_ms_sgc OBJ_ms_corp,10L,3L,3L
1324
1358
 
1325
1359
  #define SN_ms_efs "msEFS"
1326
1360
  #define LN_ms_efs "Microsoft Encrypted File System"
1327
1361
  #define NID_ms_efs 138
1328
- #define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L
1362
+ #define OBJ_ms_efs OBJ_ms_corp,10L,3L,4L
1329
1363
 
1330
1364
  #define SN_ms_smartcard_login "msSmartcardLogin"
1331
1365
  #define LN_ms_smartcard_login "Microsoft Smartcard Login"
1332
1366
  #define NID_ms_smartcard_login 648
1333
- #define OBJ_ms_smartcard_login 1L,3L,6L,1L,4L,1L,311L,20L,2L,2L
1367
+ #define OBJ_ms_smartcard_login OBJ_ms_corp,20L,2L,2L
1334
1368
 
1335
1369
  #define SN_ms_upn "msUPN"
1336
1370
  #define LN_ms_upn "Microsoft User Principal Name"
1337
1371
  #define NID_ms_upn 649
1338
- #define OBJ_ms_upn 1L,3L,6L,1L,4L,1L,311L,20L,2L,3L
1372
+ #define OBJ_ms_upn OBJ_ms_corp,20L,2L,3L
1373
+
1374
+ #define SN_ms_ntds_sec_ext "ms-ntds-sec-ext"
1375
+ #define LN_ms_ntds_sec_ext "Microsoft NTDS CA Extension"
1376
+ #define NID_ms_ntds_sec_ext 1292
1377
+ #define OBJ_ms_ntds_sec_ext OBJ_ms_corp,25L,2L
1378
+
1379
+ #define SN_ms_ntds_obj_sid "ms-ntds-obj-sid"
1380
+ #define LN_ms_ntds_obj_sid "Microsoft NTDS AD objectSid"
1381
+ #define NID_ms_ntds_obj_sid 1291
1382
+ #define OBJ_ms_ntds_obj_sid OBJ_ms_corp,25L,2L,1L
1383
+
1384
+ #define SN_ms_cert_templ "ms-cert-templ"
1385
+ #define LN_ms_cert_templ "Microsoft certificate template"
1386
+ #define NID_ms_cert_templ 1293
1387
+ #define OBJ_ms_cert_templ OBJ_ms_corp,21L,7L
1388
+
1389
+ #define SN_ms_app_policies "ms-app-policies"
1390
+ #define LN_ms_app_policies "Microsoft Application Policies Extension"
1391
+ #define NID_ms_app_policies 1294
1392
+ #define OBJ_ms_app_policies OBJ_ms_corp,21L,10L
1339
1393
 
1340
1394
  #define SN_idea_cbc "IDEA-CBC"
1341
1395
  #define LN_idea_cbc "idea-cbc"
@@ -1503,6 +1557,18 @@
1503
1557
  #define NID_id_mod_cmp2000 284
1504
1558
  #define OBJ_id_mod_cmp2000 OBJ_id_pkix_mod,16L
1505
1559
 
1560
+ #define SN_id_mod_cmp2000_02 "id-mod-cmp2000-02"
1561
+ #define NID_id_mod_cmp2000_02 1251
1562
+ #define OBJ_id_mod_cmp2000_02 OBJ_id_pkix_mod,50L
1563
+
1564
+ #define SN_id_mod_cmp2021_88 "id-mod-cmp2021-88"
1565
+ #define NID_id_mod_cmp2021_88 1252
1566
+ #define OBJ_id_mod_cmp2021_88 OBJ_id_pkix_mod,99L
1567
+
1568
+ #define SN_id_mod_cmp2021_02 "id-mod-cmp2021-02"
1569
+ #define NID_id_mod_cmp2021_02 1253
1570
+ #define OBJ_id_mod_cmp2021_02 OBJ_id_pkix_mod,100L
1571
+
1506
1572
  #define SN_info_access "authorityInfoAccess"
1507
1573
  #define LN_info_access "Authority Information Access"
1508
1574
  #define NID_info_access 177
@@ -1517,9 +1583,13 @@
1517
1583
  #define NID_qcStatements 286
1518
1584
  #define OBJ_qcStatements OBJ_id_pe,3L
1519
1585
 
1520
- #define SN_ac_auditEntity "ac-auditEntity"
1521
- #define NID_ac_auditEntity 287
1522
- #define OBJ_ac_auditEntity OBJ_id_pe,4L
1586
+ #define SN_ac_auditIdentity "ac-auditIdentity"
1587
+ #define LN_ac_auditIdentity "X509v3 Audit Identity"
1588
+ #define NID_ac_auditIdentity 287
1589
+ #define OBJ_ac_auditIdentity OBJ_id_pe,4L
1590
+
1591
+ #define NID_ac_auditEntity 1323
1592
+ #define OBJ_ac_auditEntity OBJ_ac_auditIdentity
1523
1593
 
1524
1594
  #define SN_ac_targeting "ac-targeting"
1525
1595
  #define NID_ac_targeting 288
@@ -1783,6 +1853,22 @@
1783
1853
  #define NID_id_it_certReqTemplate 1225
1784
1854
  #define OBJ_id_it_certReqTemplate OBJ_id_it,19L
1785
1855
 
1856
+ #define SN_id_it_rootCaCert "id-it-rootCaCert"
1857
+ #define NID_id_it_rootCaCert 1254
1858
+ #define OBJ_id_it_rootCaCert OBJ_id_it,20L
1859
+
1860
+ #define SN_id_it_certProfile "id-it-certProfile"
1861
+ #define NID_id_it_certProfile 1255
1862
+ #define OBJ_id_it_certProfile OBJ_id_it,21L
1863
+
1864
+ #define SN_id_it_crlStatusList "id-it-crlStatusList"
1865
+ #define NID_id_it_crlStatusList 1256
1866
+ #define OBJ_id_it_crlStatusList OBJ_id_it,22L
1867
+
1868
+ #define SN_id_it_crls "id-it-crls"
1869
+ #define NID_id_it_crls 1257
1870
+ #define OBJ_id_it_crls OBJ_id_it,23L
1871
+
1786
1872
  #define SN_id_regCtrl "id-regCtrl"
1787
1873
  #define NID_id_regCtrl 313
1788
1874
  #define OBJ_id_regCtrl OBJ_id_pkip,1L
@@ -1815,6 +1901,18 @@
1815
1901
  #define NID_id_regCtrl_protocolEncrKey 320
1816
1902
  #define OBJ_id_regCtrl_protocolEncrKey OBJ_id_regCtrl,6L
1817
1903
 
1904
+ #define SN_id_regCtrl_altCertTemplate "id-regCtrl-altCertTemplate"
1905
+ #define NID_id_regCtrl_altCertTemplate 1258
1906
+ #define OBJ_id_regCtrl_altCertTemplate OBJ_id_regCtrl,7L
1907
+
1908
+ #define SN_id_regCtrl_algId "id-regCtrl-algId"
1909
+ #define NID_id_regCtrl_algId 1259
1910
+ #define OBJ_id_regCtrl_algId OBJ_id_regCtrl,11L
1911
+
1912
+ #define SN_id_regCtrl_rsaKeyLen "id-regCtrl-rsaKeyLen"
1913
+ #define NID_id_regCtrl_rsaKeyLen 1260
1914
+ #define OBJ_id_regCtrl_rsaKeyLen OBJ_id_regCtrl,12L
1915
+
1818
1916
  #define SN_id_regInfo_utf8Pairs "id-regInfo-utf8Pairs"
1819
1917
  #define NID_id_regInfo_utf8Pairs 321
1820
1918
  #define OBJ_id_regInfo_utf8Pairs OBJ_id_regInfo,1L
@@ -1928,6 +2026,11 @@
1928
2026
  #define NID_id_on_permanentIdentifier 858
1929
2027
  #define OBJ_id_on_permanentIdentifier OBJ_id_on,3L
1930
2028
 
2029
+ #define SN_id_on_hardwareModuleName "id-on-hardwareModuleName"
2030
+ #define LN_id_on_hardwareModuleName "Hardware Module Name"
2031
+ #define NID_id_on_hardwareModuleName 1321
2032
+ #define OBJ_id_on_hardwareModuleName OBJ_id_on,4L
2033
+
1931
2034
  #define SN_XmppAddr "id-on-xmppAddr"
1932
2035
  #define LN_XmppAddr "XmppAddr"
1933
2036
  #define NID_XmppAddr 1209
@@ -2649,11 +2752,56 @@
2649
2752
  #define NID_ext_key_usage 126
2650
2753
  #define OBJ_ext_key_usage OBJ_id_ce,37L
2651
2754
 
2755
+ #define SN_authority_attribute_identifier "authorityAttributeIdentifier"
2756
+ #define LN_authority_attribute_identifier "X509v3 Authority Attribute Identifier"
2757
+ #define NID_authority_attribute_identifier 1295
2758
+ #define OBJ_authority_attribute_identifier OBJ_id_ce,38L
2759
+
2760
+ #define SN_role_spec_cert_identifier "roleSpecCertIdentifier"
2761
+ #define LN_role_spec_cert_identifier "X509v3 Role Specification Certificate Identifier"
2762
+ #define NID_role_spec_cert_identifier 1296
2763
+ #define OBJ_role_spec_cert_identifier OBJ_id_ce,39L
2764
+
2765
+ #define SN_basic_att_constraints "basicAttConstraints"
2766
+ #define LN_basic_att_constraints "X509v3 Basic Attribute Certificate Constraints"
2767
+ #define NID_basic_att_constraints 1297
2768
+ #define OBJ_basic_att_constraints OBJ_id_ce,41L
2769
+
2770
+ #define SN_delegated_name_constraints "delegatedNameConstraints"
2771
+ #define LN_delegated_name_constraints "X509v3 Delegated Name Constraints"
2772
+ #define NID_delegated_name_constraints 1298
2773
+ #define OBJ_delegated_name_constraints OBJ_id_ce,42L
2774
+
2775
+ #define SN_time_specification "timeSpecification"
2776
+ #define LN_time_specification "X509v3 Time Specification"
2777
+ #define NID_time_specification 1299
2778
+ #define OBJ_time_specification OBJ_id_ce,43L
2779
+
2652
2780
  #define SN_freshest_crl "freshestCRL"
2653
2781
  #define LN_freshest_crl "X509v3 Freshest CRL"
2654
2782
  #define NID_freshest_crl 857
2655
2783
  #define OBJ_freshest_crl OBJ_id_ce,46L
2656
2784
 
2785
+ #define SN_attribute_descriptor "attributeDescriptor"
2786
+ #define LN_attribute_descriptor "X509v3 Attribute Descriptor"
2787
+ #define NID_attribute_descriptor 1300
2788
+ #define OBJ_attribute_descriptor OBJ_id_ce,48L
2789
+
2790
+ #define SN_user_notice "userNotice"
2791
+ #define LN_user_notice "X509v3 User Notice"
2792
+ #define NID_user_notice 1301
2793
+ #define OBJ_user_notice OBJ_id_ce,49L
2794
+
2795
+ #define SN_soa_identifier "sOAIdentifier"
2796
+ #define LN_soa_identifier "X509v3 Source of Authority Identifier"
2797
+ #define NID_soa_identifier 1302
2798
+ #define OBJ_soa_identifier OBJ_id_ce,50L
2799
+
2800
+ #define SN_acceptable_cert_policies "acceptableCertPolicies"
2801
+ #define LN_acceptable_cert_policies "X509v3 Acceptable Certification Policies"
2802
+ #define NID_acceptable_cert_policies 1303
2803
+ #define OBJ_acceptable_cert_policies OBJ_id_ce,52L
2804
+
2657
2805
  #define SN_inhibit_any_policy "inhibitAnyPolicy"
2658
2806
  #define LN_inhibit_any_policy "X509v3 Inhibit Any Policy"
2659
2807
  #define NID_inhibit_any_policy 748
@@ -2669,6 +2817,86 @@
2669
2817
  #define NID_no_rev_avail 403
2670
2818
  #define OBJ_no_rev_avail OBJ_id_ce,56L
2671
2819
 
2820
+ #define SN_acceptable_privilege_policies "acceptablePrivPolicies"
2821
+ #define LN_acceptable_privilege_policies "X509v3 Acceptable Privilege Policies"
2822
+ #define NID_acceptable_privilege_policies 1304
2823
+ #define OBJ_acceptable_privilege_policies OBJ_id_ce,57L
2824
+
2825
+ #define SN_indirect_issuer "indirectIssuer"
2826
+ #define LN_indirect_issuer "X509v3 Indirect Issuer"
2827
+ #define NID_indirect_issuer 1305
2828
+ #define OBJ_indirect_issuer OBJ_id_ce,61L
2829
+
2830
+ #define SN_no_assertion "noAssertion"
2831
+ #define LN_no_assertion "X509v3 No Assertion"
2832
+ #define NID_no_assertion 1306
2833
+ #define OBJ_no_assertion OBJ_id_ce,62L
2834
+
2835
+ #define SN_id_aa_issuing_distribution_point "aAissuingDistributionPoint"
2836
+ #define LN_id_aa_issuing_distribution_point "X509v3 Attribute Authority Issuing Distribution Point"
2837
+ #define NID_id_aa_issuing_distribution_point 1307
2838
+ #define OBJ_id_aa_issuing_distribution_point OBJ_id_ce,63L
2839
+
2840
+ #define SN_issued_on_behalf_of "issuedOnBehalfOf"
2841
+ #define LN_issued_on_behalf_of "X509v3 Issued On Behalf Of"
2842
+ #define NID_issued_on_behalf_of 1308
2843
+ #define OBJ_issued_on_behalf_of OBJ_id_ce,64L
2844
+
2845
+ #define SN_single_use "singleUse"
2846
+ #define LN_single_use "X509v3 Single Use"
2847
+ #define NID_single_use 1309
2848
+ #define OBJ_single_use OBJ_id_ce,65L
2849
+
2850
+ #define SN_group_ac "groupAC"
2851
+ #define LN_group_ac "X509v3 Group Attribute Certificate"
2852
+ #define NID_group_ac 1310
2853
+ #define OBJ_group_ac OBJ_id_ce,66L
2854
+
2855
+ #define SN_allowed_attribute_assignments "allowedAttributeAssignments"
2856
+ #define LN_allowed_attribute_assignments "X509v3 Allowed Attribute Assignments"
2857
+ #define NID_allowed_attribute_assignments 1311
2858
+ #define OBJ_allowed_attribute_assignments OBJ_id_ce,67L
2859
+
2860
+ #define SN_attribute_mappings "attributeMappings"
2861
+ #define LN_attribute_mappings "X509v3 Attribute Mappings"
2862
+ #define NID_attribute_mappings 1312
2863
+ #define OBJ_attribute_mappings OBJ_id_ce,68L
2864
+
2865
+ #define SN_holder_name_constraints "holderNameConstraints"
2866
+ #define LN_holder_name_constraints "X509v3 Holder Name Constraints"
2867
+ #define NID_holder_name_constraints 1313
2868
+ #define OBJ_holder_name_constraints OBJ_id_ce,69L
2869
+
2870
+ #define SN_authorization_validation "authorizationValidation"
2871
+ #define LN_authorization_validation "X509v3 Authorization Validation"
2872
+ #define NID_authorization_validation 1314
2873
+ #define OBJ_authorization_validation OBJ_id_ce,70L
2874
+
2875
+ #define SN_prot_restrict "protRestrict"
2876
+ #define LN_prot_restrict "X509v3 Protocol Restriction"
2877
+ #define NID_prot_restrict 1315
2878
+ #define OBJ_prot_restrict OBJ_id_ce,71L
2879
+
2880
+ #define SN_subject_alt_public_key_info "subjectAltPublicKeyInfo"
2881
+ #define LN_subject_alt_public_key_info "X509v3 Subject Alternative Public Key Info"
2882
+ #define NID_subject_alt_public_key_info 1316
2883
+ #define OBJ_subject_alt_public_key_info OBJ_id_ce,72L
2884
+
2885
+ #define SN_alt_signature_algorithm "altSignatureAlgorithm"
2886
+ #define LN_alt_signature_algorithm "X509v3 Alternative Signature Algorithm"
2887
+ #define NID_alt_signature_algorithm 1317
2888
+ #define OBJ_alt_signature_algorithm OBJ_id_ce,73L
2889
+
2890
+ #define SN_alt_signature_value "altSignatureValue"
2891
+ #define LN_alt_signature_value "X509v3 Alternative Signature Value"
2892
+ #define NID_alt_signature_value 1318
2893
+ #define OBJ_alt_signature_value OBJ_id_ce,74L
2894
+
2895
+ #define SN_associated_information "associatedInformation"
2896
+ #define LN_associated_information "X509v3 Associated Information"
2897
+ #define NID_associated_information 1319
2898
+ #define OBJ_associated_information OBJ_id_ce,75L
2899
+
2672
2900
  #define SN_anyExtendedKeyUsage "anyExtendedKeyUsage"
2673
2901
  #define LN_anyExtendedKeyUsage "Any Extended Key Usage"
2674
2902
  #define NID_anyExtendedKeyUsage 910
@@ -2800,6 +3028,11 @@
2800
3028
  #define NID_dcObject 390
2801
3029
  #define OBJ_dcObject OBJ_Enterprises,1466L,344L
2802
3030
 
3031
+ #define SN_id_kp_wisun_fan_device "id-kp-wisun-fan-device"
3032
+ #define LN_id_kp_wisun_fan_device "Wi-SUN Alliance Field Area Network (FAN)"
3033
+ #define NID_id_kp_wisun_fan_device 1322
3034
+ #define OBJ_id_kp_wisun_fan_device OBJ_Enterprises,45605L,1L
3035
+
2803
3036
  #define SN_mime_mhs "mime-mhs"
2804
3037
  #define LN_mime_mhs "MIME MHS"
2805
3038
  #define NID_mime_mhs 504
@@ -3198,6 +3431,156 @@
3198
3431
  #define NID_RSA_SHA3_512 1119
3199
3432
  #define OBJ_RSA_SHA3_512 OBJ_sigAlgs,16L
3200
3433
 
3434
+ #define SN_ML_DSA_44 "id-ml-dsa-44"
3435
+ #define LN_ML_DSA_44 "ML-DSA-44"
3436
+ #define NID_ML_DSA_44 1457
3437
+ #define OBJ_ML_DSA_44 OBJ_sigAlgs,17L
3438
+
3439
+ #define SN_ML_DSA_65 "id-ml-dsa-65"
3440
+ #define LN_ML_DSA_65 "ML-DSA-65"
3441
+ #define NID_ML_DSA_65 1458
3442
+ #define OBJ_ML_DSA_65 OBJ_sigAlgs,18L
3443
+
3444
+ #define SN_ML_DSA_87 "id-ml-dsa-87"
3445
+ #define LN_ML_DSA_87 "ML-DSA-87"
3446
+ #define NID_ML_DSA_87 1459
3447
+ #define OBJ_ML_DSA_87 OBJ_sigAlgs,19L
3448
+
3449
+ #define SN_SLH_DSA_SHA2_128s "id-slh-dsa-sha2-128s"
3450
+ #define LN_SLH_DSA_SHA2_128s "SLH-DSA-SHA2-128s"
3451
+ #define NID_SLH_DSA_SHA2_128s 1460
3452
+ #define OBJ_SLH_DSA_SHA2_128s OBJ_sigAlgs,20L
3453
+
3454
+ #define SN_SLH_DSA_SHA2_128f "id-slh-dsa-sha2-128f"
3455
+ #define LN_SLH_DSA_SHA2_128f "SLH-DSA-SHA2-128f"
3456
+ #define NID_SLH_DSA_SHA2_128f 1461
3457
+ #define OBJ_SLH_DSA_SHA2_128f OBJ_sigAlgs,21L
3458
+
3459
+ #define SN_SLH_DSA_SHA2_192s "id-slh-dsa-sha2-192s"
3460
+ #define LN_SLH_DSA_SHA2_192s "SLH-DSA-SHA2-192s"
3461
+ #define NID_SLH_DSA_SHA2_192s 1462
3462
+ #define OBJ_SLH_DSA_SHA2_192s OBJ_sigAlgs,22L
3463
+
3464
+ #define SN_SLH_DSA_SHA2_192f "id-slh-dsa-sha2-192f"
3465
+ #define LN_SLH_DSA_SHA2_192f "SLH-DSA-SHA2-192f"
3466
+ #define NID_SLH_DSA_SHA2_192f 1463
3467
+ #define OBJ_SLH_DSA_SHA2_192f OBJ_sigAlgs,23L
3468
+
3469
+ #define SN_SLH_DSA_SHA2_256s "id-slh-dsa-sha2-256s"
3470
+ #define LN_SLH_DSA_SHA2_256s "SLH-DSA-SHA2-256s"
3471
+ #define NID_SLH_DSA_SHA2_256s 1464
3472
+ #define OBJ_SLH_DSA_SHA2_256s OBJ_sigAlgs,24L
3473
+
3474
+ #define SN_SLH_DSA_SHA2_256f "id-slh-dsa-sha2-256f"
3475
+ #define LN_SLH_DSA_SHA2_256f "SLH-DSA-SHA2-256f"
3476
+ #define NID_SLH_DSA_SHA2_256f 1465
3477
+ #define OBJ_SLH_DSA_SHA2_256f OBJ_sigAlgs,25L
3478
+
3479
+ #define SN_SLH_DSA_SHAKE_128s "id-slh-dsa-shake-128s"
3480
+ #define LN_SLH_DSA_SHAKE_128s "SLH-DSA-SHAKE-128s"
3481
+ #define NID_SLH_DSA_SHAKE_128s 1466
3482
+ #define OBJ_SLH_DSA_SHAKE_128s OBJ_sigAlgs,26L
3483
+
3484
+ #define SN_SLH_DSA_SHAKE_128f "id-slh-dsa-shake-128f"
3485
+ #define LN_SLH_DSA_SHAKE_128f "SLH-DSA-SHAKE-128f"
3486
+ #define NID_SLH_DSA_SHAKE_128f 1467
3487
+ #define OBJ_SLH_DSA_SHAKE_128f OBJ_sigAlgs,27L
3488
+
3489
+ #define SN_SLH_DSA_SHAKE_192s "id-slh-dsa-shake-192s"
3490
+ #define LN_SLH_DSA_SHAKE_192s "SLH-DSA-SHAKE-192s"
3491
+ #define NID_SLH_DSA_SHAKE_192s 1468
3492
+ #define OBJ_SLH_DSA_SHAKE_192s OBJ_sigAlgs,28L
3493
+
3494
+ #define SN_SLH_DSA_SHAKE_192f "id-slh-dsa-shake-192f"
3495
+ #define LN_SLH_DSA_SHAKE_192f "SLH-DSA-SHAKE-192f"
3496
+ #define NID_SLH_DSA_SHAKE_192f 1469
3497
+ #define OBJ_SLH_DSA_SHAKE_192f OBJ_sigAlgs,29L
3498
+
3499
+ #define SN_SLH_DSA_SHAKE_256s "id-slh-dsa-shake-256s"
3500
+ #define LN_SLH_DSA_SHAKE_256s "SLH-DSA-SHAKE-256s"
3501
+ #define NID_SLH_DSA_SHAKE_256s 1470
3502
+ #define OBJ_SLH_DSA_SHAKE_256s OBJ_sigAlgs,30L
3503
+
3504
+ #define SN_SLH_DSA_SHAKE_256f "id-slh-dsa-shake-256f"
3505
+ #define LN_SLH_DSA_SHAKE_256f "SLH-DSA-SHAKE-256f"
3506
+ #define NID_SLH_DSA_SHAKE_256f 1471
3507
+ #define OBJ_SLH_DSA_SHAKE_256f OBJ_sigAlgs,31L
3508
+
3509
+ #define SN_HASH_ML_DSA_44_WITH_SHA512 "id-hash-ml-dsa-44-with-sha512"
3510
+ #define LN_HASH_ML_DSA_44_WITH_SHA512 "HASH-ML-DSA-44-WITH-SHA512"
3511
+ #define NID_HASH_ML_DSA_44_WITH_SHA512 1472
3512
+ #define OBJ_HASH_ML_DSA_44_WITH_SHA512 OBJ_sigAlgs,32L
3513
+
3514
+ #define SN_HASH_ML_DSA_65_WITH_SHA512 "id-hash-ml-dsa-65-with-sha512"
3515
+ #define LN_HASH_ML_DSA_65_WITH_SHA512 "HASH-ML-DSA-65-WITH-SHA512"
3516
+ #define NID_HASH_ML_DSA_65_WITH_SHA512 1473
3517
+ #define OBJ_HASH_ML_DSA_65_WITH_SHA512 OBJ_sigAlgs,33L
3518
+
3519
+ #define SN_HASH_ML_DSA_87_WITH_SHA512 "id-hash-ml-dsa-87-with-sha512"
3520
+ #define LN_HASH_ML_DSA_87_WITH_SHA512 "HASH-ML-DSA-87-WITH-SHA512"
3521
+ #define NID_HASH_ML_DSA_87_WITH_SHA512 1474
3522
+ #define OBJ_HASH_ML_DSA_87_WITH_SHA512 OBJ_sigAlgs,34L
3523
+
3524
+ #define SN_SLH_DSA_SHA2_128s_WITH_SHA256 "id-hash-slh-dsa-sha2-128s-with-sha256"
3525
+ #define LN_SLH_DSA_SHA2_128s_WITH_SHA256 "SLH-DSA-SHA2-128s-WITH-SHA256"
3526
+ #define NID_SLH_DSA_SHA2_128s_WITH_SHA256 1475
3527
+ #define OBJ_SLH_DSA_SHA2_128s_WITH_SHA256 OBJ_sigAlgs,35L
3528
+
3529
+ #define SN_SLH_DSA_SHA2_128f_WITH_SHA256 "id-hash-slh-dsa-sha2-128f-with-sha256"
3530
+ #define LN_SLH_DSA_SHA2_128f_WITH_SHA256 "SLH-DSA-SHA2-128f-WITH-SHA256"
3531
+ #define NID_SLH_DSA_SHA2_128f_WITH_SHA256 1476
3532
+ #define OBJ_SLH_DSA_SHA2_128f_WITH_SHA256 OBJ_sigAlgs,36L
3533
+
3534
+ #define SN_SLH_DSA_SHA2_192s_WITH_SHA512 "id-hash-slh-dsa-sha2-192s-with-sha512"
3535
+ #define LN_SLH_DSA_SHA2_192s_WITH_SHA512 "SLH-DSA-SHA2-192s-WITH-SHA512"
3536
+ #define NID_SLH_DSA_SHA2_192s_WITH_SHA512 1477
3537
+ #define OBJ_SLH_DSA_SHA2_192s_WITH_SHA512 OBJ_sigAlgs,37L
3538
+
3539
+ #define SN_SLH_DSA_SHA2_192f_WITH_SHA512 "id-hash-slh-dsa-sha2-192f-with-sha512"
3540
+ #define LN_SLH_DSA_SHA2_192f_WITH_SHA512 "SLH-DSA-SHA2-192f-WITH-SHA512"
3541
+ #define NID_SLH_DSA_SHA2_192f_WITH_SHA512 1478
3542
+ #define OBJ_SLH_DSA_SHA2_192f_WITH_SHA512 OBJ_sigAlgs,38L
3543
+
3544
+ #define SN_SLH_DSA_SHA2_256s_WITH_SHA512 "id-hash-slh-dsa-sha2-256s-with-sha512"
3545
+ #define LN_SLH_DSA_SHA2_256s_WITH_SHA512 "SLH-DSA-SHA2-256s-WITH-SHA512"
3546
+ #define NID_SLH_DSA_SHA2_256s_WITH_SHA512 1479
3547
+ #define OBJ_SLH_DSA_SHA2_256s_WITH_SHA512 OBJ_sigAlgs,39L
3548
+
3549
+ #define SN_SLH_DSA_SHA2_256f_WITH_SHA512 "id-hash-slh-dsa-sha2-256f-with-sha512"
3550
+ #define LN_SLH_DSA_SHA2_256f_WITH_SHA512 "SLH-DSA-SHA2-256f-WITH-SHA512"
3551
+ #define NID_SLH_DSA_SHA2_256f_WITH_SHA512 1480
3552
+ #define OBJ_SLH_DSA_SHA2_256f_WITH_SHA512 OBJ_sigAlgs,40L
3553
+
3554
+ #define SN_SLH_DSA_SHAKE_128s_WITH_SHAKE128 "id-hash-slh-dsa-shake-128s-with-shake128"
3555
+ #define LN_SLH_DSA_SHAKE_128s_WITH_SHAKE128 "SLH-DSA-SHAKE-128s-WITH-SHAKE128"
3556
+ #define NID_SLH_DSA_SHAKE_128s_WITH_SHAKE128 1481
3557
+ #define OBJ_SLH_DSA_SHAKE_128s_WITH_SHAKE128 OBJ_sigAlgs,41L
3558
+
3559
+ #define SN_SLH_DSA_SHAKE_128f_WITH_SHAKE128 "id-hash-slh-dsa-shake-128f-with-shake128"
3560
+ #define LN_SLH_DSA_SHAKE_128f_WITH_SHAKE128 "SLH-DSA-SHAKE-128f-WITH-SHAKE128"
3561
+ #define NID_SLH_DSA_SHAKE_128f_WITH_SHAKE128 1482
3562
+ #define OBJ_SLH_DSA_SHAKE_128f_WITH_SHAKE128 OBJ_sigAlgs,42L
3563
+
3564
+ #define SN_SLH_DSA_SHAKE_192s_WITH_SHAKE256 "id-hash-slh-dsa-shake-192s-with-shake256"
3565
+ #define LN_SLH_DSA_SHAKE_192s_WITH_SHAKE256 "SLH-DSA-SHAKE-192s-WITH-SHAKE256"
3566
+ #define NID_SLH_DSA_SHAKE_192s_WITH_SHAKE256 1483
3567
+ #define OBJ_SLH_DSA_SHAKE_192s_WITH_SHAKE256 OBJ_sigAlgs,43L
3568
+
3569
+ #define SN_SLH_DSA_SHAKE_192f_WITH_SHAKE256 "id-hash-slh-dsa-shake-192f-with-shake256"
3570
+ #define LN_SLH_DSA_SHAKE_192f_WITH_SHAKE256 "SLH-DSA-SHAKE-192f-WITH-SHAKE256"
3571
+ #define NID_SLH_DSA_SHAKE_192f_WITH_SHAKE256 1484
3572
+ #define OBJ_SLH_DSA_SHAKE_192f_WITH_SHAKE256 OBJ_sigAlgs,44L
3573
+
3574
+ #define SN_SLH_DSA_SHAKE_256s_WITH_SHAKE256 "id-hash-slh-dsa-shake-256s-with-shake256"
3575
+ #define LN_SLH_DSA_SHAKE_256s_WITH_SHAKE256 "SLH-DSA-SHAKE-256s-WITH-SHAKE256"
3576
+ #define NID_SLH_DSA_SHAKE_256s_WITH_SHAKE256 1485
3577
+ #define OBJ_SLH_DSA_SHAKE_256s_WITH_SHAKE256 OBJ_sigAlgs,45L
3578
+
3579
+ #define SN_SLH_DSA_SHAKE_256f_WITH_SHAKE256 "id-hash-slh-dsa-shake-256f-with-shake256"
3580
+ #define LN_SLH_DSA_SHAKE_256f_WITH_SHAKE256 "SLH-DSA-SHAKE-256f-WITH-SHAKE256"
3581
+ #define NID_SLH_DSA_SHAKE_256f_WITH_SHAKE256 1486
3582
+ #define OBJ_SLH_DSA_SHAKE_256f_WITH_SHAKE256 OBJ_sigAlgs,46L
3583
+
3201
3584
  #define SN_hold_instruction_code "holdInstructionCode"
3202
3585
  #define LN_hold_instruction_code "Hold Instruction Code"
3203
3586
  #define NID_hold_instruction_code 430
@@ -3220,6 +3603,70 @@
3220
3603
  #define NID_hold_instruction_reject 433
3221
3604
  #define OBJ_hold_instruction_reject OBJ_holdInstruction,3L
3222
3605
 
3606
+ #define SN_itu_t_identified_organization "itu-t-identified-organization"
3607
+ #define NID_itu_t_identified_organization 1264
3608
+ #define OBJ_itu_t_identified_organization OBJ_itu_t,4L
3609
+
3610
+ #define SN_etsi "etsi"
3611
+ #define NID_etsi 1265
3612
+ #define OBJ_etsi OBJ_itu_t_identified_organization,0L
3613
+
3614
+ #define SN_electronic_signature_standard "electronic-signature-standard"
3615
+ #define NID_electronic_signature_standard 1266
3616
+ #define OBJ_electronic_signature_standard OBJ_etsi,1733L
3617
+
3618
+ #define SN_ess_attributes "ess-attributes"
3619
+ #define NID_ess_attributes 1267
3620
+ #define OBJ_ess_attributes OBJ_electronic_signature_standard,2L
3621
+
3622
+ #define SN_id_aa_ets_mimeType "id-aa-ets-mimeType"
3623
+ #define NID_id_aa_ets_mimeType 1268
3624
+ #define OBJ_id_aa_ets_mimeType OBJ_ess_attributes,1L
3625
+
3626
+ #define SN_id_aa_ets_longTermValidation "id-aa-ets-longTermValidation"
3627
+ #define NID_id_aa_ets_longTermValidation 1269
3628
+ #define OBJ_id_aa_ets_longTermValidation OBJ_ess_attributes,2L
3629
+
3630
+ #define SN_id_aa_ets_SignaturePolicyDocument "id-aa-ets-SignaturePolicyDocument"
3631
+ #define NID_id_aa_ets_SignaturePolicyDocument 1270
3632
+ #define OBJ_id_aa_ets_SignaturePolicyDocument OBJ_ess_attributes,3L
3633
+
3634
+ #define SN_id_aa_ets_archiveTimestampV3 "id-aa-ets-archiveTimestampV3"
3635
+ #define NID_id_aa_ets_archiveTimestampV3 1271
3636
+ #define OBJ_id_aa_ets_archiveTimestampV3 OBJ_ess_attributes,4L
3637
+
3638
+ #define SN_id_aa_ATSHashIndex "id-aa-ATSHashIndex"
3639
+ #define NID_id_aa_ATSHashIndex 1272
3640
+ #define OBJ_id_aa_ATSHashIndex OBJ_ess_attributes,5L
3641
+
3642
+ #define SN_cades "cades"
3643
+ #define NID_cades 1273
3644
+ #define OBJ_cades OBJ_etsi,19122L
3645
+
3646
+ #define SN_cades_attributes "cades-attributes"
3647
+ #define NID_cades_attributes 1274
3648
+ #define OBJ_cades_attributes OBJ_cades,1L
3649
+
3650
+ #define SN_id_aa_ets_signerAttrV2 "id-aa-ets-signerAttrV2"
3651
+ #define NID_id_aa_ets_signerAttrV2 1275
3652
+ #define OBJ_id_aa_ets_signerAttrV2 OBJ_cades_attributes,1L
3653
+
3654
+ #define SN_id_aa_ets_sigPolicyStore "id-aa-ets-sigPolicyStore"
3655
+ #define NID_id_aa_ets_sigPolicyStore 1276
3656
+ #define OBJ_id_aa_ets_sigPolicyStore OBJ_cades_attributes,3L
3657
+
3658
+ #define SN_id_aa_ATSHashIndex_v2 "id-aa-ATSHashIndex-v2"
3659
+ #define NID_id_aa_ATSHashIndex_v2 1277
3660
+ #define OBJ_id_aa_ATSHashIndex_v2 OBJ_cades_attributes,4L
3661
+
3662
+ #define SN_id_aa_ATSHashIndex_v3 "id-aa-ATSHashIndex-v3"
3663
+ #define NID_id_aa_ATSHashIndex_v3 1278
3664
+ #define OBJ_id_aa_ATSHashIndex_v3 OBJ_cades_attributes,5L
3665
+
3666
+ #define SN_signedAssertion "signedAssertion"
3667
+ #define NID_signedAssertion 1279
3668
+ #define OBJ_signedAssertion OBJ_cades_attributes,6L
3669
+
3223
3670
  #define SN_data "data"
3224
3671
  #define NID_data 434
3225
3672
  #define OBJ_data OBJ_itu_t,9L
@@ -4952,6 +5399,21 @@
4952
5399
  #define NID_sm4_ctr 1139
4953
5400
  #define OBJ_sm4_ctr OBJ_sm_scheme,104L,7L
4954
5401
 
5402
+ #define SN_sm4_gcm "SM4-GCM"
5403
+ #define LN_sm4_gcm "sm4-gcm"
5404
+ #define NID_sm4_gcm 1248
5405
+ #define OBJ_sm4_gcm OBJ_sm_scheme,104L,8L
5406
+
5407
+ #define SN_sm4_ccm "SM4-CCM"
5408
+ #define LN_sm4_ccm "sm4-ccm"
5409
+ #define NID_sm4_ccm 1249
5410
+ #define OBJ_sm4_ccm OBJ_sm_scheme,104L,9L
5411
+
5412
+ #define SN_sm4_xts "SM4-XTS"
5413
+ #define LN_sm4_xts "sm4-xts"
5414
+ #define NID_sm4_xts 1290
5415
+ #define OBJ_sm4_xts OBJ_sm_scheme,104L,10L
5416
+
4955
5417
  #define SN_hmac "HMAC"
4956
5418
  #define LN_hmac "hmac"
4957
5419
  #define NID_hmac 855
@@ -5029,6 +5491,9 @@
5029
5491
  #define NID_brainpoolP256r1 927
5030
5492
  #define OBJ_brainpoolP256r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,7L
5031
5493
 
5494
+ #define SN_brainpoolP256r1tls13 "brainpoolP256r1tls13"
5495
+ #define NID_brainpoolP256r1tls13 1285
5496
+
5032
5497
  #define SN_brainpoolP256t1 "brainpoolP256t1"
5033
5498
  #define NID_brainpoolP256t1 928
5034
5499
  #define OBJ_brainpoolP256t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,8L
@@ -5045,6 +5510,9 @@
5045
5510
  #define NID_brainpoolP384r1 931
5046
5511
  #define OBJ_brainpoolP384r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,11L
5047
5512
 
5513
+ #define SN_brainpoolP384r1tls13 "brainpoolP384r1tls13"
5514
+ #define NID_brainpoolP384r1tls13 1286
5515
+
5048
5516
  #define SN_brainpoolP384t1 "brainpoolP384t1"
5049
5517
  #define NID_brainpoolP384t1 932
5050
5518
  #define OBJ_brainpoolP384t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,12L
@@ -5053,6 +5521,9 @@
5053
5521
  #define NID_brainpoolP512r1 933
5054
5522
  #define OBJ_brainpoolP512r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,13L
5055
5523
 
5524
+ #define SN_brainpoolP512r1tls13 "brainpoolP512r1tls13"
5525
+ #define NID_brainpoolP512r1tls13 1287
5526
+
5056
5527
  #define SN_brainpoolP512t1 "brainpoolP512t1"
5057
5528
  #define NID_brainpoolP512t1 934
5058
5529
  #define OBJ_brainpoolP512t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,14L
@@ -5130,17 +5601,17 @@
5130
5601
  #define SN_jurisdictionLocalityName "jurisdictionL"
5131
5602
  #define LN_jurisdictionLocalityName "jurisdictionLocalityName"
5132
5603
  #define NID_jurisdictionLocalityName 955
5133
- #define OBJ_jurisdictionLocalityName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,1L
5604
+ #define OBJ_jurisdictionLocalityName OBJ_ms_corp,60L,2L,1L,1L
5134
5605
 
5135
5606
  #define SN_jurisdictionStateOrProvinceName "jurisdictionST"
5136
5607
  #define LN_jurisdictionStateOrProvinceName "jurisdictionStateOrProvinceName"
5137
5608
  #define NID_jurisdictionStateOrProvinceName 956
5138
- #define OBJ_jurisdictionStateOrProvinceName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,2L
5609
+ #define OBJ_jurisdictionStateOrProvinceName OBJ_ms_corp,60L,2L,1L,2L
5139
5610
 
5140
5611
  #define SN_jurisdictionCountryName "jurisdictionC"
5141
5612
  #define LN_jurisdictionCountryName "jurisdictionCountryName"
5142
5613
  #define NID_jurisdictionCountryName 957
5143
- #define OBJ_jurisdictionCountryName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,3L
5614
+ #define OBJ_jurisdictionCountryName OBJ_ms_corp,60L,2L,1L,3L
5144
5615
 
5145
5616
  #define SN_id_scrypt "id-scrypt"
5146
5617
  #define LN_id_scrypt "scrypt"
@@ -5432,6 +5903,690 @@
5432
5903
  #define LN_aes_256_siv "aes-256-siv"
5433
5904
  #define NID_aes_256_siv 1200
5434
5905
 
5906
+ #define SN_oracle "oracle-organization"
5907
+ #define LN_oracle "Oracle organization"
5908
+ #define NID_oracle 1282
5909
+ #define OBJ_oracle OBJ_joint_iso_itu_t,16L,840L,1L,113894L
5910
+
5911
+ #define SN_oracle_jdk_trustedkeyusage "oracle-jdk-trustedkeyusage"
5912
+ #define LN_oracle_jdk_trustedkeyusage "Trusted key usage (Oracle)"
5913
+ #define NID_oracle_jdk_trustedkeyusage 1283
5914
+ #define OBJ_oracle_jdk_trustedkeyusage OBJ_oracle,746875L,1L,1L
5915
+
5916
+ #define SN_brotli "brotli"
5917
+ #define LN_brotli "Brotli compression"
5918
+ #define NID_brotli 1288
5919
+
5920
+ #define SN_zstd "zstd"
5921
+ #define LN_zstd "Zstandard compression"
5922
+ #define NID_zstd 1289
5923
+
5924
+ #define SN_tcg "tcg"
5925
+ #define LN_tcg "Trusted Computing Group"
5926
+ #define NID_tcg 1324
5927
+ #define OBJ_tcg 2L,23L,133L
5928
+
5929
+ #define SN_tcg_tcpaSpecVersion "tcg-tcpaSpecVersion"
5930
+ #define NID_tcg_tcpaSpecVersion 1325
5931
+ #define OBJ_tcg_tcpaSpecVersion OBJ_tcg,1L
5932
+
5933
+ #define SN_tcg_attribute "tcg-attribute"
5934
+ #define LN_tcg_attribute "Trusted Computing Group Attributes"
5935
+ #define NID_tcg_attribute 1326
5936
+ #define OBJ_tcg_attribute OBJ_tcg,2L
5937
+
5938
+ #define SN_tcg_protocol "tcg-protocol"
5939
+ #define LN_tcg_protocol "Trusted Computing Group Protocols"
5940
+ #define NID_tcg_protocol 1327
5941
+ #define OBJ_tcg_protocol OBJ_tcg,3L
5942
+
5943
+ #define SN_tcg_algorithm "tcg-algorithm"
5944
+ #define LN_tcg_algorithm "Trusted Computing Group Algorithms"
5945
+ #define NID_tcg_algorithm 1328
5946
+ #define OBJ_tcg_algorithm OBJ_tcg,4L
5947
+
5948
+ #define SN_tcg_platformClass "tcg-platformClass"
5949
+ #define LN_tcg_platformClass "Trusted Computing Group Platform Classes"
5950
+ #define NID_tcg_platformClass 1329
5951
+ #define OBJ_tcg_platformClass OBJ_tcg,5L
5952
+
5953
+ #define SN_tcg_ce "tcg-ce"
5954
+ #define LN_tcg_ce "Trusted Computing Group Certificate Extensions"
5955
+ #define NID_tcg_ce 1330
5956
+ #define OBJ_tcg_ce OBJ_tcg,6L
5957
+
5958
+ #define SN_tcg_kp "tcg-kp"
5959
+ #define LN_tcg_kp "Trusted Computing Group Key Purposes"
5960
+ #define NID_tcg_kp 1331
5961
+ #define OBJ_tcg_kp OBJ_tcg,8L
5962
+
5963
+ #define SN_tcg_ca "tcg-ca"
5964
+ #define LN_tcg_ca "Trusted Computing Group Certificate Policies"
5965
+ #define NID_tcg_ca 1332
5966
+ #define OBJ_tcg_ca OBJ_tcg,11L
5967
+
5968
+ #define SN_tcg_address "tcg-address"
5969
+ #define LN_tcg_address "Trusted Computing Group Address Formats"
5970
+ #define NID_tcg_address 1333
5971
+ #define OBJ_tcg_address OBJ_tcg,17L
5972
+
5973
+ #define SN_tcg_registry "tcg-registry"
5974
+ #define LN_tcg_registry "Trusted Computing Group Registry"
5975
+ #define NID_tcg_registry 1334
5976
+ #define OBJ_tcg_registry OBJ_tcg,18L
5977
+
5978
+ #define SN_tcg_traits "tcg-traits"
5979
+ #define LN_tcg_traits "Trusted Computing Group Traits"
5980
+ #define NID_tcg_traits 1335
5981
+ #define OBJ_tcg_traits OBJ_tcg,19L
5982
+
5983
+ #define SN_tcg_common "tcg-common"
5984
+ #define LN_tcg_common "Trusted Computing Group Common"
5985
+ #define NID_tcg_common 1336
5986
+ #define OBJ_tcg_common OBJ_tcg_platformClass,1L
5987
+
5988
+ #define SN_tcg_at_platformManufacturerStr "tcg-at-platformManufacturerStr"
5989
+ #define LN_tcg_at_platformManufacturerStr "TCG Platform Manufacturer String"
5990
+ #define NID_tcg_at_platformManufacturerStr 1337
5991
+ #define OBJ_tcg_at_platformManufacturerStr OBJ_tcg_common,1L
5992
+
5993
+ #define SN_tcg_at_platformManufacturerId "tcg-at-platformManufacturerId"
5994
+ #define LN_tcg_at_platformManufacturerId "TCG Platform Manufacturer ID"
5995
+ #define NID_tcg_at_platformManufacturerId 1338
5996
+ #define OBJ_tcg_at_platformManufacturerId OBJ_tcg_common,2L
5997
+
5998
+ #define SN_tcg_at_platformConfigUri "tcg-at-platformConfigUri"
5999
+ #define LN_tcg_at_platformConfigUri "TCG Platform Configuration URI"
6000
+ #define NID_tcg_at_platformConfigUri 1339
6001
+ #define OBJ_tcg_at_platformConfigUri OBJ_tcg_common,3L
6002
+
6003
+ #define SN_tcg_at_platformModel "tcg-at-platformModel"
6004
+ #define LN_tcg_at_platformModel "TCG Platform Model"
6005
+ #define NID_tcg_at_platformModel 1340
6006
+ #define OBJ_tcg_at_platformModel OBJ_tcg_common,4L
6007
+
6008
+ #define SN_tcg_at_platformVersion "tcg-at-platformVersion"
6009
+ #define LN_tcg_at_platformVersion "TCG Platform Version"
6010
+ #define NID_tcg_at_platformVersion 1341
6011
+ #define OBJ_tcg_at_platformVersion OBJ_tcg_common,5L
6012
+
6013
+ #define SN_tcg_at_platformSerial "tcg-at-platformSerial"
6014
+ #define LN_tcg_at_platformSerial "TCG Platform Serial Number"
6015
+ #define NID_tcg_at_platformSerial 1342
6016
+ #define OBJ_tcg_at_platformSerial OBJ_tcg_common,6L
6017
+
6018
+ #define SN_tcg_at_platformConfiguration "tcg-at-platformConfiguration"
6019
+ #define LN_tcg_at_platformConfiguration "TCG Platform Configuration"
6020
+ #define NID_tcg_at_platformConfiguration 1343
6021
+ #define OBJ_tcg_at_platformConfiguration OBJ_tcg_common,7L
6022
+
6023
+ #define SN_tcg_at_platformIdentifier "tcg-at-platformIdentifier"
6024
+ #define LN_tcg_at_platformIdentifier "TCG Platform Identifier"
6025
+ #define NID_tcg_at_platformIdentifier 1344
6026
+ #define OBJ_tcg_at_platformIdentifier OBJ_tcg_common,8L
6027
+
6028
+ #define SN_tcg_at_tpmManufacturer "tcg-at-tpmManufacturer"
6029
+ #define LN_tcg_at_tpmManufacturer "TPM Manufacturer"
6030
+ #define NID_tcg_at_tpmManufacturer 1345
6031
+ #define OBJ_tcg_at_tpmManufacturer OBJ_tcg_attribute,1L
6032
+
6033
+ #define SN_tcg_at_tpmModel "tcg-at-tpmModel"
6034
+ #define LN_tcg_at_tpmModel "TPM Model"
6035
+ #define NID_tcg_at_tpmModel 1346
6036
+ #define OBJ_tcg_at_tpmModel OBJ_tcg_attribute,2L
6037
+
6038
+ #define SN_tcg_at_tpmVersion "tcg-at-tpmVersion"
6039
+ #define LN_tcg_at_tpmVersion "TPM Version"
6040
+ #define NID_tcg_at_tpmVersion 1347
6041
+ #define OBJ_tcg_at_tpmVersion OBJ_tcg_attribute,3L
6042
+
6043
+ #define SN_tcg_at_securityQualities "tcg-at-securityQualities"
6044
+ #define LN_tcg_at_securityQualities "Security Qualities"
6045
+ #define NID_tcg_at_securityQualities 1348
6046
+ #define OBJ_tcg_at_securityQualities OBJ_tcg_attribute,10L
6047
+
6048
+ #define SN_tcg_at_tpmProtectionProfile "tcg-at-tpmProtectionProfile"
6049
+ #define LN_tcg_at_tpmProtectionProfile "TPM Protection Profile"
6050
+ #define NID_tcg_at_tpmProtectionProfile 1349
6051
+ #define OBJ_tcg_at_tpmProtectionProfile OBJ_tcg_attribute,11L
6052
+
6053
+ #define SN_tcg_at_tpmSecurityTarget "tcg-at-tpmSecurityTarget"
6054
+ #define LN_tcg_at_tpmSecurityTarget "TPM Security Target"
6055
+ #define NID_tcg_at_tpmSecurityTarget 1350
6056
+ #define OBJ_tcg_at_tpmSecurityTarget OBJ_tcg_attribute,12L
6057
+
6058
+ #define SN_tcg_at_tbbProtectionProfile "tcg-at-tbbProtectionProfile"
6059
+ #define LN_tcg_at_tbbProtectionProfile "TBB Protection Profile"
6060
+ #define NID_tcg_at_tbbProtectionProfile 1351
6061
+ #define OBJ_tcg_at_tbbProtectionProfile OBJ_tcg_attribute,13L
6062
+
6063
+ #define SN_tcg_at_tbbSecurityTarget "tcg-at-tbbSecurityTarget"
6064
+ #define LN_tcg_at_tbbSecurityTarget "TBB Security Target"
6065
+ #define NID_tcg_at_tbbSecurityTarget 1352
6066
+ #define OBJ_tcg_at_tbbSecurityTarget OBJ_tcg_attribute,14L
6067
+
6068
+ #define SN_tcg_at_tpmIdLabel "tcg-at-tpmIdLabel"
6069
+ #define LN_tcg_at_tpmIdLabel "TPM ID Label"
6070
+ #define NID_tcg_at_tpmIdLabel 1353
6071
+ #define OBJ_tcg_at_tpmIdLabel OBJ_tcg_attribute,15L
6072
+
6073
+ #define SN_tcg_at_tpmSpecification "tcg-at-tpmSpecification"
6074
+ #define LN_tcg_at_tpmSpecification "TPM Specification"
6075
+ #define NID_tcg_at_tpmSpecification 1354
6076
+ #define OBJ_tcg_at_tpmSpecification OBJ_tcg_attribute,16L
6077
+
6078
+ #define SN_tcg_at_tcgPlatformSpecification "tcg-at-tcgPlatformSpecification"
6079
+ #define LN_tcg_at_tcgPlatformSpecification "TPM Platform Specification"
6080
+ #define NID_tcg_at_tcgPlatformSpecification 1355
6081
+ #define OBJ_tcg_at_tcgPlatformSpecification OBJ_tcg_attribute,17L
6082
+
6083
+ #define SN_tcg_at_tpmSecurityAssertions "tcg-at-tpmSecurityAssertions"
6084
+ #define LN_tcg_at_tpmSecurityAssertions "TPM Security Assertions"
6085
+ #define NID_tcg_at_tpmSecurityAssertions 1356
6086
+ #define OBJ_tcg_at_tpmSecurityAssertions OBJ_tcg_attribute,18L
6087
+
6088
+ #define SN_tcg_at_tbbSecurityAssertions "tcg-at-tbbSecurityAssertions"
6089
+ #define LN_tcg_at_tbbSecurityAssertions "TBB Security Assertions"
6090
+ #define NID_tcg_at_tbbSecurityAssertions 1357
6091
+ #define OBJ_tcg_at_tbbSecurityAssertions OBJ_tcg_attribute,19L
6092
+
6093
+ #define SN_tcg_at_tcgCredentialSpecification "tcg-at-tcgCredentialSpecification"
6094
+ #define LN_tcg_at_tcgCredentialSpecification "TCG Credential Specification"
6095
+ #define NID_tcg_at_tcgCredentialSpecification 1358
6096
+ #define OBJ_tcg_at_tcgCredentialSpecification OBJ_tcg_attribute,23L
6097
+
6098
+ #define SN_tcg_at_tcgCredentialType "tcg-at-tcgCredentialType"
6099
+ #define LN_tcg_at_tcgCredentialType "TCG Credential Type"
6100
+ #define NID_tcg_at_tcgCredentialType 1359
6101
+ #define OBJ_tcg_at_tcgCredentialType OBJ_tcg_attribute,25L
6102
+
6103
+ #define SN_tcg_at_previousPlatformCertificates "tcg-at-previousPlatformCertificates"
6104
+ #define LN_tcg_at_previousPlatformCertificates "TCG Previous Platform Certificates"
6105
+ #define NID_tcg_at_previousPlatformCertificates 1360
6106
+ #define OBJ_tcg_at_previousPlatformCertificates OBJ_tcg_attribute,26L
6107
+
6108
+ #define SN_tcg_at_tbbSecurityAssertions_v3 "tcg-at-tbbSecurityAssertions-v3"
6109
+ #define LN_tcg_at_tbbSecurityAssertions_v3 "TCG TBB Security Assertions V3"
6110
+ #define NID_tcg_at_tbbSecurityAssertions_v3 1361
6111
+ #define OBJ_tcg_at_tbbSecurityAssertions_v3 OBJ_tcg_attribute,27L
6112
+
6113
+ #define SN_tcg_at_cryptographicAnchors "tcg-at-cryptographicAnchors"
6114
+ #define LN_tcg_at_cryptographicAnchors "TCG Cryptographic Anchors"
6115
+ #define NID_tcg_at_cryptographicAnchors 1362
6116
+ #define OBJ_tcg_at_cryptographicAnchors OBJ_tcg_attribute,28L
6117
+
6118
+ #define SN_tcg_at_platformConfiguration_v1 "tcg-at-platformConfiguration-v1"
6119
+ #define LN_tcg_at_platformConfiguration_v1 "Platform Configuration Version 1"
6120
+ #define NID_tcg_at_platformConfiguration_v1 1363
6121
+ #define OBJ_tcg_at_platformConfiguration_v1 OBJ_tcg_at_platformConfiguration,1L
6122
+
6123
+ #define SN_tcg_at_platformConfiguration_v2 "tcg-at-platformConfiguration-v2"
6124
+ #define LN_tcg_at_platformConfiguration_v2 "Platform Configuration Version 2"
6125
+ #define NID_tcg_at_platformConfiguration_v2 1364
6126
+ #define OBJ_tcg_at_platformConfiguration_v2 OBJ_tcg_at_platformConfiguration,2L
6127
+
6128
+ #define SN_tcg_at_platformConfiguration_v3 "tcg-at-platformConfiguration-v3"
6129
+ #define LN_tcg_at_platformConfiguration_v3 "Platform Configuration Version 3"
6130
+ #define NID_tcg_at_platformConfiguration_v3 1365
6131
+ #define OBJ_tcg_at_platformConfiguration_v3 OBJ_tcg_at_platformConfiguration,3L
6132
+
6133
+ #define SN_tcg_at_platformConfigUri_v3 "tcg-at-platformConfigUri-v3"
6134
+ #define LN_tcg_at_platformConfigUri_v3 "Platform Configuration URI Version 3"
6135
+ #define NID_tcg_at_platformConfigUri_v3 1366
6136
+ #define OBJ_tcg_at_platformConfigUri_v3 OBJ_tcg_at_platformConfiguration,4L
6137
+
6138
+ #define SN_tcg_algorithm_null "tcg-algorithm-null"
6139
+ #define LN_tcg_algorithm_null "TCG NULL Algorithm"
6140
+ #define NID_tcg_algorithm_null 1367
6141
+ #define OBJ_tcg_algorithm_null OBJ_tcg_algorithm,1L
6142
+
6143
+ #define SN_tcg_kp_EKCertificate "tcg-kp-EKCertificate"
6144
+ #define LN_tcg_kp_EKCertificate "Endorsement Key Certificate"
6145
+ #define NID_tcg_kp_EKCertificate 1368
6146
+ #define OBJ_tcg_kp_EKCertificate OBJ_tcg_kp,1L
6147
+
6148
+ #define SN_tcg_kp_PlatformAttributeCertificate "tcg-kp-PlatformAttributeCertificate"
6149
+ #define LN_tcg_kp_PlatformAttributeCertificate "Platform Attribute Certificate"
6150
+ #define NID_tcg_kp_PlatformAttributeCertificate 1369
6151
+ #define OBJ_tcg_kp_PlatformAttributeCertificate OBJ_tcg_kp,2L
6152
+
6153
+ #define SN_tcg_kp_AIKCertificate "tcg-kp-AIKCertificate"
6154
+ #define LN_tcg_kp_AIKCertificate "Attestation Identity Key Certificate"
6155
+ #define NID_tcg_kp_AIKCertificate 1370
6156
+ #define OBJ_tcg_kp_AIKCertificate OBJ_tcg_kp,3L
6157
+
6158
+ #define SN_tcg_kp_PlatformKeyCertificate "tcg-kp-PlatformKeyCertificate"
6159
+ #define LN_tcg_kp_PlatformKeyCertificate "Platform Key Certificate"
6160
+ #define NID_tcg_kp_PlatformKeyCertificate 1371
6161
+ #define OBJ_tcg_kp_PlatformKeyCertificate OBJ_tcg_kp,4L
6162
+
6163
+ #define SN_tcg_kp_DeltaPlatformAttributeCertificate "tcg-kp-DeltaPlatformAttributeCertificate"
6164
+ #define LN_tcg_kp_DeltaPlatformAttributeCertificate "Delta Platform Attribute Certificate"
6165
+ #define NID_tcg_kp_DeltaPlatformAttributeCertificate 1372
6166
+ #define OBJ_tcg_kp_DeltaPlatformAttributeCertificate OBJ_tcg_kp,5L
6167
+
6168
+ #define SN_tcg_kp_DeltaPlatformKeyCertificate "tcg-kp-DeltaPlatformKeyCertificate"
6169
+ #define LN_tcg_kp_DeltaPlatformKeyCertificate "Delta Platform Key Certificate"
6170
+ #define NID_tcg_kp_DeltaPlatformKeyCertificate 1373
6171
+ #define OBJ_tcg_kp_DeltaPlatformKeyCertificate OBJ_tcg_kp,6L
6172
+
6173
+ #define SN_tcg_kp_AdditionalPlatformAttributeCertificate "tcg-kp-AdditionalPlatformAttributeCertificate"
6174
+ #define LN_tcg_kp_AdditionalPlatformAttributeCertificate "Additional Platform Attribute Certificate"
6175
+ #define NID_tcg_kp_AdditionalPlatformAttributeCertificate 1374
6176
+ #define OBJ_tcg_kp_AdditionalPlatformAttributeCertificate OBJ_tcg_kp,7L
6177
+
6178
+ #define SN_tcg_kp_AdditionalPlatformKeyCertificate "tcg-kp-AdditionalPlatformKeyCertificate"
6179
+ #define LN_tcg_kp_AdditionalPlatformKeyCertificate "Additional Platform Key Certificate"
6180
+ #define NID_tcg_kp_AdditionalPlatformKeyCertificate 1375
6181
+ #define OBJ_tcg_kp_AdditionalPlatformKeyCertificate OBJ_tcg_kp,8L
6182
+
6183
+ #define SN_tcg_ce_relevantCredentials "tcg-ce-relevantCredentials"
6184
+ #define LN_tcg_ce_relevantCredentials "Relevant Credentials"
6185
+ #define NID_tcg_ce_relevantCredentials 1376
6186
+ #define OBJ_tcg_ce_relevantCredentials OBJ_tcg_ce,2L
6187
+
6188
+ #define SN_tcg_ce_relevantManifests "tcg-ce-relevantManifests"
6189
+ #define LN_tcg_ce_relevantManifests "Relevant Manifests"
6190
+ #define NID_tcg_ce_relevantManifests 1377
6191
+ #define OBJ_tcg_ce_relevantManifests OBJ_tcg_ce,3L
6192
+
6193
+ #define SN_tcg_ce_virtualPlatformAttestationService "tcg-ce-virtualPlatformAttestationService"
6194
+ #define LN_tcg_ce_virtualPlatformAttestationService "Virtual Platform Attestation Service"
6195
+ #define NID_tcg_ce_virtualPlatformAttestationService 1378
6196
+ #define OBJ_tcg_ce_virtualPlatformAttestationService OBJ_tcg_ce,4L
6197
+
6198
+ #define SN_tcg_ce_migrationControllerAttestationService "tcg-ce-migrationControllerAttestationService"
6199
+ #define LN_tcg_ce_migrationControllerAttestationService "Migration Controller Attestation Service"
6200
+ #define NID_tcg_ce_migrationControllerAttestationService 1379
6201
+ #define OBJ_tcg_ce_migrationControllerAttestationService OBJ_tcg_ce,5L
6202
+
6203
+ #define SN_tcg_ce_migrationControllerRegistrationService "tcg-ce-migrationControllerRegistrationService"
6204
+ #define LN_tcg_ce_migrationControllerRegistrationService "Migration Controller Registration Service"
6205
+ #define NID_tcg_ce_migrationControllerRegistrationService 1380
6206
+ #define OBJ_tcg_ce_migrationControllerRegistrationService OBJ_tcg_ce,6L
6207
+
6208
+ #define SN_tcg_ce_virtualPlatformBackupService "tcg-ce-virtualPlatformBackupService"
6209
+ #define LN_tcg_ce_virtualPlatformBackupService "Virtual Platform Backup Service"
6210
+ #define NID_tcg_ce_virtualPlatformBackupService 1381
6211
+ #define OBJ_tcg_ce_virtualPlatformBackupService OBJ_tcg_ce,7L
6212
+
6213
+ #define SN_tcg_prt_tpmIdProtocol "tcg-prt-tpmIdProtocol"
6214
+ #define LN_tcg_prt_tpmIdProtocol "TCG TPM Protocol"
6215
+ #define NID_tcg_prt_tpmIdProtocol 1382
6216
+ #define OBJ_tcg_prt_tpmIdProtocol OBJ_tcg_protocol,1L
6217
+
6218
+ #define SN_tcg_address_ethernetmac "tcg-address-ethernetmac"
6219
+ #define LN_tcg_address_ethernetmac "Ethernet MAC Address"
6220
+ #define NID_tcg_address_ethernetmac 1383
6221
+ #define OBJ_tcg_address_ethernetmac OBJ_tcg_address,1L
6222
+
6223
+ #define SN_tcg_address_wlanmac "tcg-address-wlanmac"
6224
+ #define LN_tcg_address_wlanmac "WLAN MAC Address"
6225
+ #define NID_tcg_address_wlanmac 1384
6226
+ #define OBJ_tcg_address_wlanmac OBJ_tcg_address,2L
6227
+
6228
+ #define SN_tcg_address_bluetoothmac "tcg-address-bluetoothmac"
6229
+ #define LN_tcg_address_bluetoothmac "Bluetooth MAC Address"
6230
+ #define NID_tcg_address_bluetoothmac 1385
6231
+ #define OBJ_tcg_address_bluetoothmac OBJ_tcg_address,3L
6232
+
6233
+ #define SN_tcg_registry_componentClass "tcg-registry-componentClass"
6234
+ #define LN_tcg_registry_componentClass "TCG Component Class"
6235
+ #define NID_tcg_registry_componentClass 1386
6236
+ #define OBJ_tcg_registry_componentClass OBJ_tcg_registry,3L
6237
+
6238
+ #define SN_tcg_registry_componentClass_tcg "tcg-registry-componentClass-tcg"
6239
+ #define LN_tcg_registry_componentClass_tcg "Trusted Computed Group Registry"
6240
+ #define NID_tcg_registry_componentClass_tcg 1387
6241
+ #define OBJ_tcg_registry_componentClass_tcg OBJ_tcg_registry_componentClass,1L
6242
+
6243
+ #define SN_tcg_registry_componentClass_ietf "tcg-registry-componentClass-ietf"
6244
+ #define LN_tcg_registry_componentClass_ietf "Internet Engineering Task Force Registry"
6245
+ #define NID_tcg_registry_componentClass_ietf 1388
6246
+ #define OBJ_tcg_registry_componentClass_ietf OBJ_tcg_registry_componentClass,2L
6247
+
6248
+ #define SN_tcg_registry_componentClass_dmtf "tcg-registry-componentClass-dmtf"
6249
+ #define LN_tcg_registry_componentClass_dmtf "Distributed Management Task Force Registry"
6250
+ #define NID_tcg_registry_componentClass_dmtf 1389
6251
+ #define OBJ_tcg_registry_componentClass_dmtf OBJ_tcg_registry_componentClass,3L
6252
+
6253
+ #define SN_tcg_registry_componentClass_pcie "tcg-registry-componentClass-pcie"
6254
+ #define LN_tcg_registry_componentClass_pcie "PCIE Component Class"
6255
+ #define NID_tcg_registry_componentClass_pcie 1390
6256
+ #define OBJ_tcg_registry_componentClass_pcie OBJ_tcg_registry_componentClass,4L
6257
+
6258
+ #define SN_tcg_registry_componentClass_disk "tcg-registry-componentClass-disk"
6259
+ #define LN_tcg_registry_componentClass_disk "Disk Component Class"
6260
+ #define NID_tcg_registry_componentClass_disk 1391
6261
+ #define OBJ_tcg_registry_componentClass_disk OBJ_tcg_registry_componentClass,5L
6262
+
6263
+ #define SN_tcg_cap_verifiedPlatformCertificate "tcg-cap-verifiedPlatformCertificate"
6264
+ #define LN_tcg_cap_verifiedPlatformCertificate "TCG Verified Platform Certificate CA Policy"
6265
+ #define NID_tcg_cap_verifiedPlatformCertificate 1392
6266
+ #define OBJ_tcg_cap_verifiedPlatformCertificate OBJ_tcg_ca,4L
6267
+
6268
+ #define SN_tcg_tr_ID "tcg-tr-ID"
6269
+ #define LN_tcg_tr_ID "TCG Trait Identifiers"
6270
+ #define NID_tcg_tr_ID 1393
6271
+ #define OBJ_tcg_tr_ID OBJ_tcg_traits,1L
6272
+
6273
+ #define SN_tcg_tr_category "tcg-tr-category"
6274
+ #define LN_tcg_tr_category "TCG Trait Categories"
6275
+ #define NID_tcg_tr_category 1394
6276
+ #define OBJ_tcg_tr_category OBJ_tcg_traits,2L
6277
+
6278
+ #define SN_tcg_tr_registry "tcg-tr-registry"
6279
+ #define LN_tcg_tr_registry "TCG Trait Registries"
6280
+ #define NID_tcg_tr_registry 1395
6281
+ #define OBJ_tcg_tr_registry OBJ_tcg_traits,3L
6282
+
6283
+ #define SN_tcg_tr_ID_Boolean "tcg-tr-ID-Boolean"
6284
+ #define LN_tcg_tr_ID_Boolean "Boolean Trait"
6285
+ #define NID_tcg_tr_ID_Boolean 1396
6286
+ #define OBJ_tcg_tr_ID_Boolean OBJ_tcg_tr_ID,1L
6287
+
6288
+ #define SN_tcg_tr_ID_CertificateIdentifier "tcg-tr-ID-CertificateIdentifier"
6289
+ #define LN_tcg_tr_ID_CertificateIdentifier "Certificate Identifier Trait"
6290
+ #define NID_tcg_tr_ID_CertificateIdentifier 1397
6291
+ #define OBJ_tcg_tr_ID_CertificateIdentifier OBJ_tcg_tr_ID,2L
6292
+
6293
+ #define SN_tcg_tr_ID_CommonCriteria "tcg-tr-ID-CommonCriteria"
6294
+ #define LN_tcg_tr_ID_CommonCriteria "Common Criteria Trait"
6295
+ #define NID_tcg_tr_ID_CommonCriteria 1398
6296
+ #define OBJ_tcg_tr_ID_CommonCriteria OBJ_tcg_tr_ID,3L
6297
+
6298
+ #define SN_tcg_tr_ID_componentClass "tcg-tr-ID-componentClass"
6299
+ #define LN_tcg_tr_ID_componentClass "Component Class Trait"
6300
+ #define NID_tcg_tr_ID_componentClass 1399
6301
+ #define OBJ_tcg_tr_ID_componentClass OBJ_tcg_tr_ID,4L
6302
+
6303
+ #define SN_tcg_tr_ID_componentIdentifierV11 "tcg-tr-ID-componentIdentifierV11"
6304
+ #define LN_tcg_tr_ID_componentIdentifierV11 "Component Identifier V1.1 Trait"
6305
+ #define NID_tcg_tr_ID_componentIdentifierV11 1400
6306
+ #define OBJ_tcg_tr_ID_componentIdentifierV11 OBJ_tcg_tr_ID,5L
6307
+
6308
+ #define SN_tcg_tr_ID_FIPSLevel "tcg-tr-ID-FIPSLevel"
6309
+ #define LN_tcg_tr_ID_FIPSLevel "FIPS Level Trait"
6310
+ #define NID_tcg_tr_ID_FIPSLevel 1401
6311
+ #define OBJ_tcg_tr_ID_FIPSLevel OBJ_tcg_tr_ID,6L
6312
+
6313
+ #define SN_tcg_tr_ID_ISO9000Level "tcg-tr-ID-ISO9000Level"
6314
+ #define LN_tcg_tr_ID_ISO9000Level "ISO 9000 Level Trait"
6315
+ #define NID_tcg_tr_ID_ISO9000Level 1402
6316
+ #define OBJ_tcg_tr_ID_ISO9000Level OBJ_tcg_tr_ID,7L
6317
+
6318
+ #define SN_tcg_tr_ID_networkMAC "tcg-tr-ID-networkMAC"
6319
+ #define LN_tcg_tr_ID_networkMAC "Network MAC Trait"
6320
+ #define NID_tcg_tr_ID_networkMAC 1403
6321
+ #define OBJ_tcg_tr_ID_networkMAC OBJ_tcg_tr_ID,8L
6322
+
6323
+ #define SN_tcg_tr_ID_OID "tcg-tr-ID-OID"
6324
+ #define LN_tcg_tr_ID_OID "Object Identifier Trait"
6325
+ #define NID_tcg_tr_ID_OID 1404
6326
+ #define OBJ_tcg_tr_ID_OID OBJ_tcg_tr_ID,9L
6327
+
6328
+ #define SN_tcg_tr_ID_PEN "tcg-tr-ID-PEN"
6329
+ #define LN_tcg_tr_ID_PEN "Private Enterprise Number Trait"
6330
+ #define NID_tcg_tr_ID_PEN 1405
6331
+ #define OBJ_tcg_tr_ID_PEN OBJ_tcg_tr_ID,10L
6332
+
6333
+ #define SN_tcg_tr_ID_platformFirmwareCapabilities "tcg-tr-ID-platformFirmwareCapabilities"
6334
+ #define LN_tcg_tr_ID_platformFirmwareCapabilities "Platform Firmware Capabilities Trait"
6335
+ #define NID_tcg_tr_ID_platformFirmwareCapabilities 1406
6336
+ #define OBJ_tcg_tr_ID_platformFirmwareCapabilities OBJ_tcg_tr_ID,11L
6337
+
6338
+ #define SN_tcg_tr_ID_platformFirmwareSignatureVerification "tcg-tr-ID-platformFirmwareSignatureVerification"
6339
+ #define LN_tcg_tr_ID_platformFirmwareSignatureVerification "Platform Firmware Signature Verification Trait"
6340
+ #define NID_tcg_tr_ID_platformFirmwareSignatureVerification 1407
6341
+ #define OBJ_tcg_tr_ID_platformFirmwareSignatureVerification OBJ_tcg_tr_ID,12L
6342
+
6343
+ #define SN_tcg_tr_ID_platformFirmwareUpdateCompliance "tcg-tr-ID-platformFirmwareUpdateCompliance"
6344
+ #define LN_tcg_tr_ID_platformFirmwareUpdateCompliance "Platform Firmware Update Compliance Trait"
6345
+ #define NID_tcg_tr_ID_platformFirmwareUpdateCompliance 1408
6346
+ #define OBJ_tcg_tr_ID_platformFirmwareUpdateCompliance OBJ_tcg_tr_ID,13L
6347
+
6348
+ #define SN_tcg_tr_ID_platformHardwareCapabilities "tcg-tr-ID-platformHardwareCapabilities"
6349
+ #define LN_tcg_tr_ID_platformHardwareCapabilities "Platform Hardware Capabilities Trait"
6350
+ #define NID_tcg_tr_ID_platformHardwareCapabilities 1409
6351
+ #define OBJ_tcg_tr_ID_platformHardwareCapabilities OBJ_tcg_tr_ID,14L
6352
+
6353
+ #define SN_tcg_tr_ID_RTM "tcg-tr-ID-RTM"
6354
+ #define LN_tcg_tr_ID_RTM "Root of Trust for Measurement Trait"
6355
+ #define NID_tcg_tr_ID_RTM 1410
6356
+ #define OBJ_tcg_tr_ID_RTM OBJ_tcg_tr_ID,15L
6357
+
6358
+ #define SN_tcg_tr_ID_status "tcg-tr-ID-status"
6359
+ #define LN_tcg_tr_ID_status "Attribute Status Trait"
6360
+ #define NID_tcg_tr_ID_status 1411
6361
+ #define OBJ_tcg_tr_ID_status OBJ_tcg_tr_ID,16L
6362
+
6363
+ #define SN_tcg_tr_ID_URI "tcg-tr-ID-URI"
6364
+ #define LN_tcg_tr_ID_URI "Uniform Resource Identifier Trait"
6365
+ #define NID_tcg_tr_ID_URI 1412
6366
+ #define OBJ_tcg_tr_ID_URI OBJ_tcg_tr_ID,17L
6367
+
6368
+ #define SN_tcg_tr_ID_UTF8String "tcg-tr-ID-UTF8String"
6369
+ #define LN_tcg_tr_ID_UTF8String "UTF8String Trait"
6370
+ #define NID_tcg_tr_ID_UTF8String 1413
6371
+ #define OBJ_tcg_tr_ID_UTF8String OBJ_tcg_tr_ID,18L
6372
+
6373
+ #define SN_tcg_tr_ID_IA5String "tcg-tr-ID-IA5String"
6374
+ #define LN_tcg_tr_ID_IA5String "IA5String Trait"
6375
+ #define NID_tcg_tr_ID_IA5String 1414
6376
+ #define OBJ_tcg_tr_ID_IA5String OBJ_tcg_tr_ID,19L
6377
+
6378
+ #define SN_tcg_tr_ID_PEMCertString "tcg-tr-ID-PEMCertString"
6379
+ #define LN_tcg_tr_ID_PEMCertString "PEM-Encoded Certificate String Trait"
6380
+ #define NID_tcg_tr_ID_PEMCertString 1415
6381
+ #define OBJ_tcg_tr_ID_PEMCertString OBJ_tcg_tr_ID,20L
6382
+
6383
+ #define SN_tcg_tr_ID_PublicKey "tcg-tr-ID-PublicKey"
6384
+ #define LN_tcg_tr_ID_PublicKey "Public Key Trait"
6385
+ #define NID_tcg_tr_ID_PublicKey 1416
6386
+ #define OBJ_tcg_tr_ID_PublicKey OBJ_tcg_tr_ID,21L
6387
+
6388
+ #define SN_tcg_tr_cat_platformManufacturer "tcg-tr-cat-platformManufacturer"
6389
+ #define LN_tcg_tr_cat_platformManufacturer "Platform Manufacturer Trait Category"
6390
+ #define NID_tcg_tr_cat_platformManufacturer 1417
6391
+ #define OBJ_tcg_tr_cat_platformManufacturer OBJ_tcg_tr_category,1L
6392
+
6393
+ #define SN_tcg_tr_cat_platformModel "tcg-tr-cat-platformModel"
6394
+ #define LN_tcg_tr_cat_platformModel "Platform Model Trait Category"
6395
+ #define NID_tcg_tr_cat_platformModel 1418
6396
+ #define OBJ_tcg_tr_cat_platformModel OBJ_tcg_tr_category,2L
6397
+
6398
+ #define SN_tcg_tr_cat_platformVersion "tcg-tr-cat-platformVersion"
6399
+ #define LN_tcg_tr_cat_platformVersion "Platform Version Trait Category"
6400
+ #define NID_tcg_tr_cat_platformVersion 1419
6401
+ #define OBJ_tcg_tr_cat_platformVersion OBJ_tcg_tr_category,3L
6402
+
6403
+ #define SN_tcg_tr_cat_platformSerial "tcg-tr-cat-platformSerial"
6404
+ #define LN_tcg_tr_cat_platformSerial "Platform Serial Trait Category"
6405
+ #define NID_tcg_tr_cat_platformSerial 1420
6406
+ #define OBJ_tcg_tr_cat_platformSerial OBJ_tcg_tr_category,4L
6407
+
6408
+ #define SN_tcg_tr_cat_platformManufacturerIdentifier "tcg-tr-cat-platformManufacturerIdentifier"
6409
+ #define LN_tcg_tr_cat_platformManufacturerIdentifier "Platform Manufacturer Identifier Trait Category"
6410
+ #define NID_tcg_tr_cat_platformManufacturerIdentifier 1421
6411
+ #define OBJ_tcg_tr_cat_platformManufacturerIdentifier OBJ_tcg_tr_category,5L
6412
+
6413
+ #define SN_tcg_tr_cat_platformOwnership "tcg-tr-cat-platformOwnership"
6414
+ #define LN_tcg_tr_cat_platformOwnership "Platform Ownership Trait Category"
6415
+ #define NID_tcg_tr_cat_platformOwnership 1422
6416
+ #define OBJ_tcg_tr_cat_platformOwnership OBJ_tcg_tr_category,6L
6417
+
6418
+ #define SN_tcg_tr_cat_componentClass "tcg-tr-cat-componentClass"
6419
+ #define LN_tcg_tr_cat_componentClass "Component Class Trait Category"
6420
+ #define NID_tcg_tr_cat_componentClass 1423
6421
+ #define OBJ_tcg_tr_cat_componentClass OBJ_tcg_tr_category,7L
6422
+
6423
+ #define SN_tcg_tr_cat_componentManufacturer "tcg-tr-cat-componentManufacturer"
6424
+ #define LN_tcg_tr_cat_componentManufacturer "Component Manufacturer Trait Category"
6425
+ #define NID_tcg_tr_cat_componentManufacturer 1424
6426
+ #define OBJ_tcg_tr_cat_componentManufacturer OBJ_tcg_tr_category,8L
6427
+
6428
+ #define SN_tcg_tr_cat_componentModel "tcg-tr-cat-componentModel"
6429
+ #define LN_tcg_tr_cat_componentModel "Component Model Trait Category"
6430
+ #define NID_tcg_tr_cat_componentModel 1425
6431
+ #define OBJ_tcg_tr_cat_componentModel OBJ_tcg_tr_category,9L
6432
+
6433
+ #define SN_tcg_tr_cat_componentSerial "tcg-tr-cat-componentSerial"
6434
+ #define LN_tcg_tr_cat_componentSerial "Component Serial Trait Category"
6435
+ #define NID_tcg_tr_cat_componentSerial 1426
6436
+ #define OBJ_tcg_tr_cat_componentSerial OBJ_tcg_tr_category,10L
6437
+
6438
+ #define SN_tcg_tr_cat_componentStatus "tcg-tr-cat-componentStatus"
6439
+ #define LN_tcg_tr_cat_componentStatus "Component Status Trait Category"
6440
+ #define NID_tcg_tr_cat_componentStatus 1427
6441
+ #define OBJ_tcg_tr_cat_componentStatus OBJ_tcg_tr_category,11L
6442
+
6443
+ #define SN_tcg_tr_cat_componentLocation "tcg-tr-cat-componentLocation"
6444
+ #define LN_tcg_tr_cat_componentLocation "Component Location Trait Category"
6445
+ #define NID_tcg_tr_cat_componentLocation 1428
6446
+ #define OBJ_tcg_tr_cat_componentLocation OBJ_tcg_tr_category,12L
6447
+
6448
+ #define SN_tcg_tr_cat_componentRevision "tcg-tr-cat-componentRevision"
6449
+ #define LN_tcg_tr_cat_componentRevision "Component Revision Trait Category"
6450
+ #define NID_tcg_tr_cat_componentRevision 1429
6451
+ #define OBJ_tcg_tr_cat_componentRevision OBJ_tcg_tr_category,13L
6452
+
6453
+ #define SN_tcg_tr_cat_componentFieldReplaceable "tcg-tr-cat-componentFieldReplaceable"
6454
+ #define LN_tcg_tr_cat_componentFieldReplaceable "Component Field Replaceable Trait Category"
6455
+ #define NID_tcg_tr_cat_componentFieldReplaceable 1430
6456
+ #define OBJ_tcg_tr_cat_componentFieldReplaceable OBJ_tcg_tr_category,14L
6457
+
6458
+ #define SN_tcg_tr_cat_EKCertificate "tcg-tr-cat-EKCertificate"
6459
+ #define LN_tcg_tr_cat_EKCertificate "EK Certificate Trait Category"
6460
+ #define NID_tcg_tr_cat_EKCertificate 1431
6461
+ #define OBJ_tcg_tr_cat_EKCertificate OBJ_tcg_tr_category,15L
6462
+
6463
+ #define SN_tcg_tr_cat_IAKCertificate "tcg-tr-cat-IAKCertificate"
6464
+ #define LN_tcg_tr_cat_IAKCertificate "IAK Certificate Trait Category"
6465
+ #define NID_tcg_tr_cat_IAKCertificate 1432
6466
+ #define OBJ_tcg_tr_cat_IAKCertificate OBJ_tcg_tr_category,16L
6467
+
6468
+ #define SN_tcg_tr_cat_IDevIDCertificate "tcg-tr-cat-IDevIDCertificate"
6469
+ #define LN_tcg_tr_cat_IDevIDCertificate "IDevID Certificate Trait Category"
6470
+ #define NID_tcg_tr_cat_IDevIDCertificate 1433
6471
+ #define OBJ_tcg_tr_cat_IDevIDCertificate OBJ_tcg_tr_category,17L
6472
+
6473
+ #define SN_tcg_tr_cat_DICECertificate "tcg-tr-cat-DICECertificate"
6474
+ #define LN_tcg_tr_cat_DICECertificate "DICE Certificate Trait Category"
6475
+ #define NID_tcg_tr_cat_DICECertificate 1434
6476
+ #define OBJ_tcg_tr_cat_DICECertificate OBJ_tcg_tr_category,18L
6477
+
6478
+ #define SN_tcg_tr_cat_SPDMCertificate "tcg-tr-cat-SPDMCertificate"
6479
+ #define LN_tcg_tr_cat_SPDMCertificate "SPDM Certificate Trait Category"
6480
+ #define NID_tcg_tr_cat_SPDMCertificate 1435
6481
+ #define OBJ_tcg_tr_cat_SPDMCertificate OBJ_tcg_tr_category,19L
6482
+
6483
+ #define SN_tcg_tr_cat_PEMCertificate "tcg-tr-cat-PEMCertificate"
6484
+ #define LN_tcg_tr_cat_PEMCertificate "PEM Certificate Trait Category"
6485
+ #define NID_tcg_tr_cat_PEMCertificate 1436
6486
+ #define OBJ_tcg_tr_cat_PEMCertificate OBJ_tcg_tr_category,20L
6487
+
6488
+ #define SN_tcg_tr_cat_PlatformCertificate "tcg-tr-cat-PlatformCertificate"
6489
+ #define LN_tcg_tr_cat_PlatformCertificate "Platform Certificate Trait Category"
6490
+ #define NID_tcg_tr_cat_PlatformCertificate 1437
6491
+ #define OBJ_tcg_tr_cat_PlatformCertificate OBJ_tcg_tr_category,21L
6492
+
6493
+ #define SN_tcg_tr_cat_DeltaPlatformCertificate "tcg-tr-cat-DeltaPlatformCertificate"
6494
+ #define LN_tcg_tr_cat_DeltaPlatformCertificate "Delta Platform Certificate Trait Category"
6495
+ #define NID_tcg_tr_cat_DeltaPlatformCertificate 1438
6496
+ #define OBJ_tcg_tr_cat_DeltaPlatformCertificate OBJ_tcg_tr_category,22L
6497
+
6498
+ #define SN_tcg_tr_cat_RebasePlatformCertificate "tcg-tr-cat-RebasePlatformCertificate"
6499
+ #define LN_tcg_tr_cat_RebasePlatformCertificate "Rebase Platform Certificate Trait Category"
6500
+ #define NID_tcg_tr_cat_RebasePlatformCertificate 1439
6501
+ #define OBJ_tcg_tr_cat_RebasePlatformCertificate OBJ_tcg_tr_category,23L
6502
+
6503
+ #define SN_tcg_tr_cat_genericCertificate "tcg-tr-cat-genericCertificate"
6504
+ #define LN_tcg_tr_cat_genericCertificate "Generic Certificate Trait Category"
6505
+ #define NID_tcg_tr_cat_genericCertificate 1440
6506
+ #define OBJ_tcg_tr_cat_genericCertificate OBJ_tcg_tr_category,24L
6507
+
6508
+ #define SN_tcg_tr_cat_CommonCriteria "tcg-tr-cat-CommonCriteria"
6509
+ #define LN_tcg_tr_cat_CommonCriteria "Common Criteria Trait Category"
6510
+ #define NID_tcg_tr_cat_CommonCriteria 1441
6511
+ #define OBJ_tcg_tr_cat_CommonCriteria OBJ_tcg_tr_category,25L
6512
+
6513
+ #define SN_tcg_tr_cat_componentIdentifierV11 "tcg-tr-cat-componentIdentifierV11"
6514
+ #define LN_tcg_tr_cat_componentIdentifierV11 "Component Identifier V1.1 Trait Category"
6515
+ #define NID_tcg_tr_cat_componentIdentifierV11 1442
6516
+ #define OBJ_tcg_tr_cat_componentIdentifierV11 OBJ_tcg_tr_category,26L
6517
+
6518
+ #define SN_tcg_tr_cat_FIPSLevel "tcg-tr-cat-FIPSLevel"
6519
+ #define LN_tcg_tr_cat_FIPSLevel "FIPS Level Trait Category"
6520
+ #define NID_tcg_tr_cat_FIPSLevel 1443
6521
+ #define OBJ_tcg_tr_cat_FIPSLevel OBJ_tcg_tr_category,27L
6522
+
6523
+ #define SN_tcg_tr_cat_ISO9000 "tcg-tr-cat-ISO9000"
6524
+ #define LN_tcg_tr_cat_ISO9000 "ISO 9000 Trait Category"
6525
+ #define NID_tcg_tr_cat_ISO9000 1444
6526
+ #define OBJ_tcg_tr_cat_ISO9000 OBJ_tcg_tr_category,28L
6527
+
6528
+ #define SN_tcg_tr_cat_networkMAC "tcg-tr-cat-networkMAC"
6529
+ #define LN_tcg_tr_cat_networkMAC "Network MAC Trait Category"
6530
+ #define NID_tcg_tr_cat_networkMAC 1445
6531
+ #define OBJ_tcg_tr_cat_networkMAC OBJ_tcg_tr_category,29L
6532
+
6533
+ #define SN_tcg_tr_cat_attestationProtocol "tcg-tr-cat-attestationProtocol"
6534
+ #define LN_tcg_tr_cat_attestationProtocol "Attestation Protocol Trait Category"
6535
+ #define NID_tcg_tr_cat_attestationProtocol 1446
6536
+ #define OBJ_tcg_tr_cat_attestationProtocol OBJ_tcg_tr_category,30L
6537
+
6538
+ #define SN_tcg_tr_cat_PEN "tcg-tr-cat-PEN"
6539
+ #define LN_tcg_tr_cat_PEN "Private Enterprise Number Trait Category"
6540
+ #define NID_tcg_tr_cat_PEN 1447
6541
+ #define OBJ_tcg_tr_cat_PEN OBJ_tcg_tr_category,31L
6542
+
6543
+ #define SN_tcg_tr_cat_platformFirmwareCapabilities "tcg-tr-cat-platformFirmwareCapabilities"
6544
+ #define LN_tcg_tr_cat_platformFirmwareCapabilities "Platform Firmware Capabilities Trait Category"
6545
+ #define NID_tcg_tr_cat_platformFirmwareCapabilities 1448
6546
+ #define OBJ_tcg_tr_cat_platformFirmwareCapabilities OBJ_tcg_tr_category,32L
6547
+
6548
+ #define SN_tcg_tr_cat_platformHardwareCapabilities "tcg-tr-cat-platformHardwareCapabilities"
6549
+ #define LN_tcg_tr_cat_platformHardwareCapabilities "Platform Hardware Capabilities Trait Category"
6550
+ #define NID_tcg_tr_cat_platformHardwareCapabilities 1449
6551
+ #define OBJ_tcg_tr_cat_platformHardwareCapabilities OBJ_tcg_tr_category,33L
6552
+
6553
+ #define SN_tcg_tr_cat_platformFirmwareSignatureVerification "tcg-tr-cat-platformFirmwareSignatureVerification"
6554
+ #define LN_tcg_tr_cat_platformFirmwareSignatureVerification "Platform Firmware Signature Verification Trait Category"
6555
+ #define NID_tcg_tr_cat_platformFirmwareSignatureVerification 1450
6556
+ #define OBJ_tcg_tr_cat_platformFirmwareSignatureVerification OBJ_tcg_tr_category,34L
6557
+
6558
+ #define SN_tcg_tr_cat_platformFirmwareUpdateCompliance "tcg-tr-cat-platformFirmwareUpdateCompliance"
6559
+ #define LN_tcg_tr_cat_platformFirmwareUpdateCompliance "Platform Firmware Update Compliance Trait Category"
6560
+ #define NID_tcg_tr_cat_platformFirmwareUpdateCompliance 1451
6561
+ #define OBJ_tcg_tr_cat_platformFirmwareUpdateCompliance OBJ_tcg_tr_category,35L
6562
+
6563
+ #define SN_tcg_tr_cat_RTM "tcg-tr-cat-RTM"
6564
+ #define LN_tcg_tr_cat_RTM "Root of Trust of Measurement Trait Category"
6565
+ #define NID_tcg_tr_cat_RTM 1452
6566
+ #define OBJ_tcg_tr_cat_RTM OBJ_tcg_tr_category,36L
6567
+
6568
+ #define SN_tcg_tr_cat_PublicKey "tcg-tr-cat-PublicKey"
6569
+ #define LN_tcg_tr_cat_PublicKey "Public Key Trait Category"
6570
+ #define NID_tcg_tr_cat_PublicKey 1453
6571
+ #define OBJ_tcg_tr_cat_PublicKey OBJ_tcg_tr_category,37L
6572
+
6573
+ #define OBJ_nistKems OBJ_nistAlgorithms,4L
6574
+
6575
+ #define SN_ML_KEM_512 "id-alg-ml-kem-512"
6576
+ #define LN_ML_KEM_512 "ML-KEM-512"
6577
+ #define NID_ML_KEM_512 1454
6578
+ #define OBJ_ML_KEM_512 OBJ_nistKems,1L
6579
+
6580
+ #define SN_ML_KEM_768 "id-alg-ml-kem-768"
6581
+ #define LN_ML_KEM_768 "ML-KEM-768"
6582
+ #define NID_ML_KEM_768 1455
6583
+ #define OBJ_ML_KEM_768 OBJ_nistKems,2L
6584
+
6585
+ #define SN_ML_KEM_1024 "id-alg-ml-kem-1024"
6586
+ #define LN_ML_KEM_1024 "ML-KEM-1024"
6587
+ #define NID_ML_KEM_1024 1456
6588
+ #define OBJ_ML_KEM_1024 OBJ_nistKems,3L
6589
+
5435
6590
  #endif /* OPENSSL_OBJ_MAC_H */
5436
6591
 
5437
6592
  #ifndef OPENSSL_NO_DEPRECATED_3_0