node-linux-s390x 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.
- package/CHANGELOG.md +173 -0
- package/LICENSE +1 -1
- package/README.md +31 -28
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -0
- package/include/node/node_version.h +2 -2
- package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/BSD-x86/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/BSD-x86/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/BSD-x86/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/BSD-x86/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/BSD-x86_64/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/configuration.h +49 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/VC-WIN32/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/VC-WIN32/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/VC-WIN32/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/configuration.h +49 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/configuration.h +49 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/configuration.h +49 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/configuration.h +49 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/VC-WIN64A/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/configuration.h +49 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/configuration.h +49 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-aarch64/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-aarch64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-aarch64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-armv4/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-armv4/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-armv4/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-armv4/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-elf/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-elf/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-elf/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-elf/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-elf/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-elf/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-ppc64le/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-x86_64/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-x86_64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-x86_64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux32-s390x/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux32-s390x/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux32-s390x/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/crypto/buildinf.h +5 -4
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-mips64/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-mips64/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-mips64/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-s390x/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-s390x/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-s390x/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +9 -10
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +9 -10
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +8 -9
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +8 -9
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/progs.h +2 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +8 -9
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/progs.h +2 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +7 -8
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/internal/param_names.h +469 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/asn1.h +22 -16
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/bio.h +157 -22
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/cmp.h +137 -7
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/cms.h +28 -10
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/comp.h +98 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/conf.h +4 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/configuration.h +52 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/core_names.h +575 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crmf.h +59 -8
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crypto.h +33 -8
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ct.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/err.h +10 -2
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/fipskey.h +6 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/lhash.h +158 -48
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h +6 -6
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs12.h +17 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs7.h +12 -9
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ssl.h +382 -48
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509.h +46 -19
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509_acert.h +294 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509_vfy.h +65 -56
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509v3.h +534 -16
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/progs.h +2 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/providers/common/include/prov/der_ml_dsa.h +40 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/providers/common/include/prov/der_slh_dsa.h +103 -0
- package/include/node/openssl/asn1err.h +3 -1
- package/include/node/openssl/async.h +9 -1
- package/include/node/openssl/bioerr.h +8 -1
- package/include/node/openssl/bn.h +8 -1
- package/include/node/openssl/byteorder.h +339 -0
- package/include/node/openssl/cmperr.h +19 -1
- package/include/node/openssl/cmserr.h +1 -0
- package/include/node/openssl/comp.h +4 -58
- package/include/node/openssl/comp_asm.h +53 -0
- package/include/node/openssl/comp_no-asm.h +57 -0
- package/include/node/openssl/comperr.h +7 -0
- package/include/node/openssl/conferr.h +1 -1
- package/include/node/openssl/core.h +4 -1
- package/include/node/openssl/core_dispatch.h +211 -13
- package/include/node/openssl/core_names.h +4 -555
- package/include/node/openssl/core_names_asm.h +53 -0
- package/include/node/openssl/core_names_no-asm.h +57 -0
- package/include/node/openssl/crmferr.h +8 -1
- package/include/node/openssl/cryptoerr.h +11 -1
- package/include/node/openssl/dh.h +8 -1
- package/include/node/openssl/dherr.h +1 -0
- package/include/node/openssl/dsa.h +17 -12
- package/include/node/openssl/e_os2.h +8 -3
- package/include/node/openssl/e_ostime.h +38 -0
- package/include/node/openssl/ec.h +22 -3
- package/include/node/openssl/engine.h +3 -3
- package/include/node/openssl/evp.h +185 -47
- package/include/node/openssl/evperr.h +15 -1
- package/include/node/openssl/fips_names.h +12 -22
- package/include/node/openssl/hpke.h +169 -0
- package/include/node/openssl/http.h +16 -7
- package/include/node/openssl/httperr.h +2 -1
- package/include/node/openssl/indicator.h +31 -0
- package/include/node/openssl/macros.h +47 -2
- package/include/node/openssl/ml_kem.h +31 -0
- package/include/node/openssl/obj_mac.h +1172 -17
- package/include/node/openssl/objects.h +2 -1
- package/include/node/openssl/param_names.h +5 -0
- package/include/node/openssl/param_names_asm.h +53 -0
- package/include/node/openssl/param_names_no-asm.h +57 -0
- package/include/node/openssl/params.h +3 -0
- package/include/node/openssl/pem.h +10 -1
- package/include/node/openssl/pemerr.h +2 -1
- package/include/node/openssl/pkcs12err.h +2 -1
- package/include/node/openssl/prov_ssl.h +5 -1
- package/include/node/openssl/proverr.h +22 -1
- package/include/node/openssl/provider.h +36 -2
- package/include/node/openssl/quic.h +75 -0
- package/include/node/openssl/rand.h +13 -5
- package/include/node/openssl/randerr.h +3 -1
- package/include/node/openssl/rsa.h +11 -0
- package/include/node/openssl/self_test.h +21 -1
- package/include/node/openssl/sha.h +2 -1
- package/include/node/openssl/srtp.h +20 -8
- package/include/node/openssl/ssl3.h +12 -1
- package/include/node/openssl/sslerr.h +37 -1
- package/include/node/openssl/sslerr_legacy.h +1 -2
- package/include/node/openssl/store.h +10 -2
- package/include/node/openssl/thread.h +31 -0
- package/include/node/openssl/tls1.h +68 -73
- package/include/node/openssl/trace.h +13 -2
- package/include/node/openssl/ts.h +23 -4
- package/include/node/openssl/types.h +23 -11
- package/include/node/openssl/x509_acert.h +5 -0
- package/include/node/openssl/x509_acert_asm.h +53 -0
- package/include/node/openssl/x509_acert_no-asm.h +57 -0
- package/include/node/openssl/x509err.h +2 -1
- package/include/node/openssl/x509v3err.h +5 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +38 -3
- 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-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
1521
|
-
#define
|
|
1522
|
-
#define
|
|
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
|
|
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
|
|
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
|
|
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
|