Last active
May 9, 2025 08:20
-
-
Save robstradling/1a1fd1d1feeb0162a0bb87c049386307 to your computer and use it in GitHub Desktop.
Compare Root Certificate information in crt.sh against CCADB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script uses the public crt.sh database to compare Root Certificate information in crt.sh against the same information in the CCADB AllCertificateRecordsCSVFormatv2 and AllIncludedRootCertsCSV reports. | |
# | |
# psql doesn't support multi-line \COPY statements, so we use the HEREDOC workaround described by https://minhajuddin.com/2017/05/18/how-to-pass-a-multi-line-copy-sql-to-psql/ | |
# | |
# Since long-running crt.sh:5432 queries are often killed off for various reasons, this script makes multiple attempts. If all of the attempts fail, try running this script again later. | |
ERRORFILE=`mktemp` | |
TIMESTAMP=`date -Iseconds | sed "s/+00:00$/Z/g"` | |
for i in {1..10}; do | |
cat <<SQL | tr -d '\n' | psql -h crt.sh -p 5432 -U guest -d certwatch -v ON_ERROR_STOP=1 -X 2>$ERRORFILE | |
\COPY ( | |
SELECT /* Record identifiers */ | |
cc.CCADB_RECORD_ID, c.ID AS CRTSH_ID, | |
/* Discrepancy tracking */ | |
( | |
(cc.CERT_NAME != get_ca_name_attribute(ca.ID)) | |
OR (NOT x509_verify(c.CERTIFICATE, ca.PUBLIC_KEY)) | |
OR (cc.CERT_SHA256 != digest(c.CERTIFICATE, 'sha256')) | |
OR (to_date(cc.VALID_TO, 'YYYY.MM.DD') != date_trunc('day', x509_notAfter(c.CERTIFICATE))) | |
OR (coalesce(sort_delimited_list(cc.APPLE_TRUST_BITS, ';'), '') != coalesce(apple.PURPOSES, '')) | |
OR ((CASE WHEN cc.CHROME_STATUS = 'Included' THEN 'Server Authentication' ELSE '' END) != coalesce(chrome.PURPOSES, '')) | |
OR (coalesce(sort_delimited_list(cc.MICROSOFT_EKUS, ';'), '') != coalesce(microsoft.PURPOSES, '')) | |
OR (coalesce(sort_delimited_list(nullif(cc.MOZILLA_TRUST_BITS, 'All Trust Bits Turned Off'), ';'), '') != coalesce(mozilla.PURPOSES, '')) | |
) AS HAS_ANY_DISCREPANCIES, | |
(cc.CERT_NAME != get_ca_name_attribute(ca.ID)) AS HAS_CERT_NAME_MISMATCH, | |
(NOT x509_verify(c.CERTIFICATE, ca.PUBLIC_KEY)) AS IS_NOT_SELF_SIGNED, | |
(cc.CERT_SHA256 != digest(c.CERTIFICATE, 'sha256')) AS HAS_CERT_SHA256_MISMATCH, | |
(to_date(cc.VALID_TO, 'YYYY.MM.DD') != date_trunc('day', x509_notAfter(c.CERTIFICATE))) AS HAS_NOTAFTER_MISMATCH, | |
(coalesce(sort_delimited_list(cc.APPLE_TRUST_BITS, ';'), '') != coalesce(apple.PURPOSES, '')) AS HAS_APPLE_TRUST_BITS_MISMATCH, | |
((CASE WHEN cc.CHROME_STATUS = 'Included' THEN 'Server Authentication' ELSE '' END) != coalesce(chrome.PURPOSES, '')) AS HAS_CHROME_TRUST_BITS_MISMATCH, | |
(coalesce(sort_delimited_list(cc.MICROSOFT_EKUS, ';'), '') != coalesce(microsoft.PURPOSES, '')) AS HAS_MICROSOFT_EKUS_MISMATCH, | |
(coalesce(sort_delimited_list(nullif(cc.MOZILLA_TRUST_BITS, 'All Trust Bits Turned Off'), ';'), '') != coalesce(mozilla.PURPOSES, '')) AS HAS_MOZILLA_TRUST_BITS_MISMATCH, | |
/* CA Owners (sourced from CCADB only) */ | |
cc.INCLUDED_CERTIFICATE_OWNER, nullif(cc.SUBORDINATE_CA_OWNER, '') SUBORDINATE_CA_OWNER, | |
/* Certificate Name */ | |
cc.CERT_NAME AS CERT_NAME_CCADB, get_ca_name_attribute(ca.ID) AS CERT_NAME_CRTSH, | |
/* Certificate Type */ | |
cc.CERT_RECORD_TYPE AS CERT_RECORD_TYPE_CCADB, CASE WHEN x509_verify(c.CERTIFICATE, ca.PUBLIC_KEY) THEN 'Root Certificate' ELSE 'Intermediate Certificate' END AS CERT_RECORD_TYPE_CRTSH, | |
/* SHA-256 Fingerprint */ | |
upper(encode(cc.CERT_SHA256, 'hex')) AS CERT_SHA256_CCADB, upper(encode(digest(c.CERTIFICATE, 'sha256'), 'hex')) AS CERT_SHA256_CRTSH, | |
/* Valid To */ | |
cc.VALID_TO AS VALID_TO_CCADB, x509_notAfter(c.CERTIFICATE) AS VALID_TO_CRTSH, | |
/* Root Store Statuses */ | |
sort_delimited_list(cc.APPLE_TRUST_BITS, ';') AS APPLE_TRUST_BITS_CCADB, apple.PURPOSES AS APPLE_TRUST_BITS_CRTSH, | |
CASE WHEN cc.CHROME_STATUS = 'Included' THEN 'Server Authentication' ELSE NULL END AS CHROME_TRUST_BITS_CCADB, chrome.PURPOSES AS CHROME_TRUST_BITS_CRTSH, | |
sort_delimited_list(cc.MICROSOFT_EKUS, ';') AS MICROSOFT_EKUS_CCADB, microsoft.PURPOSES AS MICROSOFT_EKUS_CRTSH, | |
sort_delimited_list(nullif(cc.MOZILLA_TRUST_BITS, 'All Trust Bits Turned Off'), ';') AS MOZILLA_TRUST_BITS_CCADB, mozilla.PURPOSES AS MOZILLA_TRUST_BITS_CRTSH | |
FROM ccadb_certificate cc | |
JOIN ca_certificate cac ON (cc.CERTIFICATE_ID = cac.CERTIFICATE_ID) | |
JOIN ca ON (cac.CA_ID = ca.ID) | |
JOIN certificate c ON (cac.CERTIFICATE_ID = c.ID) | |
LEFT JOIN LATERAL ( | |
SELECT array_to_string(array_agg(coalesce(tp.OID_NAME, tp.PURPOSE) ORDER BY coalesce(tp.OID_NAME, tp.PURPOSE)), ';') AS PURPOSES | |
FROM root_trust_purpose rtp | |
JOIN trust_purpose tp ON (rtp.TRUST_PURPOSE_ID = tp.ID) | |
WHERE rtp.CERTIFICATE_ID = c.ID | |
AND rtp.TRUST_CONTEXT_ID = 12 | |
AND coalesce(rtp.DISABLED_FROM, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
AND coalesce(rtp.NOTBEFORE_UNTIL, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
) apple ON TRUE | |
LEFT JOIN LATERAL ( | |
SELECT array_to_string(array_agg(tp.PURPOSE ORDER BY tp.PURPOSE), ';') AS PURPOSES | |
FROM root_trust_purpose rtp | |
JOIN trust_purpose tp ON (rtp.TRUST_PURPOSE_ID = tp.ID) | |
WHERE rtp.CERTIFICATE_ID = c.ID | |
AND rtp.TRUST_CONTEXT_ID = 6 | |
AND coalesce(rtp.DISABLED_FROM, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
AND coalesce(rtp.NOTBEFORE_UNTIL, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
) chrome ON TRUE | |
LEFT JOIN LATERAL ( | |
SELECT array_to_string(array_agg(tp.PURPOSE ORDER BY tp.PURPOSE), ';') AS PURPOSES | |
FROM root_trust_purpose rtp | |
JOIN trust_purpose tp ON (rtp.TRUST_PURPOSE_ID = tp.ID) | |
WHERE rtp.CERTIFICATE_ID = c.ID | |
AND rtp.TRUST_CONTEXT_ID = 1 | |
AND coalesce(rtp.DISABLED_FROM, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
AND coalesce(rtp.NOTBEFORE_UNTIL, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
) microsoft ON TRUE | |
LEFT JOIN LATERAL ( | |
SELECT array_to_string(array_agg(CASE rtp.TRUST_PURPOSE_ID WHEN 1 THEN 'Websites' WHEN 3 THEN 'Email' END ORDER BY rtp.TRUST_PURPOSE_ID DESC), ';') AS PURPOSES | |
FROM root_trust_purpose rtp | |
WHERE rtp.CERTIFICATE_ID = c.ID | |
AND rtp.TRUST_CONTEXT_ID = 5 | |
AND coalesce(rtp.DISABLED_FROM, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
AND coalesce(rtp.NOTBEFORE_UNTIL, 'infinity'::timestamp) > now() AT TIME ZONE 'UTC' | |
) mozilla ON TRUE | |
WHERE cc.CERT_RECORD_TYPE = 'Root Certificate' | |
ORDER BY HAS_ANY_DISCREPANCIES, cc.INCLUDED_CERTIFICATE_OWNER, cc.SUBORDINATE_CA_OWNER, cc.CERT_NAME | |
) TO 'roots_compared.csv' CSV HEADER | |
SQL | |
RESULT=$? | |
cat $ERRORFILE | |
echo "[Attempt $i]: psql returned $RESULT (expecting 0)." | |
if [ "$RESULT" -eq "0" ]; then | |
grep ERROR $ERRORFILE >/dev/null | |
RESULT=$? | |
echo "[Attempt $i]: \"grep ERROR\" returned $RESULT (expecting !=0)." | |
if [ "$RESULT" -ne "0" ]; then | |
sed -i "s/<timestamp>/$TIMESTAMP/g" roots_compared.csv | |
break | |
fi | |
fi | |
echo | |
done | |
rm -f $ERRORFILE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ccadb_record_id | crtsh_id | has_any_discrepancies | has_cert_name_mismatch | is_not_self_signed | has_cert_sha256_mismatch | has_notafter_mismatch | has_apple_trust_bits_mismatch | has_chrome_trust_bits_mismatch | has_microsoft_ekus_mismatch | has_mozilla_trust_bits_mismatch | included_certificate_owner | subordinate_ca_owner | cert_name_ccadb | cert_name_crtsh | cert_record_type_ccadb | cert_record_type_crtsh | cert_sha256_ccadb | cert_sha256_crtsh | valid_to_ccadb | valid_to_crtsh | apple_trust_bits_ccadb | apple_trust_bits_crtsh | chrome_trust_bits_ccadb | chrome_trust_bits_crtsh | microsoft_ekus_ccadb | microsoft_ekus_crtsh | mozilla_trust_bits_ccadb | mozilla_trust_bits_crtsh | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
001o000000HshEIAAZ | 1251 | f | f | f | f | f | f | f | f | f | AC Camerfirma, S.A. | Chambers of Commerce Root | Chambers of Commerce Root | Root Certificate | Root Certificate | 0C258A12A5674AEF25F28BA7DCFAECEEA348E541E6F5CC4EE63B71B361606AC3 | 0C258A12A5674AEF25F28BA7DCFAECEEA348E541E6F5CC4EE63B71B361606AC3 | 2037.09.30 | 2037-09-30 16:13:44 | ||||||||||
0018Z00002iKhi3QAC | 12724854 | f | f | f | f | f | f | f | f | f | AC Camerfirma, S.A. | Public Notary Root | Public Notary Root | Root Certificate | Root Certificate | 9DB930A7BCED5A599DA673D0BB12C4C6C7AB5B3F88F39C24EE20A24716B379DF | 9DB930A7BCED5A599DA673D0BB12C4C6C7AB5B3F88F39C24EE20A24716B379DF | 2037.09.30 | 2037-09-30 16:14:49 | ||||||||||
0011J00001QWWCSQA5 | 1823124255 | f | f | f | f | f | f | f | f | f | ACIN - iCloud Solutions, Lda | Global Trusted Sign Root Certification Authority 01 | Global Trusted Sign Root Certification Authority 01 | Root Certificate | Root Certificate | 2E19FA7CD069B3AA10B570D3E654C24217B229C67FB3BE87D1D6006C8F514DA9 | 2E19FA7CD069B3AA10B570D3E654C24217B229C67FB3BE87D1D6006C8F514DA9 | 2037.07.01 | 2037-07-01 15:26:09 | ||||||||||
001o000000rGWcqAAG | 8989703 | f | f | f | f | f | f | f | f | f | Actalis | Actalis Authentication CA G1 | Actalis Authentication CA G1 | Root Certificate | Root Certificate | AFE80A97EA11159190E927E08EC2E60C59A40559483A3FEE838A85321B3AEAAD | AFE80A97EA11159190E927E08EC2E60C59A40559483A3FEE838A85321B3AEAAD | 2022.06.25 | 2022-06-25 14:06:00 | ||||||||||
0018Z00002mLqbzQAC | 7727202872 | f | f | f | f | f | f | f | f | f | Agence Nationale de Certification Electronique | TnTrust Root CA - G1 | TnTrust Root CA - G1 | Root Certificate | Root Certificate | 54E84A8E9DA7F3BB14F35C7F9C314B6EAB2739EB8086C8000F00C0993C3E694C | 54E84A8E9DA7F3BB14F35C7F9C314B6EAB2739EB8086C8000F00C0993C3E694C | 2047.09.21 | 2047-09-21 16:27:45 | ||||||||||
001o000000rGWd5AAG | 8561806 | f | f | f | f | f | f | f | f | f | Agence Nationale de Certification Electronique | Tunisian Root Certificate Authority - TunRootCA2 | Tunisian Root Certificate Authority - TunRootCA2 | Root Certificate | Root Certificate | C795FF8FF20C966688F064A1E091421D3110A3456C17EC2404B998738741F622 | C795FF8FF20C966688F064A1E091421D3110A3456C17EC2404B998738741F622 | 2027.05.05 | 2027-05-05 08:57:01 | ||||||||||
0018Z00002iKhdmQAC | 18579 | f | f | f | f | f | f | f | f | f | Agencia Notarial de Certificación (ANCERT) | Agence Nationale de Certification Electronique | Agence Nationale de Certification Electronique | Root Certificate | Root Certificate | A798A1C70E9B6D50EAA5724A26FAC7991848EDC61BF48D79816BCAFB66972128 | A798A1C70E9B6D50EAA5724A26FAC7991848EDC61BF48D79816BCAFB66972128 | 2037.08.12 | 2037-08-12 09:58:14 | ||||||||||
0018Z00002iKhdhQAC | 12722117 | f | f | f | f | f | f | f | f | f | Agencia Notarial de Certificación (ANCERT) | Agence Nationale de Certification Electronique | Agence Nationale de Certification Electronique | Root Certificate | Root Certificate | 1D4F0596FCA2611D09F84C78F2EA565EF2EAB9CFC272A1718BD336E6E0AE021A | 1D4F0596FCA2611D09F84C78F2EA565EF2EAB9CFC272A1718BD336E6E0AE021A | 2037.08.12 | 2037-08-12 09:03:17 | ||||||||||
001o000000rGWWEAA4 | 12724029 | f | f | f | f | f | f | f | f | f | Agencia Notarial de Certificación (ANCERT) | ANCERT Certificados CGN | ANCERT Certificados CGN | Root Certificate | Root Certificate | 8177D1A82BA501AFDD1E9483AD7DA912EE1E9FCB2A5A061FA3C479FA804CE6BA | 8177D1A82BA501AFDD1E9483AD7DA912EE1E9FCB2A5A061FA3C479FA804CE6BA | 2024.02.11 | 2024-02-11 17:27:12 | ||||||||||
001o000000rGWfaAAG | 798047 | f | f | f | f | f | f | f | f | f | Agencia Notarial de Certificación (ANCERT) | ANCERT Certificados Notariales | ANCERT Certificados Notariales | Root Certificate | Root Certificate | 00AB444ABD6BDBA33DA8DE569AC4ECDE326D1BE1A61442D5EEC3975A0C243F04 | 00AB444ABD6BDBA33DA8DE569AC4ECDE326D1BE1A61442D5EEC3975A0C243F04 | 2024.02.11 | 2024-02-11 15:58:26 | ||||||||||
001o000000rGWVqAAO | 12625042 | f | f | f | f | f | f | f | f | f | Agencia Notarial de Certificación (ANCERT) | ANCERT Corporaciones de Derecho Publico | ANCERT Corporaciones de Derecho Publico | Root Certificate | Root Certificate | 36544D2FCE03C6C72B70EB1A8064264DC1511768C2D8F76A8B9F1F2BBD153B7D | 36544D2FCE03C6C72B70EB1A8064264DC1511768C2D8F76A8B9F1F2BBD153B7D | 2024.02.11 | 2024-02-11 17:22:45 | ||||||||||
001TO00000MRXJNYA5 | 16524414607 | f | f | f | f | f | f | f | f | f | Amazon Trust Services | Amazon ECDSA 256 Root EU M1 | Amazon ECDSA 256 Root EU M1 | Root Certificate | Root Certificate | 9EAD32C9285FE68BA2C5B0FE427D149B103FDFA1D0958D77C3DA0FF246E853D3 | 9EAD32C9285FE68BA2C5B0FE427D149B103FDFA1D0958D77C3DA0FF246E853D3 | 2042.11.14 | 2042-11-14 12:45:51 | ||||||||||
001TO00000MRXODYA5 | 16524419482 | f | f | f | f | f | f | f | f | f | Amazon Trust Services | Amazon ECDSA 384 Root EU M1 | Amazon ECDSA 384 Root EU M1 | Root Certificate | Root Certificate | 8E136CE0E77C848F2D2910ABD4E3A764358BB1B7A4932202BC9B915732462D85 | 8E136CE0E77C848F2D2910ABD4E3A764358BB1B7A4932202BC9B915732462D85 | 2042.11.14 | 2042-11-14 12:46:12 | ||||||||||
001TO00000MRWojYAH | 16524424171 | f | f | f | f | f | f | f | f | f | Amazon Trust Services | Amazon RSA 2048 Root EU M1 | Amazon RSA 2048 Root EU M1 | Root Certificate | Root Certificate | EAFFAC50C7E3E15A68F779A5E70EC2F5E9FC4A03FF69AB337B4D6C4510432395 | EAFFAC50C7E3E15A68F779A5E70EC2F5E9FC4A03FF69AB337B4D6C4510432395 | 2042.11.14 | 2042-11-14 12:45:15 | ||||||||||
0018Z00002iKhaOQAS | 1296602 | f | f | f | f | f | f | f | f | f | An Post | Post.Trust Root CA | Post.Trust Root CA | Root Certificate | Root Certificate | 39F6033CA664CEDB216744D3C6F2B2E8E3CEBD6869F7DFF47E0DB91A79C416F8 | 39F6033CA664CEDB216744D3C6F2B2E8E3CEBD6869F7DFF47E0DB91A79C416F8 | 2022.07.05 | 2022-07-05 09:12:33 | ||||||||||
0018Z00002iKhkdQAC | 12665124 | f | f | f | f | f | f | f | f | f | An Post | Post.Trust Root CA | Post.Trust Root CA | Root Certificate | Root Certificate | 07453D53793BF41819A5251C69F88E2BB344B59CA828B5A543781599EAF3D602 | 07453D53793BF41819A5251C69F88E2BB344B59CA828B5A543781599EAF3D602 | 2010.08.20 | 2010-08-20 13:56:21 | ||||||||||
001o000000HshDxAAJ | 1179 | f | f | f | f | f | f | f | f | f | AOL | America Online Root Certification Authority 1 | America Online Root Certification Authority 1 | Root Certificate | Root Certificate | 77407312C63A153D5BC00B4E51759CDFDAC237DC2A33B67946E98E9BFA680AE3 | 77407312C63A153D5BC00B4E51759CDFDAC237DC2A33B67946E98E9BFA680AE3 | 2037.11.19 | 2037-11-19 20:43:00 | ||||||||||
001o000000HshDyAAJ | 10249836 | f | f | f | f | f | f | f | f | f | AOL | America Online Root Certification Authority 2 | America Online Root Certification Authority 2 | Root Certificate | Root Certificate | 7D3B465A6014E526C0AFFCEE2127D2311727AD811C26842D006AF37306CC80BD | 7D3B465A6014E526C0AFFCEE2127D2311727AD811C26842D006AF37306CC80BD | 2037.09.29 | 2037-09-29 14:08:00 | ||||||||||
001TO00000NkxZJYAZ | 16866332635 | f | f | f | f | f | f | f | f | f | Apple Inc. | Apple Public Email ECC Root CA 1 | Apple Public Email ECC Root CA 1 | Root Certificate | Root Certificate | ACF46F98197FE8289B8D616058DE1495366E85F2DACDE7FE973E14A7C9D95574 | ACF46F98197FE8289B8D616058DE1495366E85F2DACDE7FE973E14A7C9D95574 | 2041.12.11 | 2041-12-11 00:00:00 | ||||||||||
001TO00000NkxW5YAJ | 16866332632 | f | f | f | f | f | f | f | f | f | Apple Inc. | Apple Public Email RSA Root CA 1 | Apple Public Email RSA Root CA 1 | Root Certificate | Root Certificate | 7468E730E9BAA3A847B45FF0FE8FA49632A273CE1F12159AE1CBE09A2FA52005 | 7468E730E9BAA3A847B45FF0FE8FA49632A273CE1F12159AE1CBE09A2FA52005 | 2041.12.11 | 2041-12-11 00:00:00 | ||||||||||
001TO00000NksrPYAR | 16866332633 | f | f | f | f | f | f | f | f | f | Apple Inc. | Apple Public TLS ECC Root CA 1 | Apple Public TLS ECC Root CA 1 | Root Certificate | Root Certificate | 10D498E3F825388C6758E8714F6B9E17351ACEB0203D31E039C20A7B32B71261 | 10D498E3F825388C6758E8714F6B9E17351ACEB0203D31E039C20A7B32B71261 | 2041.12.11 | 2041-12-11 00:00:00 | ||||||||||
001TO00000NkpaBYAR | 16866332634 | f | f | f | f | f | f | f | f | f | Apple Inc. | Apple Public TLS RSA Root CA 1 | Apple Public TLS RSA Root CA 1 | Root Certificate | Root Certificate | 65FBFAF72BD07211F98707C1E1957ACC022BE1A19E1CB086470A2EAF639D11D7 | 65FBFAF72BD07211F98707C1E1957ACC022BE1A19E1CB086470A2EAF639D11D7 | 2041.12.11 | 2041-12-11 00:00:00 | ||||||||||
0018Z00002Y12sqQAB | 6694070333 | f | f | f | f | f | f | f | f | f | Aspire Digital Technology (Shenzhen) Co., Ltd. | CMCA GLOBAL TRUST ROOT CA | CMCA GLOBAL TRUST ROOT CA | Root Certificate | Root Certificate | 1108210FCE22F535F274B4733A1E0550E68405D5381DCED95B864D9AF53D0B69 | 1108210FCE22F535F274B4733A1E0550E68405D5381DCED95B864D9AF53D0B69 | 2045.10.16 | 2045-10-16 07:38:17 | ||||||||||
001TO000008ABATYA4 | 12765519918 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Code Signing ECC Root CA | Certum Code Signing ECC Root CA | Root Certificate | Root Certificate | A0E90EB2F7DD82993430BF1C4B8423473FD91D4BA494FAA5327900D9094288F1 | A0E90EB2F7DD82993430BF1C4B8423473FD91D4BA494FAA5327900D9094288F1 | 2048.01.26 | 2048-01-26 09:06:17 | ||||||||||
001TO000008ABNNYA4 | 12765521500 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Code Signing RSA Root CA | Certum Code Signing RSA Root CA | Root Certificate | Root Certificate | 69BE9FCC7AD9717775969D96FF836CBDA6D15876BF758E0B7CACCB1A1BFA3B53 | 69BE9FCC7AD9717775969D96FF836CBDA6D15876BF758E0B7CACCB1A1BFA3B53 | 2048.01.26 | 2048-01-26 08:43:49 | ||||||||||
001TO000008ABVSYA4 | 12764254719 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Document Signing ECC Root CA | Certum Document Signing ECC Root CA | Root Certificate | Root Certificate | 89BACB86809F7A1B62097F0D81E26F8CA82261672F04B43D8799D5EB061D2EF8 | 89BACB86809F7A1B62097F0D81E26F8CA82261672F04B43D8799D5EB061D2EF8 | 2048.01.26 | 2048-01-26 09:09:50 | ||||||||||
001TO000008ABf7YAG | 12764254874 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Document Signing RSA Root CA | Certum Document Signing RSA Root CA | Root Certificate | Root Certificate | EE04DF77F179176B6B879E9D6B78C0E20C6BECA8379B0234735FA501CAD2F0BD | EE04DF77F179176B6B879E9D6B78C0E20C6BECA8379B0234735FA501CAD2F0BD | 2048.01.26 | 2048-01-26 08:49:00 | ||||||||||
001TO000008ABTpYAO | 12764254875 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum SMIME ECC Root CA | Certum SMIME ECC Root CA | Root Certificate | Root Certificate | 0BA1591A23AFDE691EE7E9D4881B03E69A178AB6B5BD5FC2EE31E4BEC176C98B | 0BA1591A23AFDE691EE7E9D4881B03E69A178AB6B5BD5FC2EE31E4BEC176C98B | 2048.01.26 | 2048-01-26 09:02:56 | ||||||||||
001TO000008A47SYAS | 12764254876 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum SMIME RSA Root CA | Certum SMIME RSA Root CA | Root Certificate | Root Certificate | 08EF47A61F8D33B37B429FE3127B59F645E3BA4A82470F8380FFB21FDD3B2131 | 08EF47A61F8D33B37B429FE3127B59F645E3BA4A82470F8380FFB21FDD3B2131 | 2048.01.26 | 2048-01-26 08:39:38 | ||||||||||
001TO000008A8z1YAC | 12764254877 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum TLS ECC Root CA | Certum TLS ECC Root CA | Root Certificate | Root Certificate | 630CCB83B0180A992495E039D2613C3287A8102F8A8D703DB1330A3E86D4E653 | 630CCB83B0180A992495E039D2613C3287A8102F8A8D703DB1330A3E86D4E653 | 2048.01.26 | 2048-01-26 08:57:13 | ||||||||||
001TO000008ABQbYAO | 12764254878 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum TLS RSA Root CA | Certum TLS RSA Root CA | Root Certificate | Root Certificate | ED12A6E9289239D66CA1D244CE90C623AC305AD05602DA352BCFC5FEF2C4458D | ED12A6E9289239D66CA1D244CE90C623AC305AD05602DA352BCFC5FEF2C4458D | 2048.01.26 | 2048-01-26 08:33:02 | ||||||||||
0018Z00002iKhHRQA0 | 6005922 | f | f | f | f | f | f | f | f | f | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Trusted Network CA 2 | Certum Trusted Network CA 2 | Root Certificate | Root Certificate | 9F8B05137F20ACDE9B996410F4D0BF7971A1006DC99E094C346D279B93CFF7AE | 9F8B05137F20ACDE9B996410F4D0BF7971A1006DC99E094C346D279B93CFF7AE | 2046.10.06 | 2046-10-06 08:39:56 | ||||||||||
001o000000rGWe4AAG | 8563443 | f | f | f | f | f | f | f | f | f | Athens Exchange S.A. (Athex) | ATHEX Root CA | ATHEX Root CA | Root Certificate | Root Certificate | A73563E859CBCFA173CF3285DEBF2578EDE15D47A3BEE385861AB7A4FB6D7B6E | A73563E859CBCFA173CF3285DEBF2578EDE15D47A3BEE385861AB7A4FB6D7B6E | 2030.10.17 | 2030-10-17 21:00:00 | ||||||||||
0011J00001BgyxxQAB | 241064233 | f | f | f | f | f | f | f | f | f | Athens Exchange S.A. (Athex) | ATHEX Root CA G2 | ATHEX Root CA G2 | Root Certificate | Root Certificate | C1727F3B673E6AE7F12F23D789A7BE38B918223EF6911C592DA1F583444A547E | C1727F3B673E6AE7F12F23D789A7BE38B918223EF6911C592DA1F583444A547E | 2036.03.14 | 2036-03-14 22:00:00 | ||||||||||
0018Z00002iKhg2QAC | 8984205 | f | f | f | f | f | f | f | f | f | A-Trust | A-Trust-nQual-01 | A-Trust-nQual-01 | Root Certificate | Root Certificate | 7B1F8D8EFF5D7349FEDB7EAE89C29AACC41704F1503AE3C8C2EBA10225D0F568 | 7B1F8D8EFF5D7349FEDB7EAE89C29AACC41704F1503AE3C8C2EBA10225D0F568 | 2014.11.30 | 2014-11-30 23:00:00 | ||||||||||
001o000000HshE1AAJ | 4094 | f | f | f | f | f | f | f | f | f | A-Trust | A-Trust-nQual-03 | A-Trust-nQual-03 | Root Certificate | Root Certificate | 793CBF4559B9FDE38AB22DF16869F69881AE14C4B0139AC788A78A1AFCCA02FB | 793CBF4559B9FDE38AB22DF16869F69881AE14C4B0139AC788A78A1AFCCA02FB | 2015.08.17 | 2015-08-17 22:00:00 | ||||||||||
0018Z00002iKhRhQAK | 8984208 | f | f | f | f | f | f | f | f | f | A-Trust | A-Trust-Qual-01 | A-Trust-Qual-01 | Root Certificate | Root Certificate | E8A2F441657678975F2B97D775719C7D49D92234554540EC14D92E16FE27D2CB | E8A2F441657678975F2B97D775719C7D49D92234554540EC14D92E16FE27D2CB | 2014.11.30 | 2014-11-30 23:00:00 | ||||||||||
001o000000rGWg9AAG | 8984207 | f | f | f | f | f | f | f | f | f | A-Trust | A-Trust-Qual-02 | A-Trust-Qual-02 | Root Certificate | Root Certificate | F28630BABF256E567B5821069FCF13148AB9A23E28FC0D70615AAE6ED284F4C8 | F28630BABF256E567B5821069FCF13148AB9A23E28FC0D70615AAE6ED284F4C8 | 2024.07.01 | 2024-07-01 09:23:33 | ||||||||||
0018Z00002iKhg7QAC | 1366910 | f | f | f | f | f | f | f | f | f | A-Trust | A-Trust-Qual-02 | A-Trust-Qual-02 | Root Certificate | Root Certificate | 75C9D4361CB96E993ABD9620CF043BE9407A4633F202F0F4C0E17851CC6089CD | 75C9D4361CB96E993ABD9620CF043BE9407A4633F202F0F4C0E17851CC6089CD | 2014.12.02 | 2014-12-02 23:00:00 | ||||||||||
001o000000rGWZ3AAO | 8984206 | f | f | f | f | f | f | f | f | f | A-Trust | A-Trust-Qual-03 | A-Trust-Qual-03 | Root Certificate | Root Certificate | 6BAF50AE3467EFF3C35FEFDC76A02A97FAB6267723EDA91E99F1B3DC2B28F82E | 6BAF50AE3467EFF3C35FEFDC76A02A97FAB6267723EDA91E99F1B3DC2B28F82E | 2018.04.24 | 2018-04-24 22:00:00 | ||||||||||
001o000000rGWXbAAO | 8559423 | f | f | f | f | f | f | f | f | f | A-Trust | A-Trust-Root-05 | A-Trust-Root-05 | Root Certificate | Root Certificate | 2DDE9D0C0A90E7B32B5ABC01F41799D42E95A1E3C31C3B39373BB8141EA54471 | 2DDE9D0C0A90E7B32B5ABC01F41799D42E95A1E3C31C3B39373BB8141EA54471 | 2023.09.20 | 2023-09-20 11:24:11 | ||||||||||
0014o00001nr1abAAA | 10666406 | f | f | f | f | f | f | f | f | f | Autoridad de Certificación (ANF AC) | ANF Global Root CA | ANF Global Root CA | Root Certificate | Root Certificate | E3268F6106BA8B665A1A962DDEA1459D2A46972F1F2440329B390B895749AD45 | E3268F6106BA8B665A1A962DDEA1459D2A46972F1F2440329B390B895749AD45 | 2033.06.05 | 2033-06-05 17:45:38 | ||||||||||
0011J00001QwVhwQAF | 1839769242 | f | f | f | f | f | f | f | f | f | Autoridad de Certificación (ANF AC) | ANF Global Root CA | ANF Global Root CA | Root Certificate | Root Certificate | E0AFBD2C0EE95A68CD9A3C590B2D3FE07C0A6D0BE796AE5291E424D47792178E | E0AFBD2C0EE95A68CD9A3C590B2D3FE07C0A6D0BE796AE5291E424D47792178E | 2036.05.15 | 2036-05-15 14:08:40 | ||||||||||
001o000000rGWgAAAW | 3633972 | f | f | f | f | f | f | f | f | f | Autoridad de Certificación (ANF AC) | ANF Server CA | ANF Server CA | Root Certificate | Root Certificate | B644D955FFF29B74E3B5687E908EE7C3C9197BA3336CC6328531F6C057D677FD | B644D955FFF29B74E3B5687E908EE7C3C9197BA3336CC6328531F6C057D677FD | 2021.11.30 | 2021-11-30 23:00:00 | ||||||||||
0018Z00002iKhKqQAK | 116392 | f | f | f | f | f | f | f | f | f | Autoridad de Certificacion Firmaprofesional | Autoridad de Certificacion Firmaprofesional CIF A62634068 | Autoridad de Certificacion Firmaprofesional CIF A62634068 | Root Certificate | Root Certificate | C1CF0B52096435E3F1B71DAAEC455A2311C8404F5583A9E213C69D857D943305 | C1CF0B52096435E3F1B71DAAEC455A2311C8404F5583A9E213C69D857D943305 | 2013.10.24 | 2013-10-24 22:00:00 | ||||||||||
0018Z00002fhj4rQAA | 7399342837 | f | f | f | f | f | f | f | f | f | AUTORITE NATIONALE DE CERTIFICATION ELECTRONIQUE | National Root CA | National Root CA | Root Certificate | Root Certificate | 1C3464DFFE0C27C2640DB119DF2146D5EB7E7F8014DAEE0A50F8892C88F85716 | 1C3464DFFE0C27C2640DB119DF2146D5EB7E7F8014DAEE0A50F8892C88F85716 | 2045.03.08 | 2045-03-08 18:37:30 | ||||||||||
0014o00001mHkZHAA0 | 4297722415 | f | f | f | f | f | f | f | f | f | Bangladesh Office of the Controller of Certifying Authorities (“CCA”) | Root CA Bangladesh 2018 | Root CA Bangladesh 2018 | Root Certificate | Root Certificate | E65E4673E068C1D0A4CD69968BA700BAF43FB2D7B7F19A7A55B700DF8321856E | E65E4673E068C1D0A4CD69968BA700BAF43FB2D7B7F19A7A55B700DF8321856E | 2028.05.20 | 2028-05-20 06:43:08 | ||||||||||
0014o00001mHkZRAA0 | 4297721710 | f | f | f | f | f | f | f | f | f | Bangladesh Office of the Controller of Certifying Authorities (“CCA”) | Root CA Bangladesh 2020 | Root CA Bangladesh 2020 | Root Certificate | Root Certificate | 97DEE8339708B8A340208EE9830110BF41A27905B996BC75FC0B746B9EE08BDA | 97DEE8339708B8A340208EE9830110BF41A27905B996BC75FC0B746B9EE08BDA | 2030.06.22 | 2030-06-22 10:01:22 | ||||||||||
001TO00000G5PhKYAV | 4914203380 | f | f | f | f | f | f | f | f | f | brainit.sk, s. r. o. | CA Signing Certificate | CA Signing Certificate | Root Certificate | Root Certificate | 62AD51DFC580A9F96B503D24DE4234FD13DBA61EE37A6D85AEF2BD68595A37B4 | 62AD51DFC580A9F96B503D24DE4234FD13DBA61EE37A6D85AEF2BD68595A37B4 | 2050.12.16 | 2050-12-16 10:12:50 | ||||||||||
001o000000HshE4AAJ | 40696 | f | f | f | f | f | f | f | f | f | Buypass | Buypass Class 2 CA 1 | Buypass Class 2 CA 1 | Root Certificate | Root Certificate | 0F4E9CDD264B025550D170806340214FE94434C9B02F697EC710FC5FEAFB5E38 | 0F4E9CDD264B025550D170806340214FE94434C9B02F697EC710FC5FEAFB5E38 | 2016.10.13 | 2016-10-13 10:25:09 | ||||||||||
001o000000HshE6AAJ | 8052 | f | f | f | f | f | f | f | f | f | Buypass | Buypass Class 3 CA 1 | Buypass Class 3 CA 1 | Root Certificate | Root Certificate | B7B12B171F821DAA990CD0FE5087B128448BA8E5184F84C51E02B5C8FB962B24 | B7B12B171F821DAA990CD0FE5087B128448BA8E5184F84C51E02B5C8FB962B24 | 2015.05.09 | 2015-05-09 14:13:03 | ||||||||||
001o000000wGAgjAAG | 36499470 | f | f | f | f | f | f | f | f | f | Carillon Information Security Inc. | CISRCA1 | CISRCA1 | Root Certificate | Root Certificate | 12FF248372BD87E44ECE432198BE9B04525F33DEE00356FD646F8ACC01412F86 | 12FF248372BD87E44ECE432198BE9B04525F33DEE00356FD646F8ACC01412F86 | 2032.10.16 | 2032-10-16 18:28:33 | ||||||||||
001o000000rGWhWAAW | 12724499 | f | f | f | f | f | f | f | f | f | CertEurope France | Certeurope Root CA 2 | Certeurope Root CA 2 | Root Certificate | Root Certificate | 42143A511A3AFCDD80D555DEBB4191EC6BB285EE66E62EC657ED20ADF7D55FAA | 42143A511A3AFCDD80D555DEBB4191EC6BB285EE66E62EC657ED20ADF7D55FAA | 2037.03.27 | 2037-03-27 23:00:00 | ||||||||||
001o000000HshDlAAJ | 406491 | f | f | f | f | f | f | f | f | f | Certicámara | AC Raíz Certicámara S.A. | AC Raíz Certicámara S.A. | Root Certificate | Root Certificate | A6C51E0DA5CA0A9309D2E4C0E40C2AF9107AAE8203857FE198E3E769E343085C | A6C51E0DA5CA0A9309D2E4C0E40C2AF9107AAE8203857FE198E3E769E343085C | 2030.04.02 | 2030-04-02 21:42:02 | ||||||||||
0018Z00002iKhfYQAS | 12725245 | f | f | f | f | f | f | f | f | f | Certicámara | CERTICAMARA S.A. | CERTICAMARA S.A. | Root Certificate | Root Certificate | AF71A3BCA322E5224DF546895696CE449A8BD2BD130F7A7AE457767F5C23D8F8 | AF71A3BCA322E5224DF546895696CE449A8BD2BD130F7A7AE457767F5C23D8F8 | 2015.02.23 | 2015-02-23 17:10:37 | ||||||||||
0018Z00002iKhiXQAS | 8333331 | f | f | f | f | f | f | f | f | f | Certicámara | Certificado Empresarial Clase-A | Certificado Empresarial Clase-A | Root Certificate | Root Certificate | C2959DB8339E8DBCF6409CA92A66C49FD2E32494940A901143BD7EB72827DEC2 | C2959DB8339E8DBCF6409CA92A66C49FD2E32494940A901143BD7EB72827DEC2 | 2011.05.23 | 2011-05-23 22:00:00 | ||||||||||
001TO00000Cj6C1YAJ | 13748197482 | f | f | f | f | f | f | f | f | f | Certigna | Certigna Server Authentication Root CA | Certigna Server Authentication Root CA | Root Certificate | Root Certificate | 38E5A7047A3BA80DF9CBA23F96A5E9BD8BBC937D0E5D739DEEDA9A384542D17A | 38E5A7047A3BA80DF9CBA23F96A5E9BD8BBC937D0E5D739DEEDA9A384542D17A | 2039.03.13 | 2039-03-13 10:16:39 | ||||||||||
0018Z000036RcgUQAS | 10248270201 | f | f | f | f | f | f | f | f | f | Certiphire, Inc. | Ackaia Root CA | Ackaia Root CA | Root Certificate | Root Certificate | 76D23E7375016320E08601D5ABC5D933AD836D46F0C544F8096D3B56759517EB | 76D23E7375016320E08601D5ABC5D933AD836D46F0C544F8096D3B56759517EB | 2053.07.26 | 2053-07-26 18:18:00 | ||||||||||
0018Z000036RciBQAS | 10248268133 | f | f | f | f | f | f | f | f | f | Certiphire, Inc. | Ackaia Root CA | Ackaia Root CA | Root Certificate | Root Certificate | 6FA7CCE308F5AC3439C9B0D89B76DCAD699EF250258CE86243955DE3286F0D86 | 6FA7CCE308F5AC3439C9B0D89B76DCAD699EF250258CE86243955DE3286F0D86 | 2053.07.26 | 2053-07-26 18:18:00 | ||||||||||
0018Z000036PytKQAS | 10046113776 | f | f | f | f | f | f | f | f | f | Certiphire, Inc. | Ackaia Root CA | Ackaia Root CA | Root Certificate | Root Certificate | 077FA865F812472A5D9249BE8B1C777CEE47A99589FB01809B4327D07446E3D6 | 077FA865F812472A5D9249BE8B1C777CEE47A99589FB01809B4327D07446E3D6 | 2053.07.26 | 2053-07-26 18:18:00 | ||||||||||
0018Z00002y9apiQAA | 9395719544 | f | f | f | f | f | f | f | f | f | Certiphire, Inc. | Certiphire, Inc. | Certiphire, Inc. | Root Certificate | Root Certificate | A8D46EADC1C0582FFD2BDA4C1B58234035D6AD9AC3FC10D7C41DE483088334A1 | A8D46EADC1C0582FFD2BDA4C1B58234035D6AD9AC3FC10D7C41DE483088334A1 | 2053.04.24 | 2053-04-24 23:59:59 | ||||||||||
0018Z00002y9jctQAA | 9395722453 | f | f | f | f | f | f | f | f | f | Certiphire, Inc. | Certiphire Root CA G3 | Certiphire Root CA G3 | Root Certificate | Root Certificate | 59B045CAA02D858761135605BF483EA5EBE67A948E01564C0DBB7994AC9D379E | 59B045CAA02D858761135605BF483EA5EBE67A948E01564C0DBB7994AC9D379E | 2038.05.05 | 2038-05-05 17:15:00 | ||||||||||
0018Z00002y9jdhQAA | 9395725316 | f | f | f | f | f | f | f | f | f | Certiphire, Inc. | Certiphire Root CA G3 | Certiphire Root CA G3 | Root Certificate | Root Certificate | EB71D570FC733279E06CAF372BF04212ED2BCB9055906C070674A2C37602BEC7 | EB71D570FC733279E06CAF372BF04212ED2BCB9055906C070674A2C37602BEC7 | 2038.05.05 | 2038-05-05 17:17:00 | ||||||||||
0011J00001W10cEQAR | 26311649 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Belgium Root CA4 | Belgium Root CA4 | Root Certificate | Root Certificate | C3FBF37259AF0954EEEA4282DD1C7226A54E7150F7C29A2C495BA34DBFE09CA0 | C3FBF37259AF0954EEEA4282DD1C7226A54E7150F7C29A2C495BA34DBFE09CA0 | 2028.01.28 | 2028-01-28 12:00:00 | ||||||||||
0018Z00002iKhjuQAC | 7399345310 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Certiposte Classe A Personne | Certiposte Classe A Personne | Root Certificate | Root Certificate | 5A55B4661A2C86E0896D8C21972A5EA310C047FDF16BC83599C1649732673B62 | 5A55B4661A2C86E0896D8C21972A5EA310C047FDF16BC83599C1649732673B62 | 2018.06.24 | 2018-06-24 08:00:00 | ||||||||||
0018Z00002iKhjzQAC | 7399348666 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Certiposte Serveur | Certiposte Serveur | Root Certificate | Root Certificate | 28376149395498E183E9CE6278480DA6DD9186572A25C807BBE0BC094B544341 | 28376149395498E183E9CE6278480DA6DD9186572A25C807BBE0BC094B544341 | 2018.06.24 | 2018-06-24 08:00:00 | ||||||||||
001o000000rGWeDAAW | 98913 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Certipost E-Trust Primary Normalised CA | Certipost E-Trust Primary Normalised CA | Root Certificate | Root Certificate | F00355EEF101C7DF4E46CCE6417DFFCE3DB82DBB1369C3B439C4E33BEE445C42 | F00355EEF101C7DF4E46CCE6417DFFCE3DB82DBB1369C3B439C4E33BEE445C42 | 2020.07.26 | 2020-07-26 10:00:00 | ||||||||||
001o000000rGWb9AAG | 12724419 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Certipost E-Trust Primary Qualified CA | Certipost E-Trust Primary Qualified CA | Root Certificate | Root Certificate | 058A40323EC8C46262C3052A5D357B91AC24D3DA26351B3FF4407E99F7A4E9B4 | 058A40323EC8C46262C3052A5D357B91AC24D3DA26351B3FF4407E99F7A4E9B4 | 2020.07.26 | 2020-07-26 10:00:00 | ||||||||||
001o000000rGWVfAAO | 12725452 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Certipost E-Trust TOP Root CA | Certipost E-Trust TOP Root CA | Root Certificate | Root Certificate | DDFF53ECD7743B60BB7B2795FF5732FA785F9A14DF1120FB40A38CF84CA2A566 | DDFF53ECD7743B60BB7B2795FF5732FA785F9A14DF1120FB40A38CF84CA2A566 | 2025.07.26 | 2025-07-26 10:00:00 | ||||||||||
0011J00001W10VwQAJ | 72814494 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Government CA | Government CA | Root Certificate | Root Certificate | 17F7C327A79F47A42B9B58C08C6CACDAFBF984340417137091F0C800ED90D3F4 | 17F7C327A79F47A42B9B58C08C6CACDAFBF984340417137091F0C800ED90D3F4 | 2020.06.23 | 2020-06-23 11:00:00 | ||||||||||
0011J00001W10ZPQAZ | 72815681 | f | f | f | f | f | f | f | f | f | Certipost s.a./n.v. | Government CA | Government CA | Root Certificate | Root Certificate | C34A33850EF7B75CBC5922D841DC6B23357CDB421BB0556F01965410D48577F0 | C34A33850EF7B75CBC5922D841DC6B23357CDB421BB0556F01965410D48577F0 | 2020.06.23 | 2020-06-23 11:00:00 | ||||||||||
0018Z00002iKhqxQAC | 12728323 | f | f | f | f | f | f | f | f | f | Certisign Certificadora Digital | Certisign Autoridade Certificadora AC1S | Certisign Autoridade Certificadora AC1S | Root Certificate | Root Certificate | 85E0DFAE3E55A843195F8B08C8349050E4689372F6E133AD0D199AF96E95CC08 | 85E0DFAE3E55A843195F8B08C8349050E4689372F6E133AD0D199AF96E95CC08 | 2018.06.27 | 2018-06-27 00:00:00 | ||||||||||
0018Z00002iKhjbQAC | 12722133 | f | f | f | f | f | f | f | f | f | Certisign Certificadora Digital | Certisign - Autoridade Certificadora - AC2 | Certisign - Autoridade Certificadora - AC2 | Root Certificate | Root Certificate | E8B28D2A3D81F63B4E4467C2190A631FC062353B5F2D25851DDA6B644AC78B3F | E8B28D2A3D81F63B4E4467C2190A631FC062353B5F2D25851DDA6B644AC78B3F | 2018.06.27 | 2018-06-27 00:00:00 | ||||||||||
0018Z00002iKhrCQAS | 12722983 | f | f | f | f | f | f | f | f | f | Certisign Certificadora Digital | Certisign Autoridade Certificadora AC3S | Certisign Autoridade Certificadora AC3S | Root Certificate | Root Certificate | 31EACE9B4C9C71734A185680BC24866CA6CBD82B3CB61BCC8706261B59CE1073 | 31EACE9B4C9C71734A185680BC24866CA6CBD82B3CB61BCC8706261B59CE1073 | 2018.07.09 | 2018-07-09 20:56:32 | ||||||||||
0018Z00002iKhrHQAS | 12729387 | f | f | f | f | f | f | f | f | f | Certisign Certificadora Digital | Certisign - Autoridade Certificadora - AC4 | Certisign - Autoridade Certificadora - AC4 | Root Certificate | Root Certificate | 4BDB7418BDF7FFE33BA0884AFA7C0C61FD85A153972F65F7D01CB3EC7EB4073C | 4BDB7418BDF7FFE33BA0884AFA7C0C61FD85A153972F65F7D01CB3EC7EB4073C | 2018.06.27 | 2018-06-27 00:00:00 | ||||||||||
0011J00001M4dVXQAZ | 1164273932 | f | f | f | f | f | f | f | f | f | Certisign Certificadora Digital | CERTISIGN ROOT CERTIFICATION AUTHORITY | CERTISIGN ROOT CERTIFICATION AUTHORITY | Root Certificate | Root Certificate | EFBC467B26B26AF613FF4A5DC7BDBBD35D5EE826D1E8BDD69B5484AD903A12D2 | EFBC467B26B26AF613FF4A5DC7BDBBD35D5EE826D1E8BDD69B5484AD903A12D2 | 2042.12.20 | 2042-12-20 02:00:00 | ||||||||||
0018Z00002eGSG1QAO | 7028560213 | f | f | f | f | f | f | f | f | f | China Financial Certification Authority (CFCA) | CFCA Global ECC ROOT | CFCA Global ECC ROOT | Root Certificate | Root Certificate | 654FE9B1A5C2265521D4960DBF9ACAFA27FBC77A549EEAA37156960FDA2A6EF9 | 654FE9B1A5C2265521D4960DBF9ACAFA27FBC77A549EEAA37156960FDA2A6EF9 | 2045.08.18 | 2045-08-18 06:53:10 | ||||||||||
0018Z00002nsWi9QAE | 7833114313 | f | f | f | f | f | f | f | f | f | China Financial Certification Authority (CFCA) | CFCA Global ECC ROOT | CFCA Global ECC ROOT | Root Certificate | Root Certificate | 235EB2934DF9970D871FA03874872CC17851E7F8ACDEC706D31D4FD5B29D9313 | 235EB2934DF9970D871FA03874872CC17851E7F8ACDEC706D31D4FD5B29D9313 | 2045.08.18 | 2045-08-18 05:32:07 | ||||||||||
0018Z00002eGSNkQAO | 7028563570 | f | f | f | f | f | f | f | f | f | China Financial Certification Authority (CFCA) | CFCA Global RSA ROOT | CFCA Global RSA ROOT | Root Certificate | Root Certificate | 11903EA0AF7C7955142B958BB30CC095E180EC69DEDA00C42042F2EDA9987D67 | 11903EA0AF7C7955142B958BB30CC095E180EC69DEDA00C42042F2EDA9987D67 | 2045.08.18 | 2045-08-18 06:52:45 | ||||||||||
0018Z00002nsWfYQAU | 7833110289 | f | f | f | f | f | f | f | f | f | China Financial Certification Authority (CFCA) | CFCA Global RSA ROOT | CFCA Global RSA ROOT | Root Certificate | Root Certificate | 6D7074CD4393756AC303754DB83041ADF14DBCA9CA0729598BF1370906B271FA | 6D7074CD4393756AC303754DB83041ADF14DBCA9CA0729598BF1370906B271FA | 2045.08.18 | 2045-08-18 05:31:41 | ||||||||||
001o000000rGWh2AAG | 1945597 | f | f | f | f | f | f | f | f | f | China Financial Certification Authority (CFCA) | CFCA GT CA | CFCA GT CA | Root Certificate | Root Certificate | 0771920C8CB874D5C5A4DC0D6A51A2D495D38C4DE2CD5B83D2A06FAA051935F6 | 0771920C8CB874D5C5A4DC0D6A51A2D495D38C4DE2CD5B83D2A06FAA051935F6 | 2026.06.09 | 2026-06-09 08:15:09 | ||||||||||
001o000000HshEMAAZ | 15161 | f | f | f | f | f | f | f | f | f | China Internet Network Information Center (CNNIC) | CNNIC ROOT | CNNIC ROOT | Root Certificate | Root Certificate | E28393773DA845A679F2080CC7FB44A3B7A1C3792CB7EB7729FDCB6A8D99AEA7 | E28393773DA845A679F2080CC7FB44A3B7A1C3792CB7EB7729FDCB6A8D99AEA7 | 2027.04.16 | 2027-04-16 07:09:14 | ||||||||||
001o000000rGWXWAA4 | 12624814 | f | f | f | f | f | f | f | f | f | Cisco | Cisco RXC-R2 | Cisco RXC-R2 | Root Certificate | Root Certificate | 229CCC196D32C98421CC119E78486EEBEF603AECD525C6B88B47ABB740692B96 | 229CCC196D32C98421CC119E78486EEBEF603AECD525C6B88B47ABB740692B96 | 2034.07.09 | 2034-07-09 21:46:56 | ||||||||||
0018Z00002iKhiSQAS | 12724771 | f | f | f | f | f | f | f | f | f | Collegio de Registradores Mercantile (Spanish Property & Commerce Registry) | Certificado de la Clave Principal | Certificado de la Clave Principal | Root Certificate | Root Certificate | 1594CB5B826C315DE3BC932C56895FF23A3A988B5DC1F034D214DFD858D89EE8 | 1594CB5B826C315DE3BC932C56895FF23A3A988B5DC1F034D214DFD858D89EE8 | 2012.04.27 | 2012-04-27 09:39:50 | ||||||||||
001o000000rGWWsAAO | 528000 | f | f | f | f | f | f | f | f | f | Collegio de Registradores Mercantile (Spanish Property & Commerce Registry) | Registradores de España - CA Raíz | Registradores de España - CA Raíz | Root Certificate | Root Certificate | 7D2BF3489EBC9AD3448B8B0827715A3CBFE3D523E3B56A9B5FC1D2A2DA2F20FE | 7D2BF3489EBC9AD3448B8B0827715A3CBFE3D523E3B56A9B5FC1D2A2DA2F20FE | 2031.01.09 | 2031-01-09 17:00:39 | ||||||||||
001o000000rGWVCAA4 | 12726503 | f | f | f | f | f | f | f | f | f | ComSign | ComSign Advanced Security CA | ComSign Advanced Security CA | Root Certificate | Root Certificate | 3CCC3CCFE45496D07B620DBF1328E8A1490018F48633C8A28A995CA60408B0BE | 3CCC3CCFE45496D07B620DBF1328E8A1490018F48633C8A28A995CA60408B0BE | 2029.03.24 | 2029-03-24 21:55:55 | ||||||||||
001o000000HshEPAAZ | 12624707 | f | f | f | f | f | f | f | f | f | ComSign | ComSign CA | ComSign CA | Root Certificate | Root Certificate | AE4457B40D9EDA96677B0D3C92D57B5177ABD7AC1037958356D1E094518BE5F2 | AE4457B40D9EDA96677B0D3C92D57B5177ABD7AC1037958356D1E094518BE5F2 | 2029.03.19 | 2029-03-19 15:02:18 | ||||||||||
001o000000HshEQAAZ | 25533 | f | f | f | f | f | f | f | f | f | ComSign | ComSign Secured CA | ComSign Secured CA | Root Certificate | Root Certificate | 507941C74460A0B47086220D4E9932572AB5D1B5BBCB8980AB1CB17651A844D2 | 507941C74460A0B47086220D4E9932572AB5D1B5BBCB8980AB1CB17651A844D2 | 2029.03.16 | 2029-03-16 15:04:56 | ||||||||||
001o000000rGWbsAAG | 34532 | f | f | f | f | f | f | f | f | f | Consejo General de la Abogacía Española | Autoridad de Certificacion de la Abogacia | Autoridad de Certificacion de la Abogacia | Root Certificate | Root Certificate | 5607E260163F49C8EA4175A1C0A53B13195CB7D07845611E943A2FF507036834 | 5607E260163F49C8EA4175A1C0A53B13195CB7D07845611E943A2FF507036834 | 2030.06.13 | 2030-06-13 22:00:00 | ||||||||||
001o000000vml6ZAAQ | 8989057 | f | f | f | f | f | f | f | f | f | Cybertrust Japan / JCSI | SecureSign RootCA1 | SecureSign RootCA1 | Root Certificate | Root Certificate | 5F960EEBD716DBCB4D8A78B996E680EC2547441E69B4E44E98A595502E28A002 | 5F960EEBD716DBCB4D8A78B996E680EC2547441E69B4E44E98A595502E28A002 | 2020.09.15 | 2020-09-15 14:59:59 | ||||||||||
001TO00000DbXqLYAV | 13940306712 | f | f | f | f | f | f | f | f | f | Cybertrust Japan / JCSI | SecureSign Root CA16 | SecureSign Root CA16 | Root Certificate | Root Certificate | 4C1CCD24F17E950FC18536B33CAFE32293CFC33E8467B41E1C693055D7F513BF | 4C1CCD24F17E950FC18536B33CAFE32293CFC33E8467B41E1C693055D7F513BF | 2044.07.29 | 2044-07-29 06:55:40 | ||||||||||
001o000000vmkbjAAA | 8989061 | f | f | f | f | f | f | f | f | f | Cybertrust Japan / JCSI | SecureSign RootCA2 | SecureSign RootCA2 | Root Certificate | Root Certificate | AF6D08EEF3CAC4E1584ABC63C8A9472AC529AF99F3F791319A43776063F58DCA | AF6D08EEF3CAC4E1584ABC63C8A9472AC529AF99F3F791319A43776063F58DCA | 2020.09.15 | 2020-09-15 14:59:59 | ||||||||||
001o000000vml1nAAA | 8989054 | f | f | f | f | f | f | f | f | f | Cybertrust Japan / JCSI | SecureSign RootCA3 | SecureSign RootCA3 | Root Certificate | Root Certificate | AE92E90000541A9EBC101B70B6C33A62F5A53A55BA815E81D31ABDDF03507F5D | AE92E90000541A9EBC101B70B6C33A62F5A53A55BA815E81D31ABDDF03507F5D | 2020.09.15 | 2020-09-15 14:59:59 | ||||||||||
0011J00001MnODwQAN | 1341802102 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | DarkMatter Root CA G3 | DarkMatter Root CA G3 | Root Certificate | Root Certificate | 4B3F646CD878C2B0659A727E0EB8780E5010ECEC03E2EF5E679880E265D486A3 | 4B3F646CD878C2B0659A727E0EB8780E5010ECEC03E2EF5E679880E265D486A3 | 2039.03.27 | 2039-03-27 11:35:39 | ||||||||||
0011J00001KN7FWQA1 | 1007379099 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | DarkMatter Root CA G3 | DarkMatter Root CA G3 | Root Certificate | Root Certificate | E68729013A50404DC1BAF7127B3D3C98A8FF392B735D0B1140858D5B91C3BE65 | E68729013A50404DC1BAF7127B3D3C98A8FF392B735D0B1140858D5B91C3BE65 | 2037.05.13 | 2037-05-13 13:25:34 | ||||||||||
0011J00001KN7KgQAL | 1007381165 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | DarkMatter Root CA G4 | DarkMatter Root CA G4 | Root Certificate | Root Certificate | 515869A435D6D47D3EB8F38D6F9198EC83F2A56AD31CC1AEDE4F7B89DA69E4BF | 515869A435D6D47D3EB8F38D6F9198EC83F2A56AD31CC1AEDE4F7B89DA69E4BF | 2037.05.13 | 2037-05-13 13:57:45 | ||||||||||
0011J00001MnOFTQA3 | 1341802940 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | DarkMatter Root CA G4 | DarkMatter Root CA G4 | Root Certificate | Root Certificate | 319A7F79258C33992B6BA277005AD3EA1802D899A99E42CD541750A4B4CC7CCD | 319A7F79258C33992B6BA277005AD3EA1802D899A99E42CD541750A4B4CC7CCD | 2039.03.27 | 2039-03-27 11:45:59 | ||||||||||
0011J00001ObXK7QAN | 1540135544 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | DigitalTrust Root CA G3 | DigitalTrust Root CA G3 | Root Certificate | Root Certificate | 69062701346901A8E73BD846BFD1AE5752D389A85768DFCB04D6DDEEDC1D6B54 | 69062701346901A8E73BD846BFD1AE5752D389A85768DFCB04D6DDEEDC1D6B54 | 2039.03.27 | 2039-03-27 13:42:54 | ||||||||||
0011J00001ObXKCQA3 | 1540164155 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | DigitalTrust Root CA G4 | DigitalTrust Root CA G4 | Root Certificate | Root Certificate | 1EEA09E623D764AF6F659141D3E41FBBE5158F9645801180A1A86CE5DF538B82 | 1EEA09E623D764AF6F659141D3E41FBBE5158F9645801180A1A86CE5DF538B82 | 2039.03.27 | 2039-03-27 13:50:17 | ||||||||||
0011J00001MnOGqQAN | 1341803881 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | UAE Global Root CA G3 | UAE Global Root CA G3 | Root Certificate | Root Certificate | D2DBB1E65DE7FA8E13EF96B954C1E1FEE4349626A822DE814F11A17C133D808B | D2DBB1E65DE7FA8E13EF96B954C1E1FEE4349626A822DE814F11A17C133D808B | 2039.03.27 | 2039-03-27 07:28:20 | ||||||||||
0011J00001KN7LyQAL | 1007382566 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | UAE Global Root CA G3 | UAE Global Root CA G3 | Root Certificate | Root Certificate | 0A9A4013AFC05650945CCA63B92A6B265857CF403403DEA52E0E68CC4E1BF574 | 0A9A4013AFC05650945CCA63B92A6B265857CF403403DEA52E0E68CC4E1BF574 | 2037.05.12 | 2037-05-12 10:40:31 | ||||||||||
0011J00001MnOH6QAN | 1341804771 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | UAE Global Root CA G4 | UAE Global Root CA G4 | Root Certificate | Root Certificate | 0791529BB8DED6D1CF7A48683275668F858B5A01101A335BC7722AE37B743F36 | 0791529BB8DED6D1CF7A48683275668F858B5A01101A335BC7722AE37B743F36 | 2039.03.27 | 2039-03-27 07:39:46 | ||||||||||
0011J00001KN7N1QAL | 1007384835 | f | f | f | f | f | f | f | f | f | DarkMatter LLC | UAE Global Root CA G4 | UAE Global Root CA G4 | Root Certificate | Root Certificate | 3E83A6C780B4C5B87538AD2E43A203708FF7FF29BEDC7B20626BF7C009199C0A | 3E83A6C780B4C5B87538AD2E43A203708FF7FF29BEDC7B20626BF7C009199C0A | 2037.05.12 | 2037-05-12 10:54:59 | ||||||||||
001o000000rGWgYAAW | 12726817 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV BT 01 | CA DATEV BT 01 | Root Certificate | Root Certificate | 1E910B40C08184C0CA20468E824502FF2485163F77B03BB73296823F03885621 | 1E910B40C08184C0CA20468E824502FF2485163F77B03BB73296823F03885621 | 2017.01.09 | 2017-01-09 13:42:30 | ||||||||||
001o000000rGWYAAA4 | 12728478 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV BT 02 | CA DATEV BT 02 | Root Certificate | Root Certificate | 81C2568503EB3BE5EEC366653960E6D1BE9448915E4605B793FBEB34CCB2470F | 81C2568503EB3BE5EEC366653960E6D1BE9448915E4605B793FBEB34CCB2470F | 2019.08.02 | 2019-08-02 08:59:44 | ||||||||||
001o000000rGWYeAAO | 12729095 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV BT 03 | CA DATEV BT 03 | Root Certificate | Root Certificate | 0C0B6B2BD1EDD7B27FEAD157F8E846B335B784A39F06C47216C8746F64C5CEDA | 0C0B6B2BD1EDD7B27FEAD157F8E846B335B784A39F06C47216C8746F64C5CEDA | 2022.08.02 | 2022-08-02 07:40:59 | ||||||||||
001o000000rGWZcAAO | 12723209 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV INT 01 | CA DATEV INT 01 | Root Certificate | Root Certificate | EFB5157E9C66CAA1DCC63C9FAC0127CDE83B7A426C4579B7B43A41BA46A56DEB | EFB5157E9C66CAA1DCC63C9FAC0127CDE83B7A426C4579B7B43A41BA46A56DEB | 2017.01.09 | 2017-01-09 13:42:30 | ||||||||||
001o000000rGWd0AAG | 12725968 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV INT 02 | CA DATEV INT 02 | Root Certificate | Root Certificate | 997E15C5A4481A8598499753971EE2601D1047C3635AFF21AF4221A817FD2D96 | 997E15C5A4481A8598499753971EE2601D1047C3635AFF21AF4221A817FD2D96 | 2019.08.02 | 2019-08-02 08:59:44 | ||||||||||
001o000000rGWcvAAG | 12728240 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV INT 03 | CA DATEV INT 03 | Root Certificate | Root Certificate | 8BA1BD9C88EFB3947E60EBE21137F81DF7F09994CEF27F097055018B8194C634 | 8BA1BD9C88EFB3947E60EBE21137F81DF7F09994CEF27F097055018B8194C634 | 2022.08.02 | 2022-08-02 07:40:59 | ||||||||||
001o000000rGWWOAA4 | 12726336 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV STD 01 | CA DATEV STD 01 | Root Certificate | Root Certificate | 1BA622B36325544AE922AFC22EF9D367943794F6E16874F368A733C65C9D5279 | 1BA622B36325544AE922AFC22EF9D367943794F6E16874F368A733C65C9D5279 | 2017.01.09 | 2017-01-09 13:42:30 | ||||||||||
001o000000rGWeSAAW | 12729580 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV STD 02 | CA DATEV STD 02 | Root Certificate | Root Certificate | 05D38C2A70BFC500CCB0CB509159B46B065C6AC9CB42D2E6F16167841434572A | 05D38C2A70BFC500CCB0CB509159B46B065C6AC9CB42D2E6F16167841434572A | 2019.08.02 | 2019-08-02 08:59:44 | ||||||||||
001o000000rGWXMAA4 | 12729592 | f | f | f | f | f | f | f | f | f | DATEV eG | CA DATEV STD 03 | CA DATEV STD 03 | Root Certificate | Root Certificate | 54AE8A683FE2D78FF1EF0E0B3F58425092953BA08C67FE4A95595D1CEBCDCB30 | 54AE8A683FE2D78FF1EF0E0B3F58425092953BA08C67FE4A95595D1CEBCDCB30 | 2022.08.02 | 2022-08-02 07:40:59 | ||||||||||
001o000000rGWcMAAW | 8571963 | f | f | f | f | f | f | f | f | f | Department of Defence Australia | ADOCA02 | ADOCA02 | Root Certificate | Root Certificate | 6CCFD302FC44BF4599329B9750878EA44E7E8566564BCBD586169762DD10C74E | 6CCFD302FC44BF4599329B9750878EA44E7E8566564BCBD586169762DD10C74E | 2019.01.27 | 2019-01-27 02:31:24 | ||||||||||
001o000000HshFqAAJ | 12722164 | f | f | f | f | f | f | f | f | f | Deutscher Sparkassen Verlag GmbH (S-TRUST, DSV-Gruppe) | S-TRUST Authentication and Encryption Root CA 2005:PN | S-TRUST Authentication and Encryption Root CA 2005:PN | Root Certificate | Root Certificate | 37D8DC8AF7867845DA3344A6B1BADE448D8A80E47B5579F96BF631768F9F30F6 | 37D8DC8AF7867845DA3344A6B1BADE448D8A80E47B5579F96BF631768F9F30F6 | 2030.06.21 | 2030-06-21 23:59:59 | ||||||||||
001o000000TNZexAAH | 12724556 | f | f | f | f | f | f | f | f | f | Deutscher Sparkassen Verlag GmbH (S-TRUST, DSV-Gruppe) | S-TRUST Universal Root CA | S-TRUST Universal Root CA | Root Certificate | Root Certificate | D80FEF910AE3F104723B045CEC2D019F441CE6213ADF156791E70C1790110A31 | D80FEF910AE3F104723B045CEC2D019F441CE6213ADF156791E70C1790110A31 | 2038.10.21 | 2038-10-21 23:59:59 | ||||||||||
001o000000HshFzAAJ | 78531 | f | f | f | f | f | f | f | f | f | Deutscher Sparkassen Verlag GmbH (S-TRUST, DSV-Gruppe) | TC TrustCenter Class 3 CA II | TC TrustCenter Class 3 CA II | Root Certificate | Root Certificate | 8DA084FCF99CE07722F89B3205939806FA5CB811E1C813F6A108C7D336B3408E | 8DA084FCF99CE07722F89B3205939806FA5CB811E1C813F6A108C7D336B3408E | 2025.12.31 | 2025-12-31 22:59:59 | ||||||||||
001o000000HshESAAZ | 392 | f | f | f | f | f | f | f | f | f | Deutsche Telekom Security GmbH | Deutsche Telekom Root CA 2 | Deutsche Telekom Root CA 2 | Root Certificate | Root Certificate | B6191A50D0C3977F7DA99BCDAAC86A227DAEB9679EC70BA3B0C9D92271C170D3 | B6191A50D0C3977F7DA99BCDAAC86A227DAEB9679EC70BA3B0C9D92271C170D3 | 2019.07.09 | 2019-07-09 23:59:00 | ||||||||||
0018Z00003CjgBkQAJ | 4990144969 | f | f | f | f | f | f | f | f | f | DigiCert | DigiCert Verified Mark Root CA | DigiCert Verified Mark Root CA | Root Certificate | Root Certificate | 504386C9EE8932FECC95FADE427F69C3E2534B7310489E300FEE448E33C46B42 | 504386C9EE8932FECC95FADE427F69C3E2534B7310489E300FEE448E33C46B42 | 2049.09.23 | 2049-09-23 12:12:06 | ||||||||||
001o000000HshEqAAJ | 601515 | f | f | f | f | f | f | f | f | f | DigiCert | Equifax Secure eBusiness CA-1 | Equifax Secure eBusiness CA-1 | Root Certificate | Root Certificate | CF56FF46A4A186109DD96584B5EEB58A510C4275B0E5F94F40BBAE865E19F673 | CF56FF46A4A186109DD96584B5EEB58A510C4275B0E5F94F40BBAE865E19F673 | 2020.06.21 | 2020-06-21 04:00:00 | ||||||||||
0018Z00002iKhq2QAC | 8949829 | f | f | f | f | f | f | f | f | f | DigiCert | Equifax Secure eBusiness CA-2 | Equifax Secure eBusiness CA-2 | Root Certificate | Root Certificate | 2F274E48ABA4AC7B765933101775506DC30EE38EF6ACD5C04932CFE041234220 | 2F274E48ABA4AC7B765933101775506DC30EE38EF6ACD5C04932CFE041234220 | 2019.06.23 | 2019-06-23 12:14:45 | ||||||||||
001o000000HshErAAJ | 592 | f | f | f | f | f | f | f | f | f | DigiCert | Equifax Secure Global eBusiness CA-1 | Equifax Secure Global eBusiness CA-1 | Root Certificate | Root Certificate | 5F0B62EAB5E353EA6521651658FBB65359F443280A4AFBD104D77D10F9F04C07 | 5F0B62EAB5E353EA6521651658FBB65359F443280A4AFBD104D77D10F9F04C07 | 2020.06.21 | 2020-06-21 04:00:00 | ||||||||||
001o000000HshEtAAJ | 17 | f | f | f | f | f | f | f | f | f | DigiCert | GeoTrust Global CA | GeoTrust Global CA | Root Certificate | Root Certificate | FF856A2D251DCD88D36656F450126798CFABAADE40799C722DE4D2B5DB36A73A | FF856A2D251DCD88D36656F450126798CFABAADE40799C722DE4D2B5DB36A73A | 2022.05.21 | 2022-05-21 04:00:00 | ||||||||||
001o000000HshEuAAJ | 4180686 | f | f | f | f | f | f | f | f | f | DigiCert | GeoTrust Global CA 2 | GeoTrust Global CA 2 | Root Certificate | Root Certificate | CA2D82A08677072F8AB6764FF035676CFE3E5E325E012172DF3F92096DB79B85 | CA2D82A08677072F8AB6764FF035676CFE3E5E325E012172DF3F92096DB79B85 | 2019.03.04 | 2019-03-04 05:00:00 | ||||||||||
001o000000HshEyAAJ | 4174851 | f | f | f | f | f | f | f | f | f | DigiCert | GeoTrust Universal CA | GeoTrust Universal CA | Root Certificate | Root Certificate | A0459B9F63B22559F5FA5D4C6DB3F9F72FF19342033578F073BF1D1B46CBB912 | A0459B9F63B22559F5FA5D4C6DB3F9F72FF19342033578F073BF1D1B46CBB912 | 2029.03.04 | 2029-03-04 05:00:00 | ||||||||||
001o000000HshEzAAJ | 4175126 | f | f | f | f | f | f | f | f | f | DigiCert | GeoTrust Universal CA 2 | GeoTrust Universal CA 2 | Root Certificate | Root Certificate | A0234F3BC8527CA5628EEC81AD5D69895DA5680DC91D1CB8477F33F878B95B0B | A0234F3BC8527CA5628EEC81AD5D69895DA5680DC91D1CB8477F33F878B95B0B | 2029.03.04 | 2029-03-04 05:00:00 | ||||||||||
001o000000HshF7AAJ | 10 | f | f | f | f | f | f | f | f | f | DigiCert | GTE CyberTrust Global Root | GTE CyberTrust Global Root | Root Certificate | Root Certificate | A53125188D2110AA964B02C7B7C6DA3203170894E5FB71FFFB6667D5E6810A36 | A53125188D2110AA964B02C7B7C6DA3203170894E5FB71FFFB6667D5E6810A36 | 2018.08.13 | 2018-08-13 23:59:00 | ||||||||||
0018Z00002iKhnNQAS | 8333276 | f | f | f | f | f | f | f | f | f | DigiCert | GTE CyberTrust Root | GTE CyberTrust Root | Root Certificate | Root Certificate | 527B050527DF529C0F7AD00CEF1E7BA421788182615C326C8B6D1A2061A0BD7C | 527B050527DF529C0F7AD00CEF1E7BA421788182615C326C8B6D1A2061A0BD7C | 2006.02.23 | 2006-02-23 23:59:00 | ||||||||||
0018Z00002iKhn8QAC | 12729674 | f | f | f | f | f | f | f | f | f | DigiCert | GTE CyberTrust Root | GTE CyberTrust Root | Root Certificate | Root Certificate | 2DFCBACADF22A6FF107A51FD3E8B9E17858028879B13F7C3B57B3E1BD2315809 | 2DFCBACADF22A6FF107A51FD3E8B9E17858028879B13F7C3B57B3E1BD2315809 | 2004.04.03 | 2004-04-03 23:59:00 | ||||||||||
0018Z00002iKhoqQAC | 12725030 | f | f | f | f | f | f | f | f | f | DigiCert | SecureNet CA Class B | SecureNet CA Class B | Root Certificate | Root Certificate | B3C962D34019FB38AB9FE9C62399742AB26C43C2D18CE3F2B13C14321E52964B | B3C962D34019FB38AB9FE9C62399742AB26C43C2D18CE3F2B13C14321E52964B | 2009.10.15 | 2009-10-15 23:59:00 | ||||||||||
001o000000rGWcRAAW | 12729019 | f | f | f | f | f | f | f | f | f | DigiCert | Symantec Class 1 Public Primary Certification Authority - G4 | Symantec Class 1 Public Primary Certification Authority - G4 | Root Certificate | Root Certificate | 363F3C849EAB03B0A2A0F636D7B86D04D3AC7FCFE26A0A9121AB9795F6E176DF | 363F3C849EAB03B0A2A0F636D7B86D04D3AC7FCFE26A0A9121AB9795F6E176DF | 2038.01.18 | 2038-01-18 23:59:59 | ||||||||||
001o000000rGWaLAAW | 12726040 | f | f | f | f | f | f | f | f | f | DigiCert | Symantec Class 2 Public Primary Certification Authority - G4 | Symantec Class 2 Public Primary Certification Authority - G4 | Root Certificate | Root Certificate | FE863D0822FE7A2353FA484D5924E875656D3DC9FB58771F6F616F9D571BC592 | FE863D0822FE7A2353FA484D5924E875656D3DC9FB58771F6F616F9D571BC592 | 2038.01.18 | 2038-01-18 23:59:59 | ||||||||||
001o000000rGWaqAAG | 19392285 | f | f | f | f | f | f | f | f | f | DigiCert | Symantec Enterprise Mobile Root for Microsoft | Symantec Enterprise Mobile Root for Microsoft | Root Certificate | Root Certificate | 8A5E4881D42F7475E8EC3726FCD5E51884AA04DAA9FA7ADAC8CD26452CF885D4 | 8A5E4881D42F7475E8EC3726FCD5E51884AA04DAA9FA7ADAC8CD26452CF885D4 | 2032.03.14 | 2032-03-14 23:59:59 | ||||||||||
0018Z00002iKhwHQAS | 12722652 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Class 1 CA | TC TrustCenter Class 1 CA | Root Certificate | Root Certificate | 614FD18DA1490560CDAD1196E2492AB7062EAB1A67B3A30F1D0585A7D6BA6824 | 614FD18DA1490560CDAD1196E2492AB7062EAB1A67B3A30F1D0585A7D6BA6824 | 2011.01.01 | 2011-01-01 11:59:59 | ||||||||||
0018Z00002iKhwRQAS | 8333289 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Class 2 CA | TC TrustCenter Class 2 CA | Root Certificate | Root Certificate | 8F9E2751DCD574E9BA90E744EA92581FD0AF640AE86AC1CE2198C90F96B44823 | 8F9E2751DCD574E9BA90E744EA92581FD0AF640AE86AC1CE2198C90F96B44823 | 2011.01.01 | 2011-01-01 11:59:59 | ||||||||||
001o000000HshFyAAJ | 1043 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Class 2 CA II | TC TrustCenter Class 2 CA II | Root Certificate | Root Certificate | E6B8F8766485F807AE7F8DAC1670461F07C0A13EEF3A1FF717538D7ABAD391B4 | E6B8F8766485F807AE7F8DAC1670461F07C0A13EEF3A1FF717538D7ABAD391B4 | 2025.12.31 | 2025-12-31 22:59:59 | ||||||||||
0018Z00002iKhdtQAC | 8333272 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Class 3 CA | TC TrustCenter Class 3 CA | Root Certificate | Root Certificate | 76EF4762E573206006CBC338B17CA4BC200574A11928D90C3EF31C5E803E6C6F | 76EF4762E573206006CBC338B17CA4BC200574A11928D90C3EF31C5E803E6C6F | 2011.01.01 | 2011-01-01 11:59:59 | ||||||||||
0018Z00002iKhzuQAC | 12729100 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Class 4 CA | TC TrustCenter Class 4 CA | Root Certificate | Root Certificate | 8DBB5A7C06C20EF62DD912A36740992FF6E1E8583D42EDE257C3AFFD7C769399 | 8DBB5A7C06C20EF62DD912A36740992FF6E1E8583D42EDE257C3AFFD7C769399 | 2011.01.01 | 2011-01-01 11:59:59 | ||||||||||
0018Z00002iKhdSQAS | 1198919 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Class 4 CA II | TC TrustCenter Class 4 CA II | Root Certificate | Root Certificate | 3266967E59CD68008D9DD320811185C704205E8D95FDD84F1C7B311E6704FC32 | 3266967E59CD68008D9DD320811185C704205E8D95FDD84F1C7B311E6704FC32 | 2025.12.31 | 2025-12-31 22:59:59 | ||||||||||
0018Z00002iKi04QAC | 7399349683 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Time Stamping CA | TC TrustCenter Time Stamping CA | Root Certificate | Root Certificate | BB6CE72F0E64BFD93ADE14B1BECF8C41E7BC927CAFB477A3A95878C01AA26C3E | BB6CE72F0E64BFD93ADE14B1BECF8C41E7BC927CAFB477A3A95878C01AA26C3E | 2011.01.01 | 2011-01-01 11:59:59 | ||||||||||
001o000000HshG0AAJ | 7107 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Universal CA I | TC TrustCenter Universal CA I | Root Certificate | Root Certificate | EBF3C02A8789B1FB7D511995D663B72906D913CE0D5E10568A8A77E2586167E7 | EBF3C02A8789B1FB7D511995D663B72906D913CE0D5E10568A8A77E2586167E7 | 2025.12.31 | 2025-12-31 22:59:59 | ||||||||||
0018Z00002iKhdIQAS | 1530791 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Universal CA II | TC TrustCenter Universal CA II | Root Certificate | Root Certificate | 2834991CF677466D22BAAC3B0055E5B911D9A9E55F5B85BA02DC566782C30E8A | 2834991CF677466D22BAAC3B0055E5B911D9A9E55F5B85BA02DC566782C30E8A | 2030.12.31 | 2030-12-31 22:59:59 | ||||||||||
001o000000HshG1AAJ | 906351 | f | f | f | f | f | f | f | f | f | DigiCert | TC TrustCenter Universal CA III | TC TrustCenter Universal CA III | Root Certificate | Root Certificate | 309B4A87F6CA56C93169AAA99C6D988854D7892BD5437E2D07B29CBEDA55D35D | 309B4A87F6CA56C93169AAA99C6D988854D7892BD5437E2D07B29CBEDA55D35D | 2029.12.31 | 2029-12-31 23:59:59 | ||||||||||
0018Z00002iKhnSQAS | 12725862 | f | f | f | f | f | f | f | f | f | DigiCert | Thawte Personal Basic CA | Thawte Personal Basic CA | Root Certificate | Root Certificate | 2F1062F8BF84E7EB83A0F64C98D891FBE2C811B17FFAC0BCE1A6DC9C7C3DCBB7 | 2F1062F8BF84E7EB83A0F64C98D891FBE2C811B17FFAC0BCE1A6DC9C7C3DCBB7 | 2020.12.31 | 2020-12-31 23:59:59 | ||||||||||
0018Z00002iKhnhQAC | 12624791 | f | f | f | f | f | f | f | f | f | DigiCert | Thawte Personal Freemail CA | Thawte Personal Freemail CA | Root Certificate | Root Certificate | 57014F3CBE1782AA9B7921C5E3A95AFD26D5727D9475D0142E6B6D27798133C0 | 57014F3CBE1782AA9B7921C5E3A95AFD26D5727D9475D0142E6B6D27798133C0 | 2020.12.31 | 2020-12-31 23:59:59 | ||||||||||
0018Z00002iKhncQAC | 12724095 | f | f | f | f | f | f | f | f | f | DigiCert | Thawte Personal Premium CA | Thawte Personal Premium CA | Root Certificate | Root Certificate | BA7F1136389075B8E86C53C095FA14F5C83B6B017A0244ED7637114620D3A3B1 | BA7F1136389075B8E86C53C095FA14F5C83B6B017A0244ED7637114620D3A3B1 | 2020.12.31 | 2020-12-31 23:59:59 | ||||||||||
0018Z00002iKhMqQAK | 1615980 | f | f | f | f | f | f | f | f | f | DigiCert | Thawte Premium Server CA | Thawte Premium Server CA | Root Certificate | Root Certificate | 3F9F27D583204B9E09C8A3D2066C4B57D3A2479C3693650880505698105DBCE9 | 3F9F27D583204B9E09C8A3D2066C4B57D3A2479C3693650880505698105DBCE9 | 2021.01.01 | 2021-01-01 23:59:59 | ||||||||||
001o000000HshG8AAJ | 1616034 | f | f | f | f | f | f | f | f | f | DigiCert | Thawte Server CA | Thawte Server CA | Root Certificate | Root Certificate | B4410B73E2E6EACA47FBC42F8FA4018AF4381DC54CFAA84450461EED09454DE9 | B4410B73E2E6EACA47FBC42F8FA4018AF4381DC54CFAA84450461EED09454DE9 | 2020.12.31 | 2020-12-31 23:59:59 | ||||||||||
0018Z00002iKhN0QAK | 532 | f | f | f | f | f | f | f | f | f | DigiCert | Thawte Server CA | Thawte Server CA | Root Certificate | Root Certificate | 87C678BFB8B25F38F7E97B336956BBCF144BBACAA53647E61A2325BC1055316B | 87C678BFB8B25F38F7E97B336956BBCF144BBACAA53647E61A2325BC1055316B | 2021.01.01 | 2021-01-01 23:59:59 | ||||||||||
001o000000rGWfQAAW | 19392279 | f | f | f | f | f | f | f | f | f | DigiCert | Thawte Timestamping CA | Thawte Timestamping CA | Root Certificate | Root Certificate | 6B6C1E01F590F5AFC5FCF85CD0B9396884048659FC2C6D1170D68B045216C3FD | 6B6C1E01F590F5AFC5FCF85CD0B9396884048659FC2C6D1170D68B045216C3FD | 2020.12.31 | 2020-12-31 23:59:59 | ||||||||||
001o000000HsoYNAAZ | 860440 | f | f | f | f | f | f | f | f | f | DigiCert | UTN-USERFirst-Network Applications | UTN-USERFirst-Network Applications | Root Certificate | Root Certificate | C38DCB38959393358691EA4D4F3CE495CE748996E64ED1891D897A0FC4DD55C6 | C38DCB38959393358691EA4D4F3CE495CE748996E64ED1891D897A0FC4DD55C6 | 2019.07.09 | 2019-07-09 18:57:49 | ||||||||||
001o000000HshGWAAZ | 26682 | f | f | f | f | f | f | f | f | f | DigiCert | VeriSign Class 3 Public Primary Certification Authority - G3 | VeriSign Class 3 Public Primary Certification Authority - G3 | Root Certificate | Root Certificate | EB04CF5EB1F39AFA762F2BB120F296CBA520C1B97DB1589565B81CB9A17B7244 | EB04CF5EB1F39AFA762F2BB120F296CBA520C1B97DB1589565B81CB9A17B7244 | 2036.07.16 | 2036-07-16 23:59:59 | ||||||||||
0011J00001W2MXYQA3 | 2475409079 | f | f | f | f | f | f | f | f | f | DigiCert | VeriSign Class 3 Public Primary Certification Authority - G3 | VeriSign Class 3 Public Primary Certification Authority - G3 | Root Certificate | Root Certificate | FAF78B73D93E50021C0C25F4D20B8E08F7F42C272A2792488A1C29372149C5CF | FAF78B73D93E50021C0C25F4D20B8E08F7F42C272A2792488A1C29372149C5CF | 2036.07.16 | 2036-07-16 23:59:59 | ||||||||||
001o000000HshGZAAZ | 8984575 | f | f | f | f | f | f | f | f | f | DigiCert | VeriSign Class 4 Public Primary Certification Authority - G3 | VeriSign Class 4 Public Primary Certification Authority - G3 | Root Certificate | Root Certificate | E389360D0FDBAEB3D250584B4730314E222F39C156A020144E8D960561791506 | E389360D0FDBAEB3D250584B4730314E222F39C156A020144E8D960561791506 | 2036.07.16 | 2036-07-16 23:59:59 | ||||||||||
001o000000rGWhHAAW | 9597333 | f | f | f | f | f | f | f | f | f | Digidentity B.V. | Digidentity L3 Root CA - G2 | Digidentity L3 Root CA - G2 | Root Certificate | Root Certificate | 417DCF3180F4ED1A3747ACF1179316CD48CB05C5788435168AED98C98CDCB615 | 417DCF3180F4ED1A3747ACF1179316CD48CB05C5788435168AED98C98CDCB615 | 2031.11.10 | 2031-11-10 10:44:19 | ||||||||||
0011J00001P3HcSQAV | 1566577926 | f | f | f | f | f | f | f | f | f | Digidentity B.V. | Digidentity Services Root CA | Digidentity Services Root CA | Root Certificate | Root Certificate | E28097721A8CAB8880AF80FDEF8902B1F15BC7473AD68EC22991257A910D9EA2 | E28097721A8CAB8880AF80FDEF8902B1F15BC7473AD68EC22991257A910D9EA2 | 2043.07.04 | 2043-07-04 10:05:42 | ||||||||||
0018Z00002iKmd1QAC | 2370015129 | f | f | f | f | f | f | f | f | f | DigiNotar | DigiNotar Root CA | DigiNotar Root CA | Root Certificate | Root Certificate | 3BDED8110E8F8C5637950F227422F76DC60545B31688357DE68F7E1912EC02F8 | 3BDED8110E8F8C5637950F227422F76DC60545B31688357DE68F7E1912EC02F8 | 2025.03.31 | 2025-03-31 18:13:45 | ||||||||||
0018Z00002iKmShQAK | 2370015214 | f | f | f | f | f | f | f | f | f | DigiNotar | DigiNotar Root CA | DigiNotar Root CA | Root Certificate | Root Certificate | 6BF5533D0DDEAF023D58E401277C26442B1F1AF1A0F2DBBD9B2E3BA3A292FB23 | 6BF5533D0DDEAF023D58E401277C26442B1F1AF1A0F2DBBD9B2E3BA3A292FB23 | 2027.05.14 | 2027-05-14 16:27:01 | ||||||||||
0018Z00002iKmdVQAS | 2369896934 | f | f | f | f | f | f | f | f | f | DigiNotar | DigiNotar Root CA | DigiNotar Root CA | Root Certificate | Root Certificate | 0D136E439F0AB6E97F3A02A540DA9F0641AA554E1D66EA51AE2920D51B2F7217 | 0D136E439F0AB6E97F3A02A540DA9F0641AA554E1D66EA51AE2920D51B2F7217 | 2025.03.31 | 2025-03-31 18:19:21 | ||||||||||
0018Z00002iKmboQAC | 2458897165 | f | f | f | f | f | f | f | f | f | DigiNotar | DigiNotar Root CA G2 | DigiNotar Root CA G2 | Root Certificate | Root Certificate | 294F55EF3BD7244C6FF8A68AB797E9186EC27582751A791515E3292E48372D61 | 294F55EF3BD7244C6FF8A68AB797E9186EC27582751A791515E3292E48372D61 | 2029.07.03 | 2029-07-03 13:59:02 | ||||||||||
001o000000HshE8AAJ | 55291 | f | f | f | f | f | f | f | f | f | Disig, a.s. | CA Disig | CA Disig | Root Certificate | Root Certificate | 92BF5119ABECCAD0B1332DC4E1D05FBA75B5679044EE0CA26E931F744F2F33CF | 92BF5119ABECCAD0B1332DC4E1D05FBA75B5679044EE0CA26E931F744F2F33CF | 2016.03.22 | 2016-03-22 01:39:34 | ||||||||||
001o000000HshE9AAJ | 8562269 | f | f | f | f | f | f | f | f | f | Disig, a.s. | CA Disig Root R1 | CA Disig Root R1 | Root Certificate | Root Certificate | F96F23F4C3E79C077A46988D5AF5900676A0F039CB645DD17549B216C82440CE | F96F23F4C3E79C077A46988D5AF5900676A0F039CB645DD17549B216C82440CE | 2042.07.19 | 2042-07-19 09:06:56 | ||||||||||
001o000000HshEEAAZ | 1563 | f | f | f | f | f | f | f | f | f | Docaposte Certinomis SAS | Certinomis - Autorité Racine | Certinomis - Autorité Racine | Root Certificate | Root Certificate | FCBFE2886206F72B27593C8B070297E12D769ED10ED7930705A8098EFFC14D17 | FCBFE2886206F72B27593C8B070297E12D769ED10ED7930705A8098EFFC14D17 | 2028.09.17 | 2028-09-17 08:28:59 | ||||||||||
001o000000rGWbYAAW | 9721877 | f | f | f | f | f | f | f | f | f | DocuSign (OpenTrust/Keynectis) | OpenTrust Root CA G1 | OpenTrust Root CA G1 | Root Certificate | Root Certificate | 56C77128D98C18D91B4CFDFFBC25EE9103D4758EA2ABAD826A90F3457D460EB4 | 56C77128D98C18D91B4CFDFFBC25EE9103D4758EA2ABAD826A90F3457D460EB4 | 2038.01.15 | 2038-01-15 00:00:00 | ||||||||||
0018Z00002iKhbqQAC | 12722671 | f | f | f | f | f | f | f | f | f | D-Trust | D-TRUST Qualified Root CA 1 2007:PN | D-TRUST Qualified Root CA 1 2007:PN | Root Certificate | Root Certificate | E8C6AA6B5F58A8F2A6365CF98E65693563A38B7B2F32CF1BE06F2D2229D4BF59 | E8C6AA6B5F58A8F2A6365CF98E65693563A38B7B2F32CF1BE06F2D2229D4BF59 | 2012.06.08 | 2012-06-08 11:47:46 | ||||||||||
001o000000rGWZ9AAO | 12624936 | f | f | f | f | f | f | f | f | f | D-TRUST | D-TRUST Root Class 2 CA 2007 | D-TRUST Root Class 2 CA 2007 | Root Certificate | Root Certificate | 8DA75F1327217C88060FD2529EFF2816E50B0C74541EA4EA3DFCEE66A71EFE09 | 8DA75F1327217C88060FD2529EFF2816E50B0C74541EA4EA3DFCEE66A71EFE09 | 2022.05.16 | 2022-05-16 05:20:47 | ||||||||||
001o000000rGWhgAAG | 482159 | f | f | f | f | f | f | f | f | f | D-TRUST | D-TRUST Root Class 3 CA 2007 | D-TRUST Root Class 3 CA 2007 | Root Certificate | Root Certificate | 90F3E05396995FF20922C44592DB62D7845E1BF64AEF512CCA75BC669CAA2479 | 90F3E05396995FF20922C44592DB62D7845E1BF64AEF512CCA75BC669CAA2479 | 2022.05.16 | 2022-05-16 05:20:47 | ||||||||||
0011J00001KtTAkQAN | 1028565120 | f | f | f | f | f | f | f | f | f | Dubai Electronic Security Center (DESC) | UAE Global Root CA G4 E2 | UAE Global Root CA G4 E2 | Root Certificate | Root Certificate | 51A7ECB93ACB55FF0E34CD0ECFD1578978B37E9EDB82FD06F23F6CEC005B986D | 51A7ECB93ACB55FF0E34CD0ECFD1578978B37E9EDB82FD06F23F6CEC005B986D | 2043.02.06 | 2043-02-06 08:34:25 | ||||||||||
0018Z00002iKhWbQAK | 6912877 | f | f | f | f | f | f | f | f | f | E-CERTCHILE | E-CERT ROOT CA | E-CERT ROOT CA | Root Certificate | Root Certificate | C109E0D1B64000B01E894BDAA955E1FF91B6D084A838D90E044B9E3FCD2A8BFA | C109E0D1B64000B01E894BDAA955E1FF91B6D084A838D90E044B9E3FCD2A8BFA | 2028.09.05 | 2028-09-05 19:39:41 | ||||||||||
0018Z00002iKhQkQAK | 8742721 | f | f | f | f | f | f | f | f | f | e-commerce monitoring GmbH | A-CERT ADVANCED | A-CERT ADVANCED | Root Certificate | Root Certificate | 2DC62C3F6C0CC9020BBA77E1C511511024B943EE598856DA5A22E222B7277A20 | 2DC62C3F6C0CC9020BBA77E1C511511024B943EE598856DA5A22E222B7277A20 | 2011.10.23 | 2011-10-23 14:14:14 | ||||||||||
0018Z00002iKhjpQAC | 12729075 | f | f | f | f | f | f | f | f | f | e-commerce monitoring GmbH | Arge Daten Oesterreichische Gesellschaft fuer Datenschutz | Arge Daten Oesterreichische Gesellschaft fuer Datenschutz | Root Certificate | Root Certificate | 4E7480AD702A379DC589ADB4FAA625E6A5993F87EF2375D5437FFE3B79BE4E96 | 4E7480AD702A379DC589ADB4FAA625E6A5993F87EF2375D5437FFE3B79BE4E96 | 2009.02.12 | 2009-02-12 11:30:30 | ||||||||||
001o000000HshDnAAJ | 83004 | f | f | f | f | f | f | f | f | f | EDICOM | ACEDICOM Root | ACEDICOM Root | Root Certificate | Root Certificate | 03950FB49A531F3E1991942398DFA9E0EA32D7BA1CDD9BC85DB57ED9400B434A | 03950FB49A531F3E1991942398DFA9E0EA32D7BA1CDD9BC85DB57ED9400B434A | 2028.04.13 | 2028-04-13 16:24:22 | ||||||||||
001o000000HshEkAAJ | 39566 | f | f | f | f | f | f | f | f | f | e-Guven Elektronik Bilgi Guvenligi A.S. | e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi | e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi | Root Certificate | Root Certificate | E609078465A419780CB6AC4C1C0BFB4653D9D9CC6EB3946EB7F3D69997BAD598 | E609078465A419780CB6AC4C1C0BFB4653D9D9CC6EB3946EB7F3D69997BAD598 | 2017.01.04 | 2017-01-04 11:32:48 | ||||||||||
001o000000rGWgsAAG | 8636804 | f | f | f | f | f | f | f | f | f | e-Guven Elektronik Bilgi Guvenligi A.S. | E-GUVEN Kok Elektronik Sertifika Hizmet Saglayicisi S2 | E-GUVEN Kok Elektronik Sertifika Hizmet Saglayicisi S2 | Root Certificate | Root Certificate | 732FF5BC473C33EFAAD9B187FB459A732FFBEEA59DF0FDFB8E2FB5DEF4032AFE | 732FF5BC473C33EFAAD9B187FB459A732FFBEEA59DF0FDFB8E2FB5DEF4032AFE | 2023.03.10 | 2023-03-10 14:32:09 | ||||||||||
001o000000rGWakAAG | 8924625 | f | f | f | f | f | f | f | f | f | e-Guven Elektronik Bilgi Guvenligi A.S. | E-GUVEN Kok Elektronik Sertifika Hizmet Saglayicisi S3 | E-GUVEN Kok Elektronik Sertifika Hizmet Saglayicisi S3 | Root Certificate | Root Certificate | 82D42DB3D657F1944E65C192B1DD58DB8DF8417B89165B045F5C6A70C5F8939E | 82D42DB3D657F1944E65C192B1DD58DB8DF8417B89165B045F5C6A70C5F8939E | 2023.03.10 | 2023-03-10 14:39:35 | ||||||||||
001TO000007hO1RYAU | 12667781169 | f | f | f | f | f | f | f | f | f | Electronic Certification Accreditation Council (ECAC) | ECAC Root CA G1 | ECAC Root CA G1 | Root Certificate | Root Certificate | 4EC7B0E3257F710D2F2D90D3CF9E0C87ECF3D2CE59D724F9DDAE1C2485611324 | 4EC7B0E3257F710D2F2D90D3CF9E0C87ECF3D2CE59D724F9DDAE1C2485611324 | 2048.01.16 | 2048-01-16 11:57:11 | ||||||||||
001TO000006z1YSYAY | 12478657239 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root Client Auth CA - G1 | emSign Root Client Auth CA - G1 | Root Certificate | Root Certificate | 8ABFC40FAEAF13CBC8BB67B61C8D097A321CD2FEE047C54256927E0F8BFEADFD | 8ABFC40FAEAF13CBC8BB67B61C8D097A321CD2FEE047C54256927E0F8BFEADFD | 2049.02.07 | 2049-02-07 08:05:22 | ||||||||||
001TO000006zAdLYAU | 12478657240 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root Client Auth CA - G3 | emSign Root Client Auth CA - G3 | Root Certificate | Root Certificate | BBD8B3D745EFB79198D93B9C482B9D934537325729EA2F02C129261F91BE2E3D | BBD8B3D745EFB79198D93B9C482B9D934537325729EA2F02C129261F91BE2E3D | 2049.02.07 | 2049-02-07 08:26:56 | ||||||||||
001TO000006z97nYAA | 12478657241 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root CS CA - G2 | emSign Root CS CA - G2 | Root Certificate | Root Certificate | 0D74EF67C88DE3560365E225AEF976F915E901347B73352D81AB5B4132BB2150 | 0D74EF67C88DE3560365E225AEF976F915E901347B73352D81AB5B4132BB2150 | 2049.02.07 | 2049-02-07 08:15:39 | ||||||||||
001TO000006z68JYAQ | 12478656987 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root CS CA - G3 | emSign Root CS CA - G3 | Root Certificate | Root Certificate | F2EDAAFF3D9B701FB4D14C9F285F8C0BAD90FC3BCC1FA07D47F4718EDABA34A5 | F2EDAAFF3D9B701FB4D14C9F285F8C0BAD90FC3BCC1FA07D47F4718EDABA34A5 | 2049.02.07 | 2049-02-07 08:33:14 | ||||||||||
001TO000006z7XOYAY | 12478657237 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root SMIME CA - G1 | emSign Root SMIME CA - G1 | Root Certificate | Root Certificate | 47911BC8F32A11B029E0BB10A348B459404B87731B870A2F3FA97B4705DC4C25 | 47911BC8F32A11B029E0BB10A348B459404B87731B870A2F3FA97B4705DC4C25 | 2049.02.07 | 2049-02-07 07:57:36 | ||||||||||
001TO000006z6JaYAI | 12478657238 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root SMIME CA - G3 | emSign Root SMIME CA - G3 | Root Certificate | Root Certificate | F76A0D440C418DC5B362BE8E11E0A5D06023F4396093E4F455827BF55153D8A4 | F76A0D440C418DC5B362BE8E11E0A5D06023F4396093E4F455827BF55153D8A4 | 2049.02.07 | 2049-02-07 08:22:51 | ||||||||||
001TO000006z0u6YAA | 12478656983 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root TLS CA - G1 | emSign Root TLS CA - G1 | Root Certificate | Root Certificate | CEF71E70B7C29ADDF6C30CD19E614B38FD5F02A435A0EEDDD0087E183D101A51 | CEF71E70B7C29ADDF6C30CD19E614B38FD5F02A435A0EEDDD0087E183D101A51 | 2049.02.07 | 2049-02-07 07:45:41 | ||||||||||
001TO000006zAaYYAU | 12478656984 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root TLS CA - G3 | emSign Root TLS CA - G3 | Root Certificate | Root Certificate | 7DD78D5F4F13459A83DFF9ABBBA62EDBAF6F2D102BF257FD712F4D9F2746ED8D | 7DD78D5F4F13459A83DFF9ABBBA62EDBAF6F2D102BF257FD712F4D9F2746ED8D | 2049.02.07 | 2049-02-07 08:19:32 | ||||||||||
001TO000006zBeDYAU | 12478656985 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root TSA CA - G2 | emSign Root TSA CA - G2 | Root Certificate | Root Certificate | 1997770A5633FB6D0440ABF7D7E87E15D795F094F8C2959DADB00E785866BF48 | 1997770A5633FB6D0440ABF7D7E87E15D795F094F8C2959DADB00E785866BF48 | 2049.02.07 | 2049-02-07 08:11:26 | ||||||||||
001TO000006yiFgYAI | 12478656986 | f | f | f | f | f | f | f | f | f | eMudhra Technologies Limited | emSign Root TSA CA - G3 | emSign Root TSA CA - G3 | Root Certificate | Root Certificate | 75D2CE75979CF2A43B172C9F89F733DDA2136031DB4BBF3698B053714C077155 | 75D2CE75979CF2A43B172C9F89F733DDA2136031DB4BBF3698B053714C077155 | 2049.02.07 | 2049-02-07 08:30:04 | ||||||||||
001TO00000FPyA1YAL | 14487601689 | f | f | f | f | f | f | f | f | f | Entrust | Entrust 4K Client Root CA - 2024 | Entrust 4K Client Root CA - 2024 | Root Certificate | Root Certificate | 621A840CDEECFDDB20B2528E5E8AE5CBA6D2FDC23020BC7BA04FA90F54833D74 | 621A840CDEECFDDB20B2528E5E8AE5CBA6D2FDC23020BC7BA04FA90F54833D74 | 2049.07.23 | 2049-07-23 14:00:59 | ||||||||||
001o000000HshEnAAJ | 50 | f | f | f | f | f | f | f | f | f | Entrust | Entrust.net Secure Server Certification Authority | Entrust.net Secure Server Certification Authority | Root Certificate | Root Certificate | 62F240278C564C4DD8BF7D9D4F6F366EA894D22F5F34D989A983ACEC2FFFED50 | 62F240278C564C4DD8BF7D9D4F6F366EA894D22F5F34D989A983ACEC2FFFED50 | 2019.05.25 | 2019-05-25 16:39:40 | ||||||||||
001TO00000FPyQ9YAL | 14487604180 | f | f | f | f | f | f | f | f | f | Entrust | Entrust P384 Client Root CA - 2024 | Entrust P384 Client Root CA - 2024 | Root Certificate | Root Certificate | 481F0E1B0874D84B189FF83A694D27B30ECD2A477AB3289E976C7FA1A6BD255B | 481F0E1B0874D84B189FF83A694D27B30ECD2A477AB3289E976C7FA1A6BD255B | 2049.07.23 | 2049-07-23 14:09:31 | ||||||||||
0018Z00002mL3SAQA0 | 4990145127 | f | f | f | f | f | f | f | f | f | Entrust | Entrust Verified Mark Root Certification Authority - VMCR1 | Entrust Verified Mark Root Certification Authority - VMCR1 | Root Certificate | Root Certificate | 7831D95A47D42508CD5C9E6264F9096BAC19F04EB9B7C8BDD35FFFC71C189617 | 7831D95A47D42508CD5C9E6264F9096BAC19F04EB9B7C8BDD35FFFC71C189617 | 2040.12.30 | 2040-12-30 13:31:48 | ||||||||||
0018Z00002iKhkYQAS | 12729797 | f | f | f | f | f | f | f | f | f | eSign Australia | eSign Imperito Primary Root CA | eSign Imperito Primary Root CA | Root Certificate | Root Certificate | 527A42267DAEA8D8F54E91D282D5C25B615BC0DC73DC63A58F916C4ED5BF59AC | 527A42267DAEA8D8F54E91D282D5C25B615BC0DC73DC63A58F916C4ED5BF59AC | 2012.05.23 | 2012-05-23 23:59:59 | ||||||||||
0018Z00002iKhkTQAS | 12722653 | f | f | f | f | f | f | f | f | f | eSign Australia | Primary Utility Root CA | Primary Utility Root CA | Root Certificate | Root Certificate | B04D708F1AE0456265DD1B66907A2691A28680B853E031DF3DF9083AF71614D7 | B04D708F1AE0456265DD1B66907A2691A28680B853E031DF3DF9083AF71614D7 | 2012.05.23 | 2012-05-23 23:59:59 | ||||||||||
001o000000HshEhAAJ | 176085 | f | f | f | f | f | f | f | f | f | e-tugra | EBG Elektronik Sertifika Hizmet Sağlayıcısı | EBG Elektronik Sertifika Hizmet Sağlayıcısı | Root Certificate | Root Certificate | 35AE5BDDD8F7AE635CFFBA5682A8F00B95F48462C7108EE9A0E5292B074AAFB2 | 35AE5BDDD8F7AE635CFFBA5682A8F00B95F48462C7108EE9A0E5292B074AAFB2 | 2016.08.14 | 2016-08-14 00:31:09 | ||||||||||
0014o00001oAWROAA4 | 3630046475 | f | f | f | f | f | f | f | f | f | European Agency of Digital Trust | EADTrust ECC 256 Root CA For Qualified Web DV/OV Cert 2019 | EADTrust ECC 256 Root CA For Qualified Web DV/OV Cert 2019 | Root Certificate | Root Certificate | 63EE5D2DE73AA95B4D5D0FE0C61A1759537DA69218B941A81D073F42D1337BE4 | 63EE5D2DE73AA95B4D5D0FE0C61A1759537DA69218B941A81D073F42D1337BE4 | 2043.05.31 | 2043-05-31 11:35:52 | ||||||||||
0014o00001nqlHUAAY | 2961094289 | f | f | f | f | f | f | f | f | f | Evrotrust Technologies AD | Evrotrust RSA Root CA | Evrotrust RSA Root CA | Root Certificate | Root Certificate | B49CF652B72E586498DB42CD007500912FD1672AFC3DFF0B11B927EA97D41A2D | B49CF652B72E586498DB42CD007500912FD1672AFC3DFF0B11B927EA97D41A2D | 2036.05.20 | 2036-05-20 15:49:19 | ||||||||||
001TO00000EaPz7YAF | 14216196173 | f | f | f | f | f | f | f | f | f | Federal Aviation Administration | FAA_IDMS_ROOT_CA_R1 | FAA_IDMS_ROOT_CA_R1 | Root Certificate | Root Certificate | 94E7B0985F419C3AA8C5EE4260E10EEBFDEDB55DB8F15DB48D61470F252949A0 | 94E7B0985F419C3AA8C5EE4260E10EEBFDEDB55DB8F15DB48D61470F252949A0 | 2044.06.17 | 2044-06-17 14:31:57 | ||||||||||
0014o00001oAWasAAG | 4685368861 | f | f | f | f | f | f | f | f | f | GESTIÓN DE SEGURIDAD ELECTRÓNICA S.A. | Autoridad Raiz GSE | Autoridad Raiz GSE | Root Certificate | Root Certificate | 7C1CA551312EA02EF1D63A4F5654D03FD04F6F327C8E2E03521A22697AB79843 | 7C1CA551312EA02EF1D63A4F5654D03FD04F6F327C8E2E03521A22697AB79843 | 2050.01.07 | 2050-01-07 15:39:15 | ||||||||||
0014o00001oAWzAAAW | 4685368863 | f | f | f | f | f | f | f | f | f | GESTIÓN DE SEGURIDAD ELECTRÓNICA S.A. | GSE ECDSA RAIZ | GSE ECDSA RAIZ | Root Certificate | Root Certificate | 9FBF5FE1A3344935446A95EB45D3DDF34936184121717165F0B84211850DE6F3 | 9FBF5FE1A3344935446A95EB45D3DDF34936184121717165F0B84211850DE6F3 | 2046.04.08 | 2046-04-08 14:30:08 | ||||||||||
001TO00000AiuNKYAZ | 13341357765 | f | f | f | f | f | f | f | f | f | GlobalSign nv-sa | GlobalSign Verified Mark Root R42 | GlobalSign Verified Mark Root R42 | Root Certificate | Root Certificate | CD122CB877C6928B9017B0F0B80DBD508196300BBD03CD7356C3BEEF524E7E0B | CD122CB877C6928B9017B0F0B80DBD508196300BBD03CD7356C3BEEF524E7E0B | 2042.11.15 | 2042-11-15 00:00:00 | ||||||||||
0018Z00002nsYHFQA2 | 7833105495 | f | f | f | f | f | f | f | f | f | GoDaddy | GoDaddy Root Certificate Authority - G5 | GoDaddy Root Certificate Authority - G5 | Root Certificate | Root Certificate | E0562C0CD4CD5959DB2AB9D8E7426B248FD75534F5D50CFAF8CB312239F93086 | E0562C0CD4CD5959DB2AB9D8E7426B248FD75534F5D50CFAF8CB312239F93086 | 2042.06.21 | 2042-06-21 00:00:00 | ||||||||||
0018Z00002nsYISQA2 | 7833101198 | f | f | f | f | f | f | f | f | f | GoDaddy | GoDaddy Root Certificate Authority - G6 | GoDaddy Root Certificate Authority - G6 | Root Certificate | Root Certificate | DB3C05E9C55D5259B057474D7F7F3E54A2A51AFAA71EC5C41D8C3CBE68108799 | DB3C05E9C55D5259B057474D7F7F3E54A2A51AFAA71EC5C41D8C3CBE68108799 | 2052.06.21 | 2052-06-21 00:00:00 | ||||||||||
001o000000HshFBAAZ | 185 | f | f | f | f | f | f | f | f | f | GoDaddy | http://www.valicert.com/ | http://www.valicert.com/ | Root Certificate | Root Certificate | 58D017279CD4DC63ABDDB196A6C9906C30C4E08783EAE8C1609954D69355596B | 58D017279CD4DC63ABDDB196A6C9906C30C4E08783EAE8C1609954D69355596B | 2019.06.26 | 2019-06-26 00:19:54 | ||||||||||
0018Z00002nsYIXQA2 | 7833098588 | f | f | f | f | f | f | f | f | f | GoDaddy | Starfield Root Certificate Authority - G5 | Starfield Root Certificate Authority - G5 | Root Certificate | Root Certificate | 414F6C10FA816561832751BDB241ED8AE2BB0E2EBE651DE48E317ABB774E38F0 | 414F6C10FA816561832751BDB241ED8AE2BB0E2EBE651DE48E317ABB774E38F0 | 2042.06.21 | 2042-06-21 00:00:00 | ||||||||||
0018Z00002nsYIcQAM | 7833095368 | f | f | f | f | f | f | f | f | f | GoDaddy | Starfield Root Certificate Authority - G6 | Starfield Root Certificate Authority - G6 | Root Certificate | Root Certificate | FDB2C428AC393FD61B386497E0CC6652D71F35F6683C8E0AD0E754CF8F133D2A | FDB2C428AC393FD61B386497E0CC6652D71F35F6683C8E0AD0E754CF8F133D2A | 2052.06.21 | 2052-06-21 00:00:00 | ||||||||||
0011J00001jj0zeQAA | 3448659678 | f | f | f | f | f | f | f | f | f | Google Trust Services LLC | GlobalSign | GlobalSign | Root Certificate | Root Certificate | 69E2D06C30F366166165E91D68D1CEE5CC47584A80227E76666086C0107241EB | 69E2D06C30F366166165E91D68D1CEE5CC47584A80227E76666086C0107241EB | 2021.12.15 | 2021-12-15 08:00:00 | ||||||||||
0018Z00002iKhkOQAS | 8333264 | f | f | f | f | f | f | f | f | f | Government of Brazil, Instituto Nacional de Tecnologia da Informação (ITI) | Autoridade Certificadora Raiz Brasileira | Autoridade Certificadora Raiz Brasileira | Root Certificate | Root Certificate | 687EA89089309D2CFE107DB059FB10D676F45D3283AEE056903EEA0CF3C188F8 | 687EA89089309D2CFE107DB059FB10D676F45D3283AEE056903EEA0CF3C188F8 | 2011.11.30 | 2011-11-30 23:59:00 | ||||||||||
0018Z00002iKqrlQAC | 7399358462 | f | f | f | f | f | f | f | f | f | Government of Brazil, Instituto Nacional de Tecnologia da Informação (ITI) | Autoridade Certificadora Raiz Brasileira v11 | Autoridade Certificadora Raiz Brasileira v11 | Root Certificate | Root Certificate | 1406710058180FA4081AAB3F246F1702429C552A11FA3143B84C88CB3AB8E5E7 | 1406710058180FA4081AAB3F246F1702429C552A11FA3143B84C88CB3AB8E5E7 | 2032.07.01 | 2032-07-01 12:00:18 | ||||||||||
001o000000HshFDAAZ | 113 | f | f | f | f | f | f | f | f | f | Government of France (ANSSI, DCSSI) | IGC/A | IGC/A | Root Certificate | Root Certificate | B9BEA7860A962EA3611DAB97AB6DA3E21C1068B97D55575ED0E11279C11C8932 | B9BEA7860A962EA3611DAB97AB6DA3E21C1068B97D55575ED0E11279C11C8932 | 2020.10.17 | 2020-10-17 14:29:22 | ||||||||||
001o000000vmkjaAAA | 1736759 | f | f | f | f | f | f | f | f | f | Government of France (ANSSI, DCSSI) | IGC/A AC racine Etat francais | IGC/A AC racine Etat francais | Root Certificate | Root Certificate | 1E1A6984B4E76BD709AEE3E9C9CF3118EAC096DAB9CC20DC25FAAB67297E965A | 1E1A6984B4E76BD709AEE3E9C9CF3118EAC096DAB9CC20DC25FAAB67297E965A | 2028.04.15 | 2028-04-15 09:00:00 | ||||||||||
0018Z00002iKhiNQAS | 8984832 | f | f | f | f | f | f | f | f | f | Government of Hong Kong (SAR), Hongkong Post, Certizen | Hongkong Post Root CA | Hongkong Post Root CA | Root Certificate | Root Certificate | BCDD8DF4276366D7FF4B688DC81500D8E98252C049C8FF1E8C82F2BAEC9D5C16 | BCDD8DF4276366D7FF4B688DC81500D8E98252C049C8FF1E8C82F2BAEC9D5C16 | 2010.01.16 | 2010-01-16 23:59:00 | ||||||||||
0018Z00002iKhQsQAK | 79618 | f | f | f | f | f | f | f | f | f | Government of India, Ministry of Communications & Information Technology, Controller of Certifying Authorities (CCA) | CCA India 2007 | CCA India 2007 | Root Certificate | Root Certificate | F375E2F77A108BACC4234894A9AF308EDECA1ACD8FBDE0E7AAA9634E9DAF7E1C | F375E2F77A108BACC4234894A9AF308EDECA1ACD8FBDE0E7AAA9634E9DAF7E1C | 2015.07.04 | 2015-07-04 07:02:48 | ||||||||||
001o000000rGWfVAAW | 13464 | f | f | f | f | f | f | f | f | f | Government of India, Ministry of Communications & Information Technology, Controller of Certifying Authorities (CCA) | CCA India 2011 | CCA India 2011 | Root Certificate | Root Certificate | 2D66A702AE81BA03AF8CFF55AB318AFA919039D9F31B4D64388680F81311B65A | 2D66A702AE81BA03AF8CFF55AB318AFA919039D9F31B4D64388680F81311B65A | 2016.03.11 | 2016-03-11 06:48:52 | ||||||||||
001o000000HshDzAAJ | 16556 | f | f | f | f | f | f | f | f | f | Government of Japan, Digital Agency | ApplicationCA | ApplicationCA | Root Certificate | Root Certificate | 2D47437DE17951215A12F3C58E51C729A58026EF1FCC0A5FB3D9DC012F600D19 | 2D47437DE17951215A12F3C58E51C729A58026EF1FCC0A5FB3D9DC012F600D19 | 2017.12.12 | 2017-12-12 15:00:00 | ||||||||||
001o000000rGWhCAAW | 8559400 | f | f | f | f | f | f | f | f | f | Government of Japan, Digital Agency | ApplicationCA2 Root | ApplicationCA2 Root | Root Certificate | Root Certificate | 126BF01C1094D2F0CA2E352380B3C724294546CCC65597BEF7F12D8A171F1984 | 126BF01C1094D2F0CA2E352380B3C724294546CCC65597BEF7F12D8A171F1984 | 2033.03.12 | 2033-03-12 15:00:00 | ||||||||||
001TO00000EiKNyYAN | 14240587488 | f | f | f | f | f | f | f | f | f | Government of Japan, Digital Agency | Japanese Government Root CA | Japanese Government Root CA | Root Certificate | Root Certificate | D7A5514D93F7D53BD27DE2051F8E1FF71CA0AC78FACFE46A8BCCA4589984AE64 | D7A5514D93F7D53BD27DE2051F8E1FF71CA0AC78FACFE46A8BCCA4589984AE64 | 2048.12.12 | 2048-12-12 14:59:59 | ||||||||||
0018Z00002iKhbMQAS | 6696 | f | f | f | f | f | f | f | f | f | Government of Korea, KLID | GPKIRootCA | GPKIRootCA | Root Certificate | Root Certificate | 606223D9DB80DF3939601E74B7E828E2800CCE4273F76F276AA62DB0A8E3B6C1 | 606223D9DB80DF3939601E74B7E828E2800CCE4273F76F276AA62DB0A8E3B6C1 | 2017.03.15 | 2017-03-15 06:00:04 | ||||||||||
0018Z00002iKhK6QAK | 99 | f | f | f | f | f | f | f | f | f | Government of Korea, KLID | Root CA | Root CA | Root Certificate | Root Certificate | E5C01CB4093279FAA19FCFA24EA43EB1B26D07A615ADF7240184A1E716B761C9 | E5C01CB4093279FAA19FCFA24EA43EB1B26D07A615ADF7240184A1E716B761C9 | 2014.12.23 | 2014-12-23 11:13:24 | ||||||||||
0018Z00002iKhbCQAS | 204271596 | f | f | f | f | f | f | f | f | f | Government of Korea, KLID | Root CA | Root CA | Root Certificate | Root Certificate | 0378B202CCABBA99A12E569A11A077DB1EDB39482061C75D0073059D9AB5B513 | 0378B202CCABBA99A12E569A11A077DB1EDB39482061C75D0073059D9AB5B513 | 2012.04.21 | 2012-04-21 09:07:23 | ||||||||||
001o000000rGWfuAAG | 314447 | f | f | f | f | f | f | f | f | f | Government of Latvia, Latvian State Radio & Television Centre (LVRTC) | E-ME SSI (RCA) | E-ME SSI (RCA) | Root Certificate | Root Certificate | CD0B3B2AA174B55F18C7502F3C3A76F2198175CE45637370CF4F48B9C2CE4FBF | CD0B3B2AA174B55F18C7502F3C3A76F2198175CE45637370CF4F48B9C2CE4FBF | 2027.05.19 | 2027-05-19 08:48:15 | ||||||||||
001o000000rGWVpAAO | 12624875 | f | f | f | f | f | f | f | f | f | Government of Latvia, Latvian State Radio & Television Centre (LVRTC) | VAS Latvijas Pasts SSI(RCA) | VAS Latvijas Pasts SSI(RCA) | Root Certificate | Root Certificate | AAD9CEED5AA6B1CEA28596A8E4E1ABED9386D6EBC9D4AAD9ACDE0FA36BA069D0 | AAD9CEED5AA6B1CEA28596A8E4E1ABED9386D6EBC9D4AAD9ACDE0FA36BA069D0 | 2024.09.13 | 2024-09-13 09:27:57 | ||||||||||
0011J00001MlgvLQAR | 1321955118 | f | f | f | f | f | f | f | f | f | Government of Lithuania, Registru Centras | RCSC RootCA | RCSC RootCA | Root Certificate | Root Certificate | 7707BB2BE9F7CE057060B8308C3BC087B56529B3638EAF5B2A8049C8E15ED720 | 7707BB2BE9F7CE057060B8308C3BC087B56529B3638EAF5B2A8049C8E15ED720 | 2044.05.23 | 2044-05-23 08:36:51 | ||||||||||
001o000000rGWdFAAW | 1671476 | f | f | f | f | f | f | f | f | f | Government of Lithuania, Registru Centras | VI Registru Centras RCSC (RootCA) | VI Registru Centras RCSC (RootCA) | Root Certificate | Root Certificate | 0536801FBB443B3E905FD6D70D8C81EB88551BE8061299110D2B4F82E64CADE1 | 0536801FBB443B3E905FD6D70D8C81EB88551BE8061299110D2B4F82E64CADE1 | 2024.07.21 | 2024-07-21 11:47:46 | ||||||||||
001o000000rGWbiAAG | 9027356 | f | f | f | f | f | f | f | f | f | Government of Mexico, Autoridad Certificadora Raiz de la Secretaria de Economia | Autoridad Certificadora Raiz de la Secretaria de Economia | Autoridad Certificadora Raiz de la Secretaria de Economia | Root Certificate | Root Certificate | B41D516A5351D42DEEA191FA6EDF2A67DEE2F36DC969012C76669E616B900DDF | B41D516A5351D42DEEA191FA6EDF2A67DEE2F36DC969012C76669E616B900DDF | 2025.05.09 | 2025-05-09 00:00:00 | ||||||||||
001o000000rGWXqAAO | 359344 | f | f | f | f | f | f | f | f | f | Government of Mexico, Autoridad Certificadora Raiz de la Secretaria de Economia | Autoridad Certificadora Raiz de la Secretaria de Economia | Autoridad Certificadora Raiz de la Secretaria de Economia | Root Certificate | Root Certificate | 77E04C9A751C73F23E2A1336112EC8D5153D382A152FED89D7532C3102771F3C | 77E04C9A751C73F23E2A1336112EC8D5153D382A152FED89D7532C3102771F3C | 2025.05.08 | 2025-05-08 00:00:00 | ||||||||||
001o000000rGWY5AAO | 155087 | f | f | f | f | f | f | f | f | f | Government of Portugal, Sistema de Certificação Electrónica do Estado (SCEE) / Electronic Certification System of the State | ECRaizEstado | ECRaizEstado | Root Certificate | Root Certificate | 488E134F30C5DB56B76473E608086842BF21AF8AB3CD7AC67EBDF125D531834E | 488E134F30C5DB56B76473E608086842BF21AF8AB3CD7AC67EBDF125D531834E | 2030.06.23 | 2030-06-23 13:41:27 | ||||||||||
001o000000rGWgxAAG | 12722572 | f | f | f | f | f | f | f | f | f | Government of South Africa, Post Office Trust Centre | SAPO Class 2 Root CA | SAPO Class 2 Root CA | Root Certificate | Root Certificate | FD7CCA48B745213470F503EC6E969C447FC12D4DD5AA2A7CC6C3D5ABBD962B33 | FD7CCA48B745213470F503EC6E969C447FC12D4DD5AA2A7CC6C3D5ABBD962B33 | 2030.09.14 | 2030-09-14 00:00:00 | ||||||||||
001o000000rGWXvAAO | 8563615 | f | f | f | f | f | f | f | f | f | Government of South Africa, Post Office Trust Centre | SAPO Class 3 Root CA | SAPO Class 3 Root CA | Root Certificate | Root Certificate | 1A2512CDA6744ABEA11432A2FDC9F8C088DB5A98C89E13352574CDE4D9E80CDD | 1A2512CDA6744ABEA11432A2FDC9F8C088DB5A98C89E13352574CDE4D9E80CDD | 2030.09.14 | 2030-09-14 00:00:00 | ||||||||||
001o000000rGWWnAAO | 12724081 | f | f | f | f | f | f | f | f | f | Government of South Africa, Post Office Trust Centre | SAPO Class 4 Root CA | SAPO Class 4 Root CA | Root Certificate | Root Certificate | 6ED99F7D1B562E464A032C861DBB4137805377FA7F5683F0D4DA992B41306A6C | 6ED99F7D1B562E464A032C861DBB4137805377FA7F5683F0D4DA992B41306A6C | 2030.09.14 | 2030-09-14 00:00:00 | ||||||||||
001TO000004KFGrYAO | 11948984655 | f | f | f | f | f | f | f | f | f | Government of Spain, Autoritat de Certificació de la Comunitat Valenciana (ACCV) | ACCV ROOT ECC EIDAS 2023 | ACCV ROOT ECC EIDAS 2023 | Root Certificate | Root Certificate | F1AA0EC662705BB297B437F67EA9E4650EC5BC5E956757AA7F04D7D9945471E3 | F1AA0EC662705BB297B437F67EA9E4650EC5BC5E956757AA7F04D7D9945471E3 | 2048.07.18 | 2048-07-18 09:22:51 | ||||||||||
001TO00000N4zPSYAZ | 16766376184 | f | f | f | f | f | f | f | f | f | Government of Spain, Autoritat de Certificació de la Comunitat Valenciana (ACCV) | ACCV ROOT ECC TLS 2024 | ACCV ROOT ECC TLS 2024 | Root Certificate | Root Certificate | 79CD55455296ADFB55CDF0DBE9176985A0B503C544276C5A9305F2EC9B66693A | 79CD55455296ADFB55CDF0DBE9176985A0B503C544276C5A9305F2EC9B66693A | 2049.01.26 | 2049-01-26 11:25:59 | ||||||||||
0018Z00003DlzvaQAB | 11405690530 | f | f | f | f | f | f | f | f | f | Government of Spain, Autoritat de Certificació de la Comunitat Valenciana (ACCV) | ACCV ROOT RSA EIDAS 2023 | ACCV ROOT RSA EIDAS 2023 | Root Certificate | Root Certificate | 5A769EB3D9D6A9770BDC1BF412632BD35DAD69BDF24EE9CD75D2B659B4A0DDC9 | 5A769EB3D9D6A9770BDC1BF412632BD35DAD69BDF24EE9CD75D2B659B4A0DDC9 | 2048.07.18 | 2048-07-18 09:19:13 | ||||||||||
001TO00000N54iTYAR | 16766376185 | f | f | f | f | f | f | f | f | f | Government of Spain, Autoritat de Certificació de la Comunitat Valenciana (ACCV) | ACCV ROOT RSA TLS 2024 | ACCV ROOT RSA TLS 2024 | Root Certificate | Root Certificate | B40BFA8880A02F93025643C6DBBD39DF194A2854D076E167A2BD8467CF9E2C34 | B40BFA8880A02F93025643C6DBBD39DF194A2854D076E167A2BD8467CF9E2C34 | 2049.01.26 | 2049-01-26 11:19:25 | ||||||||||
001o000000HshFWAAZ | 13949 | f | f | f | f | f | f | f | f | f | Government of Spain, Autoritat de Certificació de la Comunitat Valenciana (ACCV) | Root CA Generalitat Valenciana | Root CA Generalitat Valenciana | Root Certificate | Root Certificate | 8C4EDFD04348F322969E7E29A4CD4DCA004655061C16E1B076422EF342AD630E | 8C4EDFD04348F322969E7E29A4CD4DCA004655061C16E1B076422EF342AD630E | 2021.07.01 | 2021-07-01 15:22:47 | ||||||||||
001o000000rGWewAAG | 140057 | f | f | f | f | f | f | f | f | f | Government of Spain, Dirección General de la Policía – Ministerio del Interior – España. | AC RAIZ DNIE | AC RAIZ DNIE | Root Certificate | Root Certificate | 739710C5245E33EC8A243A1B20048FC9D5F4528599213845C164D004B8B667F9 | 739710C5245E33EC8A243A1B20048FC9D5F4528599213845C164D004B8B667F9 | 2036.02.08 | 2036-02-08 22:59:59 | ||||||||||
001o000000rGWfBAAW | 5757 | f | f | f | f | f | f | f | f | f | Government of Spain, Fábrica Nacional de Moneda y Timbre (FNMT) | AC RAIZ FNMT-RCM | AC RAIZ FNMT-RCM | Root Certificate | Root Certificate | 4D9EBB28825C9643AB15D54E5F9614F13CB3E95DE3CF4EAC971301F320F9226E | 4D9EBB28825C9643AB15D54E5F9614F13CB3E95DE3CF4EAC971301F320F9226E | 2030.01.01 | 2030-01-01 00:00:00 | ||||||||||
001o000000rGWYLAA4 | 883 | f | f | f | f | f | f | f | f | f | Government of Spain, Fábrica Nacional de Moneda y Timbre (FNMT) | FNMT Clase 2 CA | FNMT Clase 2 CA | Root Certificate | Root Certificate | 62B9267266212832A8E22DAB933D91C7011274ACF71703F9CC97833751A6E94F | 62B9267266212832A8E22DAB933D91C7011274ACF71703F9CC97833751A6E94F | 2019.03.18 | 2019-03-18 15:26:19 | ||||||||||
001o000000rGWaVAAW | 98935 | f | f | f | f | f | f | f | f | f | Government of Spain, Ministerio de Trabajo e Inmigración (MTIN) | AC1 RAIZ MTIN | AC1 RAIZ MTIN | Root Certificate | Root Certificate | 5B1D9D24DE0AFEA8B35BA04A1C3E25D0812CDF7C4625DE0A89AF9FE4BBD1BB15 | 5B1D9D24DE0AFEA8B35BA04A1C3E25D0812CDF7C4625DE0A89AF9FE4BBD1BB15 | 2019.11.03 | 2019-11-03 16:17:45 | ||||||||||
001o000000rGWWJAA4 | 2115695 | f | f | f | f | f | f | f | f | f | Government of Sweden (Försäkringskassan) | Swedish Government Root Authority v1 | Swedish Government Root Authority v1 | Root Certificate | Root Certificate | F657A633EEB9BC5D15A461751749EA4B316727DCF1A9F986B5458445F6485DDE | F657A633EEB9BC5D15A461751749EA4B316727DCF1A9F986B5458445F6485DDE | 2030.04.14 | 2030-04-14 13:43:19 | ||||||||||
001o000000rGWT5AAO | 12729597 | f | f | f | f | f | f | f | f | f | Government of Sweden (Försäkringskassan) | Swedish Government Root Authority v2 | Swedish Government Root Authority v2 | Root Certificate | Root Certificate | 9CEFB0CB7B74E642932532831E0DC8F4D68AD414261FC3F474B795E72A164E57 | 9CEFB0CB7B74E642932532831E0DC8F4D68AD414261FC3F474B795E72A164E57 | 2040.05.05 | 2040-05-05 11:24:19 | ||||||||||
001o000000rGWecAAG | 8559332 | f | f | f | f | f | f | f | f | f | Government of Taiwan, Government Root Certification Authority (GRCA) | Government Root Certification Authority | Government Root Certification Authority | Root Certificate | Root Certificate | 70B922BFDA0E3F4A342E4EE22D579AE598D071CC5EC9C30F123680340388AEA5 | 70B922BFDA0E3F4A342E4EE22D579AE598D071CC5EC9C30F123680340388AEA5 | 2037.12.31 | 2037-12-31 15:59:59 | ||||||||||
001o000000HshFxAAJ | 2750 | f | f | f | f | f | f | f | f | f | Government of Taiwan, Government Root Certification Authority (GRCA) | Government Root Certification Authority | Government Root Certification Authority | Root Certificate | Root Certificate | 7600295EEFE85B9E1FD624DB76062AAAAE59818A54D2774CD4C0B2C01131E1B3 | 7600295EEFE85B9E1FD624DB76062AAAAE59818A54D2774CD4C0B2C01131E1B3 | 2032.12.05 | 2032-12-05 13:23:33 | ||||||||||
001o000000TNZv5AAH | 6010523 | f | f | f | f | f | f | f | f | f | Government of The Netherlands, PKIoverheid (Logius) | Staat der Nederlanden EV Root CA | Staat der Nederlanden EV Root CA | Root Certificate | Root Certificate | 4D2491414CFE956746EC4CEFA6CF6F72E28A1329432F9D8A907AC4CB5DADC15A | 4D2491414CFE956746EC4CEFA6CF6F72E28A1329432F9D8A907AC4CB5DADC15A | 2022.12.08 | 2022-12-08 11:10:28 | ||||||||||
001TO00000MceiyYAB | 16587744683 | f | f | f | f | f | f | f | f | f | Government of The Netherlands, PKIoverheid (Logius) | Staat der Nederlanden - G4 Root Publ G-SMIME - 2024 | Staat der Nederlanden - G4 Root Publ G-SMIME - 2024 | Root Certificate | Root Certificate | B80BF76624198A2D5D282068B49EF370AD901AB3A42897B628EFE6E6980B0A4E | B80BF76624198A2D5D282068B49EF370AD901AB3A42897B628EFE6E6980B0A4E | 2039.05.20 | 2039-05-20 11:27:16 | ||||||||||
001o000000HshFiAAJ | 8910 | f | f | f | f | f | f | f | f | f | Government of The Netherlands, PKIoverheid (Logius) | Staat der Nederlanden Root CA | Staat der Nederlanden Root CA | Root Certificate | Root Certificate | D41D829E8C1659822AF93FCE62BFFCDE264FC84E8B950C5FF275D052354695A3 | D41D829E8C1659822AF93FCE62BFFCDE264FC84E8B950C5FF275D052354695A3 | 2015.12.16 | 2015-12-16 09:15:38 | ||||||||||
001o000000HshFjAAJ | 1482 | f | f | f | f | f | f | f | f | f | Government of The Netherlands, PKIoverheid (Logius) | Staat der Nederlanden Root CA - G2 | Staat der Nederlanden Root CA - G2 | Root Certificate | Root Certificate | 668C83947DA63B724BECE1743C31A0E6AED0DB8EC5B31BE377BB784F91B6716F | 668C83947DA63B724BECE1743C31A0E6AED0DB8EC5B31BE377BB784F91B6716F | 2020.03.25 | 2020-03-25 11:03:10 | ||||||||||
001o000000HshGDAAZ | 52122 | f | f | f | f | f | f | f | f | f | Government of Turkey, Kamu Sertifikasyon Merkezi (Kamu SM) | TÜBİTAK UEKAE Kök Sertifika Hizmet Sağlayıcısı - Sürüm 3 | TÜBİTAK UEKAE Kök Sertifika Hizmet Sağlayıcısı - Sürüm 3 | Root Certificate | Root Certificate | E4C73430D7A5B50925DF43370A0D216E9A79B9D6DB8373A0C69EB1CC31C7C52A | E4C73430D7A5B50925DF43370A0D216E9A79B9D6DB8373A0C69EB1CC31C7C52A | 2017.08.21 | 2017-08-21 11:37:07 | ||||||||||
001o000000rGWbdAAG | 8571195 | f | f | f | f | f | f | f | f | f | Government of Uruguay, Agency for E-Government and Information Society (AGESIC) | Autoridad Certificadora Raíz Nacional de Uruguay | Autoridad Certificadora Raíz Nacional de Uruguay | Root Certificate | Root Certificate | 5533A0401F612C688EBCE5BF53F2EC14A734EB178BFAE00E50E85DAE6723078A | 5533A0401F612C688EBCE5BF53F2EC14A734EB178BFAE00E50E85DAE6723078A | 2031.10.29 | 2031-10-29 15:02:49 | ||||||||||
001o000000rGWgdAAG | 1725782 | f | f | f | f | f | f | f | f | f | Government of Venezuela, Superintendencia de Servicios de Certificación Electrónica (SUSCERTE) | Autoridad de Certificacion Raiz del Estado Venezolano | Autoridad de Certificacion Raiz del Estado Venezolano | Root Certificate | Root Certificate | 0E88EB6EA256E19EF8D3ABD61A24D38DBAD632816DD957294427E4724D81A386 | 0E88EB6EA256E19EF8D3ABD61A24D38DBAD632816DD957294427E4724D81A386 | 2027.02.11 | 2027-02-11 23:59:59 | ||||||||||
001o000000rGWUTAA4 | 156582 | f | f | f | f | f | f | f | f | f | Government of Venezuela, Superintendencia de Servicios de Certificación Electrónica (SUSCERTE) | Autoridad de Certificacion Raiz del Estado Venezolano | Autoridad de Certificacion Raiz del Estado Venezolano | Root Certificate | Root Certificate | CA7A5E68C53D2C51F72F6B465D3ED753F5903EC7901C8D0F55D868337C81975A | CA7A5E68C53D2C51F72F6B465D3ED753F5903EC7901C8D0F55D868337C81975A | 2030.12.23 | 2030-12-23 23:59:59 | ||||||||||
001o000000rGWVVAA4 | 9038474 | f | f | f | f | f | f | f | f | f | Halcom D.D. | Halcom CA FO | Halcom CA FO | Root Certificate | Root Certificate | 5A1B5D6BC65523B40A6DEFFA45B48E4288AE8DD86DD70A5B858D4A5AFFC94F71 | 5A1B5D6BC65523B40A6DEFFA45B48E4288AE8DD86DD70A5B858D4A5AFFC94F71 | 2020.06.05 | 2020-06-05 10:33:31 | ||||||||||
001o000000rGWc2AAG | 12864 | f | f | f | f | f | f | f | f | f | Halcom D.D. | Halcom CA PO 2 | Halcom CA PO 2 | Root Certificate | Root Certificate | FE7114D07A147759891FF37B4F53EB43568296BC3BF89BC12CAFB186985EF28D | FE7114D07A147759891FF37B4F53EB43568296BC3BF89BC12CAFB186985EF28D | 2019.02.07 | 2019-02-07 18:33:31 | ||||||||||
001o000000rGWZhAAO | 8559572 | f | f | f | f | f | f | f | f | f | Halcom D.D. | Halcom Root CA | Halcom Root CA | Root Certificate | Root Certificate | 8B3FDB151AF759C566143E07C950EDE4F9E8C7CF808453D33BCB78E52A400AF9 | 8B3FDB151AF759C566143E07C950EDE4F9E8C7CF808453D33BCB78E52A400AF9 | 2032.02.08 | 2032-02-08 09:55:41 | ||||||||||
0018Z00002iKhpxQAC | 8989062 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | Baltimore EZ by DST | Baltimore EZ by DST | Root Certificate | Root Certificate | 49F74F824F2E059FE99C98AF3219EC0D9A004D1B64DD2FD1452616318AB806C0 | 49F74F824F2E059FE99C98AF3219EC0D9A004D1B64DD2FD1452616318AB806C0 | 2009.07.03 | 2009-07-03 19:56:53 | ||||||||||
001o000000HshEdAAJ | 44538 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST ACES CA X6 | DST ACES CA X6 | Root Certificate | Root Certificate | 767C955A76412C89AF688E90A1C70F556CFD6B6025DBEA10416D7EB6831F8C40 | 767C955A76412C89AF688E90A1C70F556CFD6B6025DBEA10416D7EB6831F8C40 | 2017.11.20 | 2017-11-20 21:19:58 | ||||||||||
0018Z00002iKhnwQAC | 8984567 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST (ANX Network) CA | DST (ANX Network) CA | Root Certificate | Root Certificate | 9DF0EC44F55B36D79D4B53C208BEF8CB63D78DCC8FCAFDE1662312F212204A37 | 9DF0EC44F55B36D79D4B53C208BEF8CB63D78DCC8FCAFDE1662312F212204A37 | 2018.12.09 | 2018-12-09 16:16:48 | ||||||||||
001o000000HshEbAAJ | 8984574 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DSTCA E1 | DSTCA E1 | Root Certificate | Root Certificate | 630419AEC478CBB4BB8083DE9D9CF279752F039DEF16E46471B679CA93002DB0 | 630419AEC478CBB4BB8083DE9D9CF279752F039DEF16E46471B679CA93002DB0 | 2018.12.10 | 2018-12-10 18:40:23 | ||||||||||
001o000000HshEcAAJ | 8984569 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DSTCA E2 | DSTCA E2 | Root Certificate | Root Certificate | 8F62D7736F99DBD33EE00E10C7E329339C988A5B47EF25F408293CF2426B4D44 | 8F62D7736F99DBD33EE00E10C7E329339C988A5B47EF25F408293CF2426B4D44 | 2018.12.09 | 2018-12-09 19:47:26 | ||||||||||
0018Z00002iKho1QAC | 8984571 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST-Entrust GTI CA | DST-Entrust GTI CA | Root Certificate | Root Certificate | 22E0D11DC9207E16C92B2EE18CFDB2C2E940626847921FC528CEDD2F7932F714 | 22E0D11DC9207E16C92B2EE18CFDB2C2E940626847921FC528CEDD2F7932F714 | 2018.12.09 | 2018-12-09 00:32:24 | ||||||||||
0018Z00002iKhoaQAC | 8984577 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST (NRF) RootCA | DST (NRF) RootCA | Root Certificate | Root Certificate | 49C8175A9815E08BEF129A929DE1BACAD04E4DB67A8C839293953E5031C81CA0 | 49C8175A9815E08BEF129A929DE1BACAD04E4DB67A8C839293953E5031C81CA0 | 2008.12.08 | 2008-12-08 16:14:16 | ||||||||||
0018Z00002iKhoBQAS | 8376049 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST RootCA X1 | DST RootCA X1 | Root Certificate | Root Certificate | 7B1A15D7E5E130C579E68FCA189257F837B5C188F1B2B2A791E967CC88CC6528 | 7B1A15D7E5E130C579E68FCA189257F837B5C188F1B2B2A791E967CC88CC6528 | 2008.11.28 | 2008-11-28 18:18:55 | ||||||||||
0018Z00002iKhoGQAS | 8984576 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST RootCA X2 | DST RootCA X2 | Root Certificate | Root Certificate | E57210AB812C8DF308267CB4291B98E956597CA36EC2B95189EF1723396BCAC8 | E57210AB812C8DF308267CB4291B98E956597CA36EC2B95189EF1723396BCAC8 | 2008.11.27 | 2008-11-27 22:46:16 | ||||||||||
001o000000HshEeAAJ | 8395 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST Root CA X3 | DST Root CA X3 | Root Certificate | Root Certificate | 0687260331A72403D909F105E69BCF0D32E1BD2493FFC6D9206D11BCD6770739 | 0687260331A72403D909F105E69BCF0D32E1BD2493FFC6D9206D11BCD6770739 | 2021.09.30 | 2021-09-30 14:01:15 | ||||||||||
0018Z00002iKhpJQAS | 8984573 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | DST (UPS) RootCA | DST (UPS) RootCA | Root Certificate | Root Certificate | E873D4082A7B4632934F48A5CC1EE500932F661E56C3467C5C84D31447476B0C | E873D4082A7B4632934F48A5CC1EE500932F661E56C3467C5C84D31447476B0C | 2008.12.07 | 2008-12-07 00:25:46 | ||||||||||
0018Z00003BUrIPQA1 | 11040229085 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Client-Auth ECC Root CA 1 | IdenTrust Client-Auth ECC Root CA 1 | Root Certificate | Root Certificate | 266E5635FA7363CD7716C0DE74D51B82F0F8878E664734376219EDAD19E54E37 | 266E5635FA7363CD7716C0DE74D51B82F0F8878E664734376219EDAD19E54E37 | 2043.03.23 | 2043-03-23 21:02:29 | ||||||||||
0018Z00003BUrNyQAL | 11040236878 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Code-Sign ECC Root CA 1 | IdenTrust Code-Sign ECC Root CA 1 | Root Certificate | Root Certificate | 680524778CAA4A9540657F10108CE55C21F3734C95F5451A9360E7902CA49236 | 680524778CAA4A9540657F10108CE55C21F3734C95F5451A9360E7902CA49236 | 2041.03.22 | 2041-03-22 21:32:03 | ||||||||||
001TO00000LCAkRYAX | 16099065259 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root Client-Auth ECC CA 2 | IdenTrust Commercial Root Client-Auth ECC CA 2 | Root Certificate | Root Certificate | 21E9B3A3A7957B52BF5B9A113CDE238619DEC8B068735152EAA9B996BA5B8575 | 21E9B3A3A7957B52BF5B9A113CDE238619DEC8B068735152EAA9B996BA5B8575 | 2044.04.10 | 2044-04-10 21:39:08 | ||||||||||
001TO00000MQz81YAD | 16524473183 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root Client-Auth RSA CA 2 | IdenTrust Commercial Root Client-Auth RSA CA 2 | Root Certificate | Root Certificate | 4F4D24CCFBBECD50C4FCCF0FCF07D7906003AC07E6C8B912012733DE6DD35542 | 4F4D24CCFBBECD50C4FCCF0FCF07D7906003AC07E6C8B912012733DE6DD35542 | 2044.12.12 | 2044-12-12 22:08:16 | ||||||||||
001TO00000MQjw7YAD | 16524439920 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root Code Signing RSA CA 2 | IdenTrust Commercial Root Code Signing RSA CA 2 | Root Certificate | Root Certificate | BC7C4E46DA2DCF0C25866027B7D164D8EA0D2E82DECA3B520A67070947B7B5D4 | BC7C4E46DA2DCF0C25866027B7D164D8EA0D2E82DECA3B520A67070947B7B5D4 | 2044.12.12 | 2044-12-12 21:28:26 | ||||||||||
001TO00000LCHvRYAX | 16099065260 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root SMIME ECC CA 2 | IdenTrust Commercial Root SMIME ECC CA 2 | Root Certificate | Root Certificate | 3B48B18D6F20B2369A7D4056A0F5736E7650D653802305A50E83B9C3376D9E18 | 3B48B18D6F20B2369A7D4056A0F5736E7650D653802305A50E83B9C3376D9E18 | 2042.04.11 | 2042-04-11 21:31:31 | ||||||||||
001TO00000MQtYtYAL | 16524453945 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root SMIME RSA CA 2 | IdenTrust Commercial Root SMIME RSA CA 2 | Root Certificate | Root Certificate | 53850DBA0B62839FED4C0E3E1B95CB7E9C4CF2ED7C3E5AE2D3D3F535EB5A2653 | 53850DBA0B62839FED4C0E3E1B95CB7E9C4CF2ED7C3E5AE2D3D3F535EB5A2653 | 2042.12.13 | 2042-12-13 21:50:38 | ||||||||||
001TO00000LC6GtYAL | 16099065261 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root Timestamp ECC CA 2 | IdenTrust Commercial Root Timestamp ECC CA 2 | Root Certificate | Root Certificate | 7BA2E6514976AF28A6001CDA8EADE532F7A1AAAF25E4731DF8A04DB00E7801CA | 7BA2E6514976AF28A6001CDA8EADE532F7A1AAAF25E4731DF8A04DB00E7801CA | 2044.04.10 | 2044-04-10 21:55:48 | ||||||||||
001TO00000MQyyLYAT | 16524462606 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root Timestamp RSA CA 2 | IdenTrust Commercial Root Timestamp RSA CA 2 | Root Certificate | Root Certificate | D309931736C8F5AAF3C20ADA97FDAF11B5E2D7FD174DC97286ACD613A40AEA55 | D309931736C8F5AAF3C20ADA97FDAF11B5E2D7FD174DC97286ACD613A40AEA55 | 2044.12.12 | 2044-12-12 22:24:46 | ||||||||||
001TO00000LCHfJYAX | 16099065262 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root TLS ECC CA 2 | IdenTrust Commercial Root TLS ECC CA 2 | Root Certificate | Root Certificate | 983D826BA9C87F653FF9E8384C5413E1D59ACF19DDC9C98CECAE5FDEA2AC229C | 983D826BA9C87F653FF9E8384C5413E1D59ACF19DDC9C98CECAE5FDEA2AC229C | 2039.04.11 | 2039-04-11 21:11:10 | ||||||||||
001TO00000MQyYXYA1 | 16524468891 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Commercial Root TLS RSA CA 2 | IdenTrust Commercial Root TLS RSA CA 2 | Root Certificate | Root Certificate | 4C53D6746D9502530D235A82F9CF8382F5779D5DDDDBD373ABE1724FC1EFE796 | 4C53D6746D9502530D235A82F9CF8382F5779D5DDDDBD373ABE1724FC1EFE796 | 2039.12.14 | 2039-12-14 20:55:58 | ||||||||||
0018Z00003BV034QAD | 11040236971 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Doc-Sign ECC Root CA 1 | IdenTrust Doc-Sign ECC Root CA 1 | Root Certificate | Root Certificate | 2657E37AEA25E2801DC78ED6809D0FFE1851EB5B454B46AF73B3965B0D42E56D | 2657E37AEA25E2801DC78ED6809D0FFE1851EB5B454B46AF73B3965B0D42E56D | 2041.03.22 | 2041-03-22 21:23:40 | ||||||||||
0018Z00003BUrNVQA1 | 11040229084 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust SMIME ECC Root CA 1 | IdenTrust SMIME ECC Root CA 1 | Root Certificate | Root Certificate | BB2524567A59325F999CB6A6328C381EA5579DB06E618955AD6F0A1548BA8394 | BB2524567A59325F999CB6A6328C381EA5579DB06E618955AD6F0A1548BA8394 | 2041.03.22 | 2041-03-22 21:16:34 | ||||||||||
0018Z00003BUrNUQA1 | 11040235296 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust Timestamp ECC Root CA 1 | IdenTrust Timestamp ECC Root CA 1 | Root Certificate | Root Certificate | 68ADE98FB3C4EEEBC5F84120670FFD260203FC3CBBDD74EA08D7C9CDC531A8A8 | 68ADE98FB3C4EEEBC5F84120670FFD260203FC3CBBDD74EA08D7C9CDC531A8A8 | 2043.03.23 | 2043-03-23 21:39:29 | ||||||||||
0018Z00003ATEBwQAP | 10805242145 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | IdenTrust TLS ECC Root CA 1 | IdenTrust TLS ECC Root CA 1 | Root Certificate | Root Certificate | 068E6FD440D2219D8BC2378255A8B603EFBA35DF5A41EA885A7D83C6FE7D3A90 | 068E6FD440D2219D8BC2378255A8B603EFBA35DF5A41EA885A7D83C6FE7D3A90 | 2038.03.22 | 2038-03-22 20:30:26 | ||||||||||
0018Z00002iKhoQQAS | 8984572 | f | f | f | f | f | f | f | f | f | IdenTrust Services, LLC | Xcert EZ by DST | Xcert EZ by DST | Root Certificate | Root Certificate | 2602D21E81277A83F6048128F61D794A06F474E1F75E49740A817C2666F62211 | 2602D21E81277A83F6048128F61D794A06F474E1F75E49740A817C2666F62211 | 2009.07.11 | 2009-07-11 16:14:18 | ||||||||||
001o000000rGWdZAAW | 12729214 | f | f | f | f | f | f | f | f | f | Image-X Enterprises Inc | esignit.org | esignit.org | Root Certificate | Root Certificate | C665175BD60ED70A5EEA3344CBE5D1A6936F79BC27A8384E4C734200417C279F | C665175BD60ED70A5EEA3344CBE5D1A6936F79BC27A8384E4C734200417C279F | 2030.06.20 | 2030-06-20 18:47:46 | ||||||||||
001o000000rGWWPAA4 | 33423 | f | f | f | f | f | f | f | f | f | Inera AB (SITHS) | SITHS CA v3 | SITHS CA v3 | Root Certificate | Root Certificate | B2F3C4216AF7AFF72462466DC13CD2810DB8EED853EABB9A063A608EFC18FBE8 | B2F3C4216AF7AFF72462466DC13CD2810DB8EED853EABB9A063A608EFC18FBE8 | 2015.11.28 | 2015-11-28 06:02:38 | ||||||||||
001o000000rGWZrAAO | 702959 | f | f | f | f | f | f | f | f | f | Inera AB (SITHS) | SITHS Root CA v1 | SITHS Root CA v1 | Root Certificate | Root Certificate | FC50B26BDC4A8FDF1344CC80157AE13AC671E2706FACFC0605FE34E249EB72D6 | FC50B26BDC4A8FDF1344CC80157AE13AC671E2706FACFC0605FE34E249EB72D6 | 2032.03.29 | 2032-03-29 07:54:49 | ||||||||||
0018Z00002iKmX3QAK | 8343348 | f | f | f | f | f | f | f | f | f | InfoNotary | InfoNotary CSP Root | InfoNotary CSP Root | Root Certificate | Root Certificate | EA7E312ECE487B4C0AA63CC80AB9FCB33C720573F8945F7761745FC63863D39D | EA7E312ECE487B4C0AA63CC80AB9FCB33C720573F8945F7761745FC63863D39D | 2026.03.06 | 2026-03-06 17:33:05 | ||||||||||
0018Z00002iKhQxQAK | 454 | f | f | f | f | f | f | f | f | f | IPS Certification Authority s.l. ipsCA | ipsCA Global CA Root | ipsCA Global CA Root | Root Certificate | Root Certificate | 6DEA86A1E66620A040C3C5943CB215D2CA87FB6AC09B59707E29D2FACBD66B4E | 6DEA86A1E66620A040C3C5943CB215D2CA87FB6AC09B59707E29D2FACBD66B4E | 2029.12.25 | 2029-12-25 14:38:44 | ||||||||||
0018Z00002iKhR2QAK | 12729110 | f | f | f | f | f | f | f | f | f | IPS Certification Authority s.l. ipsCA | ipsCA Main CA Root | ipsCA Main CA Root | Root Certificate | Root Certificate | EEFCA888DB442CEA1F03FAC5DE5B1AF210AE03F5E1658DDB880C645E78624546 | EEFCA888DB442CEA1F03FAC5DE5B1AF210AE03F5E1658DDB880C645E78624546 | 2029.12.25 | 2029-12-25 14:54:36 | ||||||||||
0018Z00002iKhwCQAS | 8332529 | f | f | f | f | f | f | f | f | f | IPS Seguridad CA | IPS SERVIDORES | IPS SERVIDORES | Root Certificate | Root Certificate | F1F3CC207A6D47947B8CB9C30422229DE0D71FB867E0B9A3EDA08E0E1736BC28 | F1F3CC207A6D47947B8CB9C30422229DE0D71FB867E0B9A3EDA08E0E1736BC28 | 2009.12.29 | 2009-12-29 23:21:07 | ||||||||||
001o000000rGWZIAA4 | 977193 | f | f | f | f | f | f | f | f | f | Izenpe S.A. | Izenpe.com | Izenpe.com | Root Certificate | Root Certificate | B0877AEE2D39274DF831F66FDEEB7717557C258FC9EB55231A9F8A647A75433F | B0877AEE2D39274DF831F66FDEEB7717557C258FC9EB55231A9F8A647A75433F | 2018.01.30 | 2018-01-30 23:00:00 | ||||||||||
001o000000rGWdAAAW | 8444 | f | f | f | f | f | f | f | f | f | Japan Local Authority Information Systems (J-LIS) | Application CA G2 | Application CA G2 | Root Certificate | Root Certificate | 06DB3AF2DB7BAEE00C03B9578288BBDE541D906EB0069327413295FFB486008E | 06DB3AF2DB7BAEE00C03B9578288BBDE541D906EB0069327413295FFB486008E | 2016.03.31 | 2016-03-31 14:59:59 | ||||||||||
001o000000rGWauAAG | 8559431 | f | f | f | f | f | f | f | f | f | Japan Local Authority Information Systems (J-LIS) | Application CA G3 Root | Application CA G3 Root | Root Certificate | Root Certificate | 54B4FC43D44AA4CA9FC03CA7E9949FBAE267A064D02DA21852412A381B5D1537 | 54B4FC43D44AA4CA9FC03CA7E9949FBAE267A064D02DA21852412A381B5D1537 | 2034.06.03 | 2034-06-03 14:59:59 | ||||||||||
001o0000015OyMdAAK | 163116900 | f | f | f | f | f | f | f | f | f | Japan Local Authority Information Systems (J-LIS) | Application CA G4 Root | Application CA G4 Root | Root Certificate | Root Certificate | D1A0319098034E3AEC729A0B5C3111229D9D26E3E623E8C5E6843FA06EE8E2E4 | D1A0319098034E3AEC729A0B5C3111229D9D26E3E623E8C5E6843FA06EE8E2E4 | 2037.02.15 | 2037-02-15 14:59:59 | ||||||||||
001o000000rGWedAAG | 12722672 | f | f | f | f | f | f | f | f | f | JIPDEC | JCAN Root CA1 | JCAN Root CA1 | Root Certificate | Root Certificate | ACF5C1B04A4BDAEF3B48287D982750D0328BC03F490B99ECFF53C31D7DE971C8 | ACF5C1B04A4BDAEF3B48287D982750D0328BC03F490B99ECFF53C31D7DE971C8 | 2029.12.31 | 2029-12-31 01:00:00 | ||||||||||
0018Z00002iKhcfQAC | 12722613 | f | f | f | f | f | f | f | f | f | Korea Information Security Agency (KISA) | CertRSA01 | CertRSA01 | Root Certificate | Root Certificate | 956057517FF3BB35049342288C1C9DCE852DACA652B465E9747253B5F93B1F5E | 956057517FF3BB35049342288C1C9DCE852DACA652B465E9747253B5F93B1F5E | 2010.03.03 | 2010-03-03 14:59:59 | ||||||||||
001o000000rGWVQAA4 | 151 | f | f | f | f | f | f | f | f | f | Korea Information Security Agency (KISA) | KISA RootCA 1 | KISA RootCA 1 | Root Certificate | Root Certificate | 6FDB3F76C8B801A75338D8A50A7C02879F6198B57E594D318D3832900FEDCD79 | 6FDB3F76C8B801A75338D8A50A7C02879F6198B57E594D318D3832900FEDCD79 | 2025.08.24 | 2025-08-24 08:05:46 | ||||||||||
0018Z00002iKhfiQAC | 848375 | f | f | f | f | f | f | f | f | f | Korea Information Security Agency (KISA) | KISA RootCA 3 | KISA RootCA 3 | Root Certificate | Root Certificate | 8FDD298D1C93B22BFC42AAB1C3A15F0D01832CA0A1AEF28D5680F06E6C7FD4EF | 8FDD298D1C93B22BFC42AAB1C3A15F0D01832CA0A1AEF28D5680F06E6C7FD4EF | 2014.11.19 | 2014-11-19 06:39:51 | ||||||||||
001o00000172Ke8AAE | 175283344 | f | f | f | f | f | f | f | f | f | Korea Information Security Agency (KISA) | KISA RootCA 4 | KISA RootCA 4 | Root Certificate | Root Certificate | A002FF556C601863B08B9AA33A8E6666E97E72BBE552F66EB9F2395C68C7BC98 | A002FF556C601863B08B9AA33A8E6666E97E72BBE552F66EB9F2395C68C7BC98 | 2030.07.12 | 2030-07-12 09:26:21 | ||||||||||
001o000000rGWexAAG | 8566260 | f | f | f | f | f | f | f | f | f | Krajowa Izba Rozliczeniowa S.A. (KIR) | SZAFIR ROOT CA | SZAFIR ROOT CA | Root Certificate | Root Certificate | FABCF5197CDD7F458AC33832D3284021DB2425FD6BEA7A2E69B7486E8F51F9CC | FABCF5197CDD7F458AC33832D3284021DB2425FD6BEA7A2E69B7486E8F51F9CC | 2031.12.06 | 2031-12-06 11:10:57 | ||||||||||
0014o00001msQ7sAAE | 4513764741 | f | f | f | f | f | f | f | f | f | LAWtrust | LAWtrust Root CA2 (4096) | LAWtrust Root CA2 (4096) | Root Certificate | Root Certificate | 1DF0A470EABEDBD3A8CD7C7814C9A6E6D0D3BFB421B2DBFA8783DFD9695246D6 | 1DF0A470EABEDBD3A8CD7C7814C9A6E6D0D3BFB421B2DBFA8783DFD9695246D6 | 2045.03.31 | 2045-03-31 10:00:17 | ||||||||||
0018Z00002iKhViQAK | 12725829 | f | f | f | f | f | f | f | f | f | Macao Post and Telecommunications Bureau | Macao Post eSignTrust Root Certification Authority | Macao Post eSignTrust Root Certification Authority | Root Certificate | Root Certificate | B8BBE523BFCA3B11D50F73F7F10B3EC8EC958AA1DC86F66D9541907FF1A110EF | B8BBE523BFCA3B11D50F73F7F10B3EC8EC958AA1DC86F66D9541907FF1A110EF | 2013.01.29 | 2013-01-29 23:59:59 | ||||||||||
001o000000rGWVkAAO | 12723294 | f | f | f | f | f | f | f | f | f | Macao Post and Telecommunications Bureau | Macao Post eSignTrust Root Certification Authority (G02) | Macao Post eSignTrust Root Certification Authority (G02) | Root Certificate | Root Certificate | 6EA1DB6719D6041A06FC0898E5B3CF349A8FA8ECEE85EDB005965628F617F7C8 | 6EA1DB6719D6041A06FC0898E5B3CF349A8FA8ECEE85EDB005965628F617F7C8 | 2020.01.05 | 2020-01-05 23:59:59 | ||||||||||
001TO00000JRNaHYAX | 15507091978 | f | f | f | f | f | f | f | f | f | Microsec Ltd. | e-Szigno CodeSigning Root CA 2024 | e-Szigno CodeSigning Root CA 2024 | Root Certificate | Root Certificate | 5AF98353650C2AC49961F51883600AE5C61101035CDD7782822322127FACEC6D | 5AF98353650C2AC49961F51883600AE5C61101035CDD7782822322127FACEC6D | 2039.07.14 | 2039-07-14 08:44:28 | ||||||||||
001TO00000JRNiLYAX | 15507095421 | f | f | f | f | f | f | f | f | f | Microsec Ltd. | e-Szigno ECC TSA Root CA 2024 | e-Szigno ECC TSA Root CA 2024 | Root Certificate | Root Certificate | 814934F610FBF7B8579DCA297D3EBB3F667F4958E18CDCA75848DE0E4C9CCF7F | 814934F610FBF7B8579DCA297D3EBB3F667F4958E18CDCA75848DE0E4C9CCF7F | 2039.07.14 | 2039-07-14 08:45:35 | ||||||||||
001TO00000JRNQbYAP | 15507097351 | f | f | f | f | f | f | f | f | f | Microsec Ltd. | e-Szigno SMIME Root CA 2024 | e-Szigno SMIME Root CA 2024 | Root Certificate | Root Certificate | 7A422EC237B4DA7D326C232278F6DBE329B0C9ED5A56AAFCC110A8BC83ED0A96 | 7A422EC237B4DA7D326C232278F6DBE329B0C9ED5A56AAFCC110A8BC83ED0A96 | 2042.07.14 | 2042-07-14 08:49:34 | ||||||||||
001TO00000JRMkgYAH | 15507099923 | f | f | f | f | f | f | f | f | f | Microsec Ltd. | e-Szigno TLS Root CA 2024 | e-Szigno TLS Root CA 2024 | Root Certificate | Root Certificate | 328CDF63622AFB8A3FBC1347FD3389F918DA4A33F80AF34522D34B5BDA9CCB82 | 328CDF63622AFB8A3FBC1347FD3389F918DA4A33F80AF34522D34B5BDA9CCB82 | 2039.07.14 | 2039-07-14 08:42:19 | ||||||||||
001TO00000JROL3YAP | 15507101933 | f | f | f | f | f | f | f | f | f | Microsec Ltd. | e-Szigno TSA Root CA 2024 | e-Szigno TSA Root CA 2024 | Root Certificate | Root Certificate | 3D4FB84E009C3A6EDC4389DFE9BE9A22391DBD9ABA19417D0D2A9BA102F0BCC8 | 3D4FB84E009C3A6EDC4389DFE9BE9A22391DBD9ABA19417D0D2A9BA102F0BCC8 | 2039.07.14 | 2039-07-14 08:46:49 | ||||||||||
001o000000HshFGAAZ | 7067 | f | f | f | f | f | f | f | f | f | Microsec Ltd. | Microsec e-Szigno Root CA | Microsec e-Szigno Root CA | Root Certificate | Root Certificate | 327A3D761ABADEA034EB998406275CB1A4776EFDAE2FDF6D0168EA1C4F5567D0 | 327A3D761ABADEA034EB998406275CB1A4776EFDAE2FDF6D0168EA1C4F5567D0 | 2017.04.06 | 2017-04-06 12:28:44 | ||||||||||
0018Z00002iKhM2QAK | 149444539 | f | f | f | f | f | f | f | f | f | Microsec Ltd. | Microsec Ltd. | Microsec e-Szigno Root CA 2009 | Microsec e-Szigno Root CA 2009 | Root Certificate | Root Certificate | 8E8C6EBF77DC73DB3E38E93F4803E62B6B5933BEB51EE4152F68D7AA14426B31 | 8E8C6EBF77DC73DB3E38E93F4803E62B6B5933BEB51EE4152F68D7AA14426B31 | 2029.12.30 | 2029-12-30 11:30:18 | |||||||||
0018Z00002iKhmtQAC | 7399362287 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft Authenticode(tm) Root Authority | Microsoft Authenticode(tm) Root Authority | Root Certificate | Root Certificate | 4898B1749717A594A2030F47C83C272BD14BAE3DCEB2EAE382174EF2EC1C75C9 | 4898B1749717A594A2030F47C83C272BD14BAE3DCEB2EAE382174EF2EC1C75C9 | 1999.12.31 | 1999-12-31 23:59:59 | ||||||||||
0011J00001KPVYnQAP | 988140328 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft ECC Root Certificate Authority 2017 | Microsoft ECC Root Certificate Authority 2017 | Root Certificate | Root Certificate | FEA1884AB3AEA6D0DBEDBE4B9CD9FEC8655116300A86A856488FC488BB4B44D2 | FEA1884AB3AEA6D0DBEDBE4B9CD9FEC8655116300A86A856488FC488BB4B44D2 | 2042.07.26 | 2042-07-26 22:31:47 | ||||||||||
0011J00001KPVZ7QAP | 988215004 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft EV ECC Root Certificate Authority 2017 | Microsoft EV ECC Root Certificate Authority 2017 | Root Certificate | Root Certificate | 6AEA30BC02CA85AFCFEC2F65F60881893C926925FD0704BD8ADA3F0F6EDDB699 | 6AEA30BC02CA85AFCFEC2F65F60881893C926925FD0704BD8ADA3F0F6EDDB699 | 2042.07.26 | 2042-07-26 22:05:36 | ||||||||||
0011J00001W4GveQAF | 2595825658 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft EV ECC Root Certificate Authority 2017 | Microsoft EV ECC Root Certificate Authority 2017 | Root Certificate | Root Certificate | DE1AF143FFA160CF5FA86ABFE577291633DC264DA12C863C5738BEA4AFBB2CDB | DE1AF143FFA160CF5FA86ABFE577291633DC264DA12C863C5738BEA4AFBB2CDB | 2042.07.18 | 2042-07-18 22:31:43 | ||||||||||
0011J00001KPVZbQAP | 988137612 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft EV RSA Root Certificate Authority 2017 | Microsoft EV RSA Root Certificate Authority 2017 | Root Certificate | Root Certificate | DFB3C314740596AD5FB97960EF62AD7C1FCCEEAD16E74054652D1032E6F140EF | DFB3C314740596AD5FB97960EF62AD7C1FCCEEAD16E74054652D1032E6F140EF | 2042.07.26 | 2042-07-26 21:47:58 | ||||||||||
0011J00001W4GvyQAF | 2595833756 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft EV RSA Root Certificate Authority 2017 | Microsoft EV RSA Root Certificate Authority 2017 | Root Certificate | Root Certificate | 66960242DB2ED5906E113295F2454F33D6FB418C4C65E8166D43BE64D19BA4FA | 66960242DB2ED5906E113295F2454F33D6FB418C4C65E8166D43BE64D19BA4FA | 2042.07.18 | 2042-07-18 22:09:09 | ||||||||||
001o000000rGWe8AAG | 12722611 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft Root Authority | Microsoft Root Authority | Root Certificate | Root Certificate | F38406E540D7A9D90CB4A9479299640FFB6DF9E224ECC7A01C0D9558D8DAD77D | F38406E540D7A9D90CB4A9479299640FFB6DF9E224ECC7A01C0D9558D8DAD77D | 2020.12.31 | 2020-12-31 07:00:00 | ||||||||||
001o000000rGWgEAAW | 10653978 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft Root Certificate Authority | Microsoft Root Certificate Authority | Root Certificate | Root Certificate | 885DE64C340E3EA70658F01E1145F957FCDA27AABEEA1AB9FAA9FDB0102D4077 | 885DE64C340E3EA70658F01E1145F957FCDA27AABEEA1AB9FAA9FDB0102D4077 | 2021.05.09 | 2021-05-09 23:28:13 | ||||||||||
0011J00001KPVYdQAP | 988218851 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft RSA Root Certificate Authority 2017 | Microsoft RSA Root Certificate Authority 2017 | Root Certificate | Root Certificate | ECDD47B5ACBFA328211E1BFF54ADEAC95E6991E3C1D50E27B527E903208040A1 | ECDD47B5ACBFA328211E1BFF54ADEAC95E6991E3C1D50E27B527E903208040A1 | 2042.07.26 | 2042-07-26 22:15:47 | ||||||||||
001TO00000PoMlKYAV | 17844195426 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft TLS ECC Root G2 | Microsoft TLS ECC Root G2 | Root Certificate | Root Certificate | 87755CFE88BDB0D1099DCDED3EAE114BA976E664B3248EE3DC649E357F17E8A7 | 87755CFE88BDB0D1099DCDED3EAE114BA976E664B3248EE3DC649E357F17E8A7 | 2040.04.10 | 2040-04-10 20:58:59 | ||||||||||
001TO00000PoK6oYAF | 17844196687 | f | f | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft TLS RSA Root G2 | Microsoft TLS RSA Root G2 | Root Certificate | Root Certificate | 6A170583DB584151E1C454EECA2A64CC5D8E484A5BD1156E720B4458654EE9E5 | 6A170583DB584151E1C454EECA2A64CC5D8E484A5BD1156E720B4458654EE9E5 | 2040.04.10 | 2040-04-10 18:43:51 | ||||||||||
0018Z00002iJFe6QAG | 7399364715 | f | f | f | f | f | f | f | f | f | MSC Trustgate | Trustgate ECC ID Root CA | Trustgate ECC ID Root CA | Root Certificate | Root Certificate | 843C2B01DF6A1FDBAF54F7F640F41187F1818A5E429EB457EF627014AF2F5AD6 | 843C2B01DF6A1FDBAF54F7F640F41187F1818A5E429EB457EF627014AF2F5AD6 | 2047.04.04 | 2047-04-04 23:59:00 | ||||||||||
0018Z00002iJFdrQAG | 7399366080 | f | f | f | f | f | f | f | f | f | MSC Trustgate | Trustgate ID Root CA | Trustgate ID Root CA | Root Certificate | Root Certificate | 433DB9E222A1EF0AF4F4C4DFAEE76643B9039F1758A13BDFBED36C7290114162 | 433DB9E222A1EF0AF4F4C4DFAEE76643B9039F1758A13BDFBED36C7290114162 | 2047.04.04 | 2047-04-04 23:59:00 | ||||||||||
0018Z00002iJFbvQAG | 7399368697 | f | f | f | f | f | f | f | f | f | MSC Trustgate | Trustgate Secure Server Root CA | Trustgate Secure Server Root CA | Root Certificate | Root Certificate | A233FA00067C0A31EC80793F6F4623DED687E8FD71241FD560BA292D98AB3737 | A233FA00067C0A31EC80793F6F4623DED687E8FD71241FD560BA292D98AB3737 | 2047.04.04 | 2047-04-04 23:59:00 | ||||||||||
001TO00000MYMMPYA5 | 16549014303 | f | f | f | f | f | f | f | f | f | MSC Trustgate | Trustgate SMIME ECC Root CA | Trustgate SMIME ECC Root CA | Root Certificate | Root Certificate | 0E09801EB903A6F8DE6EF86799296C74B89AB8680C0AF3F2D870EAB6A095F63F | 0E09801EB903A6F8DE6EF86799296C74B89AB8680C0AF3F2D870EAB6A095F63F | 2049.09.07 | 2049-09-07 23:59:00 | ||||||||||
001TO00000NsZzdYAF | 16937932752 | f | f | f | f | f | f | f | f | f | MSC Trustgate | Trustgate SMIME Enterprise ECC Root CA | Trustgate SMIME Enterprise ECC Root CA | Root Certificate | Root Certificate | E766F25782559C75324FDCCC53DDED1DE0A7BB16791CCBD0657EA873BECDACCA | E766F25782559C75324FDCCC53DDED1DE0A7BB16791CCBD0657EA873BECDACCA | 2049.09.07 | 2049-09-07 23:59:00 | ||||||||||
001TO00000NsC8kYAF | 16937932750 | f | f | f | f | f | f | f | f | f | MSC Trustgate | Trustgate SMIME Enterprise RSA Root CA | Trustgate SMIME Enterprise RSA Root CA | Root Certificate | Root Certificate | 4027859768646C2235DD86CDF7D82AC345AA7F71F742DDFACE2A2D6FD51B41AC | 4027859768646C2235DD86CDF7D82AC345AA7F71F742DDFACE2A2D6FD51B41AC | 2049.09.07 | 2049-09-07 23:59:00 | ||||||||||
001TO00000NsberYAB | 16937932751 | f | f | f | f | f | f | f | f | f | MSC Trustgate | Trustgate SMIME RSA Root CA | Trustgate SMIME RSA Root CA | Root Certificate | Root Certificate | 504B5D7CD5324FB393817075F3BBDCB990EC4C930CCD35E374F97D426B1DA0EB | 504B5D7CD5324FB393817075F3BBDCB990EC4C930CCD35E374F97D426B1DA0EB | 2049.09.07 | 2049-09-07 23:59:00 | ||||||||||
0014o00001mYIaFAAW | 4385337191 | f | f | f | f | f | f | f | f | f | National Authority for Digital Certification | Sudan National Root CA1 | Sudan National Root CA1 | Root Certificate | Root Certificate | 9B3D0F84F9E2BF5386CD193C827E98008D2DCEF2FA2C55977428D0473A685387 | 9B3D0F84F9E2BF5386CD193C827E98008D2DCEF2FA2C55977428D0473A685387 | 2038.05.17 | 2038-05-17 19:44:48 | ||||||||||
0014o00001mHqJzAAK | 4297723967 | f | f | f | f | f | f | f | f | f | National Certification Authority of Sri Lanka (“NCA of Sri Lanka”) | National Certification Authority of Sri Lanka - G1 | National Certification Authority of Sri Lanka - G1 | Root Certificate | Root Certificate | 57D705F10BA0EE4E26338EE8E799F202817CEE2DD3FB67459639B632B80763B4 | 57D705F10BA0EE4E26338EE8E799F202817CEE2DD3FB67459639B632B80763B4 | 2030.02.14 | 2030-02-14 07:25:29 | ||||||||||
0018Z00002iKhLsQAK | 12722582 | f | f | f | f | f | f | f | f | f | NATIXIS | CESAM | CESAM | Root Certificate | Root Certificate | B2259996FFF735AB35014EF63F3D413190079DD03A0962432635A8695F995305 | B2259996FFF735AB35014EF63F3D413190079DD03A0962432635A8695F995305 | 2019.01.30 | 2019-01-30 14:19:31 | ||||||||||
001o000000HshFJAAZ | 10874 | f | f | f | f | f | f | f | f | f | Netlock | NetLock Expressz (Class C) Tanusitvanykiado | NetLock Expressz (Class C) Tanusitvanykiado | Root Certificate | Root Certificate | 0B5EED4E846403CF55E065848440ED2A82758BF5B9AA1F253D4613CFA080FF3F | 0B5EED4E846403CF55E065848440ED2A82758BF5B9AA1F253D4613CFA080FF3F | 2019.02.20 | 2019-02-20 14:08:11 | ||||||||||
001o000000HshFKAAZ | 51088 | f | f | f | f | f | f | f | f | f | Netlock | NetLock Kozjegyzoi (Class A) Tanusitvanykiado | NetLock Kozjegyzoi (Class A) Tanusitvanykiado | Root Certificate | Root Certificate | 7F12CD5F7E5E290EC7D85179D5B72C20A5BE7508FFDB5BF81AB9684A7FC9F667 | 7F12CD5F7E5E290EC7D85179D5B72C20A5BE7508FFDB5BF81AB9684A7FC9F667 | 2019.02.19 | 2019-02-19 23:14:47 | ||||||||||
001o000000HshFLAAZ | 12723980 | f | f | f | f | f | f | f | f | f | Netlock | NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado | NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado | Root Certificate | Root Certificate | E606DDEEE2EE7F5CDEF5D9058FF8B7D0A9F042877F6A171ED8FF6960E4CC5EA5 | E606DDEEE2EE7F5CDEF5D9058FF8B7D0A9F042877F6A171ED8FF6960E4CC5EA5 | 2022.12.15 | 2022-12-15 01:47:11 | ||||||||||
0018Z00002nqZXQQA2 | 7750431869 | f | f | f | f | f | f | f | f | f | Netlock | NETLOCK Root CA ECC | NETLOCK Root CA ECC | Root Certificate | Root Certificate | CF1794A62DC233D6CFBBF09198322AB8899B0B3F493419ACA1DBFC0D562B9B5B | CF1794A62DC233D6CFBBF09198322AB8899B0B3F493419ACA1DBFC0D562B9B5B | 2041.04.25 | 2041-04-25 08:13:11 | ||||||||||
0018Z00002nqZXLQA2 | 7750434843 | f | f | f | f | f | f | f | f | f | Netlock | NETLOCK Root CA RSA4096 | NETLOCK Root CA RSA4096 | Root Certificate | Root Certificate | 92F0D139DC223E4C6AF7FC101637F642B9534F07C326860EADD7A65BD4DAF8A3 | 92F0D139DC223E4C6AF7FC101637F642B9534F07C326860EADD7A65BD4DAF8A3 | 2041.04.25 | 2041-04-25 08:01:36 | ||||||||||
0018Z00003ASx5oQAD | 10805242956 | f | f | f | f | f | f | f | f | f | Netlock | NETLOCK TLS ECC CA | NETLOCK TLS ECC CA | Root Certificate | Root Certificate | DC4261667AFE21DDD01CFA52D2CCADFD70ABAF26315DC6A15A32B76C899AE261 | DC4261667AFE21DDD01CFA52D2CCADFD70ABAF26315DC6A15A32B76C899AE261 | 2038.06.17 | 2038-06-17 13:01:34 | ||||||||||
001o000000HshFMAAZ | 3907 | f | f | f | f | f | f | f | f | f | Netlock | NetLock Uzleti (Class B) Tanusitvanykiado | NetLock Uzleti (Class B) Tanusitvanykiado | Root Certificate | Root Certificate | 39DF7B682B7B938F84715481CCDE8D60D8F22EC598877D0AAAC12B59182B0312 | 39DF7B682B7B938F84715481CCDE8D60D8F22EC598877D0AAAC12B59182B0312 | 2019.02.20 | 2019-02-20 14:10:22 | ||||||||||
001TO00000FGZ83YAH | 14487606979 | f | f | f | f | f | f | f | f | f | NETLOCK | NETLOCK Root ECC CA | NETLOCK Root ECC CA | Root Certificate | Root Certificate | 00F12C1ECFE26D34A28FC6BF9FB35085302C7D53A9AC3588ED7CD86C9C7423AA | 00F12C1ECFE26D34A28FC6BF9FB35085302C7D53A9AC3588ED7CD86C9C7423AA | 2038.06.17 | 2038-06-17 12:22:28 | ||||||||||
001TO00000OvzqXYAR | 17422972908 | f | f | f | f | f | f | f | f | f | NETLOCK | NETLOCK SMIME ECC CA | NETLOCK SMIME ECC CA | Root Certificate | Root Certificate | 1DA6F0B1B4276552CABC37DA61B28121B1F2CE2E013FE54A8112F80D42AC3FA3 | 1DA6F0B1B4276552CABC37DA61B28121B1F2CE2E013FE54A8112F80D42AC3FA3 | 2035.03.16 | 2035-03-16 12:43:00 | ||||||||||
001o000000rGWZmAAO | 6630758 | f | f | f | f | f | f | f | f | f | Netrust Pte Ltd | Netrust CA1 | Netrust CA1 | Root Certificate | Root Certificate | 781D64DFA77B00F2C006700B1FDA86BF68B865A603C7A656F92E90C042CA2873 | 781D64DFA77B00F2C006700B1FDA86BF68B865A603C7A656F92E90C042CA2873 | 2021.03.30 | 2021-03-30 02:57:45 | ||||||||||
001o000000HshG2AAJ | 14401 | f | f | f | f | f | f | f | f | f | Nets DanID | TDC Internet Root CA | TDC Internet Root CA | Root Certificate | Root Certificate | 4898C6888C0CFFB0D3E31ACA8A37D4E3515FF746D02635D86646CFA0A3185AE7 | 4898C6888C0CFFB0D3E31ACA8A37D4E3515FF746D02635D86646CFA0A3185AE7 | 2021.04.05 | 2021-04-05 17:03:17 | ||||||||||
0018Z00002iKhheQAC | 9029137 | f | f | f | f | f | f | f | f | f | Nets DanID | TDC OCES CA | TDC OCES CA | Root Certificate | Root Certificate | 39C75CAECEE8920C909F132491641350B57E2702A65A991545B01D1BE4A2220B | 39C75CAECEE8920C909F132491641350B57E2702A65A991545B01D1BE4A2220B | 2037.02.11 | 2037-02-11 09:09:30 | ||||||||||
001o000000rGWXhAAO | 11534062 | f | f | f | f | f | f | f | f | f | Nets DanID | TRUST2408 OCES Primary CA | TRUST2408 OCES Primary CA | Root Certificate | Root Certificate | 92D8092EE77BC9208F0897DC05271894E63EF27933AE537FB983EEF0EAE3EEC8 | 92D8092EE77BC9208F0897DC05271894E63EF27933AE537FB983EEF0EAE3EEC8 | 2037.12.03 | 2037-12-03 13:11:34 | ||||||||||
001o000000x23JFAAY | 100961666 | f | f | f | f | f | f | f | f | f | Network Solutions | Network Solutions ECC Certificate Authority | Network Solutions ECC Certificate Authority | Root Certificate | Root Certificate | 2193CFEA381211A1AEAA2DE984E630643A87160B1208118145EAFB8E1BC69958 | 2193CFEA381211A1AEAA2DE984E630643A87160B1208118145EAFB8E1BC69958 | 2038.01.18 | 2038-01-18 23:59:59 | ||||||||||
001o000000x23FhAAI | 100961690 | f | f | f | f | f | f | f | f | f | Network Solutions | Network Solutions RSA Certificate Authority | Network Solutions RSA Certificate Authority | Root Certificate | Root Certificate | DDBF149733BC2BF8A09D7F012B01A6DEA11D7BAE26713783EF6407A2495BF189 | DDBF149733BC2BF8A09D7F012B01A6DEA11D7BAE26713783EF6407A2495BF189 | 2038.01.18 | 2038-01-18 23:59:59 | ||||||||||
001o000000rGWVaAAO | 286966 | f | f | f | f | f | f | f | f | f | NLB Nova Ljubljanska Banka d.d. Ljubljana | ACNLB | ACNLB | Root Certificate | Root Certificate | 894CE6DDB012CB3F736954668DE63F436080E95F17B7A81BD924EB21BEE9E440 | 894CE6DDB012CB3F736954668DE63F436080E95F17B7A81BD924EB21BEE9E440 | 2023.05.15 | 2023-05-15 12:22:45 | ||||||||||
0018Z000035TV97QAG | 9879397257 | f | f | f | f | f | f | f | f | f | OISTE | OISTE Client Root ECC G1 | OISTE Client Root ECC G1 | Root Certificate | Root Certificate | D9A32485A8CCA85539CEF12FFFFF711378A17851D73DA2732AB4302D763BD62B | D9A32485A8CCA85539CEF12FFFFF711378A17851D73DA2732AB4302D763BD62B | 2048.05.24 | 2048-05-24 14:31:39 | ||||||||||
0018Z000035TV9CQAW | 9879399336 | f | f | f | f | f | f | f | f | f | OISTE | OISTE Client Root RSA G1 | OISTE Client Root RSA G1 | Root Certificate | Root Certificate | D02A0F994A868C66395F2E7A880DF509BD0C29C96DE16015A0FD501EDA4F96A9 | D02A0F994A868C66395F2E7A880DF509BD0C29C96DE16015A0FD501EDA4F96A9 | 2048.05.24 | 2048-05-24 14:23:28 | ||||||||||
0018Z000035TV9DQAW | 9879406396 | f | f | f | f | f | f | f | f | f | OISTE | OISTE Server Root ECC G1 | OISTE Server Root ECC G1 | Root Certificate | Root Certificate | EEC997C0C30F216F7E3B8B307D2BAE42412D753FC8219DAFD1520B2572850F49 | EEC997C0C30F216F7E3B8B307D2BAE42412D753FC8219DAFD1520B2572850F49 | 2048.05.24 | 2048-05-24 14:42:27 | ||||||||||
0018Z000035TV9HQAW | 9879414324 | f | f | f | f | f | f | f | f | f | OISTE | OISTE Server Root RSA G1 | OISTE Server Root RSA G1 | Root Certificate | Root Certificate | 9AE36232A5189FFDDB353DFD26520C015395D22777DAC59DB57B98C089A651E6 | 9AE36232A5189FFDDB353DFD26520C015395D22777DAC59DB57B98C089A651E6 | 2048.05.24 | 2048-05-24 14:37:15 | ||||||||||
0018Z000037JP9JQAW | 3812558656 | f | f | f | f | f | f | f | f | f | Open Access Technology International, Inc. (OATI) | webCARES Root CA 2018 | webCARES Root CA 2018 | Root Certificate | Root Certificate | F0B6883DDEEDF22E674555F98F638738E0CCE44519FBC97FFA8C8C9F7E1DED5B | F0B6883DDEEDF22E674555F98F638738E0CCE44519FBC97FFA8C8C9F7E1DED5B | 2038.04.19 | 2038-04-19 14:22:26 | ||||||||||
001o000000rGWerAAG | 8560360 | f | f | f | f | f | f | f | f | f | Orange Polska S.A. | Signet Root CA | Signet Root CA | Root Certificate | Root Certificate | 7286CE249FE9E32BD4752257C17CD8F6991A9C1E6F1A3CC73304ED023E6AE4EB | 7286CE249FE9E32BD4752257C17CD8F6991A9C1E6F1A3CC73304ED023E6AE4EB | 2038.05.06 | 2038-05-06 11:38:04 | ||||||||||
001o000000rGWZ8AAO | 12625391 | f | f | f | f | f | f | f | f | f | Personal I.D. LTD | PersonalID Trustworthy RootCA 2011 | PersonalID Trustworthy RootCA 2011 | Root Certificate | Root Certificate | 075BFCCA2D55AE6E35742C32AFD0CA8EA4C958FEEFC23224999541C033D69C8D | 075BFCCA2D55AE6E35742C32AFD0CA8EA4C958FEEFC23224999541C033D69C8D | 2041.09.01 | 2041-09-01 08:45:16 | ||||||||||
001o0000016zOhpAAE | 163110034 | f | f | f | f | f | f | f | f | f | Pos Digicert Sdn. Bhd (Malaysia) | PosDigicert Class 2 Root CA G2 | PosDigicert Class 2 Root CA G2 | Root Certificate | Root Certificate | 19ABCDFF3A74402FA8F0CA206BF7FAB0DFFFF3AE2BBD719584D21090A4353207 | 19ABCDFF3A74402FA8F0CA206BF7FAB0DFFFF3AE2BBD719584D21090A4353207 | 2036.10.17 | 2036-10-17 03:02:09 | ||||||||||
0011J00001hqg14QAA | 3321742494 | f | f | f | f | f | f | f | f | f | Pos Digicert Sdn. Bhd (Malaysia) | Pos Digicert Class 2 Root CA G4 | Pos Digicert Class 2 Root CA G4 | Root Certificate | Root Certificate | 8918FD0DE9BD3242FD9D6649EDF0E11B03F938F1E966FA393DBE8CD9442C1D0D | 8918FD0DE9BD3242FD9D6649EDF0E11B03F938F1E966FA393DBE8CD9442C1D0D | 2038.11.28 | 2038-11-28 08:26:16 | ||||||||||
001o000000rGWgOAAW | 51411 | f | f | f | f | f | f | f | f | f | Post of Serbia | Posta CA Root | Posta CA Root | Root Certificate | Root Certificate | CD201256FE5CED0BFFF8DF595FFF36B1416D5313A999F532EF4A9915DF96DEE0 | CD201256FE5CED0BFFF8DF595FFF36B1416D5313A999F532EF4A9915DF96DEE0 | 2028.10.20 | 2028-10-20 12:52:08 | ||||||||||
001o000000rGWemAAG | 84144 | f | f | f | f | f | f | f | f | f | Post of Slovenia | POSTArCA | POSTArCA | Root Certificate | Root Certificate | 007E452FD5CF838946696DFE37A2DB2EF3991436D27BCBAB45922053C15A87A8 | 007E452FD5CF838946696DFE37A2DB2EF3991436D27BCBAB45922053C15A87A8 | 2023.02.07 | 2023-02-07 11:06:58 | ||||||||||
001TO000004Shm5YAC | 11994991024 | f | f | f | f | f | f | f | f | f | PostSignum | PostSignum Root QCA ECC R1 | PostSignum Root QCA ECC R1 | Root Certificate | Root Certificate | 2D41D6D54CF9C81B0725E963C351F192D46581C8989C96C565695F6C8FC6EA67 | 2D41D6D54CF9C81B0725E963C351F192D46581C8989C96C565695F6C8FC6EA67 | 2038.06.29 | 2038-06-29 08:11:35 | ||||||||||
001o000000rGWgJAAW | 57194 | f | f | f | f | f | f | f | f | f | První certifikační autorita, a.s. | I.CA - Qualified Certification Authority, 09/2009 | I.CA - Qualified Certification Authority, 09/2009 | Root Certificate | Root Certificate | C0C05A8D8DA55EAF27AA9B910B0A6EF0D8BBDED346928DB872E182C2073E9802 | C0C05A8D8DA55EAF27AA9B910B0A6EF0D8BBDED346928DB872E182C2073E9802 | 2019.09.01 | 2019-09-01 00:00:00 | ||||||||||
001o000000rGWaBAAW | 12725178 | f | f | f | f | f | f | f | f | f | První certifikační autorita, a.s. | I.CA - Qualified root certificate | I.CA - Qualified root certificate | Root Certificate | Root Certificate | 1AA980C8C0D316F25029978982F033CBB3A3F4188D669F2DE6A8D84EE00A1575 | 1AA980C8C0D316F25029978982F033CBB3A3F4188D669F2DE6A8D84EE00A1575 | 2018.04.01 | 2018-04-01 00:00:00 | ||||||||||
001o000000rGWcgAAG | 12481 | f | f | f | f | f | f | f | f | f | První certifikační autorita, a.s. | I.CA - Standard Certification Authority, 09/2009 | I.CA - Standard Certification Authority, 09/2009 | Root Certificate | Root Certificate | 6468BF8CF3CF688EBB2A6841BD70E97B5229B49DF8690D7B74193E9CE3886141 | 6468BF8CF3CF688EBB2A6841BD70E97B5229B49DF8690D7B74193E9CE3886141 | 2019.09.01 | 2019-09-01 00:00:00 | ||||||||||
001o000000rGWeNAAW | 25902 | f | f | f | f | f | f | f | f | f | První certifikační autorita, a.s. | I.CA - Standard root certificate | I.CA - Standard root certificate | Root Certificate | Root Certificate | 77A03F69E4F3955589ACACA06F6773A0D98D16DEA05C6D94EE3EF6FB2BEB7605 | 77A03F69E4F3955589ACACA06F6773A0D98D16DEA05C6D94EE3EF6FB2BEB7605 | 2018.04.01 | 2018-04-01 00:00:00 | ||||||||||
001o000000HshFVAAZ | 8878 | f | f | f | f | f | f | f | f | f | QuoVadis | QuoVadis Root Certification Authority | QuoVadis Root Certification Authority | Root Certificate | Root Certificate | A45EDE3BBBF09C8AE15C72EFC07268D693A21C996FD51E67CA079460FD6D8873 | A45EDE3BBBF09C8AE15C72EFC07268D693A21C996FD51E67CA079460FD6D8873 | 2021.03.17 | 2021-03-17 18:33:33 | ||||||||||
001o000000HshFAAAZ | 66212 | f | f | f | f | f | f | f | f | f | RSA the Security Division of EMC | http://www.valicert.com/ | http://www.valicert.com/ | Root Certificate | Root Certificate | BC23F98A313CB92DE3BBFC3A5A9F4461AC39494C4AE15A9E9DF131E99B73019A | BC23F98A313CB92DE3BBFC3A5A9F4461AC39494C4AE15A9E9DF131E99B73019A | 2019.06.26 | 2019-06-26 00:22:33 | ||||||||||
001o000000HshFXAAZ | 3631 | f | f | f | f | f | f | f | f | f | RSA the Security Division of EMC | RSA Security 2048 V3 | RSA Security 2048 V3 | Root Certificate | Root Certificate | AF8B6762A1E528228161A95D5C559EE266278F75D79E830189A503506ABD6B4C | AF8B6762A1E528228161A95D5C559EE266278F75D79E830189A503506ABD6B4C | 2026.02.22 | 2026-02-22 20:39:23 | ||||||||||
0018Z00003CjtcXQAR | 11405701842 | f | f | f | f | f | f | f | f | f | Saudi Data and Artificial Intelligence Authority (SDAIA) | Saudi National SSL Root CA | Saudi National SSL Root CA | Root Certificate | Root Certificate | 491A043E6D361179656F344182E0203DDC3DCE6C187001AA10BE563D7F1241A8 | 491A043E6D361179656F344182E0203DDC3DCE6C187001AA10BE563D7F1241A8 | 2043.09.10 | 2043-09-10 17:14:06 | ||||||||||
001TO00000ENOHiYAP | 14149856764 | f | f | f | f | f | f | f | f | f | SECOM Trust Systems Co., Ltd. | SECOM SMIME RSA Root CA 2024 | SECOM SMIME RSA Root CA 2024 | Root Certificate | Root Certificate | 3629E7188E00A7CB3232C4426BC84912F1218B1A9AE676C0B0ABE1DBFE2182B5 | 3629E7188E00A7CB3232C4426BC84912F1218B1A9AE676C0B0ABE1DBFE2182B5 | 2049.01.14 | 2049-01-14 06:23:06 | ||||||||||
001TO00000ENMEIYA5 | 14149853145 | f | f | f | f | f | f | f | f | f | SECOM Trust Systems Co., Ltd. | SECOM TLS ECC Root CA 2024 | SECOM TLS ECC Root CA 2024 | Root Certificate | Root Certificate | 6AB2AB75F51CB4F4F0156203FBF6F646232F514BE059F62833308B82B4D72DB1 | 6AB2AB75F51CB4F4F0156203FBF6F646232F514BE059F62833308B82B4D72DB1 | 2049.01.14 | 2049-01-14 05:52:34 | ||||||||||
001TO00000ENLIHYA5 | 14149867500 | f | f | f | f | f | f | f | f | f | SECOM Trust Systems Co., Ltd. | SECOM TLS RSA Root CA 2024 | SECOM TLS RSA Root CA 2024 | Root Certificate | Root Certificate | 1435F225C5D252D7A21948CC3CE62AECFA88001E3DD72D1CC3555100EB372F93 | 1435F225C5D252D7A21948CC3CE62AECFA88001E3DD72D1CC3555100EB372F93 | 2049.01.14 | 2049-01-14 05:11:55 | ||||||||||
001o000000HshFCAAZ | 6857 | f | f | f | f | f | f | f | f | f | SECOM Trust Systems CO., LTD. | http://www.valicert.com/ | http://www.valicert.com/ | Root Certificate | Root Certificate | F4C149551A3013A35BC7BFFE17A7F3449BC1AB5B5A0AE74B06C23B90004C0104 | F4C149551A3013A35BC7BFFE17A7F3449BC1AB5B5A0AE74B06C23B90004C0104 | 2019.06.25 | 2019-06-25 22:23:48 | ||||||||||
0018Z00002u4QUmQAM | 8509802801 | f | f | f | f | f | f | f | f | f | SECOM Trust Systems CO., LTD. | SECOM TLS RSA Root CA 2023 | SECOM TLS RSA Root CA 2023 | Root Certificate | Root Certificate | 73D0CC0F9AA1F84E8F80C04324F182952FCC5CA2454D639D41F314F5461C21DA | 73D0CC0F9AA1F84E8F80C04324F182952FCC5CA2454D639D41F314F5461C21DA | 2048.01.01 | 2048-01-01 07:21:52 | ||||||||||
001o000000HshDpAAJ | 1726036 | f | f | f | f | f | f | f | f | f | Sectigo | AddTrust Class 1 CA Root | AddTrust Class 1 CA Root | Root Certificate | Root Certificate | 8C7209279AC04E275E16D07FD3B775E80154B5968046E31F52DD25766324E9A7 | 8C7209279AC04E275E16D07FD3B775E80154B5968046E31F52DD25766324E9A7 | 2020.05.30 | 2020-05-30 10:38:31 | ||||||||||
001o000000HshDrAAJ | 1733294 | f | f | f | f | f | f | f | f | f | Sectigo | AddTrust Public CA Root | AddTrust Public CA Root | Root Certificate | Root Certificate | 0791CA0749B20782AAD3C7D7BD0CDFC9485835843EB2D7996009CE43AB6C6927 | 0791CA0749B20782AAD3C7D7BD0CDFC9485835843EB2D7996009CE43AB6C6927 | 2020.05.30 | 2020-05-30 10:41:50 | ||||||||||
001o000000HshDsAAJ | 1721082 | f | f | f | f | f | f | f | f | f | Sectigo | AddTrust Qualified CA Root | AddTrust Qualified CA Root | Root Certificate | Root Certificate | 8095210805DB4BBC355E4428D8FD6EC2CDE3AB5FB97A9942988EB8F4DCD06016 | 8095210805DB4BBC355E4428D8FD6EC2CDE3AB5FB97A9942988EB8F4DCD06016 | 2020.05.30 | 2020-05-30 10:44:50 | ||||||||||
001o000000HshFYAAZ | 1726666 | f | f | f | f | f | f | f | f | f | Sectigo | Secure Certificate Services | Secure Certificate Services | Root Certificate | Root Certificate | BD81CE3B4F6591D11A67B5FC7A47FDEF25521BF9AA4E18B9E3DF2E34A7803BE8 | BD81CE3B4F6591D11A67B5FC7A47FDEF25521BF9AA4E18B9E3DF2E34A7803BE8 | 2028.12.31 | 2028-12-31 23:59:59 | ||||||||||
001o000000HshG9AAJ | 1728427 | f | f | f | f | f | f | f | f | f | Sectigo | Trusted Certificate Services | Trusted Certificate Services | Root Certificate | Root Certificate | 3F06E55681D496F5BE169EB5389F9F2B8FF61E1708DF6881724849CD5D27CB69 | 3F06E55681D496F5BE169EB5389F9F2B8FF61E1708DF6881724849CD5D27CB69 | 2028.12.31 | 2028-12-31 23:59:59 | ||||||||||
001o000000HshGKAAZ | 1598 | f | f | f | f | f | f | f | f | f | Sectigo | UTN - DATACorp SGC | UTN - DATACorp SGC | Root Certificate | Root Certificate | 85FB2F91DD12275A0145B636534F84024AD68B69B8EE88684FF711375805B348 | 85FB2F91DD12275A0145B636534F84024AD68B69B8EE88684FF711375805B348 | 2019.06.24 | 2019-06-24 19:06:30 | ||||||||||
001o000000HshGLAAZ | 8983048 | f | f | f | f | f | f | f | f | f | Sectigo | UTN-USERFirst-Client Authentication and Email | UTN-USERFirst-Client Authentication and Email | Root Certificate | Root Certificate | 43F257412D440D627476974F877DA8F1FC2444565A367AE60EDDC27A412531AE | 43F257412D440D627476974F877DA8F1FC2444565A367AE60EDDC27A412531AE | 2019.07.09 | 2019-07-09 17:36:58 | ||||||||||
001o000000HshGMAAZ | 34 | f | f | f | f | f | f | f | f | f | Sectigo | UTN-USERFirst-Hardware | UTN-USERFirst-Hardware | Root Certificate | Root Certificate | 6EA54741D004667EED1B4816634AA3A79E6E4B96950F8279DAFC8D9BD8812137 | 6EA54741D004667EED1B4816634AA3A79E6E4B96950F8279DAFC8D9BD8812137 | 2019.07.09 | 2019-07-09 18:19:22 | ||||||||||
001o000000HshGNAAZ | 17811155 | f | f | f | f | f | f | f | f | f | Sectigo | UTN-USERFirst-Object | UTN-USERFirst-Object | Root Certificate | Root Certificate | 6FFF78E400A70C11011CD85977C459FB5AF96A3DF0540820D0F4B8607875E58F | 6FFF78E400A70C11011CD85977C459FB5AF96A3DF0540820D0F4B8607875E58F | 2019.07.09 | 2019-07-09 18:40:36 | ||||||||||
0018Z00002iKhgMQAS | 12729122 | f | f | f | f | f | f | f | f | f | Serasa S.A. | Serasa Certificate Authority I | Serasa Certificate Authority I | Root Certificate | Root Certificate | 0A3B474D9032A10E6E6CD8BF0A873E60657ECF326E7723AEFCD58A1A242C3326 | 0A3B474D9032A10E6E6CD8BF0A873E60657ECF326E7723AEFCD58A1A242C3326 | 2024.11.21 | 2024-11-21 14:12:45 | ||||||||||
0018Z00002iKhJ9QAK | 12729515 | f | f | f | f | f | f | f | f | f | Serasa S.A. | Serasa Certificate Authority II | Serasa Certificate Authority II | Root Certificate | Root Certificate | FFCEF2224E29B0B36EC8314E686822F3AC0F1C5E0C2D5C0EB2484CE7E2540FD0 | FFCEF2224E29B0B36EC8314E686822F3AC0F1C5E0C2D5C0EB2484CE7E2540FD0 | 2024.11.21 | 2024-11-21 12:44:48 | ||||||||||
0018Z00002iKhgbQAC | 12726398 | f | f | f | f | f | f | f | f | f | Serasa S.A. | Serasa Certificate Authority III | Serasa Certificate Authority III | Root Certificate | Root Certificate | E5BDA820E5CE15BFD07BA11FFB1C7C8A5910CE1B90175C34308BC2500453CCDC | E5BDA820E5CE15BFD07BA11FFB1C7C8A5910CE1B90175C34308BC2500453CCDC | 2024.11.21 | 2024-11-21 13:24:14 | ||||||||||
001o000000HshFfAAJ | 418113 | f | f | f | f | f | f | f | f | f | SG Trust Services | SG TRUST SERVICES RACINE | SG TRUST SERVICES RACINE | Root Certificate | Root Certificate | 8F1ECDAF29BCD56EDDD6B5D56A07FCAC2B74D4BCD179179144A0365C27DCF14B | 8F1ECDAF29BCD56EDDD6B5D56A07FCAC2B74D4BCD179179144A0365C27DCF14B | 2030.09.05 | 2030-09-05 12:53:42 | ||||||||||
001o000000rGWVuAAO | 38961 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UCA Global Root | UCA Global Root | Root Certificate | Root Certificate | A1F05CCB80C2D710EC7D479ABDCBB879E58D7EDB7149FE78A87884E3D0BAD0F9 | A1F05CCB80C2D710EC7D479ABDCBB879E58D7EDB7149FE78A87884E3D0BAD0F9 | 2037.12.31 | 2037-12-31 00:00:00 | ||||||||||
001o000000rGWcCAAW | 105159 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UCA Root | UCA Root | Root Certificate | Root Certificate | 93E65EC762F055DC718A332582C41A04430D72E3CB87E8B897B67516F0D1AA39 | 93E65EC762F055DC718A332582C41A04430D72E3CB87E8B897B67516F0D1AA39 | 2029.12.31 | 2029-12-31 00:00:00 | ||||||||||
001TO000009oqENYAY | 13114153908 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global Code Signing ECC Root CA R2 | UniTrust Global Code Signing ECC Root CA R2 | Root Certificate | Root Certificate | 8854E81F9C6B47E438BBAE17E41F8BE4E68589AFD31A48BEE3F203F6DD3DA517 | 8854E81F9C6B47E438BBAE17E41F8BE4E68589AFD31A48BEE3F203F6DD3DA517 | 2049.03.27 | 2049-03-27 15:59:59 | ||||||||||
001TO000009onOaYAI | 13114153909 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global Code Signing RSA Root CA R1 | UniTrust Global Code Signing RSA Root CA R1 | Root Certificate | Root Certificate | 6357353A4BBCA3D5A158C95BE9DC90F0B3E2F6A6310FD5371FCB4C41E5E1BB4C | 6357353A4BBCA3D5A158C95BE9DC90F0B3E2F6A6310FD5371FCB4C41E5E1BB4C | 2049.03.27 | 2049-03-27 15:59:59 | ||||||||||
001TO000009omnZYAQ | 13114153906 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global SMIME ECC Root CA R2 | UniTrust Global SMIME ECC Root CA R2 | Root Certificate | Root Certificate | 6F4E2464D216A1E0B558BB204259B4A545AEB948957AA3EAF11B2F4DE1AFEF10 | 6F4E2464D216A1E0B558BB204259B4A545AEB948957AA3EAF11B2F4DE1AFEF10 | 2039.03.27 | 2039-03-27 15:59:59 | ||||||||||
001TO000009oqXhYAI | 13114153911 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global SMIME RSA Root CA R1 | UniTrust Global SMIME RSA Root CA R1 | Root Certificate | Root Certificate | F0F255ADA2A643C0A1E7C8F54F3ED3DD25EF0E7378E76F7C127517ECFD952803 | F0F255ADA2A643C0A1E7C8F54F3ED3DD25EF0E7378E76F7C127517ECFD952803 | 2039.03.27 | 2039-03-27 15:59:59 | ||||||||||
001TO000009oqavYAA | 13114153912 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global Time Stamping ECC Root CA R2 | UniTrust Global Time Stamping ECC Root CA R2 | Root Certificate | Root Certificate | 90711D905CFF3C773A7320B5188A960C8A7D9E5966FA73284D64A4BF3E2FDA48 | 90711D905CFF3C773A7320B5188A960C8A7D9E5966FA73284D64A4BF3E2FDA48 | 2049.03.27 | 2049-03-27 15:59:59 | ||||||||||
001TO000009olmYYAQ | 13114153913 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global Time Stamping RSA Root CA R1 | UniTrust Global Time Stamping RSA Root CA R1 | Root Certificate | Root Certificate | 1759727D9E6679B069DD3AFA910E2779C42007AAB206A169C66E6E2A3D1774B0 | 1759727D9E6679B069DD3AFA910E2779C42007AAB206A169C66E6E2A3D1774B0 | 2049.03.27 | 2049-03-27 15:59:59 | ||||||||||
001TO000009oqflYAA | 13114153910 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global TLS ECC Root CA R2 | UniTrust Global TLS ECC Root CA R2 | Root Certificate | Root Certificate | 6C689FC6B014A1FB0CDEB5A3996171C15E7286106028532E0210CEA8D9CD4E97 | 6C689FC6B014A1FB0CDEB5A3996171C15E7286106028532E0210CEA8D9CD4E97 | 2039.03.27 | 2039-03-27 15:59:59 | ||||||||||
001TO000009oqizYAA | 13114153907 | f | f | f | f | f | f | f | f | f | Shanghai Electronic Certification Authority Co., Ltd. | UniTrust Global TLS RSA Root CA R1 | UniTrust Global TLS RSA Root CA R1 | Root Certificate | Root Certificate | 4BABE0E9328D5DAE17936F3DDAA2442BFBDD0873F92FB8D1FBBD3D9894649AD9 | 4BABE0E9328D5DAE17936F3DDAA2442BFBDD0873F92FB8D1FBBD3D9894649AD9 | 2039.03.27 | 2039-03-27 15:59:59 | ||||||||||
0018Z00002mIYewQAG | 7649620174 | f | f | f | f | f | f | f | f | f | SISP - Sociedade Interbancaria e Sistemas de Pagamentos, S.A. | Entidade de Certificacao Raiz da SISP 02 | Entidade de Certificacao Raiz da SISP 02 | Root Certificate | Root Certificate | ED86D80292B867243A855A3390A5034D003403BD4108CF160EB6956D874EAA6E | ED86D80292B867243A855A3390A5034D003403BD4108CF160EB6956D874EAA6E | 2034.06.28 | 2034-06-28 07:45:00 | ||||||||||
0018Z00002lf5o9QAA | 7603465589 | f | f | f | f | f | f | f | f | f | SISP - Sociedade Interbancaria e Sistemas de Pagamentos, S.A. | TesteSispRootCA02 | TesteSispRootCA02 | Root Certificate | Root Certificate | FB5E8F06B0EA841B3D03490AD77ACD16ACC806D01A0BB7491B37BDED06A2A37E | FB5E8F06B0EA841B3D03490AD77ACD16ACC806D01A0BB7491B37BDED06A2A37E | 2033.09.14 | 2033-09-14 12:09:54 | ||||||||||
001o000000rGWYjAAO | 2176 | f | f | f | f | f | f | f | f | f | SI-TRUST | sigen-ca | sigen-ca | Root Certificate | Root Certificate | 12D480C1A3C664781B99D9DF0E9FAF3F1CACEE1B3C30C3123A337A4A454FFED2 | 12D480C1A3C664781B99D9DF0E9FAF3F1CACEE1B3C30C3123A337A4A454FFED2 | 2021.06.29 | 2021-06-29 21:57:46 | ||||||||||
001o000000rGWbxAAG | 15288 | f | f | f | f | f | f | f | f | f | SI-TRUST | sigov-ca | sigov-ca | Root Certificate | Root Certificate | 74CB3A4EA791AFB0A2D1A0B13301B3BEE0E50AD5C79A1A6F2C663E6F4EE7A484 | 74CB3A4EA791AFB0A2D1A0B13301B3BEE0E50AD5C79A1A6F2C663E6F4EE7A484 | 2021.01.10 | 2021-01-10 14:22:52 | ||||||||||
0011J000018MwM9QAK | 12979949 | f | f | f | f | f | f | f | f | f | Skaitmeninio sertifikavimo centras (SSC) | SSC GDL CA Root A | SSC GDL CA Root A | Root Certificate | Root Certificate | B0428B08C228C43F6F9AA0FC29E9D602ED1098FF6F153C6733383FEA17216528 | B0428B08C228C43F6F9AA0FC29E9D602ED1098FF6F153C6733383FEA17216528 | 2033.06.04 | 2033-06-04 13:00:47 | ||||||||||
0011J000018MwOAQA0 | 12979950 | f | f | f | f | f | f | f | f | f | Skaitmeninio sertifikavimo centras (SSC) | SSC GDL CA VS Root | SSC GDL CA VS Root | Root Certificate | Root Certificate | BC2ABBC49A6814370D17E471141C22794311C4DDDF2567BE37283A894392E5D3 | BC2ABBC49A6814370D17E471141C22794311C4DDDF2567BE37283A894392E5D3 | 2033.06.04 | 2033-06-04 15:28:36 | ||||||||||
001o000000rGWa1AAG | 944076 | f | f | f | f | f | f | f | f | f | Skaitmeninio sertifikavimo centras (SSC) | SSC Root CA A | SSC Root CA A | Root Certificate | Root Certificate | F1B13F5C9A326403B0F31BBE7699CD17C7D1C0B981586DD1A7B219C52508FE99 | F1B13F5C9A326403B0F31BBE7699CD17C7D1C0B981586DD1A7B219C52508FE99 | 2026.12.28 | 2026-12-28 12:05:04 | ||||||||||
001o000000rGWYoAAO | 12729476 | f | f | f | f | f | f | f | f | f | Skaitmeninio sertifikavimo centras (SSC) | SSC Root CA B | SSC Root CA B | Root Certificate | Root Certificate | 0B9F26DFCA684C2CFCE23E4E4DD567C886BA259E1DB267F9806F0C5A099711F2 | 0B9F26DFCA684C2CFCE23E4E4DD567C886BA259E1DB267F9806F0C5A099711F2 | 2026.12.25 | 2026-12-25 12:08:26 | ||||||||||
001o000000rGWX7AAO | 12728768 | f | f | f | f | f | f | f | f | f | Skaitmeninio sertifikavimo centras (SSC) | SSC Root CA C | SSC Root CA C | Root Certificate | Root Certificate | E6E4A951ECBF7D8EDC01BC873F7B6FD35868BDB10ED786F3A1B1EE16D8CEC3E9 | E6E4A951ECBF7D8EDC01BC873F7B6FD35868BDB10ED786F3A1B1EE16D8CEC3E9 | 2026.12.22 | 2026-12-22 12:11:30 | ||||||||||
001o000000HshEjAAJ | 862503 | f | f | f | f | f | f | f | f | f | SK ID Solutions AS | EE Certification Centre Root CA | EE Certification Centre Root CA | Root Certificate | Root Certificate | 3E84BA4342908516E77573C0992F0979CA084E4685681FF195CCBA8A229B8A76 | 3E84BA4342908516E77573C0992F0979CA084E4685681FF195CCBA8A229B8A76 | 2030.12.17 | 2030-12-17 23:59:59 | ||||||||||
001o000000HshFFAAZ | 12789 | f | f | f | f | f | f | f | f | f | SK ID Solutions AS | Juur-SK | Juur-SK | Root Certificate | Root Certificate | ECC3E9C3407503BEE091AA952F41348FF88BAA863B2264BEFAC807901574E939 | ECC3E9C3407503BEE091AA952F41348FF88BAA863B2264BEFAC807901574E939 | 2016.08.26 | 2016-08-26 14:23:01 | ||||||||||
001TO0000045TzyYAE | 11918023311 | f | f | f | f | f | f | f | f | f | SOLUTI GLOBAL ROOT CA | Soluti Global Root CA | Soluti Global Root CA | Root Certificate | Root Certificate | C6C5D3A07C1246A03F7EEAF026D70CD310B06714C0FF2AE89DDDAB09FC385DED | C6C5D3A07C1246A03F7EEAF026D70CD310B06714C0FF2AE89DDDAB09FC385DED | 2038.09.11 | 2038-09-11 12:00:00 | ||||||||||
001TO00000Co5XGYAZ | 13767234881 | f | f | f | f | f | f | f | f | f | SSL.com | SSL.com VMC ECC Root CA 2024 | SSL.com VMC ECC Root CA 2024 | Root Certificate | Root Certificate | 1B82E7F4910B51E3E802A493ACDC17FF58EAC8B9EB7C09B52AC6CD2EFB83598C | 1B82E7F4910B51E3E802A493ACDC17FF58EAC8B9EB7C09B52AC6CD2EFB83598C | 2048.02.13 | 2048-02-13 16:25:29 | ||||||||||
001TO00000CoUVRYA3 | 13767235806 | f | f | f | f | f | f | f | f | f | SSL.com | SSL.com VMC RSA Root CA 2024 | SSL.com VMC RSA Root CA 2024 | Root Certificate | Root Certificate | 8F9D1B7698886782A599B48510651C66A1AA0C5CA3192097BDC68534154BD30D | 8F9D1B7698886782A599B48510651C66A1AA0C5CA3192097BDC68534154BD30D | 2048.02.13 | 2048-02-13 16:25:50 | ||||||||||
0011J00001NaEBWQA3 | 1372251186 | f | f | f | f | f | f | f | f | f | SSLCOM GROUP LTD | Almost Free SSL RootCA G1 | Almost Free SSL RootCA G1 | Root Certificate | Root Certificate | D19A2D325933CB1E3A853D8F4A6D2450E060473EBDAB02D74E22E9A1B7F32A87 | D19A2D325933CB1E3A853D8F4A6D2450E060473EBDAB02D74E22E9A1B7F32A87 | 2044.02.27 | 2044-02-27 08:17:37 | ||||||||||
0011J00001NaE8NQAV | 1372249512 | f | f | f | f | f | f | f | f | f | SSLCOM GROUP LTD | SSLCom Root G1 | SSLCom Root G1 | Root Certificate | Root Certificate | CD375EAFFCCD17DC202AB5FD24B3D23AD023E501E5F3C6E8A8715F8D6F50BEED | CD375EAFFCCD17DC202AB5FD24B3D23AD023E501E5F3C6E8A8715F8D6F50BEED | 2043.11.22 | 2043-11-22 19:22:27 | ||||||||||
001o000000HshFoAAJ | 398 | f | f | f | f | f | f | f | f | f | Start Commercial (StartCom) Ltd. | StartCom Certification Authority | StartCom Certification Authority | Root Certificate | Root Certificate | E17890EE09A3FBF4F48B9C414A17D637B7A50647E9BC752322727FCC1742A911 | E17890EE09A3FBF4F48B9C414A17D637B7A50647E9BC752322727FCC1742A911 | 2036.09.17 | 2036-09-17 19:46:36 | ||||||||||
001o000000rGWaaAAG | 2026 | f | f | f | f | f | f | f | f | f | Swiss BIT, Swiss Federal Office of Information Technology, Systems and Telecommunication (FOITT) | AdminCA-CD-T01 | AdminCA-CD-T01 | Root Certificate | Root Certificate | EAC0220C5C9FECC5121D3720872D06707B5266BE25D4EBB56AB804BBBF85FE03 | EAC0220C5C9FECC5121D3720872D06707B5266BE25D4EBB56AB804BBBF85FE03 | 2016.01.25 | 2016-01-25 12:36:19 | ||||||||||
001o000000rGWXHAA4 | 12625052 | f | f | f | f | f | f | f | f | f | Swiss BIT, Swiss Federal Office of Information Technology, Systems and Telecommunication (FOITT) | Admin-Root-CA | Admin-Root-CA | Root Certificate | Root Certificate | A31F093053BD12C1F5C3C6EFD498023FD2914D7758D05D698CE084B50626E0E5 | A31F093053BD12C1F5C3C6EFD498023FD2914D7758D05D698CE084B50626E0E5 | 2021.11.10 | 2021-11-10 07:51:07 | ||||||||||
001o000000rGWfkAAG | 4207611 | f | f | f | f | f | f | f | f | f | Swiss BIT, Swiss Federal Office of Information Technology, Systems and Telecommunication (FOITT) | Swiss Government Root CA II | Swiss Government Root CA II | Root Certificate | Root Certificate | A3D7435A18C46B23B6A4F8929CD59050C9168B03A7FAD532626F297CAC5356E4 | A3D7435A18C46B23B6A4F8929CD59050C9168B03A7FAD532626F297CAC5356E4 | 2035.02.16 | 2035-02-16 08:59:59 | ||||||||||
001TO00000Hqs0vYAB | 2060705008 | f | f | f | f | f | f | f | f | f | Swiss BIT, Swiss Federal Office of Information Technology, Systems and Telecommunication (FOITT) | Swiss Government Root CA IV | Swiss Government Root CA IV | Root Certificate | Root Certificate | 5A0BAF5588E73FCC336C9039B85981189296670EFA994520FF008B9ACF4D2602 | 5A0BAF5588E73FCC336C9039B85981189296670EFA994520FF008B9ACF4D2602 | 2043.11.29 | 2043-11-29 22:59:00 | ||||||||||
001o000000HshFrAAJ | 19642 | f | f | f | f | f | f | f | f | f | Swisscom (Switzerland) Ltd | Swisscom Root CA 1 | Swisscom Root CA 1 | Root Certificate | Root Certificate | 21DB20123660BB2ED418205DA11EE7A85A65E2BC6E55B5AF7E7899C8A266D92E | 21DB20123660BB2ED418205DA11EE7A85A65E2BC6E55B5AF7E7899C8A266D92E | 2025.08.18 | 2025-08-18 22:06:20 | ||||||||||
001o000000HshFsAAJ | 663430 | f | f | f | f | f | f | f | f | f | Swisscom (Switzerland) Ltd | Swisscom Root CA 2 | Swisscom Root CA 2 | Root Certificate | Root Certificate | F09B122C7114F4A09BD4EA4F4A99D558B46E4C25CD81140D29C05613914C3841 | F09B122C7114F4A09BD4EA4F4A99D558B46E4C25CD81140D29C05613914C3841 | 2031.06.25 | 2031-06-25 07:38:14 | ||||||||||
0018Z00002iKhk9QAC | 7399369520 | f | f | f | f | f | f | f | f | f | Swisskey AG | Swisskey Root CA | Swisskey Root CA | Root Certificate | Root Certificate | 844B0FFE9BAAEA2FC14397C0C4D2677B5FAE54AEDE1BA061AF94F73DDDAB4E6C | 844B0FFE9BAAEA2FC14397C0C4D2677B5FAE54AEDE1BA061AF94F73DDDAB4E6C | 2015.12.31 | 2015-12-31 23:59:00 | ||||||||||
001o000000HshFvAAJ | 8986188 | f | f | f | f | f | f | f | f | f | SwissSign AG | SwissSign Platinum CA - G2 | SwissSign Platinum CA - G2 | Root Certificate | Root Certificate | 3B222E566711E992300DC0B15AB9473DAFDEF8C84D0CEF7D3317B4C1821D1436 | 3B222E566711E992300DC0B15AB9473DAFDEF8C84D0CEF7D3317B4C1821D1436 | 2036.10.25 | 2036-10-25 08:36:00 | ||||||||||
001o000000rGWdyAAG | 11150441 | f | f | f | f | f | f | f | f | f | SwissSign AG | SwissSign Platinum Root CA - G3 | SwissSign Platinum Root CA - G3 | Root Certificate | Root Certificate | 59B3829F1FF443344958FAE8BFF621B684C848CFBF7EAD6B63A6CA50F2794F89 | 59B3829F1FF443344958FAE8BFF621B684C848CFBF7EAD6B63A6CA50F2794F89 | 2037.08.04 | 2037-08-04 13:34:04 | ||||||||||
001o000000rGWcWAAW | 11150452 | f | f | f | f | f | f | f | f | f | SwissSign AG | SwissSign Silver Root CA - G3 | SwissSign Silver Root CA - G3 | Root Certificate | Root Certificate | 1E49AC5DC69E86D0565DA2C1305C419330B0B781BFEC50E54A1B35AF7FDDD501 | 1E49AC5DC69E86D0565DA2C1305C419330B0B781BFEC50E54A1B35AF7FDDD501 | 2037.08.04 | 2037-08-04 13:19:14 | ||||||||||
001o000000rGWgnAAG | 10972472 | f | f | f | f | f | f | f | f | f | Taiwan-CA Inc. (TWCA) | TWCA Root Certification Authority | TWCA Root Certification Authority | Root Certificate | Root Certificate | 632D80BB096D209677D1734E5B35EA9D3019B9C44F8FCB2640C879039AC94EE8 | 632D80BB096D209677D1734E5B35EA9D3019B9C44F8FCB2640C879039AC94EE8 | 2030.12.31 | 2030-12-31 15:59:59 | ||||||||||
001o000000rGWdKAAW | 8559484 | f | f | f | f | f | f | f | f | f | Telekom Applied Business Malaysia (TMCA) | TM Applied Business Root Certificate | TM Applied Business Root Certificate | Root Certificate | Root Certificate | A9C77AF1BCDFAA3739442B0B2734C68EAF2E9833F0D766FBCAA6F2AEB42DEC02 | A9C77AF1BCDFAA3739442B0B2734C68EAF2E9833F0D766FBCAA6F2AEB42DEC02 | 2031.10.10 | 2031-10-10 06:53:39 | ||||||||||
0018Z00002iKhihQAC | 12729365 | f | f | f | f | f | f | f | f | f | Telekom-Control-Kommission | Telekom-Control-Kommission Top 1 | Telekom-Control-Kommission Top 1 | Root Certificate | Root Certificate | 4DBB0157A691FA7382289D65C0332DDB1DCB640B40AD10F010A43E20F3AFED1E | 4DBB0157A691FA7382289D65C0332DDB1DCB640B40AD10F010A43E20F3AFED1E | 2005.09.24 | 2005-09-24 12:40:00 | ||||||||||
001o000000HshFgAAJ | 10249835 | f | f | f | f | f | f | f | f | f | Telia Company | Sonera Class1 CA | Sonera Class1 CA | Root Certificate | Root Certificate | CD808284CF746FF2FD6EB58AA1D59C4AD4B3CA56FDC6274A8926A7835F32313D | CD808284CF746FF2FD6EB58AA1D59C4AD4B3CA56FDC6274A8926A7835F32313D | 2021.04.06 | 2021-04-06 10:49:13 | ||||||||||
001o000000HshFhAAJ | 3819 | f | f | f | f | f | f | f | f | f | Telia Company | Sonera Class2 CA | Sonera Class2 CA | Root Certificate | Root Certificate | 7908B40314C138100B518D0735807FFBFCF8518A0095337105BA386B153DD927 | 7908B40314C138100B518D0735807FFBFCF8518A0095337105BA386B153DD927 | 2021.04.06 | 2021-04-06 07:29:40 | ||||||||||
001TO00000MLApJYAX | 16455271771 | f | f | f | f | f | f | f | f | f | Telia Company | Telia EC Client Root CA v3 | Telia EC Client Root CA v3 | Root Certificate | Root Certificate | CCF6A7C3881928CFB1DBEBD74EABA50D3BC69633C106274D2C221ECCEE697E87 | CCF6A7C3881928CFB1DBEBD74EABA50D3BC69633C106274D2C221ECCEE697E87 | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
001TO00000MLJXdYAP | 16455271772 | f | f | f | f | f | f | f | f | f | Telia Company | Telia EC Email Root CA v3 | Telia EC Email Root CA v3 | Root Certificate | Root Certificate | 3682228D7D678B571440CF1CB34E69FB4135FD6C2A1BE38E14163B711E02AE01 | 3682228D7D678B571440CF1CB34E69FB4135FD6C2A1BE38E14163B711E02AE01 | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
001TO00000MLF93YAH | 16455271773 | f | f | f | f | f | f | f | f | f | Telia Company | Telia EC Signing Root CA v3 | Telia EC Signing Root CA v3 | Root Certificate | Root Certificate | 2C4E9B0F8D0FCDC308C077E30DD2349DAF871FB3A37214859C486189A9F80ADB | 2C4E9B0F8D0FCDC308C077E30DD2349DAF871FB3A37214859C486189A9F80ADB | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
001TO00000MLKIQYA5 | 16455271770 | f | f | f | f | f | f | f | f | f | Telia Company | Telia EC TLS Root CA v3 | Telia EC TLS Root CA v3 | Root Certificate | Root Certificate | 098E08A91DBBF77478B96CCEB89B1413A5DA37B7C862606A955DEB07179F4326 | 098E08A91DBBF77478B96CCEB89B1413A5DA37B7C862606A955DEB07179F4326 | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
001TO00000ML6k6YAD | 16455271774 | f | f | f | f | f | f | f | f | f | Telia Company | Telia RSA Client Root CA v3 | Telia RSA Client Root CA v3 | Root Certificate | Root Certificate | 6485F6E060934AF413EC54B9C65F87BD231929ECFA11DE522BAD8DC64F001571 | 6485F6E060934AF413EC54B9C65F87BD231929ECFA11DE522BAD8DC64F001571 | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
001TO00000MLGQ8YAP | 16455271775 | f | f | f | f | f | f | f | f | f | Telia Company | Telia RSA Email Root CA v3 | Telia RSA Email Root CA v3 | Root Certificate | Root Certificate | 5B0C502A7D963BA55217396FDA9B3DC78171000AEEFF42CECC3A20A7938163E8 | 5B0C502A7D963BA55217396FDA9B3DC78171000AEEFF42CECC3A20A7938163E8 | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
001TO00000MLBtTYAX | 16455271776 | f | f | f | f | f | f | f | f | f | Telia Company | Telia RSA Signing Root CA v3 | Telia RSA Signing Root CA v3 | Root Certificate | Root Certificate | C2FB44D8DEF85126D84FC41FBE667BC811F0D633411CAC26D13FBD95EA5BE603 | C2FB44D8DEF85126D84FC41FBE667BC811F0D633411CAC26D13FBD95EA5BE603 | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
001TO00000MLJltYAH | 16455271777 | f | f | f | f | f | f | f | f | f | Telia Company | Telia RSA TLS Root CA v3 | Telia RSA TLS Root CA v3 | Root Certificate | Root Certificate | D13DB1294C45EBC6FC86C6BBF69FA29BDFE692DFF7C713C243C7A956C6A2284C | D13DB1294C45EBC6FC86C6BBF69FA29BDFE692DFF7C713C243C7A956C6A2284C | 2048.05.23 | 2048-05-23 11:00:00 | ||||||||||
0018Z00003DpKFtQAN | 11720382621 | f | f | f | f | f | f | f | f | f | Thailand National Root Certificate Authority (Electronic Transactions Development Agency) | Thailand National Root Certification Authority - G2 | Thailand National Root Certification Authority - G2 | Root Certificate | Root Certificate | 6E0C78011C5406D8A52E442C97E272E37722BEF47043C666CDA2F940F25744C1 | 6E0C78011C5406D8A52E442C97E272E37722BEF47043C666CDA2F940F25744C1 | 2043.08.12 | 2043-08-12 04:26:52 | ||||||||||
0018Z00003DpKLSQA3 | 11720385220 | f | f | f | f | f | f | f | f | f | Thailand National Root Certificate Authority (Electronic Transactions Development Agency) | Thailand National Root Certification Authority - G3 | Thailand National Root Certification Authority - G3 | Root Certificate | Root Certificate | 3D2794A0539486A83E8032CF14FE886553E52239CBAEC1B9CFEF5595ADBBF444 | 3D2794A0539486A83E8032CF14FE886553E52239CBAEC1B9CFEF5595ADBBF444 | 2043.08.12 | 2043-08-12 04:38:08 | ||||||||||
001o000000rGWhRAAW | 28600 | f | f | f | f | f | f | f | f | f | The Uruguayan Post, “El Correo Uruguayo” | Correo Uruguayo - Root CA | Correo Uruguayo - Root CA | Root Certificate | Root Certificate | 46273285615D96E52DA9FC2ED8C036F10AF3D9F6280F8D288706C52B2011B4DA | 46273285615D96E52DA9FC2ED8C036F10AF3D9F6280F8D288706C52B2011B4DA | 2030.12.31 | 2030-12-31 02:59:59 | ||||||||||
0018Z00002iKhnrQAC | 8334748 | f | f | f | f | f | f | f | f | f | The Uruguayan Post, “El Correo Uruguayo” | SERVICIOS DE CERTIFICACION - A.N.C. | SERVICIOS DE CERTIFICACION - A.N.C. | Root Certificate | Root Certificate | F773BC65659F1BC59087BF214EEAD864010D5887CD2CD84E4F1BA7523FE55640 | F773BC65659F1BC59087BF214EEAD864010D5887CD2CD84E4F1BA7523FE55640 | 2009.03.09 | 2009-03-09 21:08:07 | ||||||||||
001TO00000HfcqmYAB | 15054758448 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia CS ECC Root CA | TrustAsia CS ECC Root CA | Root Certificate | Root Certificate | 6B9C91E5A6453375EF905D8F2A5369953065F471664F2E676E2013DF388C9B56 | 6B9C91E5A6453375EF905D8F2A5369953065F471664F2E676E2013DF388C9B56 | 2049.05.15 | 2049-05-15 05:42:01 | ||||||||||
001TO00000Hfj93YAB | 15054761080 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia CS RSA Root CA | TrustAsia CS RSA Root CA | Root Certificate | Root Certificate | F38AB64B30C0D900B7212A793651B87F287C575224007F3B8851618FD5B48DEB | F38AB64B30C0D900B7212A793651B87F287C575224007F3B8851618FD5B48DEB | 2049.05.15 | 2049-05-15 05:42:03 | ||||||||||
0014o00001mIBu9AAG | 3336882289 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia Global Root CA G1 | TrustAsia Global Root CA G1 | Root Certificate | Root Certificate | 05F82DE4B4A9ED4B7CD1F3ACE9B73BD6DB69D87816DD3847195CF737ED2951E7 | 05F82DE4B4A9ED4B7CD1F3ACE9B73BD6DB69D87816DD3847195CF737ED2951E7 | 2045.08.26 | 2045-08-26 05:45:51 | ||||||||||
0014o00001mIBvvAAG | 3336882290 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia Global Root CA G2 | TrustAsia Global Root CA G2 | Root Certificate | Root Certificate | 1DF7E8B185CA46578D458D05129854FDE32EF1E9B36F0B96963CE38CAEABE4BC | 1DF7E8B185CA46578D458D05129854FDE32EF1E9B36F0B96963CE38CAEABE4BC | 2045.08.26 | 2045-08-26 05:45:54 | ||||||||||
001TO00000HfipiYAB | 15054763212 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia SMIME ECC Root CA | TrustAsia SMIME ECC Root CA | Root Certificate | Root Certificate | 436472C1009A325C54F1A5BBB5468A7BAEECCBE05DE5F099CB70D3FE41E13C16 | 436472C1009A325C54F1A5BBB5468A7BAEECCBE05DE5F099CB70D3FE41E13C16 | 2044.05.15 | 2044-05-15 05:41:58 | ||||||||||
001TO00000HfiUkYAJ | 15054765388 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia SMIME RSA Root CA | TrustAsia SMIME RSA Root CA | Root Certificate | Root Certificate | C7796BEB62C101BB143D262A7C96A0C6168183223EF50D699632D86E03B8CC9B | C7796BEB62C101BB143D262A7C96A0C6168183223EF50D699632D86E03B8CC9B | 2044.05.15 | 2044-05-15 05:42:00 | ||||||||||
001TO00000Hfj5pYAB | 15054767227 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia TLS ECC Root CA | TrustAsia TLS ECC Root CA | Root Certificate | Root Certificate | C0076B9EF0531FB1A656D67C4EBE97CD5DBAA41EF44598ACC2489878C92D8711 | C0076B9EF0531FB1A656D67C4EBE97CD5DBAA41EF44598ACC2489878C92D8711 | 2044.05.15 | 2044-05-15 05:41:55 | ||||||||||
001TO00000Hfj2cYAB | 15054771188 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia TLS RSA Root CA | TrustAsia TLS RSA Root CA | Root Certificate | Root Certificate | 06C08D7DAFD876971EB1124FE67F847EC0C7A158D3EA53CBE940E2EA9791F4C3 | 06C08D7DAFD876971EB1124FE67F847EC0C7A158D3EA53CBE940E2EA9791F4C3 | 2044.05.15 | 2044-05-15 05:41:56 | ||||||||||
001TO00000HfdTVYAZ | 15054773152 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia TSA ECC Root CA | TrustAsia TSA ECC Root CA | Root Certificate | Root Certificate | 2E04BF6C4C91864389F7CB30AFF4B54346794EF897B0D6557F10B7A8BA6D932C | 2E04BF6C4C91864389F7CB30AFF4B54346794EF897B0D6557F10B7A8BA6D932C | 2049.05.15 | 2049-05-15 05:42:04 | ||||||||||
001TO00000HejfoYAB | 15054775720 | f | f | f | f | f | f | f | f | f | TrustAsia Technologies, Inc. | TrustAsia TSA RSA Root CA | TrustAsia TSA RSA Root CA | Root Certificate | Root Certificate | 1498BFED947C795235D3482FBE493CD89BE5DC0747291C716360356E89D4595E | 1498BFED947C795235D3482FBE493CD89BE5DC0747291C716360356E89D4595E | 2049.05.15 | 2049-05-15 05:42:06 | ||||||||||
001o000000rGWfGAAW | 12624747 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor ECA-1 | TrustCor ECA-1 | Root Certificate | Root Certificate | 744B1147B4A9A69C32785E9E37C3323241EF29F63E76F1603D6761A783D8A0FE | 744B1147B4A9A69C32785E9E37C3323241EF29F63E76F1603D6761A783D8A0FE | 2029.12.31 | 2029-12-31 17:28:07 | ||||||||||
0011J00001SADh4QAH | 12979953 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor ECA-1 | TrustCor ECA-1 | Root Certificate | Root Certificate | 17184AB2C44BE2EBD6C3DE90673F4D1ACA4D67C46F4ED70D47D6AECE3A615B8B | 17184AB2C44BE2EBD6C3DE90673F4D1ACA4D67C46F4ED70D47D6AECE3A615B8B | 2029.12.31 | 2029-12-31 17:28:07 | ||||||||||
001o000000vmkzIAAQ | 19392274 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor ECA-1 | TrustCor ECA-1 | Root Certificate | Root Certificate | 5A885DB19C01D912C5759388938CAFBBDF031AB2D48E91EE15589B42971D039C | 5A885DB19C01D912C5759388938CAFBBDF031AB2D48E91EE15589B42971D039C | 2029.12.31 | 2029-12-31 17:28:07 | ||||||||||
0011J00001SADiMQAX | 17569387 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor RootCert CA-1 | TrustCor RootCert CA-1 | Root Certificate | Root Certificate | 1C551005D7A178DB89AD5AA145742FF4EB37F88A8E77F3AD4C8347A5EED4DBF4 | 1C551005D7A178DB89AD5AA145742FF4EB37F88A8E77F3AD4C8347A5EED4DBF4 | 2029.12.31 | 2029-12-31 17:23:16 | ||||||||||
0011J00001SADhnQAH | 12979954 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor RootCert CA-1 | TrustCor RootCert CA-1 | Root Certificate | Root Certificate | E101E956077165D11C92AB0F38ABDFF2E9190A38E2D8D9B6F2B9F444043C5B01 | E101E956077165D11C92AB0F38ABDFF2E9190A38E2D8D9B6F2B9F444043C5B01 | 2029.12.31 | 2029-12-31 17:23:16 | ||||||||||
001o000000vml9yAAA | 19392284 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor RootCert CA-1 | TrustCor RootCert CA-1 | Root Certificate | Root Certificate | D40E9C86CD8FE468C1776959F49EA774FA548684B6C406F3909261F4DCE2575C | D40E9C86CD8FE468C1776959F49EA774FA548684B6C406F3909261F4DCE2575C | 2029.12.31 | 2029-12-31 17:23:16 | ||||||||||
001o000000rGWdUAAW | 9647227 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor RootCert CA-1 | TrustCor RootCert CA-1 | Root Certificate | Root Certificate | 488FCA189EAADF54A3F920ED39E587183BA512232999FAE3E4A285FE98E298D1 | 488FCA189EAADF54A3F920ED39E587183BA512232999FAE3E4A285FE98E298D1 | 2029.12.31 | 2029-12-31 17:23:16 | ||||||||||
001o000000rGWYtAAO | 8573796 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor RootCert CA-2 | TrustCor RootCert CA-2 | Root Certificate | Root Certificate | 9111240747E1F652F66D1F712A11F698963B491702E312F7513DA3D0FC1E5A28 | 9111240747E1F652F66D1F712A11F698963B491702E312F7513DA3D0FC1E5A28 | 2034.12.31 | 2034-12-31 17:26:39 | ||||||||||
001o000000vml4iAAA | 19392278 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor RootCert CA-2 | TrustCor RootCert CA-2 | Root Certificate | Root Certificate | 0753E940378C1BD5E3836E395DAEA5CB839E5046F1BD0EAE1951CF10FEC7C965 | 0753E940378C1BD5E3836E395DAEA5CB839E5046F1BD0EAE1951CF10FEC7C965 | 2034.12.31 | 2034-12-31 17:26:39 | ||||||||||
0011J00001SADiWQAX | 12979955 | f | f | f | f | f | f | f | f | f | TrustCor Systems | TrustCor RootCert CA-2 | TrustCor RootCert CA-2 | Root Certificate | Root Certificate | CFAAD6151A464E1232C6C39D3CBF0063036119291339EE752EBA21AE52FA7A4B | CFAAD6151A464E1232C6C39D3CBF0063036119291339EE752EBA21AE52FA7A4B | 2034.12.31 | 2034-12-31 17:26:39 | ||||||||||
0011J00001QTdnxQAD | 1159488791 | f | f | f | f | f | f | f | f | f | TrustFactory(Pty)Ltd | TrustFactory SSL Root Certificate Authority | TrustFactory SSL Root Certificate Authority | Root Certificate | Root Certificate | 608142DA5C675DD47C1AA3A26EE329E24E81D5FF3B94017BC1C1A0C37DB4C1A0 | 608142DA5C675DD47C1AA3A26EE329E24E81D5FF3B94017BC1C1A0C37DB4C1A0 | 2047.11.28 | 2047-11-28 10:59:29 | ||||||||||
001o000000rGWV6AAO | 12729475 | f | f | f | f | f | f | f | f | f | Trustis | Trustis EVS Root CA | Trustis EVS Root CA | Root Certificate | Root Certificate | 3F9DA4744EC9676CD38B530E500A463FBCB18165977FF0DA6D5993C3FE5FAB7C | 3F9DA4744EC9676CD38B530E500A463FBCB18165977FF0DA6D5993C3FE5FAB7C | 2027.01.09 | 2027-01-09 11:56:00 | ||||||||||
001o000000HshGAAAZ | 104796 | f | f | f | f | f | f | f | f | f | Trustis | Trustis FPS Root CA | Trustis FPS Root CA | Root Certificate | Root Certificate | C1B48299ABA5208FE9630ACE55CA68A03EDA5A519C8802A0D3A673BE8F8E557D | C1B48299ABA5208FE9630ACE55CA68A03EDA5A519C8802A0D3A673BE8F8E557D | 2024.01.21 | 2024-01-21 11:36:54 | ||||||||||
001o000000rGWbJAAW | 12722648 | f | f | f | f | f | f | f | f | f | TurkTrust | TÜRKTRUST Elektronik İşlem Hizmetleri | TÜRKTRUST Elektronik İşlem Hizmetleri | Root Certificate | Root Certificate | C499F6CECC5DA4D61F14ED0405270C5249D0E79615B0DA42659ED2D7FFEF8A40 | C499F6CECC5DA4D61F14ED0405270C5249D0E79615B0DA42659ED2D7FFEF8A40 | 2015.03.22 | 2015-03-22 10:04:51 | ||||||||||
001o000000rGWffAAG | 12726312 | f | f | f | f | f | f | f | f | f | TurkTrust | TÜRKTRUST Elektronik İşlem Hizmetleri | TÜRKTRUST Elektronik İşlem Hizmetleri | Root Certificate | Root Certificate | 56CE347CC6DF4C35943DFDEAEE023F9739A3F1CEDEEE0CD88DC2386BC8A91EAF | 56CE347CC6DF4C35943DFDEAEE023F9739A3F1CEDEEE0CD88DC2386BC8A91EAF | 2015.09.16 | 2015-09-16 12:13:05 | ||||||||||
001o000000HshGFAAZ | 21056 | f | f | f | f | f | f | f | f | f | TurkTrust | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı | Root Certificate | Root Certificate | 978CD966F2FAA07BA7AA9500D9C02E9D77F2CDADA6AD6BA74AF4B91C66593C50 | 978CD966F2FAA07BA7AA9500D9C02E9D77F2CDADA6AD6BA74AF4B91C66593C50 | 2017.12.22 | 2017-12-22 18:37:19 | ||||||||||
001o000000HshGEAAZ | 12625022 | f | f | f | f | f | f | f | f | f | TurkTrust | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı | Root Certificate | Root Certificate | 4404E33B5E140DCF998051FDFC8028C7C81615C5EE737B111B588233A9B535A0 | 4404E33B5E140DCF998051FDFC8028C7C81615C5EE737B111B588233A9B535A0 | 2015.03.22 | 2015-03-22 10:27:17 | ||||||||||
001o000000HshGGAAZ | 983 | f | f | f | f | f | f | f | f | f | TurkTrust | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı | Root Certificate | Root Certificate | C470CF547E2302B977FB29DD71A89A7B6C1F60777B0329F56017F328BF4F6BE6 | C470CF547E2302B977FB29DD71A89A7B6C1F60777B0329F56017F328BF4F6BE6 | 2015.09.16 | 2015-09-16 10:07:57 | ||||||||||
001o000000ccb2yAAA | 8597760 | f | f | f | f | f | f | f | f | f | TurkTrust | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5 | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5 | Root Certificate | Root Certificate | 49351B903444C185CCDC5C693D24D8555CB208D6A8141307699F4AF063199D78 | 49351B903444C185CCDC5C693D24D8555CB208D6A8141307699F4AF063199D78 | 2023.04.28 | 2023-04-28 08:07:01 | ||||||||||
001o000000ccb3XAAQ | 6780470 | f | f | f | f | f | f | f | f | f | TurkTrust | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H6 | TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H6 | Root Certificate | Root Certificate | 8DE78655E1BE7F7847800B93F694D21D368CC06E033E7FAB04BB5EB99DA6B700 | 8DE78655E1BE7F7847800B93F694D21D368CC06E033E7FAB04BB5EB99DA6B700 | 2023.12.16 | 2023-12-16 09:04:10 | ||||||||||
001o000000rGWfzAAG | 20444 | f | f | f | f | f | f | f | f | f | U.S. Federal Public Key Infrastructure (US FPKI) | Common Policy | Common Policy | Root Certificate | Root Certificate | 04ACFB3B24793F300F67EF87E44DD72CB9B28B204F389A7CD5AE28785C7D42CD | 04ACFB3B24793F300F67EF87E44DD72CB9B28B204F389A7CD5AE28785C7D42CD | 2027.10.15 | 2027-10-15 16:08:00 | ||||||||||
0018Z00002iKhfOQAS | 12624832 | f | f | f | f | f | f | f | f | f | U.S. Federal Public Key Infrastructure (US FPKI) | Common Policy | Common Policy | Root Certificate | Root Certificate | 6E5E93AE867FD3E3E78304E054D1A6AEAED0295D58C0E3FC4C9FFE310A3488CC | 6E5E93AE867FD3E3E78304E054D1A6AEAED0295D58C0E3FC4C9FFE310A3488CC | 2010.10.06 | 2010-10-06 18:53:56 | ||||||||||
001o000000rGWcbAAG | 788 | f | f | f | f | f | f | f | f | f | U.S. Federal Public Key Infrastructure (US FPKI) | Federal Common Policy CA | Federal Common Policy CA | Root Certificate | Root Certificate | 894EBC0B23DA2A50C0186B7F8F25EF1F6B2935AF32A94584EF80AAF877A3A06E | 894EBC0B23DA2A50C0186B7F8F25EF1F6B2935AF32A94584EF80AAF877A3A06E | 2030.12.01 | 2030-12-01 16:45:27 | ||||||||||
001TO00000510JHYAY | 12078717638 | f | f | f | f | f | f | f | f | f | Viking Cloud, Inc. | VikingCloud TLS ECC Root 1 | VikingCloud TLS ECC Root 1 | Root Certificate | Root Certificate | C3C040E805CE774763501CCF47B617275215B7DBF777C58B950FD4650673F3BB | C3C040E805CE774763501CCF47B617275215B7DBF777C58B950FD4650673F3BB | 2049.02.03 | 2049-02-03 17:00:07 | ||||||||||
001TO0000050yirYAA | 12078718379 | f | f | f | f | f | f | f | f | f | Viking Cloud, Inc. | VikingCloud TLS RSA Root 1 | VikingCloud TLS RSA Root 1 | Root Certificate | Root Certificate | 548D27778822346B9EEE3CB4621BDFE2DBDC50588DA68C5E3632301F8E62ECAB | 548D27778822346B9EEE3CB4621BDFE2DBDC50588DA68C5E3632301F8E62ECAB | 2049.02.03 | 2049-02-03 16:55:16 | ||||||||||
0018Z00002pK5AGQA0 | 7998440592 | f | f | f | f | f | f | f | f | f | Vintegris / vinCAsign | CA Vintegris ROOT TrustServices | CA Vintegris ROOT TrustServices | Root Certificate | Root Certificate | 69E6897D10FBE7A1F45CF18BED56F2C185B02F9C1C76598EC6E16E5B6E5F0DB6 | 69E6897D10FBE7A1F45CF18BED56F2C185B02F9C1C76598EC6E16E5B6E5F0DB6 | 2047.01.18 | 2047-01-18 12:11:28 | ||||||||||
001o000000HshGbAAJ | 896972 | f | f | f | f | f | f | f | f | f | Visa | Visa eCommerce Root | Visa eCommerce Root | Root Certificate | Root Certificate | 69FAC9BD55FB0AC78D53BBEE5CF1D597989FD0AAAB20A25151BDF1733EE7D122 | 69FAC9BD55FB0AC78D53BBEE5CF1D597989FD0AAAB20A25151BDF1733EE7D122 | 2022.06.24 | 2022-06-24 00:16:12 | ||||||||||
001TO000008uCmfYAE | 12931646934 | f | f | f | f | f | f | f | f | f | Visa | Visa TLS Root CA | Visa TLS Root CA | Root Certificate | Root Certificate | E6432FCE6B48F4E889B2FE183F8B480F72ECF80F57389B0E9C6E89CF04AD69D1 | E6432FCE6B48F4E889B2FE183F8B480F72ECF80F57389B0E9C6E89CF04AD69D1 | 2034.03.06 | 2034-03-06 00:00:00 | ||||||||||
0018Z00002iKhkEQAS | 275417 | f | f | f | f | f | f | f | f | f | Wells Fargo Bank N.A. | Wells Fargo Root Certificate Authority | Wells Fargo Root Certificate Authority | Root Certificate | Root Certificate | 03458B6ABEECC214953D97149AF45391691DE9F9CDCC2647863A3D67C95C243B | 03458B6ABEECC214953D97149AF45391691DE9F9CDCC2647863A3D67C95C243B | 2021.01.14 | 2021-01-14 16:41:28 | ||||||||||
0018Z00002iKhbgQAC | 7399369521 | f | f | f | f | f | f | f | f | f | Wells Fargo Bank N.A. | WellsSecure Public Root Certifcate Authority | WellsSecure Public Root Certifcate Authority | Root Certificate | Root Certificate | F9E3CDA8FB34530A54768F45279CE0C80B58D141E2579D185C88C1D2CA700612 | F9E3CDA8FB34530A54768F45279CE0C80B58D141E2579D185C88C1D2CA700612 | 2022.08.15 | 2022-08-15 05:41:23 | ||||||||||
001o000000HshGcAAJ | 282920 | f | f | f | f | f | f | f | f | f | Wells Fargo Bank N.A. | WellsSecure Public Root Certificate Authority | WellsSecure Public Root Certificate Authority | Root Certificate | Root Certificate | A71272AEAAA3CFE8727F7FB39F0FB3D1E5426E9060B06EE6F13E9A3C5833CD43 | A71272AEAAA3CFE8727F7FB39F0FB3D1E5426E9060B06EE6F13E9A3C5833CD43 | 2022.12.14 | 2022-12-14 00:07:54 | ||||||||||
001o000000rGWf1AAG | 8559523 | f | f | f | f | f | f | f | f | f | Wells Fargo Bank N.A. | WellsSecure Public Root Certification Authority 01 G2 | WellsSecure Public Root Certification Authority 01 G2 | Root Certificate | Root Certificate | AD7539E5CDC985FA95244055A9202D63460EC921467D034CFDBE87EC6D00FEDC | AD7539E5CDC985FA95244055A9202D63460EC921467D034CFDBE87EC6D00FEDC | 2030.12.26 | 2030-12-26 16:46:33 | ||||||||||
001o000000HshEJAAZ | 409684 | t | f | f | f | f | t | f | t | f | AC Camerfirma, S.A. | Chambers of Commerce Root - 2008 | Chambers of Commerce Root - 2008 | Root Certificate | Root Certificate | 063E4AFAC491DFD332F3089B8542E94617D893D7FE944E10A7937EE29D9693C0 | 063E4AFAC491DFD332F3089B8542E94617D893D7FE944E10A7937EE29D9693C0 | 2038.07.31 | 2038-07-31 12:29:50 | clientAuth;codeSigning;emailProtection;timeStamping | Client Authentication;Code Signing;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Time Stamping | ||||||||
001o000000xPOViAAO | 100961664 | t | f | f | f | f | f | f | t | f | AC Camerfirma, S.A. | CHAMBERS OF COMMERCE ROOT - 2016 | CHAMBERS OF COMMERCE ROOT - 2016 | Root Certificate | Root Certificate | 04F1BEC36951BC1454A904CE32890C5DA3CDE1356B7900F6E62DFA2041EBAD51 | 04F1BEC36951BC1454A904CE32890C5DA3CDE1356B7900F6E62DFA2041EBAD51 | 2040.04.08 | 2040-04-08 07:35:48 | Client Authentication;Secure Email;Time Stamping | |||||||||
001o000000HshF0AAJ | 10249844 | t | f | f | f | f | f | f | t | f | AC Camerfirma, S.A. | Global Chambersign Root | Global Chambersign Root | Root Certificate | Root Certificate | EF3CB417FC8EBF6F97876C9E4ECE39DE1EA5FE649141D1028B7D11C0B2298CED | EF3CB417FC8EBF6F97876C9E4ECE39DE1EA5FE649141D1028B7D11C0B2298CED | 2037.09.30 | 2037-09-30 16:14:18 | EV Server Authentication | |||||||||
001o000000HshF1AAJ | 1044840 | t | f | f | f | f | t | f | t | f | AC Camerfirma, S.A. | Global Chambersign Root - 2008 | Global Chambersign Root - 2008 | Root Certificate | Root Certificate | 136335439334A7698016A0D324DE72284E079D7B5220BB8FBD747816EEBEBACA | 136335439334A7698016A0D324DE72284E079D7B5220BB8FBD747816EEBEBACA | 2038.07.31 | 2038-07-31 12:31:40 | clientAuth;codeSigning;emailProtection;timeStamping | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Time Stamping | ||||||||
001o000000xPQbZAAW | 100961625 | t | f | f | f | f | f | f | t | f | AC Camerfirma, S.A. | GLOBAL CHAMBERSIGN ROOT - 2016 | GLOBAL CHAMBERSIGN ROOT - 2016 | Root Certificate | Root Certificate | C1D80CE474A51128B77E794A98AA2D62A0225DA3F419E5C7ED73DFBF660E7109 | C1D80CE474A51128B77E794A98AA2D62A0225DA3F419E5C7ED73DFBF660E7109 | 2040.04.08 | 2040-04-08 07:50:06 | Client Authentication;Secure Email | |||||||||
001o000000HshDoAAJ | 673162 | t | f | f | f | f | t | t | t | t | Actalis | Actalis Authentication Root CA | Actalis Authentication Root CA | Root Certificate | Root Certificate | 55926084EC963A64B96E2ABE01CE0BA86A64FBFEBCC7AAB5AFC155B37FD76066 | 55926084EC963A64B96E2ABE01CE0BA86A64FBFEBCC7AAB5AFC155B37FD76066 | 2030.09.22 | 2030-09-22 11:22:02 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0011J00001ROWAxQAP | 2004519757 | t | f | f | f | f | f | f | t | t | Agence Nationale de Certification Electronique | TunTrust Root CA | TunTrust Root CA | Root Certificate | Root Certificate | 2E44102AB58CB85419451C8E19D9ACF3662CAFBC614B6A53960A30F7D0E2EB41 | 2E44102AB58CB85419451C8E19D9ACF3662CAFBC614B6A53960A30F7D0E2EB41 | 2044.04.26 | 2044-04-26 08:57:56 | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | ||||||
001o000000rGWbnAAG | 12726200 | t | f | f | f | f | f | f | t | f | Agencia Notarial de Certificación (ANCERT) | ANCERT Certificados CGN V2 | ANCERT Certificados CGN V2 | Root Certificate | Root Certificate | F4336BC2AC75950BECCF1C1F2F9DA6DDDAFD1F41161CA71F59C76889BD474033 | F4336BC2AC75950BECCF1C1F2F9DA6DDDAFD1F41161CA71F59C76889BD474033 | 2030.05.25 | 2030-05-25 16:31:23 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
001o000000rGWazAAG | 126632 | t | f | f | f | f | f | f | t | f | Agencia Notarial de Certificación (ANCERT) | ANCERT Certificados Notariales V2 | ANCERT Certificados Notariales V2 | Root Certificate | Root Certificate | 4BE8B5A1C76C6AEAD0611918FCCF9DBD398B67FB12294758BDF994D0F9682F60 | 4BE8B5A1C76C6AEAD0611918FCCF9DBD398B67FB12294758BDF994D0F9682F60 | 2030.05.25 | 2030-05-25 16:56:14 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWUDAA4 | 12745009 | t | f | f | f | f | t | t | t | t | Amazon Trust Services | Amazon Root CA 1 | Amazon Root CA 1 | Root Certificate | Root Certificate | 8ECDE6884F3D87B1125BA31AC3FCB13D7016DE7F57CC904FE1CB97C6AE98196E | 8ECDE6884F3D87B1125BA31AC3FCB13D7016DE7F57CC904FE1CB97C6AE98196E | 2038.01.17 | 2038-01-17 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Document Signing;Encrypting File System;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000rGWTPAA4 | 12744983 | t | f | f | f | f | t | t | t | t | Amazon Trust Services | Amazon Root CA 2 | Amazon Root CA 2 | Root Certificate | Root Certificate | 1BA5B2AA8C65401A82960118F80BEC4F62304D83CEC4713A19C39C011EA46DB4 | 1BA5B2AA8C65401A82960118F80BEC4F62304D83CEC4713A19C39C011EA46DB4 | 2040.05.26 | 2040-05-26 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Document Signing;Encrypting File System;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000rGWSWAA4 | 12744938 | t | f | f | f | f | t | t | t | t | Amazon Trust Services | Amazon Root CA 3 | Amazon Root CA 3 | Root Certificate | Root Certificate | 18CE6CFE7BF14E60B2E347B8DFE868CB31D02EBB3ADA271569F50343B46DB3A4 | 18CE6CFE7BF14E60B2E347B8DFE868CB31D02EBB3ADA271569F50343B46DB3A4 | 2040.05.26 | 2040-05-26 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Document Signing;Encrypting File System;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000rGWVGAA4 | 12745024 | t | f | f | f | f | t | t | t | t | Amazon Trust Services | Amazon Root CA 4 | Amazon Root CA 4 | Root Certificate | Root Certificate | E35D28419ED02025CFA69038CD623962458DA5C695FBDEA3C22B0BFB25897092 | E35D28419ED02025CFA69038CD623962458DA5C695FBDEA3C22B0BFB25897092 | 2040.05.26 | 2040-05-26 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Document Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshFmAAJ | 793888 | t | f | f | f | f | t | f | t | t | Amazon Trust Services | Starfield Services Root Certificate Authority - G2 | Starfield Services Root Certificate Authority - G2 | Root Certificate | Root Certificate | 568D6905A2C88708A4B3025190EDCFEDB1974A606A13C6E5290FCB2AE63EDAB5 | 568D6905A2C88708A4B3025190EDCFEDB1974A606A13C6E5290FCB2AE63EDAB5 | 2037.12.31 | 2037-12-31 23:59:59 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Encrypting File System;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Websites | |||||||
001o000000HshEGAAZ | 229 | t | f | f | f | f | t | f | t | t | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum CA | Certum CA | Root Certificate | Root Certificate | D8E0FEBC1DB2E38D00940F37D27D41344D993E734B99D5656D9778D4D8143624 | D8E0FEBC1DB2E38D00940F37D27D41344D993E734B99D5656D9778D4D8143624 | 2027.06.11 | 2027-06-11 10:46:39 | clientAuth;codeSigning;emailProtection;timeStamping | Client Authentication;Code Signing;Secure Email;Time Stamping | ||||||||
0011J00001SDOe7QAH | 2224044393 | t | f | f | f | f | t | f | t | t | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum EC-384 CA | Certum EC-384 CA | Root Certificate | Root Certificate | 6B328085625318AA50D173C98D8BDA09D57E27413D114CF787A0F5D06C030CF6 | 6B328085625318AA50D173C98D8BDA09D57E27413D114CF787A0F5D06C030CF6 | 2043.03.26 | 2043-03-26 07:24:54 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshEHAAZ | 16858 | t | f | f | f | f | t | t | t | t | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Trusted Network CA | Certum Trusted Network CA | Root Certificate | Root Certificate | 5C58468D55F58E497E743982D2B50010B6D165374ACF83A7D4A32DB768C4408E | 5C58468D55F58E497E743982D2B50010B6D165374ACF83A7D4A32DB768C4408E | 2029.12.31 | 2029-12-31 12:07:37 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000mNjDoAAK | 12979952 | t | f | f | f | f | t | f | t | t | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Trusted Network CA 2 | Certum Trusted Network CA 2 | Root Certificate | Root Certificate | B676F2EDDAE8775CD36CB0F63CD1D4603961F49E6265BA013A2F0307B6D0B804 | B676F2EDDAE8775CD36CB0F63CD1D4603961F49E6265BA013A2F0307B6D0B804 | 2046.10.06 | 2046-10-06 08:39:56 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication | Email;Websites | |||||
0011J00001SDOeCQAX | 2224039330 | t | f | f | f | f | t | f | t | t | Asseco Data Systems S.A. (previously Unizeto Certum) | Certum Trusted Root CA | Certum Trusted Root CA | Root Certificate | Root Certificate | FE7696573855773E37A95E7AD4D9CC96C30157C15D31765BA9B15704E1AE78FD | FE7696573855773E37A95E7AD4D9CC96C30157C15D31765BA9B15704E1AE78FD | 2043.03.16 | 2043-03-16 12:10:13 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000vmkrwAAA | 10666301 | t | f | f | f | f | f | f | t | f | A-Trust | A-Trust-nQual-03 | A-Trust-nQual-03 | Root Certificate | Root Certificate | 8688E58F4C7A945FADCE7F62BFEF521B82DA7DC38BFDB0163478A5FE42E57870 | 8688E58F4C7A945FADCE7F62BFEF521B82DA7DC38BFDB0163478A5FE42E57870 | 2025.07.23 | 2025-07-23 08:38:29 | EV Server Authentication | |||||||||
0011J00001W1raWQAR | 2279287966 | t | f | f | f | f | f | f | t | f | A-Trust | A-Trust-Root-07 | A-Trust-Root-07 | Root Certificate | Root Certificate | 8AC552AD577E37AD2C6808D72AA331D6A96B4B3FEBFF34CE9BC0578E08055EC3 | 8AC552AD577E37AD2C6808D72AA331D6A96B4B3FEBFF34CE9BC0578E08055EC3 | 2036.11.19 | 2036-11-19 10:23:22 | Server Authentication | |||||||||
0018Z000033eMIOQA2 | 9609656322 | t | f | f | f | f | f | f | t | f | A-Trust | A-Trust-Root-09 | A-Trust-Root-09 | Root Certificate | Root Certificate | 7A38F708A35A31E42E1CF3220F9A2D273E7666354618B2464657D43D8E77ADC2 | 7A38F708A35A31E42E1CF3220F9A2D273E7666354618B2464657D43D8E77ADC2 | 2036.07.14 | 2036-07-14 12:22:48 | Client Authentication;Server Authentication | |||||||||
001o000000rGWTUAA4 | 8600857 | t | f | f | f | f | f | f | t | f | Autoridad de Certificación (ANF AC) | ANF Global Root CA | ANF Global Root CA | Root Certificate | Root Certificate | E0E17AEA06CF9CE12AAE8190345A2C59720130A7D8FF72F3745AD75DBAA365B6 | E0E17AEA06CF9CE12AAE8190345A2C59720130A7D8FF72F3745AD75DBAA365B6 | 2033.06.05 | 2033-06-05 17:45:29 | EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication | |||||||||
0011J00001R0C56QAF | 1880094669 | t | f | f | f | f | f | f | f | t | Autoridad de Certificación (ANF AC) | ANF Secure Server Root CA | ANF Secure Server Root CA | Root Certificate | Root Certificate | FB8FEC759169B9106B1E511644C618C51304373F6C0643088D8BEFFD1B997599 | FB8FEC759169B9106B1E511644C618C51304373F6C0643088D8BEFFD1B997599 | 2039.08.30 | 2039-08-30 10:00:38 | Server Authentication | Server Authentication | Websites | |||||||
0011J00001MknHQQAZ | 12977067 | t | f | f | f | f | f | t | t | t | Autoridad de Certificacion Firmaprofesional | Autoridad de Certificacion Firmaprofesional CIF A62634068 | Autoridad de Certificacion Firmaprofesional CIF A62634068 | Root Certificate | Root Certificate | 57DE0583EFD2B26E0361DA99DA9DF4648DEF7EE8441C3B728AFA9BCDE0F9B26A | 57DE0583EFD2B26E0361DA99DA9DF4648DEF7EE8441C3B728AFA9BCDE0F9B26A | 2036.05.05 | 2036-05-05 15:22:07 | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Server Authentication | Websites | ||||||
001o000000HshE2AAJ | 24651 | t | f | f | f | f | t | f | t | f | Autoridad de Certificacion Firmaprofesional | Autoridad de Certificacion Firmaprofesional CIF A62634068 | Autoridad de Certificacion Firmaprofesional CIF A62634068 | Root Certificate | Root Certificate | 04048028BF1F2864D48F9AD4D83294366A828856553F3B14303F90147F5D40EF | 04048028BF1F2864D48F9AD4D83294366A828856553F3B14303F90147F5D40EF | 2030.12.31 | 2030-12-31 08:38:15 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Encrypting File System;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | ||||||||
0018Z00002iMPmqQAG | 7399340150 | t | f | f | f | f | f | f | f | t | Autoridad de Certificacion Firmaprofesional | FIRMAPROFESIONAL CA ROOT-A WEB | FIRMAPROFESIONAL CA ROOT-A WEB | Root Certificate | Root Certificate | BEF256DAF26E9C69BDEC1602359798F3CAF71821A03E018257C53C65617F3D4A | BEF256DAF26E9C69BDEC1602359798F3CAF71821A03E018257C53C65617F3D4A | 2047.03.31 | 2047-03-31 09:01:36 | Websites | |||||||||
0011J00001hWuDSQA0 | 2838198002 | t | f | f | f | f | f | f | f | t | BEIJING CERTIFICATE AUTHORITY Co., Ltd. | BJCA Global Root CA1 | BJCA Global Root CA1 | Root Certificate | Root Certificate | F3896F88FE7C0A882766A7FA6AD2749FB57A7F3E98FB769C1FA7B09C2C44D5AE | F3896F88FE7C0A882766A7FA6AD2749FB57A7F3E98FB769C1FA7B09C2C44D5AE | 2044.12.12 | 2044-12-12 03:16:17 | Websites | |||||||||
0011J00001hWudSQAS | 3001881732 | t | f | f | f | f | f | f | f | t | BEIJING CERTIFICATE AUTHORITY Co., Ltd. | BJCA Global Root CA2 | BJCA Global Root CA2 | Root Certificate | Root Certificate | 574DF6931E278039667B720AFDC1600FC27EB66DD3092979FB73856487212882 | 574DF6931E278039667B720AFDC1600FC27EB66DD3092979FB73856487212882 | 2044.12.12 | 2044-12-12 03:18:21 | Websites | |||||||||
001o000000HshE5AAJ | 767142 | t | f | f | f | f | t | f | t | t | Buypass | Buypass Class 2 Root CA | Buypass Class 2 Root CA | Root Certificate | Root Certificate | 9A114025197C5BB95D94E63D55CD43790847B646B23CDF11ADA4A00EFF15FB48 | 9A114025197C5BB95D94E63D55CD43790847B646B23CDF11ADA4A00EFF15FB48 | 2040.10.26 | 2040-10-26 08:38:03 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000HshE7AAJ | 1452270 | t | f | f | f | f | t | t | t | t | Buypass | Buypass Class 3 Root CA | Buypass Class 3 Root CA | Root Certificate | Root Certificate | EDF7EBBCA27A2A384D387B7D4010C666E2EDB4843E4C29B4AE1D5B9332E6B24D | EDF7EBBCA27A2A384D387B7D4010C666E2EDB4843E4C29B4AE1D5B9332E6B24D | 2040.10.26 | 2040-10-26 08:28:58 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001TO00000Pxt3hYAB | 4133687281 | t | f | f | f | f | f | f | t | f | Buypass | Buypass Class 3 Root CA G2 HT | Buypass Class 3 Root CA G2 HT | Root Certificate | Root Certificate | AB936DFD7F171D3A3CBD08F9BEBDC3F3BAAABAA79DF6A908F8A7B0128627F187 | AB936DFD7F171D3A3CBD08F9BEBDC3F3BAAABAA79DF6A908F8A7B0128627F187 | 2045.11.10 | 2045-11-10 11:57:53 | Document Signing | |||||||||
001o000000rGWiKAAW | 36499466 | t | f | f | f | f | f | f | t | f | Byte Computer S.A. | BYTE Root Certification Authority 001 | BYTE Root Certification Authority 001 | Root Certificate | Root Certificate | 39AE2E6F304A6236BDF9066718DDC69E51AF5ED05A63F2EE8D80CA1D1CC8FE4F | 39AE2E6F304A6236BDF9066718DDC69E51AF5ED05A63F2EE8D80CA1D1CC8FE4F | 2039.09.10 | 2039-09-10 22:01:54 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0011J00001Y3avwQAB | 2768168593 | t | f | f | f | f | f | f | t | f | Carillon Information Security Inc. | Carillon PKI Services G2 Root CA 1 | Carillon PKI Services G2 Root CA 1 | Root Certificate | Root Certificate | EE0EC4A0B5E6ECB865F49689B50E3DE38D4FD924A4041C0C2A62636DB0B6B31D | EE0EC4A0B5E6ECB865F49689B50E3DE38D4FD924A4041C0C2A62636DB0B6B31D | 2040.01.20 | 2040-01-20 19:42:45 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0014o00001nqAnVAAU | 5150403703 | t | f | f | f | f | t | f | f | t | Certainly LLC | Certainly Root E1 | Certainly Root E1 | Root Certificate | Root Certificate | B4585F22E4AC756A4E8612A1361C5D9D031A93FD84FEBB778FA3068B0FC42DC2 | B4585F22E4AC756A4E8612A1361C5D9D031A93FD84FEBB778FA3068B0FC42DC2 | 2046.04.01 | 2046-04-01 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Websites | ||||||
0014o00001nqAm8AAE | 5150405959 | t | f | f | f | f | t | f | f | t | Certainly LLC | Certainly Root R1 | Certainly Root R1 | Root Certificate | Root Certificate | 77B82CD8644C4305F7ACC5CB156B45675004033D51C60C6202A8E0C33467D3A0 | 77B82CD8644C4305F7ACC5CB156B45675004033D51C60C6202A8E0C33467D3A0 | 2046.04.01 | 2046-04-01 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Websites | ||||||
001o000000wGC3QAAW | 36499468 | t | f | f | f | f | f | f | t | f | Certicámara | AC Raíz Certicámara S.A. | AC Raíz Certicámara S.A. | Root Certificate | Root Certificate | D2A90E5D35CAC4D41F7D44CE66AFF885E1815FB339185853A87E66C05C9BEF1E | D2A90E5D35CAC4D41F7D44CE66AFF885E1815FB339185853A87E66C05C9BEF1E | 2031.05.24 | 2031-05-24 18:39:46 | Client Authentication;Encrypting File System;IP security end system;IP security IKE intermediate;IP security tunnel termination;IP security user;Secure Email;Time Stamping | |||||||||
001o000000HshEDAAZ | 62358 | t | f | f | f | f | t | f | t | t | Certigna | Certigna | Certigna | Root Certificate | Root Certificate | E3B6A2DB2ED7CE48842F7AC53241C7B71D54144BFB40C11F3F1D0B42F5EEA12D | E3B6A2DB2ED7CE48842F7AC53241C7B71D54144BFB40C11F3F1D0B42F5EEA12D | 2027.06.29 | 2027-06-29 15:13:05 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;IP security IKE intermediate;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000vmkmqAAA | 19392269 | t | f | f | f | f | f | f | t | t | Certigna | Certigna Root CA | Certigna Root CA | Root Certificate | Root Certificate | D48D3D23EEDB50A459E55197601C27774B9D7B18C94D5A059511A10250B93168 | D48D3D23EEDB50A459E55197601C27774B9D7B18C94D5A059511A10250B93168 | 2033.10.01 | 2033-10-01 08:32:27 | Server Authentication | Server Authentication | Client Authentication;Code Signing;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | Email;Websites | ||||||
001o000000HshEFAAZ | 6385 | t | f | f | f | f | t | f | t | t | certSIGN | certSIGN ROOT CA | certSIGN ROOT CA | Root Certificate | Root Certificate | EAA962C4FA4A6BAFEBE415196D351CCD888D4F53F3FA8AE6D7C466A94E6042BB | EAA962C4FA4A6BAFEBE415196D351CCD888D4F53F3FA8AE6D7C466A94E6042BB | 2031.07.04 | 2031-07-04 17:20:04 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Websites | |||||
0011J00001DYViqQAH | 329436087 | t | f | f | f | f | t | t | t | t | certSIGN | certSIGN ROOT CA G2 | certSIGN ROOT CA G2 | Root Certificate | Root Certificate | 657CFE2FA73FAA38462571F332A2363A46FCE7020951710702CDFBB6EEDA3305 | 657CFE2FA73FAA38462571F332A2363A46FCE7020951710702CDFBB6EEDA3305 | 2042.02.06 | 2042-02-06 09:27:35 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Document Signing;EV Server Authentication;Secure Email;Server Authentication | Websites | |||||
001o000000TNZoiAAH | 8559481 | t | f | f | f | f | t | t | t | t | China Financial Certification Authority (CFCA) | CFCA EV ROOT | CFCA EV ROOT | Root Certificate | Root Certificate | 5CC3D78E4E1D5E45547A04E6873E64F90CF9536D1CCC2EF800F355C4C5FD70FD | 5CC3D78E4E1D5E45547A04E6873E64F90CF9536D1CCC2EF800F355C4C5FD70FD | 2029.12.31 | 2029-12-31 03:07:01 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000rGWfvAAG | 19392272 | t | f | f | f | f | f | f | t | f | China Financial Certification Authority (CFCA) | CFCA Identity CA | CFCA Identity CA | Root Certificate | Root Certificate | FFB85C26308A961351249EA641F659D49F639E91DAED9C92D046CCDCECC93D2F | FFB85C26308A961351249EA641F659D49F639E91DAED9C92D046CCDCECC93D2F | 2040.06.30 | 2040-06-30 01:21:12 | Document Signing | |||||||||
001o000000HshEKAAZ | 570048 | t | f | f | f | f | f | f | t | f | China Internet Network Information Center (CNNIC) | China Internet Network Information Center EV Certificates Root | China Internet Network Information Center EV Certificates Root | Root Certificate | Root Certificate | 1C01C6F4DBB2FEFC22558B2BCA32563F49844ACFC32B7BE4B0FF599F9E8C7AF7 | 1C01C6F4DBB2FEFC22558B2BCA32563F49844ACFC32B7BE4B0FF599F9E8C7AF7 | 2030.08.31 | 2030-08-31 07:11:25 | EV Server Authentication | |||||||||
0018Z00002iKi1lQAC | 36499469 | t | f | t | f | f | f | f | f | f | Chunghwa Telecom | ePKI EV SSL Certification Authority - G1 | ePKI EV SSL Certification Authority - G1 | Root Certificate | Intermediate Certificate | BEBCE57DCB85F60A93BFA5019EDB1A294BF6D81F82D9B4E71F502F0B15A1FC08 | BEBCE57DCB85F60A93BFA5019EDB1A294BF6D81F82D9B4E71F502F0B15A1FC08 | 2030.02.04 | 2030-02-04 03:06:31 | ||||||||||
001o000000HshEoAAJ | 17183 | t | f | f | f | f | t | f | t | t | Chunghwa Telecom | ePKI Root Certification Authority | ePKI Root Certification Authority | Root Certificate | Root Certificate | C0A6F4DC63A24BFDCF54EF2A6A082A0A72DE35803E2FF5FF527AE5D87206DFD5 | C0A6F4DC63A24BFDCF54EF2A6A082A0A72DE35803E2FF5FF527AE5D87206DFD5 | 2034.12.20 | 2034-12-20 02:31:27 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;IP security IKE intermediate;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000wFaQgAAK | 36499474 | t | f | f | f | f | f | f | t | f | Chunghwa Telecom | ePKI Root Certification Authority - G2 | ePKI Root Certification Authority - G2 | Root Certificate | Root Certificate | 1E51942B84FD467BF77D1C89DA241C04254DC8F3EF4C22451FE7A89978BDCD4F | 1E51942B84FD467BF77D1C89DA241C04254DC8F3EF4C22451FE7A89978BDCD4F | 2037.12.31 | 2037-12-31 15:59:59 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0018Z000033eRWqQAM | 9232666082 | t | f | f | f | f | f | f | t | f | Chunghwa Telecom | ePKI Root Certification Authority - G4 | ePKI Root Certification Authority - G4 | Root Certificate | Root Certificate | 19A2FA09332C6D8EAC1393D5F30371DD8B4DD687B0E1E50A6B48AE762CABA2B5 | 19A2FA09332C6D8EAC1393D5F30371DD8B4DD687B0E1E50A6B48AE762CABA2B5 | 2047.11.03 | 2047-11-03 15:59:59 | Document Signing;Secure Email;Time Stamping | |||||||||
0011J00001PSUU5QAP | 1639768443 | t | f | f | f | f | t | f | t | t | Chunghwa Telecom | HiPKI Root CA - G1 | HiPKI Root CA - G1 | Root Certificate | Root Certificate | F015CE3CC239BFEF064BE9F1D2C417E1A0264A0A94BE1F0C8D121864EB6949CC | F015CE3CC239BFEF064BE9F1D2C417E1A0264A0A94BE1F0C8D121864EB6949CC | 2037.12.31 | 2037-12-31 15:59:59 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
001o000000rGWgiAAG | 9031466 | t | f | f | f | f | t | f | f | f | Cisco | Cisco Root CA 2048 | Cisco Root CA 2048 | Root Certificate | Root Certificate | 8327BC8C9D69947B3DE3C27511537267F59C21B9FA7B613FAFBCCD53B7024000 | 8327BC8C9D69947B3DE3C27511537267F59C21B9FA7B613FAFBCCD53B7024000 | 2029.05.14 | 2029-05-14 20:25:42 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | |||||||||
0018Z00002XxD5LQAV | 4755905728 | t | f | f | f | f | f | f | f | t | CommScope | CommScope Public Trust ECC Root-01 | CommScope Public Trust ECC Root-01 | Root Certificate | Root Certificate | 11437CDA7BB45E41365F45B39A38986B0DE00DEF348E0C7BB0873633800BC38B | 11437CDA7BB45E41365F45B39A38986B0DE00DEF348E0C7BB0873633800BC38B | 2046.04.28 | 2046-04-28 17:35:42 | Websites | |||||||||
0018Z00002XxD5QQAV | 4755905729 | t | f | f | f | f | f | f | f | t | CommScope | CommScope Public Trust ECC Root-02 | CommScope Public Trust ECC Root-02 | Root Certificate | Root Certificate | 2FFB7F813BBBB3C89AB4E8162D0F16D71509A830CC9D73C262E5140875D1AD4A | 2FFB7F813BBBB3C89AB4E8162D0F16D71509A830CC9D73C262E5140875D1AD4A | 2046.04.28 | 2046-04-28 17:44:53 | Websites | |||||||||
0018Z00002XxD5VQAV | 4755905730 | t | f | f | f | f | f | f | f | t | CommScope | CommScope Public Trust RSA Root-01 | CommScope Public Trust RSA Root-01 | Root Certificate | Root Certificate | 02BDF96E2A45DD9BF18FC7E1DBDF21A0379BA3C9C2610344CFD8D606FEC1ED81 | 02BDF96E2A45DD9BF18FC7E1DBDF21A0379BA3C9C2610344CFD8D606FEC1ED81 | 2046.04.28 | 2046-04-28 16:45:53 | Websites | |||||||||
0018Z00002XxD5fQAF | 4755905731 | t | f | f | f | f | f | f | f | t | CommScope | CommScope Public Trust RSA Root-02 | CommScope Public Trust RSA Root-02 | Root Certificate | Root Certificate | FFE943D793424B4F7C440C1C3D648D5363F34B82DC87AA7A9F118FC5DEE101F1 | FFE943D793424B4F7C440C1C3D648D5363F34B82DC87AA7A9F118FC5DEE101F1 | 2046.04.28 | 2046-04-28 17:16:42 | Websites | |||||||||
001o000000rGWeXAAW | 5469867 | t | f | f | f | f | t | f | t | f | ComSign | ComSign Global Root CA | ComSign Global Root CA | Root Certificate | Root Certificate | 2605875AFCC176B2D66DD66A995D7F8D5EBB86CE120D0E7E9E7C6EF294A27D4C | 2605875AFCC176B2D66DD66A995D7F8D5EBB86CE120D0E7E9E7C6EF294A27D4C | 2036.07.16 | 2036-07-16 10:24:55 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email;Server Authentication;Time Stamping | ||||||||
001o000000wjNT0AAM | 36499473 | t | f | f | f | f | f | f | t | f | Consejo General de la Abogacía Española | ACA ROOT | ACA ROOT | Root Certificate | Root Certificate | 97F654859CBDE586FD90311E82EC7902C238CBA0D6E529564C9C88F44895EC50 | 97F654859CBDE586FD90311E82EC7902C238CBA0D6E529564C9C88F44895EC50 | 2041.05.27 | 2041-05-27 10:58:51 | Client Authentication;Secure Email;Time Stamping | |||||||||
001o000000HshEiAAJ | 298 | t | f | f | f | f | f | f | t | f | Consorci Administració Oberta de Catalunya (Consorci AOC, CATCert) | EC-ACC | EC-ACC | Root Certificate | Root Certificate | 88497F01602F3154246AE28C4D5AEF10F1D87EBB76626F4AE0B7F95BA7968799 | 88497F01602F3154246AE28C4D5AEF10F1D87EBB76626F4AE0B7F95BA7968799 | 2031.01.07 | 2031-01-07 22:59:59 | Client Authentication;Secure Email;Time Stamping | |||||||||
0018Z00002eGBulQAG | 1229131305 | t | f | f | f | f | f | f | t | f | Cybertrust Japan / JCSI | Cybertrust iTrust Root Certification Authority | Cybertrust iTrust Root Certification Authority | Root Certificate | Root Certificate | E90DBEB2D360CC6F98994EEFC68C4147F2DFD9C68A3BF063C6A971F3E11BAF4E | E90DBEB2D360CC6F98994EEFC68C4147F2DFD9C68A3BF063C6A971F3E11BAF4E | 2043.02.19 | 2043-02-19 06:08:42 | Document Signing;Secure Email | |||||||||
001o000000HshFaAAJ | 6319 | t | f | f | f | f | f | f | t | f | Cybertrust Japan / JCSI | SecureSign RootCA11 | SecureSign RootCA11 | Root Certificate | Root Certificate | BF0FEEFB9E3A581AD5F9E9DB7589985743D261085C4D314F6F5D7259AA421612 | BF0FEEFB9E3A581AD5F9E9DB7589985743D261085C4D314F6F5D7259AA421612 | 2029.04.08 | 2029-04-08 04:56:47 | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Time Stamping | |||||||||
0011J00001XbWLFQA3 | 2700881082 | t | f | f | f | f | f | f | t | t | Cybertrust Japan / JCSI | SecureSign Root CA12 | SecureSign Root CA12 | Root Certificate | Root Certificate | 3F034BB5704D44B2D08545A02057DE93EBF3905FCE721ACBC730C06DDAEE904E | 3F034BB5704D44B2D08545A02057DE93EBF3905FCE721ACBC730C06DDAEE904E | 2040.04.08 | 2040-04-08 05:36:46 | Client Authentication;Secure Email;Server Authentication | Websites | ||||||||
0011J00001XbWLoQAN | 2700884608 | t | f | f | f | f | f | f | t | t | Cybertrust Japan / JCSI | SecureSign Root CA14 | SecureSign Root CA14 | Root Certificate | Root Certificate | 4B009C1034494F9AB56BBA3BA1D62731FC4D20D8955ADCEC10A925607261E338 | 4B009C1034494F9AB56BBA3BA1D62731FC4D20D8955ADCEC10A925607261E338 | 2045.04.08 | 2045-04-08 07:06:19 | Client Authentication;Secure Email;Server Authentication | Websites | ||||||||
0011J00001XbWLtQAN | 2700886548 | t | f | f | f | f | f | f | t | t | Cybertrust Japan / JCSI | SecureSign Root CA15 | SecureSign Root CA15 | Root Certificate | Root Certificate | E778F0F095FE843729CD1A0082179E5314A9C291442805E1FB1D8FB6B8886C3A | E778F0F095FE843729CD1A0082179E5314A9C291442805E1FB1D8FB6B8886C3A | 2045.04.08 | 2045-04-08 08:32:56 | Client Authentication;Secure Email;Server Authentication | Websites | ||||||||
001o000000zXSCGAA4 | 100961665 | t | f | f | f | f | f | f | t | f | Department of Defence Australia | Australian Defence Public Root CA | Australian Defence Public Root CA | Root Certificate | Root Certificate | 209E956AF04DF3996507C887D356230D6EB49FDBDD2D8A058FF50B8F80F690AA | 209E956AF04DF3996507C887D356230D6EB49FDBDD2D8A058FF50B8F80F690AA | 2036.11.28 | 2036-11-28 22:13:48 | Client Authentication;Encrypting File System;IP security end system;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | |||||||||
0018Z00002u5F7dQAE | 8550579117 | t | f | f | f | f | f | f | t | t | Deutsche Telekom Security GmbH | Telekom Security SMIME ECC Root 2021 | Telekom Security SMIME ECC Root 2021 | Root Certificate | Root Certificate | 3AE6DF7E0D637A65A8C81612EC6F9A142F85A16834C10280D88E707028518755 | 3AE6DF7E0D637A65A8C81612EC6F9A142F85A16834C10280D88E707028518755 | 2046.03.17 | 2046-03-17 23:59:59 | Client Authentication;Secure Email | |||||||||
0018Z000037J2LeQAK | 10248272882 | t | f | f | f | f | f | f | t | t | Deutsche Telekom Security GmbH | Telekom Security SMIME RSA Root 2023 | Telekom Security SMIME RSA Root 2023 | Root Certificate | Root Certificate | 78A656344F947E9CC0F734D9053D32F6742086B6B9CD2CAE4FAE1A2E4EFDE048 | 78A656344F947E9CC0F734D9053D32F6742086B6B9CD2CAE4FAE1A2E4EFDE048 | 2048.03.27 | 2048-03-27 23:59:59 | Client Authentication;Secure Email | |||||||||
0018Z00002u5EqFQAU | 8550581237 | t | f | f | f | f | f | f | t | t | Deutsche Telekom Security GmbH | Telekom Security TLS ECC Root 2020 | Telekom Security TLS ECC Root 2020 | Root Certificate | Root Certificate | 578AF4DED0853F4E5998DB4AEAF9CBEA8D945F60B620A38D1A3C13B2BC7BA8E1 | 578AF4DED0853F4E5998DB4AEAF9CBEA8D945F60B620A38D1A3C13B2BC7BA8E1 | 2045.08.25 | 2045-08-25 23:59:59 | Client Authentication;Server Authentication | Websites | ||||||||
0018Z000037J2ptQAC | 10248274498 | t | f | f | f | f | f | f | t | t | Deutsche Telekom Security GmbH | Telekom Security TLS RSA Root 2023 | Telekom Security TLS RSA Root 2023 | Root Certificate | Root Certificate | EFC65CADBB59ADB6EFE84DA22311B35624B71B3B1EA0DA8B6655174EC8978646 | EFC65CADBB59ADB6EFE84DA22311B35624B71B3B1EA0DA8B6655174EC8978646 | 2048.03.27 | 2048-03-27 23:59:59 | Client Authentication;Server Authentication | Websites | ||||||||
001o000000HshGBAAZ | 8733622 | t | f | f | f | f | t | f | t | t | Deutsche Telekom Security GmbH | T-TeleSec GlobalRoot Class 2 | T-TeleSec GlobalRoot Class 2 | Root Certificate | Root Certificate | 91E2F5788D5810EBA7BA58737DE1548A8ECACD014598BC0B143E041B17052552 | 91E2F5788D5810EBA7BA58737DE1548A8ECACD014598BC0B143E041B17052552 | 2033.10.01 | 2033-10-01 23:59:59 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Email;Websites | |||||
001o000000HshGCAAZ | 265118 | t | f | f | f | f | t | t | t | t | Deutsche Telekom Security GmbH | T-TeleSec GlobalRoot Class 3 | T-TeleSec GlobalRoot Class 3 | Root Certificate | Root Certificate | FD73DAD31C644FF1B43BEF0CCDDA96710B9CD9875ECA7E31707AF3E96D522BBD | FD73DAD31C644FF1B43BEF0CCDDA96710B9CD9875ECA7E31707AF3E96D522BBD | 2033.10.01 | 2033-10-01 23:59:59 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Server Authentication | Websites | |||||
001o000000HshE3AAJ | 76 | t | f | f | f | f | t | f | t | t | DigiCert | Baltimore CyberTrust Root | Baltimore CyberTrust Root | Root Certificate | Root Certificate | 16AF57A9F676B0AB126095AA5EBADEF22AB31119D644AC95CD4B93DBF3F26AEB | 16AF57A9F676B0AB126095AA5EBADEF22AB31119D644AC95CD4B93DBF3F26AEB | 2025.05.12 | 2025-05-12 23:59:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | ||||||||
0018Z00002iKhmeQAC | 12728834 | t | f | t | f | f | f | f | f | f | DigiCert | Class 1 Public Primary Certification Authority | Class 1 Public Primary Certification Authority | Root Certificate | Intermediate Certificate | D17CD8ECD586B712238A482CE46FA5293970742F276D8AB6A9E46EE0288F3355 | D17CD8ECD586B712238A482CE46FA5293970742F276D8AB6A9E46EE0288F3355 | 2028.08.01 | 2028-08-01 23:59:59 | ||||||||||
0018Z00002iKhhpQAC | 12665129 | t | f | t | f | f | f | f | f | f | DigiCert | Class 1 Public Primary Certification Authority | Class 1 Public Primary Certification Authority | Root Certificate | Intermediate Certificate | 13B84ABAECA3DE8C719A067DE8CF185F65DC19E03EBD92C20BD38C75097BE113 | 13B84ABAECA3DE8C719A067DE8CF185F65DC19E03EBD92C20BD38C75097BE113 | 2020.01.07 | 2020-01-07 23:59:59 | ||||||||||
0018Z00002iKhlCQAS | 8984578 | t | t | f | f | f | f | f | f | f | DigiCert | Class 1 Public Primary Certification Authority - G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 3568D2627EE25268E706432DD6CB50A90BBE332072B146DD58BFF60377D696E1 | 3568D2627EE25268E706432DD6CB50A90BBE332072B146DD58BFF60377D696E1 | 2018.05.18 | 2018-05-18 23:59:59 | ||||||||||
0018Z00002iKhmjQAC | 12725382 | t | f | t | f | f | f | f | f | f | DigiCert | Class 2 Public Primary Certification Authority | Class 2 Public Primary Certification Authority | Root Certificate | Intermediate Certificate | BD469FF45FAAE7C54CCBD69D3F3B002255D9B06B10B1D0FA388BF96B918B2CE9 | BD469FF45FAAE7C54CCBD69D3F3B002255D9B06B10B1D0FA388BF96B918B2CE9 | 2028.08.01 | 2028-08-01 23:59:59 | ||||||||||
0018Z00002iKhkxQAC | 10249841 | t | f | t | f | f | f | f | f | f | DigiCert | Class 2 Public Primary Certification Authority | Class 2 Public Primary Certification Authority | Root Certificate | Intermediate Certificate | 7803A2389C92335D92119305FBDA99D6F90F0E84B628934F69D2AB9ACC8568BE | 7803A2389C92335D92119305FBDA99D6F90F0E84B628934F69D2AB9ACC8568BE | 2004.01.07 | 2004-01-07 23:59:59 | ||||||||||
0018Z00002iKhlHQAS | 8989058 | t | t | f | f | f | f | f | f | f | DigiCert | Class 2 Public Primary Certification Authority - G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 5A8BC466F676CE097CED3A7DEEC6BAEC2C4C864006421A4F23D7F024B6253A8F | 5A8BC466F676CE097CED3A7DEEC6BAEC2C4C864006421A4F23D7F024B6253A8F | 2018.05.18 | 2018-05-18 23:59:59 | ||||||||||
0018Z00002iKhl2QAC | 8332881 | t | f | t | f | f | f | f | f | f | DigiCert | Class 3 Public Primary Certification Authority | Class 3 Public Primary Certification Authority | Root Certificate | Intermediate Certificate | 6872586219C349D85AAA4586A14451F2451AE3B6092DBB1EFFB0147C33BF0FD4 | 6872586219C349D85AAA4586A14451F2451AE3B6092DBB1EFFB0147C33BF0FD4 | 2004.01.07 | 2004-01-07 23:59:59 | ||||||||||
0018Z00002iKhlMQAS | 1616141 | t | t | f | f | f | f | f | f | f | DigiCert | Class 3 Public Primary Certification Authority - G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 797E51F883E855D021E5C770566692999407895593235DEF52A011F716F8B6BF | 797E51F883E855D021E5C770566692999407895593235DEF52A011F716F8B6BF | 2018.05.18 | 2018-05-18 23:59:59 | ||||||||||
0018Z00002iKhlIQAS | 8989053 | t | t | f | f | f | f | f | f | f | DigiCert | Class 4 Public Primary Certification Authority - G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 61DC0C0391694C655200C1505EBCC9E4E216BC31A5C51A3611283423C1D89E37 | 61DC0C0391694C655200C1505EBCC9E4E216BC31A5C51A3611283423C1D89E37 | 2018.05.18 | 2018-05-18 23:59:59 | ||||||||||
0018Z00002iKhmZQAS | 8984568 | t | t | f | f | f | f | f | f | f | DigiCert | Class 4 Public Primary Certification Authority - G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 44640A0A0E4D000FBD574D2B8A07BDB4D1DFED3B45BAABA76F785778C7011961 | 44640A0A0E4D000FBD574D2B8A07BDB4D1DFED3B45BAABA76F785778C7011961 | 2028.08.01 | 2028-08-01 23:59:59 | ||||||||||
001o000000HshERAAZ | 60565 | t | f | f | f | f | f | f | t | f | DigiCert | Cybertrust Global Root | Cybertrust Global Root | Root Certificate | Root Certificate | 960ADF0063E96356750C2965DD0A0867DA0B9CBD6E77714AEAFB2349AB393DA3 | 960ADF0063E96356750C2965DD0A0867DA0B9CBD6E77714AEAFB2349AB393DA3 | 2021.12.15 | 2021-12-15 08:00:00 | EV Server Authentication | |||||||||
001o000000HshETAAZ | 348115 | t | f | f | f | f | t | f | t | t | DigiCert | DigiCert Assured ID Root CA | DigiCert Assured ID Root CA | Root Certificate | Root Certificate | 3E9099B5015E8F486C00BCEA9D111EE721FABA355A89BCF1DF69561E3DC6325C | 3E9099B5015E8F486C00BCEA9D111EE721FABA355A89BCF1DF69561E3DC6325C | 2031.11.10 | 2031-11-10 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshEUAAZ | 8559057 | t | f | f | f | f | t | t | t | t | DigiCert | DigiCert Assured ID Root G2 | DigiCert Assured ID Root G2 | Root Certificate | Root Certificate | 7D05EBB682339F8C9451EE094EEBFEFA7953A114EDB2F44949452FAB7D2FC185 | 7D05EBB682339F8C9451EE094EEBFEFA7953A114EDB2F44949452FAB7D2FC185 | 2038.01.15 | 2038-01-15 12:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshEVAAZ | 8569831 | t | f | f | f | f | t | t | t | t | DigiCert | DigiCert Assured ID Root G3 | DigiCert Assured ID Root G3 | Root Certificate | Root Certificate | 7E37CB8B4C47090CAB36551BA6F45DB840680FBA166A952DB100717F43053FC2 | 7E37CB8B4C47090CAB36551BA6F45DB840680FBA166A952DB100717F43053FC2 | 2038.01.15 | 2038-01-15 12:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0014o00001msVAcAAM | 4478383676 | t | f | f | f | f | f | f | t | f | DigiCert | DigiCert Client ECC P384 Root G5 | DigiCert Client ECC P384 Root G5 | Root Certificate | Root Certificate | CD851C5C25467C0095A43927D0B2292D932975E84DCE4C5E794542C6574C3AA4 | CD851C5C25467C0095A43927D0B2292D932975E84DCE4C5E794542C6574C3AA4 | 2046.01.14 | 2046-01-14 23:59:59 | Client Authentication | |||||||||
0014o00001msVAhAAM | 4478389354 | t | f | f | f | f | f | f | t | f | DigiCert | DigiCert Client RSA4096 Root G5 | DigiCert Client RSA4096 Root G5 | Root Certificate | Root Certificate | 3AF21466920FA91FA31F4331E445C16BE2330024BFD2C239C0D85AB530714766 | 3AF21466920FA91FA31F4331E445C16BE2330024BFD2C239C0D85AB530714766 | 2046.01.14 | 2046-01-14 23:59:59 | Client Authentication | |||||||||
0014o00001msV9jAAE | 4478374139 | t | f | f | f | f | f | f | t | f | DigiCert | DigiCert CS ECC P384 Root G5 | DigiCert CS ECC P384 Root G5 | Root Certificate | Root Certificate | 26C56AD2208D1E9B152F66853BF4797CBEB7552C1F3F477251E8CB1AE7E797BF | 26C56AD2208D1E9B152F66853BF4797CBEB7552C1F3F477251E8CB1AE7E797BF | 2046.01.14 | 2046-01-14 23:59:59 | Code Signing;EV Server Authentication;Time Stamping | |||||||||
0014o00001msVAIAA2 | 4478377662 | t | f | f | f | f | f | f | t | f | DigiCert | DigiCert CS RSA4096 Root G5 | DigiCert CS RSA4096 Root G5 | Root Certificate | Root Certificate | 7353B6D6C2D6DA4247773F3F07D075DECB5134212BEAD0928EF1F46115260941 | 7353B6D6C2D6DA4247773F3F07D075DECB5134212BEAD0928EF1F46115260941 | 2046.01.14 | 2046-01-14 23:59:59 | Code Signing;EV Server Authentication;Time Stamping | |||||||||
0014o00001msVANAA2 | 4478381229 | t | f | f | f | f | f | f | t | f | DigiCert | DigiCert ECC P384 Root G5 | DigiCert ECC P384 Root G5 | Root Certificate | Root Certificate | C1468CF2254E6004B24696ABA209D1A30BA6E2DFF68A9A4E32C6AB414F90C8D9 | C1468CF2254E6004B24696ABA209D1A30BA6E2DFF68A9A4E32C6AB414F90C8D9 | 2046.01.14 | 2046-01-14 23:59:59 | Client Authentication;Code Signing;Document Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000HshEWAAZ | 853428 | t | f | f | f | f | t | f | t | t | DigiCert | DigiCert Global Root CA | DigiCert Global Root CA | Root Certificate | Root Certificate | 4348A0E9444C78CB265E058D5E8944B4D84F9662BD26DB257F8934A443C70161 | 4348A0E9444C78CB265E058D5E8944B4D84F9662BD26DB257F8934A443C70161 | 2031.11.10 | 2031-11-10 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshEXAAZ | 8656329 | t | f | f | f | f | t | t | t | t | DigiCert | DigiCert Global Root G2 | DigiCert Global Root G2 | Root Certificate | Root Certificate | CB3CCBB76031E5E0138F8DD39A23F9DE47FFC35E43C1144CEA27D46A5AB1CB5F | CB3CCBB76031E5E0138F8DD39A23F9DE47FFC35E43C1144CEA27D46A5AB1CB5F | 2038.01.15 | 2038-01-15 12:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshEYAAZ | 8568700 | t | f | f | f | f | t | t | t | t | DigiCert | DigiCert Global Root G3 | DigiCert Global Root G3 | Root Certificate | Root Certificate | 31AD6648F8104138C738F39EA4320133393E3A18CC02296EF97C2AC9EF6731D0 | 31AD6648F8104138C738F39EA4320133393E3A18CC02296EF97C2AC9EF6731D0 | 2038.01.15 | 2038-01-15 12:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshEZAAZ | 46 | t | f | f | f | f | t | t | t | t | DigiCert | DigiCert High Assurance EV Root CA | DigiCert High Assurance EV Root CA | Root Certificate | Root Certificate | 7431E5F4C3C1CE4690774F0B61E05440883BA9A01ED00BA6ABD7806ED3B118CF | 7431E5F4C3C1CE4690774F0B61E05440883BA9A01ED00BA6ABD7806ED3B118CF | 2031.11.10 | 2031-11-10 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0014o00001msV3yAAE | 4478384779 | t | f | f | f | f | f | f | t | f | DigiCert | DigiCert RSA4096 Root G5 | DigiCert RSA4096 Root G5 | Root Certificate | Root Certificate | E46A392204A8DCA342A71C1CA9A60C9185B9A930370120C3B9C7E3856F0D8F3B | E46A392204A8DCA342A71C1CA9A60C9185B9A930370120C3B9C7E3856F0D8F3B | 2046.01.14 | 2046-01-14 23:59:59 | Client Authentication;Code Signing;Document Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0014o00001mYdXJAA0 | 4433774571 | t | f | f | f | f | t | f | t | t | DigiCert | DigiCert SMIME ECC P384 Root G5 | DigiCert SMIME ECC P384 Root G5 | Root Certificate | Root Certificate | E8E8176536A60CC2C4E10187C3BEFCA20EF263497018F566D5BEA0F94D0C111B | E8E8176536A60CC2C4E10187C3BEFCA20EF263497018F566D5BEA0F94D0C111B | 2046.01.14 | 2046-01-14 23:59:59 | clientAuth;emailProtection | Client Authentication;Secure Email | ||||||||
0014o00001mYdYdAAK | 4433776671 | t | f | f | f | f | t | f | t | t | DigiCert | DigiCert SMIME RSA4096 Root G5 | DigiCert SMIME RSA4096 Root G5 | Root Certificate | Root Certificate | 90370D3EFA88BF58C30105BA25104A358460A7FA52DFC2011DF233A0F417912A | 90370D3EFA88BF58C30105BA25104A358460A7FA52DFC2011DF233A0F417912A | 2046.01.14 | 2046-01-14 23:59:59 | clientAuth;emailProtection | Client Authentication;Secure Email | ||||||||
0014o00001mYdYTAA0 | 4433777742 | t | f | f | f | f | t | f | t | t | DigiCert | DigiCert TLS ECC P384 Root G5 | DigiCert TLS ECC P384 Root G5 | Root Certificate | Root Certificate | 018E13F0772532CF809BD1B17281867283FC48C6E13BE9C69812854A490C1B05 | 018E13F0772532CF809BD1B17281867283FC48C6E13BE9C69812854A490C1B05 | 2046.01.14 | 2046-01-14 23:59:59 | clientAuth;EV Server Authentication;serverAuth | Server Authentication | Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
0014o00001mYdYOAA0 | 4433779285 | t | f | f | f | f | t | f | t | t | DigiCert | DigiCert TLS RSA4096 Root G5 | DigiCert TLS RSA4096 Root G5 | Root Certificate | Root Certificate | 371A00DC0533B3721A7EEB40E8419E70799D2B0A0F2C1D80693165F7CEC4AD75 | 371A00DC0533B3721A7EEB40E8419E70799D2B0A0F2C1D80693165F7CEC4AD75 | 2046.01.14 | 2046-01-14 23:59:59 | clientAuth;EV Server Authentication;serverAuth | Server Authentication | Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
001o000000HshEaAAJ | 8559455 | t | f | f | f | f | t | t | t | t | DigiCert | DigiCert Trusted Root G4 | DigiCert Trusted Root G4 | Root Certificate | Root Certificate | 552F7BDCF1A7AF9E6CE672017F4F12ABF77240C78E761AC203D1D9D20AC89988 | 552F7BDCF1A7AF9E6CE672017F4F12ABF77240C78E761AC203D1D9D20AC89988 | 2038.01.15 | 2038-01-15 12:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshEpAAJ | 4 | t | f | f | f | f | f | f | t | f | DigiCert | Equifax Secure Certificate Authority | Equifax Secure Certificate Authority | Root Certificate | Root Certificate | 08297A4047DBA23680C731DB6E317653CA7848E1BEBD3A0B0179A707F92CF178 | 08297A4047DBA23680C731DB6E317653CA7848E1BEBD3A0B0179A707F92CF178 | 2018.08.22 | 2018-08-22 16:41:51 | EV Server Authentication | |||||||||
001o000000HshEvAAJ | 4350 | t | f | f | f | f | f | f | t | f | DigiCert | GeoTrust Primary Certification Authority | GeoTrust Primary Certification Authority | Root Certificate | Root Certificate | 37D51006C512EAAB626421F1EC8C92013FC5F82AE98EE533EB4619B8DEB4D06C | 37D51006C512EAAB626421F1EC8C92013FC5F82AE98EE533EB4619B8DEB4D06C | 2036.07.16 | 2036-07-16 23:59:59 | EV Server Authentication | |||||||||
001o000000HshEwAAJ | 3381895 | t | f | f | f | f | t | f | t | f | DigiCert | GeoTrust Primary Certification Authority - G2 | GeoTrust Primary Certification Authority - G2 | Root Certificate | Root Certificate | 5EDB7AC43B82A06A8761E8D7BE4979EBF2611F7DD79BF91C1C6B566A219ED766 | 5EDB7AC43B82A06A8761E8D7BE4979EBF2611F7DD79BF91C1C6B566A219ED766 | 2038.01.18 | 2038-01-18 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | EV Server Authentication | ||||||||
001o000000HshExAAJ | 847444 | t | f | f | f | f | f | f | t | f | DigiCert | GeoTrust Primary Certification Authority - G3 | GeoTrust Primary Certification Authority - G3 | Root Certificate | Root Certificate | B478B812250DF878635C2AA7EC7D155EAA625EE82916E2CD294361886CD1FBD4 | B478B812250DF878635C2AA7EC7D155EAA625EE82916E2CD294361886CD1FBD4 | 2037.12.01 | 2037-12-01 23:59:59 | EV Server Authentication;EV Server Authentication | |||||||||
001o000000x2128AAA | 19392282 | t | f | f | f | f | f | f | t | f | DigiCert | Hotspot 2.0 Trust Root CA - 03 | Hotspot 2.0 Trust Root CA - 03 | Root Certificate | Root Certificate | A3CC68595DFE7E86D8AD1772A8B5284ADD54ACE3B8A798DF47BCCAFB1FDB84DF | A3CC68595DFE7E86D8AD1772A8B5284ADD54ACE3B8A798DF47BCCAFB1FDB84DF | 2043.12.08 | 2043-12-08 12:00:00 | Client Authentication;Secure Email;Server Authentication | |||||||||
001o000000rGWZXAA4 | 8983600 | t | f | f | f | f | f | f | t | f | DigiCert | Symantec Class 1 Public Primary Certification Authority - G6 | Symantec Class 1 Public Primary Certification Authority - G6 | Root Certificate | Root Certificate | 9D190B2E314566685BE8A889E27AA8C7D7AE1D8AADDBA3C1ECF9D24863CD34B9 | 9D190B2E314566685BE8A889E27AA8C7D7AE1D8AADDBA3C1ECF9D24863CD34B9 | 2037.12.01 | 2037-12-01 23:59:59 | Client Authentication;Secure Email | |||||||||
001o000000rGWYyAAO | 8983601 | t | f | f | f | f | f | f | t | f | DigiCert | Symantec Class 2 Public Primary Certification Authority - G6 | Symantec Class 2 Public Primary Certification Authority - G6 | Root Certificate | Root Certificate | CB627D18B58AD56DDE331A30456BC65C601A4E9B18DEDCEA08E7DAAA07815FF0 | CB627D18B58AD56DDE331A30456BC65C601A4E9B18DEDCEA08E7DAAA07815FF0 | 2037.12.01 | 2037-12-01 23:59:59 | Client Authentication;Secure Email | |||||||||
001o000000rGWTFAA4 | 8691543 | t | f | f | f | f | f | f | t | f | DigiCert | Symantec Class 3 Public Primary Certification Authority - G4 | Symantec Class 3 Public Primary Certification Authority - G4 | Root Certificate | Root Certificate | 53DFDFA4E297FCFE07594E8C62D5B8AB06B32C7549F38A163094FD6429D5DA43 | 53DFDFA4E297FCFE07594E8C62D5B8AB06B32C7549F38A163094FD6429D5DA43 | 2037.12.01 | 2037-12-01 23:59:59 | EV Server Authentication | |||||||||
001o000000rGWSvAAO | 8703846 | t | f | f | f | f | f | f | t | f | DigiCert | Symantec Class 3 Public Primary Certification Authority - G6 | Symantec Class 3 Public Primary Certification Authority - G6 | Root Certificate | Root Certificate | B32396746453442F353E616292BB20BBAA5D23B546450FDB9C54B8386167D529 | B32396746453442F353E616292BB20BBAA5D23B546450FDB9C54B8386167D529 | 2037.12.01 | 2037-12-01 23:59:59 | EV Server Authentication | |||||||||
001o000000HshG4AAJ | 20 | t | f | f | f | f | f | f | t | f | DigiCert | Thawte Premium Server CA | Thawte Premium Server CA | Root Certificate | Root Certificate | AB7036365C7154AA29C2C29F5D4191163B162A2225011357D56D07FFA7BC1F72 | AB7036365C7154AA29C2C29F5D4191163B162A2225011357D56D07FFA7BC1F72 | 2020.12.31 | 2020-12-31 23:59:59 | EV Server Authentication | |||||||||
001o000000HshG5AAJ | 30 | t | f | f | f | f | f | f | t | f | DigiCert | thawte Primary Root CA | thawte Primary Root CA | Root Certificate | Root Certificate | 8D722F81A9C113C0791DF136A2966DB26C950A971DB46B4199F4EA54B78BFB9F | 8D722F81A9C113C0791DF136A2966DB26C950A971DB46B4199F4EA54B78BFB9F | 2036.07.16 | 2036-07-16 23:59:59 | EV Server Authentication | |||||||||
001o000000HshG6AAJ | 3382830 | t | f | f | f | f | f | f | t | f | DigiCert | thawte Primary Root CA - G2 | thawte Primary Root CA - G2 | Root Certificate | Root Certificate | A4310D50AF18A6447190372A86AFAF8B951FFB431D837F1E5688B45971ED1557 | A4310D50AF18A6447190372A86AFAF8B951FFB431D837F1E5688B45971ED1557 | 2038.01.18 | 2038-01-18 23:59:59 | EV Server Authentication | |||||||||
001o000000HshG7AAJ | 254193 | t | f | f | f | f | f | f | t | f | DigiCert | thawte Primary Root CA - G3 | thawte Primary Root CA - G3 | Root Certificate | Root Certificate | 4B03F45807AD70F21BFC2CAE71C9FDE4604C064CF5FFB686BAE5DBAAD7FDD34C | 4B03F45807AD70F21BFC2CAE71C9FDE4604C064CF5FFB686BAE5DBAAD7FDD34C | 2037.12.01 | 2037-12-01 23:59:59 | EV Server Authentication;EV Server Authentication | |||||||||
001o000000rGWXCAA4 | 19392277 | t | t | t | f | f | f | f | f | f | DigiCert | VeriSign4 | VeriSign Commercial Software Publishers CA | Root Certificate | Intermediate Certificate | AC1FAE74B4E97106092131F2E7F746B6734386742BDFD8423731AED14A4CE446 | AC1FAE74B4E97106092131F2E7F746B6734386742BDFD8423731AED14A4CE446 | 2004.01.07 | 2004-01-07 23:59:59 | ||||||||||
001o000000HshGOAAZ | 10249839 | t | t | f | f | f | f | f | f | f | DigiCert | VeriSign Class 1 Public PCA | Class 1 Public Primary Certification Authority | Root Certificate | Root Certificate | 51847C8CBD2E9A72C91E292D2AE247D7DE1E3FD270547A20EF7D610F38B8842C | 51847C8CBD2E9A72C91E292D2AE247D7DE1E3FD270547A20EF7D610F38B8842C | 2028.08.02 | 2028-08-02 23:59:59 | ||||||||||
001o000000HshGPAAZ | 8985457 | t | t | f | f | f | f | f | f | f | DigiCert | VeriSign Class 1 Public PCA – G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 341DE98B1392ABF7F4AB90A960CF25D4BD6EC65B9A51CE6ED067D00EC7CE9B7F | 341DE98B1392ABF7F4AB90A960CF25D4BD6EC65B9A51CE6ED067D00EC7CE9B7F | 2028.08.01 | 2028-08-01 23:59:59 | ||||||||||
001o000000HshGQAAZ | 8984570 | t | f | f | f | f | f | f | t | f | DigiCert | VeriSign Class 1 Public Primary Certification Authority - G3 | VeriSign Class 1 Public Primary Certification Authority - G3 | Root Certificate | Root Certificate | CBB5AF185E942A2402F9EACBC0ED5BB876EEA3C1223623D00447E4F3BA554B65 | CBB5AF185E942A2402F9EACBC0ED5BB876EEA3C1223623D00447E4F3BA554B65 | 2036.07.16 | 2036-07-16 23:59:59 | Client Authentication;Secure Email | |||||||||
001o000000HshGRAAZ | 8948838 | t | t | f | f | f | f | f | f | f | DigiCert | VeriSign Class 2 Public Primary Certification Authority - G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 3A43E220FE7F3EA9653D1E21742EAC2B75C20FD8980305BC502CAF8C2D9B41A1 | 3A43E220FE7F3EA9653D1E21742EAC2B75C20FD8980305BC502CAF8C2D9B41A1 | 2028.08.01 | 2028-08-01 23:59:59 | ||||||||||
001o000000HshGSAAZ | 68409 | t | f | f | f | f | f | f | t | f | DigiCert | VeriSign Class 2 Public Primary Certification Authority - G3 | VeriSign Class 2 Public Primary Certification Authority - G3 | Root Certificate | Root Certificate | 92A9D9833FE1944DB366E8BFAE7A95B6480C2D6C6C2A1BE65D4236B608FCA1BB | 92A9D9833FE1944DB366E8BFAE7A95B6480C2D6C6C2A1BE65D4236B608FCA1BB | 2036.07.16 | 2036-07-16 23:59:59 | Client Authentication;Secure Email | |||||||||
001o000000HshGVAAZ | 845596 | t | t | f | f | f | f | f | f | f | DigiCert | VeriSign Class 3 Public PCA – G2 | VeriSign Trust Network | Root Certificate | Root Certificate | 83CE3C1229688A593D485F81973C0F9195431EDA37CC5E36430E79C7A888638B | 83CE3C1229688A593D485F81973C0F9195431EDA37CC5E36430E79C7A888638B | 2028.08.01 | 2028-08-01 23:59:59 | ||||||||||
001o000000HshGTAAZ | 162 | t | t | t | f | f | f | f | f | f | DigiCert | VeriSign Class 3 Public PCA - MD2 | Class 3 Public Primary Certification Authority | Root Certificate | Intermediate Certificate | E7685634EFACF69ACE939A6B255B7B4FABEF42935B50A265ACB5CB6027E44E70 | E7685634EFACF69ACE939A6B255B7B4FABEF42935B50A265ACB5CB6027E44E70 | 2028.08.01 | 2028-08-01 23:59:59 | ||||||||||
001o000000HshGUAAZ | 42 | t | t | f | f | f | f | f | f | f | DigiCert | VeriSign Class 3 Public Primary Certification Authority | Class 3 Public Primary Certification Authority | Root Certificate | Root Certificate | A4B6B3996FC2F306B3FD8681BD63413D8C5009CC4FA329C2CCF0E2FA1B140305 | A4B6B3996FC2F306B3FD8681BD63413D8C5009CC4FA329C2CCF0E2FA1B140305 | 2028.08.02 | 2028-08-02 23:59:59 | ||||||||||
001o000000HshGXAAZ | 2771491 | t | f | f | f | f | f | f | t | f | DigiCert | VeriSign Class 3 Public Primary Certification Authority - G4 | VeriSign Class 3 Public Primary Certification Authority - G4 | Root Certificate | Root Certificate | 69DDD7EA90BB57C93E135DC85EA6FCD5480B603239BDC454FC758B2A26CF7F79 | 69DDD7EA90BB57C93E135DC85EA6FCD5480B603239BDC454FC758B2A26CF7F79 | 2038.01.18 | 2038-01-18 23:59:59 | EV Server Authentication | |||||||||
001o000000HshGYAAZ | 93 | t | f | f | f | f | t | f | t | f | DigiCert | VeriSign Class 3 Public Primary Certification Authority - G5 | VeriSign Class 3 Public Primary Certification Authority - G5 | Root Certificate | Root Certificate | 9ACFAB7E43C8D880D06B262A94DEEEE4B4659989C3D0CAF19BAF6405E41AB7DF | 9ACFAB7E43C8D880D06B262A94DEEEE4B4659989C3D0CAF19BAF6405E41AB7DF | 2036.07.16 | 2036-07-16 23:59:59 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | EV Server Authentication;EV Server Authentication;EV Server Authentication | ||||||||
0018Z00002iKhkiQAC | 7399351038 | t | f | t | f | f | f | f | f | f | DigiCert | VeriSign Commercial Software Publishers CA | VeriSign Commercial Software Publishers CA | Root Certificate | Intermediate Certificate | FAE547F389763148404D9D88162A434E92C495AA60D2A80FF91B19089107E439 | FAE547F389763148404D9D88162A434E92C495AA60D2A80FF91B19089107E439 | 1999.12.31 | 1999-12-31 09:35:58 | ||||||||||
0018Z00002iKhinQAC | 7399352914 | t | f | t | f | f | f | f | f | f | DigiCert | VeriSign Individual Software Publishers CA | VeriSign Individual Software Publishers CA | Root Certificate | Intermediate Certificate | 2754D4FBCDEEC3E32BAC6D8DFDCBD5DE2BAA2E90562005B418E334CCFC37FA52 | 2754D4FBCDEEC3E32BAC6D8DFDCBD5DE2BAA2E90562005B418E334CCFC37FA52 | 1999.12.31 | 1999-12-31 09:37:48 | ||||||||||
0018Z00002iKhknQAC | 7399355008 | t | f | t | f | f | f | f | f | f | DigiCert | VeriSign Individual Software Publishers CA | VeriSign Individual Software Publishers CA | Root Certificate | Intermediate Certificate | BE947BEBD25B74A586A7DDCF776752952A4C52FF9A8006E9186575ECC0D2C571 | BE947BEBD25B74A586A7DDCF776752952A4C52FF9A8006E9186575ECC0D2C571 | 2004.01.07 | 2004-01-07 23:59:59 | ||||||||||
001o000000rGWWTAA4 | 19392273 | t | t | f | f | f | f | f | f | f | DigiCert | VeriSign Time Stamping CA | NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc. | Root Certificate | Root Certificate | 5B789987F3C4055B8700941B33783A5F16E0CFF937EA32011FE04779F7635308 | 5B789987F3C4055B8700941B33783A5F16E0CFF937EA32011FE04779F7635308 | 2004.01.07 | 2004-01-07 23:59:59 | ||||||||||
001o000000HshGaAAJ | 1039083 | t | f | f | f | f | f | f | t | f | DigiCert | VeriSign Universal Root Certification Authority | VeriSign Universal Root Certification Authority | Root Certificate | Root Certificate | 2399561127A57125DE8CEFEA610DDF2FA078B5C8067F4E828290BFB860E84B3C | 2399561127A57125DE8CEFEA610DDF2FA078B5C8067F4E828290BFB860E84B3C | 2037.12.01 | 2037-12-01 23:59:59 | Client Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||||
001o000000rGWclAAG | 150708 | t | f | f | f | f | f | f | t | f | DigiCert | Verizon Global Root CA | Verizon Global Root CA | Root Certificate | Root Certificate | 68AD50909B04363C605EF13581A939FF2C96372E3F12325B0A6861E1D59F6603 | 68AD50909B04363C605EF13581A939FF2C96372E3F12325B0A6861E1D59F6603 | 2034.07.30 | 2034-07-30 14:27:04 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0014o00001llxuSAAQ | 4152361551 | t | f | f | f | f | f | f | f | t | DigitalSign - Certificadora Digital, S.A. | DIGITALSIGN GLOBAL ROOT ECDSA CA | DIGITALSIGN GLOBAL ROOT ECDSA CA | Root Certificate | Root Certificate | 261D7114AE5F8FF2D8C7209A9DE4289E6AFC9D717023D85450909199F1857CFE | 261D7114AE5F8FF2D8C7209A9DE4289E6AFC9D717023D85450909199F1857CFE | 2046.01.15 | 2046-01-15 11:07:50 | ||||||||||
0014o00001llxuNAAQ | 4152361550 | t | f | f | f | f | f | f | f | t | DigitalSign - Certificadora Digital, S.A. | DIGITALSIGN GLOBAL ROOT RSA CA | DIGITALSIGN GLOBAL ROOT RSA CA | Root Certificate | Root Certificate | 82BD5D851ACF7F6E1BA7BFCBC53030D0E7BC3C21DF772D858CAB41D199BDF595 | 82BD5D851ACF7F6E1BA7BFCBC53030D0E7BC3C21DF772D858CAB41D199BDF595 | 2046.01.15 | 2046-01-15 10:50:34 | ||||||||||
001o000000HshEAAAZ | 8559457 | t | f | f | f | f | t | f | t | t | Disig, a.s. | CA Disig Root R2 | CA Disig Root R2 | Root Certificate | Root Certificate | E23D4A036D7B70E9F595B1422079D2B91EDFBB1FB651A0633EAA8A9DC5F80703 | E23D4A036D7B70E9F595B1422079D2B91EDFBB1FB651A0633EAA8A9DC5F80703 | 2042.07.19 | 2042-07-19 09:15:30 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Encrypting File System;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000ccbJ6AAI | 8559669 | t | f | f | f | f | f | f | t | f | Docaposte Certinomis SAS | Certinomis - Root CA | Certinomis - Root CA | Root Certificate | Root Certificate | 2A99F5BC1174B73CBB1D620884E01C34E51CCB3978DA125F0E33268883BF4158 | 2A99F5BC1174B73CBB1D620884E01C34E51CCB3978DA125F0E33268883BF4158 | 2033.10.21 | 2033-10-21 09:17:18 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWWxAAO | 9595461 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | Certplus Root CA G1 | Certplus Root CA G1 | Root Certificate | Root Certificate | 152A402BFCDF2CD548054D2275B39C7FCA3EC0978078B0F0EA76E561A6C7433E | 152A402BFCDF2CD548054D2275B39C7FCA3EC0978078B0F0EA76E561A6C7433E | 2038.01.15 | 2038-01-15 00:00:00 | Client Authentication;Code Signing;Document Signing;Encrypting File System;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWZSAA4 | 9595448 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | Certplus Root CA G2 | Certplus Root CA G2 | Root Certificate | Root Certificate | 6CC05041E6445E74696C4CFBC9F80F543B7EABBB44B4CE6F787C6A9971C42F17 | 6CC05041E6445E74696C4CFBC9F80F543B7EABBB44B4CE6F787C6A9971C42F17 | 2038.01.15 | 2038-01-15 00:00:00 | Client Authentication;Code Signing;Document Signing;Encrypting File System;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000HshELAAZ | 3971 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | Class 2 Primary CA | Class 2 Primary CA | Root Certificate | Root Certificate | 0F993C8AEF97BAAF5687140ED59AD1821BB4AFACF0AA9A58B5D57A338A3AFBCB | 0F993C8AEF97BAAF5687140ED59AD1821BB4AFACF0AA9A58B5D57A338A3AFBCB | 2019.07.06 | 2019-07-06 23:59:59 | EV Server Authentication;EV Server Authentication | |||||||||
001o000000rGWSqAAO | 8989060 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | Class 3P Primary CA | Class 3P Primary CA | Root Certificate | Root Certificate | CCC89489371BAD111C90619BEA240A2E6DADD99F9F6E1D4D41E58ED6DE3D0285 | CCC89489371BAD111C90619BEA240A2E6DADD99F9F6E1D4D41E58ED6DE3D0285 | 2019.07.06 | 2019-07-06 23:59:59 | EV Server Authentication | |||||||||
001o000000rGWUwAAO | 8989055 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | Class 3 Primary CA | Class 3 Primary CA | Root Certificate | Root Certificate | C1B12F480020336E5B04F520BC19C2E2E10AB42C9D9235F05CBEC33FFA4D4DEA | C1B12F480020336E5B04F520BC19C2E2E10AB42C9D9235F05CBEC33FFA4D4DEA | 2019.07.06 | 2019-07-06 23:59:59 | EV Server Authentication | |||||||||
001o000000rGWVBAA4 | 8989056 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | Class 3TS Primary CA | Class 3TS Primary CA | Root Certificate | Root Certificate | CE7DD096C8FDE2BF5C438EDB574BD6454385334EE8FF106C0F93D5051BE6BAC3 | CE7DD096C8FDE2BF5C438EDB574BD6454385334EE8FF106C0F93D5051BE6BAC3 | 2019.07.06 | 2019-07-06 23:59:59 | EV Server Authentication | |||||||||
001o000000rGWUIAA4 | 12624857 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | KEYNECTIS ROOT CA | KEYNECTIS ROOT CA | Root Certificate | Root Certificate | 4210F199499A9AC33C8DE02BA6DBAA14408BDD8A6E324689C1922D069715A332 | 4210F199499A9AC33C8DE02BA6DBAA14408BDD8A6E324689C1922D069715A332 | 2020.05.26 | 2020-05-26 00:00:00 | EV Server Authentication | |||||||||
001o000000rGWbTAAW | 9595266 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | OpenTrust Root CA G2 | OpenTrust Root CA G2 | Root Certificate | Root Certificate | 27995829FE6A7515C1BFE848F9C4761DB16C225929257BF40D0894F29EA8BAF2 | 27995829FE6A7515C1BFE848F9C4761DB16C225929257BF40D0894F29EA8BAF2 | 2038.01.15 | 2038-01-15 00:00:00 | Client Authentication;Code Signing;Document Signing;Encrypting File System;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWapAAG | 9697330 | t | f | f | f | f | f | f | t | f | DocuSign (OpenTrust/Keynectis) | OpenTrust Root CA G3 | OpenTrust Root CA G3 | Root Certificate | Root Certificate | B7C36231706E81078C367CB896198F1E3208DD926949DD8F5709A410F75B6292 | B7C36231706E81078C367CB896198F1E3208DD926949DD8F5709A410F75B6292 | 2038.01.15 | 2038-01-15 00:00:00 | Client Authentication;Code Signing;Document Signing;Encrypting File System;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0018Z000033cdmEQAQ | 9609658147 | t | f | f | f | f | f | f | t | t | D-Trust | D-TRUST BR Root CA 2 2023 | D-TRUST BR Root CA 2 2023 | Root Certificate | Root Certificate | 0552E6F83FDF65E8FA9670E666DF28A4E21340B510CBE52566F97C4FB94B2BD1 | 0552E6F83FDF65E8FA9670E666DF28A4E21340B510CBE52566F97C4FB94B2BD1 | 2038.05.09 | 2038-05-09 08:56:30 | Client Authentication;Server Authentication | Websites | ||||||||
0018Z000033cdRMQAY | 9609659279 | t | f | f | f | f | f | f | t | t | D-Trust | D-TRUST EV Root CA 2 2023 | D-TRUST EV Root CA 2 2023 | Root Certificate | Root Certificate | 8E8221B2E7D4007836A1672F0DCC299C33BC07D316F132FA1A206D587150F1CE | 8E8221B2E7D4007836A1672F0DCC299C33BC07D316F132FA1A206D587150F1CE | 2038.05.09 | 2038-05-09 09:10:32 | Client Authentication;Server Authentication | Websites | ||||||||
0014o00001l02oYAAQ | 3699642382 | t | f | f | f | f | f | f | t | t | D-TRUST | D-TRUST BR Root CA 1 2020 | D-TRUST BR Root CA 1 2020 | Root Certificate | Root Certificate | E59AAA816009C22BFF5B25BAD37DF306F049797C1F81D85AB089E657BD8F0044 | E59AAA816009C22BFF5B25BAD37DF306F049797C1F81D85AB089E657BD8F0044 | 2035.02.11 | 2035-02-11 09:44:59 | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | ||||||
0014o00001l02xVAAQ | 3699645135 | t | f | f | f | f | f | f | t | t | D-TRUST | D-TRUST EV Root CA 1 2020 | D-TRUST EV Root CA 1 2020 | Root Certificate | Root Certificate | 08170D1AA36453901A2F959245E347DB0C8D37ABAABC56B81AA100DC958970DB | 08170D1AA36453901A2F959245E347DB0C8D37ABAABC56B81AA100DC958970DB | 2035.02.11 | 2035-02-11 09:59:59 | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | ||||||
001o000000rGWafAAG | 12726449 | t | f | f | f | f | t | f | t | t | D-TRUST | D-TRUST Root CA 3 2013 | D-TRUST Root CA 3 2013 | Root Certificate | Root Certificate | A1A86D04121EB87F027C66F53303C28E5739F943FC84B38AD6AF009035DD9457 | A1A86D04121EB87F027C66F53303C28E5739F943FC84B38AD6AF009035DD9457 | 2028.09.20 | 2028-09-20 08:25:51 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email | ||||||||
001o000000HshEfAAJ | 133226 | t | f | f | f | f | t | f | t | t | D-TRUST | D-TRUST Root Class 3 CA 2 2009 | D-TRUST Root Class 3 CA 2 2009 | Root Certificate | Root Certificate | 49E7A442ACF0EA6287050054B52564B650E4F49E42E348D6AA38E039E957B1C1 | 49E7A442ACF0EA6287050054B52564B650E4F49E42E348D6AA38E039E957B1C1 | 2029.11.05 | 2029-11-05 08:35:58 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000HshEgAAJ | 581333 | t | f | f | f | f | t | t | t | t | D-TRUST | D-TRUST Root Class 3 CA 2 EV 2009 | D-TRUST Root Class 3 CA 2 EV 2009 | Root Certificate | Root Certificate | EEC5496B988CE98625B934092EEC2908BED0B0F316C2D4730C84EAF1F3D34881 | EEC5496B988CE98625B934092EEC2908BED0B0F316C2D4730C84EAF1F3D34881 | 2029.11.05 | 2029-11-05 08:50:46 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
0018Z00002ffFr2QAE | 7084454904 | t | f | f | f | f | f | f | t | t | D-TRUST | D-Trust SBR Root CA 1 2022 | D-Trust SBR Root CA 1 2022 | Root Certificate | Root Certificate | D92C171F5CF890BA428019292927FE22F3207FD2B54449CB6F675AF4922146E2 | D92C171F5CF890BA428019292927FE22F3207FD2B54449CB6F675AF4922146E2 | 2037.07.06 | 2037-07-06 11:29:59 | Secure Email | |||||||||
0018Z00002ffFsoQAE | 7084450618 | t | f | f | f | f | f | f | t | t | D-TRUST | D-Trust SBR Root CA 2 2022 | D-Trust SBR Root CA 2 2022 | Root Certificate | Root Certificate | DBA84DD7EF622D485463A90137EA4D574DF8550928F6AFA03B4D8B1141E636CC | DBA84DD7EF622D485463A90137EA4D574DF8550928F6AFA03B4D8B1141E636CC | 2037.07.07 | 2037-07-07 07:29:59 | Secure Email | |||||||||
001o000000rGWg4AAG | 12722563 | t | f | f | f | f | f | f | t | f | Echoworx | Echoworx Root CA2 | Echoworx Root CA2 | Root Certificate | Root Certificate | 6639D13CAB85DF1AD9A23C443B3A60901E2B138D456FA71183578108884EC6BF | 6639D13CAB85DF1AD9A23C443B3A60901E2B138D456FA71183578108884EC6BF | 2030.10.07 | 2030-10-07 10:49:13 | Client Authentication;Document Signing;Secure Email | |||||||||
001o000000rGWXlAAO | 44484 | t | f | f | f | f | f | f | t | f | e-commerce monitoring GmbH | GLOBALTRUST | GLOBALTRUST | Root Certificate | Root Certificate | 5E3571F33F45A7DF1537A68B5FFB9E036AF9D2F5BC4C9717130DC43D7175AAC7 | 5E3571F33F45A7DF1537A68B5FFB9E036AF9D2F5BC4C9717130DC43D7175AAC7 | 2036.09.18 | 2036-09-18 14:12:35 | Client Authentication;Code Signing;Document Signing;IP security IKE intermediate;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001EGsuFQAT | 362150600 | t | f | f | f | f | f | f | t | f | e-commerce monitoring GmbH | GLOBALTRUST 2015 | GLOBALTRUST 2015 | Root Certificate | Root Certificate | 416B1F9E84E74C1D19B23D8D7191C6AD81246E641601F599132729F507BEB3CC | 416B1F9E84E74C1D19B23D8D7191C6AD81246E641601F599132729F507BEB3CC | 2040.06.10 | 2040-06-10 00:00:00 | Client Authentication;Code Signing;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001W34QZQAZ | 2517719600 | t | f | f | f | f | t | t | t | f | e-commerce monitoring GmbH | GLOBALTRUST 2020 | GLOBALTRUST 2020 | Root Certificate | Root Certificate | 9A296A5182D1D451A2E37F439B74DAAFA267523329F90F9A0D2007C334E23C9A | 9A296A5182D1D451A2E37F439B74DAAFA267523329F90F9A0D2007C334E23C9A | 2040.06.10 | 2040-06-10 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Client Authentication;Code Signing;Document Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||
001o000000vmkxHAAQ | 12979945 | t | f | f | f | f | f | f | t | f | EDICOM | CAEDICOM Root | CAEDICOM Root | Root Certificate | Root Certificate | 1501F89C5C4DCF36CF588A17C9FD7CFCEB9EE01E8729BE355E25DE80EB6284B4 | 1501F89C5C4DCF36CF588A17C9FD7CFCEB9EE01E8729BE355E25DE80EB6284B4 | 2034.05.21 | 2034-05-21 10:20:00 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001HmHTbQAN | 713606976 | t | f | f | f | f | f | f | t | t | eMudhra Technologies Limited | emSign ECC Root CA - C3 | emSign ECC Root CA - C3 | Root Certificate | Root Certificate | BC4D809B15189D78DB3E1D8CF4F9726A795DA1643CA5F1358E1DDB0EDC0D7EB3 | BC4D809B15189D78DB3E1D8CF4F9726A795DA1643CA5F1358E1DDB0EDC0D7EB3 | 2043.02.18 | 2043-02-18 18:30:00 | Client Authentication;Code Signing;Document Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | ||||||||
0011J00001HmHT7QAN | 713604941 | t | f | f | f | f | t | f | t | t | eMudhra Technologies Limited | emSign ECC Root CA - G3 | emSign ECC Root CA - G3 | Root Certificate | Root Certificate | 86A1ECBA089C4A8D3BBE2734C612BA341D813E043CF9E8A862CD5C57A36BBE6B | 86A1ECBA089C4A8D3BBE2734C612BA341D813E043CF9E8A862CD5C57A36BBE6B | 2043.02.18 | 2043-02-18 18:30:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Document Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0011J00001HmHTCQA3 | 713593222 | t | f | f | f | f | f | f | t | t | eMudhra Technologies Limited | emSign Root CA - C1 | emSign Root CA - C1 | Root Certificate | Root Certificate | 125609AA301DA0A249B97A8239CB6A34216F44DCAC9F3954B14292F2E8C8608F | 125609AA301DA0A249B97A8239CB6A34216F44DCAC9F3954B14292F2E8C8608F | 2043.02.18 | 2043-02-18 18:30:00 | Client Authentication;Document Signing;EV Server Authentication;Secure Email;Server Authentication | Email;Websites | ||||||||
0011J00001HmHTMQA3 | 713602413 | t | f | f | f | f | f | f | t | f | eMudhra Technologies Limited | emSign Root CA - C2 | emSign Root CA - C2 | Root Certificate | Root Certificate | 46CD083B47E80402028DF493960EA19C85FE851950D5165F1C7DA4FAA951E2F8 | 46CD083B47E80402028DF493960EA19C85FE851950D5165F1C7DA4FAA951E2F8 | 2043.02.18 | 2043-02-18 18:30:00 | Code Signing;EV Server Authentication;Time Stamping | |||||||||
0011J00001HmHSsQAN | 713599963 | t | f | f | f | f | t | t | t | t | eMudhra Technologies Limited | emSign Root CA - G1 | emSign Root CA - G1 | Root Certificate | Root Certificate | 40F6AF0346A99AA1CD1D555A4E9CCE62C7F9634603EE406615833DC8C8D00367 | 40F6AF0346A99AA1CD1D555A4E9CCE62C7F9634603EE406615833DC8C8D00367 | 2043.02.18 | 2043-02-18 18:30:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Document Signing;EV Server Authentication;Secure Email;Server Authentication | Email;Websites | |||||
0011J00001HmHT2QAN | 713596836 | t | f | f | f | f | f | f | t | f | eMudhra Technologies Limited | emSign Root CA - G2 | emSign Root CA - G2 | Root Certificate | Root Certificate | 1AA0C2709E831BD6E3B5129A00BA41F7EEEF020872F1E6504BF0F6C3F24F3AF3 | 1AA0C2709E831BD6E3B5129A00BA41F7EEEF020872F1E6504BF0F6C3F24F3AF3 | 2043.02.18 | 2043-02-18 18:30:00 | Code Signing;EV Server Authentication;Time Stamping | |||||||||
0018Z000034Tj9tQAC | 9843141534 | t | f | f | f | f | f | f | t | f | Entrust | AffirmTrust 4K TLS Root CA - 2022 | AffirmTrust 4K TLS Root CA - 2022 | Root Certificate | Root Certificate | A7DEDF5A842167DD12FDAA0F2080E73295B8B8BEA71B2094EA0950945A482FC1 | A7DEDF5A842167DD12FDAA0F2080E73295B8B8BEA71B2094EA0950945A482FC1 | 2047.12.07 | 2047-12-07 17:05:48 | Client Authentication | |||||||||
001o000000HshDtAAJ | 1452345 | t | f | f | f | f | t | t | t | f | Entrust | AffirmTrust Commercial | AffirmTrust Commercial | Root Certificate | Root Certificate | 0376AB1D54C5F9803CE4B2E201A0EE7EEF7B57B636E8A93C9B8D4860C96F5FA7 | 0376AB1D54C5F9803CE4B2E201A0EE7EEF7B57B636E8A93C9B8D4860C96F5FA7 | 2030.12.31 | 2030-12-31 14:06:06 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||
001o000000HshDuAAJ | 18223 | t | f | f | f | f | t | t | t | f | Entrust | AffirmTrust Networking | AffirmTrust Networking | Root Certificate | Root Certificate | 0A81EC5A929777F145904AF38D5D509F66B5E2C58FCDB531058B0E17F3F0B41B | 0A81EC5A929777F145904AF38D5D509F66B5E2C58FCDB531058B0E17F3F0B41B | 2030.12.31 | 2030-12-31 14:08:24 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||
001o000000HshDvAAJ | 1073992 | t | f | f | f | f | t | t | t | f | Entrust | AffirmTrust Premium | AffirmTrust Premium | Root Certificate | Root Certificate | 70A73F7F376B60074248904534B11482D5BF0E698ECC498DF52577EBF2E93B9A | 70A73F7F376B60074248904534B11482D5BF0E698ECC498DF52577EBF2E93B9A | 2040.12.31 | 2040-12-31 14:10:36 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||
001o000000HshDwAAJ | 2842896 | t | f | f | f | f | t | t | t | f | Entrust | AffirmTrust Premium ECC | AffirmTrust Premium ECC | Root Certificate | Root Certificate | BD71FDF6DA97E4CF62D1647ADD2581B07D79ADF8397EB4ECBA9C5E8488821423 | BD71FDF6DA97E4CF62D1647ADD2581B07D79ADF8397EB4ECBA9C5E8488821423 | 2040.12.31 | 2040-12-31 14:20:24 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||
0018Z000034Tj8kQAC | 9843145351 | t | f | f | f | f | f | f | t | f | Entrust | Entrust 4K EV TLS Root CA - 2022 | Entrust 4K EV TLS Root CA - 2022 | Root Certificate | Root Certificate | 647987D98D52645DA4D3DE3B80771A0CE02B9B9285E6E86999882170744EC9AA | 647987D98D52645DA4D3DE3B80771A0CE02B9B9285E6E86999882170744EC9AA | 2047.12.07 | 2047-12-07 16:35:08 | Client Authentication;EV Server Authentication | |||||||||
0018Z000034Tj94QAC | 9843148833 | t | f | f | f | f | f | f | t | f | Entrust | Entrust 4K TLS Root CA - 2022 | Entrust 4K TLS Root CA - 2022 | Root Certificate | Root Certificate | DD6C44B39401B053DBE61120748BBB0F6056007665C168E5C286750EDC8DF129 | DD6C44B39401B053DBE61120748BBB0F6056007665C168E5C286750EDC8DF129 | 2047.12.07 | 2047-12-07 16:26:47 | Client Authentication | |||||||||
0018Z00002mL3TsQAK | 7672246883 | t | f | f | f | f | f | f | t | f | Entrust | Entrust Code Signing Root Certification Authority - CSBR1 | Entrust Code Signing Root Certification Authority - CSBR1 | Root Certificate | Root Certificate | B80847FDA453BF6ED876CA7BC046A2481909E15B6ED376E665E7AD09F3864E71 | B80847FDA453BF6ED876CA7BC046A2481909E15B6ED376E665E7AD09F3864E71 | 2040.12.30 | 2040-12-30 13:26:36 | Code Signing;Time Stamping | |||||||||
0018Z00002mL3U7QAK | 7719715342 | t | f | f | f | f | f | f | t | f | Entrust | Entrust Digital Signing Root Certification Authority - DSR1 | Entrust Digital Signing Root Certification Authority - DSR1 | Root Certificate | Root Certificate | E874FE2531EAE4A4B6B62F37496BBAE90EB1D8FC8CEDBEBB00A182CFACDC7E61 | E874FE2531EAE4A4B6B62F37496BBAE90EB1D8FC8CEDBEBB00A182CFACDC7E61 | 2040.12.30 | 2040-12-30 18:28:47 | Document Signing;Time Stamping | |||||||||
001o000000HshEmAAJ | 55 | t | f | f | f | f | t | f | t | t | Entrust | Entrust.net Certification Authority (2048) | Entrust.net Certification Authority (2048) | Root Certificate | Root Certificate | 6DC47172E01CBCB0BF62580D895FE2B8AC9AD4F873801E0C10B9C837D21EB177 | 6DC47172E01CBCB0BF62580D895FE2B8AC9AD4F873801E0C10B9C837D21EB177 | 2029.07.24 | 2029-07-24 14:15:12 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Time Stamping | ||||||||
0018Z000034Tj9OQAS | 9843150557 | t | f | f | f | f | f | f | t | f | Entrust | Entrust P384 EV TLS Root CA - 2022 | Entrust P384 EV TLS Root CA - 2022 | Root Certificate | Root Certificate | 937EF8F12276B3C7A3F58E345D09A6EFF01F862F8D2794441CD84D511825FA0C | 937EF8F12276B3C7A3F58E345D09A6EFF01F862F8D2794441CD84D511825FA0C | 2047.12.07 | 2047-12-07 16:46:44 | Client Authentication;EV Server Authentication | |||||||||
0018Z000034Tj8lQAC | 9843152392 | t | f | f | f | f | f | f | t | f | Entrust | Entrust P384 TLS Root CA - 2022 | Entrust P384 TLS Root CA - 2022 | Root Certificate | Root Certificate | 420332EF876EBE78F2AF5D28AAACDE24AAD0C10F8FFAAC469EFD7BD941929568 | 420332EF876EBE78F2AF5D28AAACDE24AAD0C10F8FFAAC469EFD7BD941929568 | 2047.12.07 | 2047-12-07 16:41:45 | Client Authentication | |||||||||
001o000000HshElAAJ | 574 | t | f | f | f | f | t | t | t | f | Entrust | Entrust Root Certification Authority | Entrust Root Certification Authority | Root Certificate | Root Certificate | 73C176434F1BC6D5ADF45B0E76E727287C8DE57616C1E6E6141A2B2CBC7D8E4C | 73C176434F1BC6D5ADF45B0E76E727287C8DE57616C1E6E6141A2B2CBC7D8E4C | 2026.11.27 | 2026-11-27 20:53:42 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;EV Server Authentication;IP security IKE intermediate;Secure Email;Time Stamping | |||||||
001o000000TNaMfAAL | 8658212 | t | f | f | f | f | t | t | t | t | Entrust | Entrust Root Certification Authority - EC1 | Entrust Root Certification Authority - EC1 | Root Certificate | Root Certificate | 02ED0EB28C14DA45165C566791700D6451D7FB56F0B2AB1D3B8EB070E56EDFF5 | 02ED0EB28C14DA45165C566791700D6451D7FB56F0B2AB1D3B8EB070E56EDFF5 | 2037.12.18 | 2037-12-18 15:55:36 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||
001o000000TNaDUAA1 | 580494 | t | f | f | f | f | t | t | t | t | Entrust | Entrust Root Certification Authority - G2 | Entrust Root Certification Authority - G2 | Root Certificate | Root Certificate | 43DF5774B03E7FEF5FE40D931A7BEDF1BB2E6B42738C4E6D3841103D3AA7F339 | 43DF5774B03E7FEF5FE40D931A7BEDF1BB2E6B42738C4E6D3841103D3AA7F339 | 2030.12.07 | 2030-12-07 17:55:54 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||
0011J00001HmHRGQA3 | 713609039 | t | f | f | f | f | t | t | t | t | Entrust | Entrust Root Certification Authority - G4 | Entrust Root Certification Authority - G4 | Root Certificate | Root Certificate | DB3517D1F6732A2D5AB97C533EC70779EE3270A62FB4AC4238372460E6F01E88 | DB3517D1F6732A2D5AB97C533EC70779EE3270A62FB4AC4238372460E6F01E88 | 2037.12.27 | 2037-12-27 11:41:16 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Client Authentication;Document Signing;EV Server Authentication;EV Server Authentication;Secure Email;Time Stamping | |||||||
0018Z000034Tj9sQAC | 9843154002 | t | f | f | f | f | f | f | t | f | Entrust | Entrust SMIME Root CA - 2022 | Entrust SMIME Root CA - 2022 | Root Certificate | Root Certificate | B7A41ED8096D62716BADC7F530942197A9E7E3175CE05D11D01E7AD6C12DCBA7 | B7A41ED8096D62716BADC7F530942197A9E7E3175CE05D11D01E7AD6C12DCBA7 | 2047.12.07 | 2047-12-07 17:00:46 | Client Authentication;Secure Email | |||||||||
001o000000HshEsAAJ | 7421805 | t | f | f | f | f | f | f | t | f | e-tugra | E-Tugra Certification Authority | E-Tugra Certification Authority | Root Certificate | Root Certificate | B0BFD52BB0D7D9BD92BF5D4DC13DA255C02C542F378365EA893911F55E55F23C | B0BFD52BB0D7D9BD92BF5D4DC13DA255C02C542F378365EA893911F55E55F23C | 2023.03.03 | 2023-03-03 12:09:48 | EV Server Authentication;EV Server Authentication | |||||||||
0011J00001W4TVEQA3 | 2605043398 | t | f | f | f | f | f | f | t | f | E-Tugra | E-Tugra Global Root CA ECC v3 | E-Tugra Global Root CA ECC v3 | Root Certificate | Root Certificate | 873F4685FA7F563625252E6D36BCD7F16FC24951F264E47E1B954F4908CDCA13 | 873F4685FA7F563625252E6D36BCD7F16FC24951F264E47E1B954F4908CDCA13 | 2045.03.12 | 2045-03-12 09:46:58 | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Server Authentication | |||||||||
0011J00001W4TT6QAN | 2605037174 | t | f | f | f | f | f | f | t | f | E-Tugra | E-Tugra Global Root CA RSA v3 | E-Tugra Global Root CA RSA v3 | Root Certificate | Root Certificate | EF66B0B10A3CDB9F2E3648C76BD2AF18EAD2BFE6F117655E28C4060DA1A3F4C2 | EF66B0B10A3CDB9F2E3648C76BD2AF18EAD2BFE6F117655E28C4060DA1A3F4C2 | 2045.03.12 | 2045-03-12 09:07:17 | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Server Authentication | |||||||||
001o000000HshE0AAJ | 705898 | t | f | f | f | f | t | f | t | t | Eviden | Atos TrustedRoot 2011 | Atos TrustedRoot 2011 | Root Certificate | Root Certificate | F356BEA244B7A91EB35D53CA9AD7864ACE018E2D35D5F8F96DDF68A6F41AA474 | F356BEA244B7A91EB35D53CA9AD7864ACE018E2D35D5F8F96DDF68A6F41AA474 | 2030.12.31 | 2030-12-31 23:59:59 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0018Z00002ferAkQAI | 7077686919 | t | f | f | f | f | t | f | t | t | Eviden | Atos TrustedRoot Root CA ECC G2 2020 | Atos TrustedRoot Root CA ECC G2 2020 | Root Certificate | Root Certificate | E38655F4B0190C84D3B3893D840A687E190A256D98052F159E6D4A39F589A6EB | E38655F4B0190C84D3B3893D840A687E190A256D98052F159E6D4A39F589A6EB | 2040.12.10 | 2040-12-10 08:39:09 | clientAuth;emailProtection | Client Authentication;Document Signing;Secure Email | ||||||||
0018Z00002ferBJQAY | 7077688374 | t | f | f | f | f | t | f | t | t | Eviden | Atos TrustedRoot Root CA ECC TLS 2021 | Atos TrustedRoot Root CA ECC TLS 2021 | Root Certificate | Root Certificate | B2FAE53E14CCD7AB9212064701AE279C1D8988FACB775FA8A008914E663988A8 | B2FAE53E14CCD7AB9212064701AE279C1D8988FACB775FA8A008914E663988A8 | 2041.04.17 | 2041-04-17 09:26:22 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | |||||
0018Z00002fer8VQAQ | 7077690248 | t | f | f | f | f | t | f | t | t | Eviden | Atos TrustedRoot Root CA RSA G2 2020 | Atos TrustedRoot Root CA RSA G2 2020 | Root Certificate | Root Certificate | 78833A783BB2986C254B9370D3C20E5EBA8FA7840CBF63FE17297A0B0119685E | 78833A783BB2986C254B9370D3C20E5EBA8FA7840CBF63FE17297A0B0119685E | 2040.12.10 | 2040-12-10 08:41:22 | clientAuth;emailProtection | Client Authentication;Document Signing;Secure Email | ||||||||
0018Z00002ferAaQAI | 7077692599 | t | f | f | f | f | t | f | t | t | Eviden | Atos TrustedRoot Root CA RSA TLS 2021 | Atos TrustedRoot Root CA RSA TLS 2021 | Root Certificate | Root Certificate | 81A9088EA59FB364C548A6F85559099B6F0405EFBF18E5324EC9F457BA00112F | 81A9088EA59FB364C548A6F85559099B6F0405EFBF18E5324EC9F457BA00112F | 2041.04.17 | 2041-04-17 09:21:09 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | |||||
0011J00001J0qjtQAB | 815786948 | t | f | f | f | f | f | f | t | f | Financijska agencija (Fina) | Fina Root CA | Fina Root CA | Root Certificate | Root Certificate | 5AB4FCDB180B5B6AF0D262A2375A2C77D25602015D96648756611E2E78C53AD3 | 5AB4FCDB180B5B6AF0D262A2375A2C77D25602015D96648756611E2E78C53AD3 | 2035.11.24 | 2035-11-24 19:37:30 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWSgAAO | 9490524 | t | f | f | f | f | t | f | t | t | Global Digital Cybersecurity Authority Co., Ltd. (Formerly Guang Dong Certificate Authority (GDCA)) | GDCA TrustAUTH R5 ROOT | GDCA TrustAUTH R5 ROOT | Root Certificate | Root Certificate | BFFF8FD04433487D6A8AA60C1A29767A9FC2BBB05E420F713A13B992891D3893 | BFFF8FD04433487D6A8AA60C1A29767A9FC2BBB05E420F713A13B992891D3893 | 2040.12.31 | 2040-12-31 15:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Document Signing;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000rGWc7AAG | 19392276 | t | f | f | f | f | t | t | t | t | GlobalSign nv-sa | GlobalSign | GlobalSign | Root Certificate | Root Certificate | 2CABEAFE37D06CA22ABA7391C0033D25982952C453647349763A3AB5AD6CCF69 | 2CABEAFE37D06CA22ABA7391C0033D25982952C453647349763A3AB5AD6CCF69 | 2034.12.10 | 2034-12-10 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Document Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshF3AAJ | 443850 | t | f | f | f | f | t | t | t | t | GlobalSign nv-sa | GlobalSign | GlobalSign | Root Certificate | Root Certificate | CBB522D7B7F127AD6A0113865BDF1CD4102E7D0759AF635A7CF4720DC963C53B | CBB522D7B7F127AD6A0113865BDF1CD4102E7D0759AF635A7CF4720DC963C53B | 2029.03.18 | 2029-03-18 10:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000OrML1AAN | 8587635 | t | f | f | f | f | t | t | t | t | GlobalSign nv-sa | GlobalSign | GlobalSign | Root Certificate | Root Certificate | 179FBC148A3DD00FD24EA13458CC43BFA7F59C8182D783A513F6EBEC100C8924 | 179FBC148A3DD00FD24EA13458CC43BFA7F59C8182D783A513F6EBEC100C8924 | 2038.01.19 | 2038-01-19 03:14:07 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0014o00001ljhALAAY | 2860906009 | t | f | f | f | f | f | f | t | f | GlobalSign nv-sa | GlobalSign Client Authentication Root E45 | GlobalSign Client Authentication Root E45 | Root Certificate | Root Certificate | 8B0F0FAA2C00FE0532A8A54E7BC5FD139C1922C4F10F0B16E10FB8BE1A634964 | 8B0F0FAA2C00FE0532A8A54E7BC5FD139C1922C4F10F0B16E10FB8BE1A634964 | 2045.03.18 | 2045-03-18 00:00:00 | Client Authentication | |||||||||
0014o00001ljhAQAAY | 2860903658 | t | f | f | f | f | f | f | t | f | GlobalSign nv-sa | GlobalSign Client Authentication Root R45 | GlobalSign Client Authentication Root R45 | Root Certificate | Root Certificate | 165C7E810BD37C1D57CE9849ACCD500E5CB01EEA37DC550DB07E598AAD2474A8 | 165C7E810BD37C1D57CE9849ACCD500E5CB01EEA37DC550DB07E598AAD2474A8 | 2045.03.18 | 2045-03-18 00:00:00 | Client Authentication | |||||||||
0014o00001ljhABAAY | 2860905328 | t | f | f | f | f | f | f | t | f | GlobalSign nv-sa | GlobalSign Code Signing Root E45 | GlobalSign Code Signing Root E45 | Root Certificate | Root Certificate | 26C6C5FD4928FD57A8A4C5724FDD279745869C60C338E262FFE901C31BD1DB2B | 26C6C5FD4928FD57A8A4C5724FDD279745869C60C338E262FFE901C31BD1DB2B | 2045.03.18 | 2045-03-18 00:00:00 | Code Signing | |||||||||
0014o00001ljh8yAAA | 2860906008 | t | f | f | f | f | f | f | t | f | GlobalSign nv-sa | GlobalSign Code Signing Root R45 | GlobalSign Code Signing Root R45 | Root Certificate | Root Certificate | 7B9D553E1C92CB6E8803E137F4F287D4363757F5D44B37D52F9FCA22FB97DF86 | 7B9D553E1C92CB6E8803E137F4F287D4363757F5D44B37D52F9FCA22FB97DF86 | 2045.03.18 | 2045-03-18 00:00:00 | Code Signing;EV Server Authentication | |||||||||
0014o00001ljh9NAAQ | 2860906741 | t | f | f | f | f | f | f | t | f | GlobalSign nv-sa | GlobalSign Document Signing Root E45 | GlobalSign Document Signing Root E45 | Root Certificate | Root Certificate | F86973BDD0514735E10C1190D0345BF89C77E1C4ADBD3F65963B803FD3C9E1FF | F86973BDD0514735E10C1190D0345BF89C77E1C4ADBD3F65963B803FD3C9E1FF | 2045.03.18 | 2045-03-18 00:00:00 | Document Signing | |||||||||
0014o00001ljh9wAAA | 2860906007 | t | f | f | f | f | f | f | t | f | GlobalSign nv-sa | GlobalSign Document Signing Root R45 | GlobalSign Document Signing Root R45 | Root Certificate | Root Certificate | 38BE6C7EEB4547D82B9287F243AF32A9DEEB5DC5C9A87A0056F938D91B456A5A | 38BE6C7EEB4547D82B9287F243AF32A9DEEB5DC5C9A87A0056F938D91B456A5A | 2045.03.18 | 2045-03-18 00:00:00 | Document Signing | |||||||||
001o000000HshF4AAJ | 88 | t | f | f | f | f | t | f | t | t | GlobalSign nv-sa | GlobalSign Root CA | GlobalSign Root CA | Root Certificate | Root Certificate | EBD41040E4BB3EC742C9E381D31EF2A41A48B6685C96E7CEF3C1DF6CD4331C99 | EBD41040E4BB3EC742C9E381D31EF2A41A48B6685C96E7CEF3C1DF6CD4331C99 | 2028.01.28 | 2028-01-28 12:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security IKE intermediate;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | ||||||||
0011J00001PqKB3QAN | 1730335161 | t | f | f | f | f | t | t | t | t | GlobalSign nv-sa | GlobalSign Root E46 | GlobalSign Root E46 | Root Certificate | Root Certificate | CBB9C44D84B8043E1050EA31A69F514955D7BFD2E2C6B49301019AD61D9F5058 | CBB9C44D84B8043E1050EA31A69F514955D7BFD2E2C6B49301019AD61D9F5058 | 2046.03.20 | 2046-03-20 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
0011J00001PqKAeQAN | 1730333109 | t | f | f | f | f | t | t | t | t | GlobalSign nv-sa | GlobalSign Root R46 | GlobalSign Root R46 | Root Certificate | Root Certificate | 4FA3126D8D3A11D1C4855A4F807CBAD6CF919D3A5A88B03BEA2C6372D93C40C9 | 4FA3126D8D3A11D1C4855A4F807CBAD6CF919D3A5A88B03BEA2C6372D93C40C9 | 2046.03.20 | 2046-03-20 00:00:00 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
0011J00001Y6TraQAF | 2858272562 | t | f | f | f | f | t | f | t | t | GlobalSign nv-sa | GlobalSign Secure Mail Root E45 | GlobalSign Secure Mail Root E45 | Root Certificate | Root Certificate | 5CBF6FB81FD417EA4128CD6F8172A3C9402094F74AB2ED3A06B4405D04F30B19 | 5CBF6FB81FD417EA4128CD6F8172A3C9402094F74AB2ED3A06B4405D04F30B19 | 2045.03.18 | 2045-03-18 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email | ||||||||
0011J00001Y5qs5QAB | 2833787760 | t | f | f | f | f | t | f | t | t | GlobalSign nv-sa | GlobalSign Secure Mail Root R45 | GlobalSign Secure Mail Root R45 | Root Certificate | Root Certificate | 319AF0A7729E6F89269C131EA6A3A16FCD86389FDCAB3C47A4A675C161A3F974 | 319AF0A7729E6F89269C131EA6A3A16FCD86389FDCAB3C47A4A675C161A3F974 | 2045.03.18 | 2045-03-18 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email | ||||||||
0014o00001ljh8jAAA | 2860905713 | t | f | f | f | f | f | f | t | f | GlobalSign nv-sa | GlobalSign Timestamping Root R45 | GlobalSign Timestamping Root R45 | Root Certificate | Root Certificate | 2BCBBFD66282C680491C8CD7735FDBBAB7A8079B127BEC60C535976834399AF7 | 2BCBBFD66282C680491C8CD7735FDBBAB7A8079B127BEC60C535976834399AF7 | 2045.03.18 | 2045-03-18 00:00:00 | Time Stamping | |||||||||
001o000000HshF5AAJ | 39 | t | f | f | f | f | t | f | t | f | GoDaddy | Go Daddy Class 2 Certification Authority | Go Daddy Class 2 Certification Authority | Root Certificate | Root Certificate | C3846BF24B9E93CA64274C0EC67C1ECC5E024FFCACD2D74019350E81FE546AE4 | C3846BF24B9E93CA64274C0EC67C1ECC5E024FFCACD2D74019350E81FE546AE4 | 2034.06.29 | 2034-06-29 17:06:20 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication | ||||||||
001o000000HshF6AAJ | 548406 | t | f | f | f | f | t | t | t | t | GoDaddy | Go Daddy Root Certificate Authority - G2 | Go Daddy Root Certificate Authority - G2 | Root Certificate | Root Certificate | 45140B3247EB9CC8C5B4F0D7B53091F73292089E6E5A63E2749DD3ACA9198EDA | 45140B3247EB9CC8C5B4F0D7B53091F73292089E6E5A63E2749DD3ACA9198EDA | 2037.12.31 | 2037-12-31 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000HshFkAAJ | 27 | t | f | f | f | f | t | f | t | f | GoDaddy | Starfield Class 2 Certification Authority | Starfield Class 2 Certification Authority | Root Certificate | Root Certificate | 1465FA205397B876FAA6F0A9958E5590E40FCC7FAA4FB7C2C8677521FB5FB658 | 1465FA205397B876FAA6F0A9958E5590E40FCC7FAA4FB7C2C8677521FB5FB658 | 2034.06.29 | 2034-06-29 17:39:16 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication | ||||||||
001o000000HshFlAAJ | 221795 | t | f | f | f | f | t | t | t | t | GoDaddy | Starfield Root Certificate Authority - G2 | Starfield Root Certificate Authority - G2 | Root Certificate | Root Certificate | 2CE1CB0BF9D2F9E102993FBE215152C3B2DD0CABDE1C68E5319B839154DBB7F5 | 2CE1CB0BF9D2F9E102993FBE215152C3B2DD0CABDE1C68E5319B839154DBB7F5 | 2037.12.31 | 2037-12-31 23:59:59 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000rGWTZAA4 | 9023560 | t | f | f | f | f | f | f | t | f | GoDaddy | Starfield Services Root Certificate Authority | Starfield Services Root Certificate Authority | Root Certificate | Root Certificate | B5BD2CB79CBD1907298D6BDF4842E516D8C78FA6FC96D25F71AF814E16CC245E | B5BD2CB79CBD1907298D6BDF4842E516D8C78FA6FC96D25F71AF814E16CC245E | 2029.12.31 | 2029-12-31 23:59:59 | EV Server Authentication | |||||||||
001o000000OrMKcAAN | 8644166 | t | f | f | f | f | f | f | t | f | Google Trust Services LLC | GlobalSign | GlobalSign | Root Certificate | Root Certificate | BEC94911C2955676DB6C0A550986D76E3BA005667C442C9762B4FBB773DE228C | BEC94911C2955676DB6C0A550986D76E3BA005667C442C9762B4FBB773DE228C | 2038.01.19 | 2038-01-19 03:14:07 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001jj0zoQAA | 3448815556 | t | f | f | f | f | t | f | t | t | Google Trust Services LLC | GlobalSign | GlobalSign | Root Certificate | Root Certificate | B085D70B964F191A73E4AF0D54AE7A0E07AAFDAF9B71DD0862138AB7325A24A2 | B085D70B964F191A73E4AF0D54AE7A0E07AAFDAF9B71DD0862138AB7325A24A2 | 2038.01.19 | 2038-01-19 03:14:07 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Email;Websites | |||||
001o000000HshF2AAJ | 14 | t | f | f | f | f | f | f | t | f | Google Trust Services LLC | GlobalSign | GlobalSign | Root Certificate | Root Certificate | CA42DD41745FD0B81EB902362CF9D8BF719DA1BD1B1EFC946F5B4C99F42C1B9E | CA42DD41745FD0B81EB902362CF9D8BF719DA1BD1B1EFC946F5B4C99F42C1B9E | 2021.12.15 | 2021-12-15 08:00:00 | Client Authentication;Encrypting File System;IP security IKE intermediate;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001jj0ztQAA | 3263026969 | t | f | f | f | f | t | f | t | t | Google Trust Services LLC | GTS Root R1 | GTS Root R1 | Root Certificate | Root Certificate | D947432ABDE7B7FA90FC2E6B59101B1280E0E1C7E4E40FA3C6887FFF57A7F4CF | D947432ABDE7B7FA90FC2E6B59101B1280E0E1C7E4E40FA3C6887FFF57A7F4CF | 2036.06.22 | 2036-06-22 00:00:00 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Email;Websites | |||||
001o0000015plOBAAY | 139646520 | t | f | f | f | f | f | f | t | f | Google Trust Services LLC | GTS Root R1 | GTS Root R1 | Root Certificate | Root Certificate | 2A575471E31340BC21581CBD2CF13E158463203ECE94BCF9D3CC196BF09A5472 | 2A575471E31340BC21581CBD2CF13E158463203ECE94BCF9D3CC196BF09A5472 | 2036.06.22 | 2036-06-22 00:00:00 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o0000015pm3eAAA | 139646522 | t | f | f | f | f | f | f | t | f | Google Trust Services LLC | GTS Root R2 | GTS Root R2 | Root Certificate | Root Certificate | C45D7BB08E6D67E62E4235110B564E5F78FD92EF058C840AEA4E6455D7585C60 | C45D7BB08E6D67E62E4235110B564E5F78FD92EF058C840AEA4E6455D7585C60 | 2036.06.22 | 2036-06-22 00:00:00 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001jj103QAA | 3448820660 | t | f | f | f | f | t | f | t | t | Google Trust Services LLC | GTS Root R2 | GTS Root R2 | Root Certificate | Root Certificate | 8D25CD97229DBF70356BDA4EB3CC734031E24CF00FAFCFD32DC76EB5841C7EA8 | 8D25CD97229DBF70356BDA4EB3CC734031E24CF00FAFCFD32DC76EB5841C7EA8 | 2036.06.22 | 2036-06-22 00:00:00 | clientAuth;emailProtection;serverAuth | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Email;Websites | |||||
0011J00001jiu6OQAQ | 3448822382 | t | f | f | f | f | t | f | t | t | Google Trust Services LLC | GTS Root R3 | GTS Root R3 | Root Certificate | Root Certificate | 34D8A73EE208D9BCDB0D956520934B4E40E69482596E8B6F73C8426B010A6F48 | 34D8A73EE208D9BCDB0D956520934B4E40E69482596E8B6F73C8426B010A6F48 | 2036.06.22 | 2036-06-22 00:00:00 | clientAuth;emailProtection;serverAuth | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Email;Websites | |||||
001o0000015pm5gAAA | 139646519 | t | f | f | f | f | f | f | t | f | Google Trust Services LLC | GTS Root R3 | GTS Root R3 | Root Certificate | Root Certificate | 15D5B8774619EA7D54CE1CA6D0B0C403E037A917F131E8A04E1E6B7A71BABCE5 | 15D5B8774619EA7D54CE1CA6D0B0C403E037A917F131E8A04E1E6B7A71BABCE5 | 2036.06.22 | 2036-06-22 00:00:00 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o0000015pm9oAAA | 139646525 | t | f | f | f | f | f | f | t | f | Google Trust Services LLC | GTS Root R4 | GTS Root R4 | Root Certificate | Root Certificate | 71CCA5391F9E794B04802530B363E121DA8A3043BB26662FEA4DCA7FC951A4BD | 71CCA5391F9E794B04802530B363E121DA8A3043BB26662FEA4DCA7FC951A4BD | 2036.06.22 | 2036-06-22 00:00:00 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001jj108QAA | 3263026968 | t | f | f | f | f | t | f | t | t | Google Trust Services LLC | GTS Root R4 | GTS Root R4 | Root Certificate | Root Certificate | 349DFA4058C5E263123B398AE795573C4E1313C83FE68F93556CD5E8031B3C7D | 349DFA4058C5E263123B398AE795573C4E1313C83FE68F93556CD5E8031B3C7D | 2036.06.22 | 2036-06-22 00:00:00 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Email;Websites | |||||
001o000000rGWb4AAG | 845998 | t | f | f | f | f | f | f | t | f | Government of Brazil, Instituto Nacional de Tecnologia da Informação (ITI) | Autoridade Certificadora Raiz Brasileira v1 | Autoridade Certificadora Raiz Brasileira v1 | Root Certificate | Root Certificate | CBD8ED38D4A2D677D453D70DD8890AF4F6374CBA6299943F1AB3A6936C6FD795 | CBD8ED38D4A2D677D453D70DD8890AF4F6374CBA6299943F1AB3A6936C6FD795 | 2021.07.29 | 2021-07-29 19:17:10 | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Time Stamping | |||||||||
0011J00001kYaSAQA0 | 3396721343 | t | f | f | f | f | f | f | t | f | Government of Brazil, Instituto Nacional de Tecnologia da Informação (ITI) | Autoridade Certificadora Raiz Brasileira v10 | Autoridade Certificadora Raiz Brasileira v10 | Root Certificate | Root Certificate | 6E0BFF069A26994C15DE2C4888CC54AF84882E5495B7FBF66BE9CCFFEC7489F6 | 6E0BFF069A26994C15DE2C4888CC54AF84882E5495B7FBF66BE9CCFFEC7489F6 | 2032.07.01 | 2032-07-01 12:00:59 | Client Authentication;Document Signing;Server Authentication | |||||||||
001o000000rGWeIAAW | 4573 | t | f | f | f | f | f | f | t | f | Government of Brazil, Instituto Nacional de Tecnologia da Informação (ITI) | Autoridade Certificadora Raiz Brasileira v2 | Autoridade Certificadora Raiz Brasileira v2 | Root Certificate | Root Certificate | FB47D92A9909FD4FA9BEC02737543E1F3514CED747407A8D9CFA397B0915067C | FB47D92A9909FD4FA9BEC02737543E1F3514CED747407A8D9CFA397B0915067C | 2023.06.21 | 2023-06-21 19:04:57 | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Time Stamping | |||||||||
0011J00001Mlgx7QAB | 1321952560 | t | f | f | f | f | f | f | t | f | Government of Brazil, Instituto Nacional de Tecnologia da Informação (ITI) | Autoridade Certificadora Raiz Brasileira v5 | Autoridade Certificadora Raiz Brasileira v5 | Root Certificate | Root Certificate | CAA53FC6091C6951887C976E378F6EF89AA6377C55D97B6475422B71ED7E9B17 | CAA53FC6091C6951887C976E378F6EF89AA6377C55D97B6475422B71ED7E9B17 | 2029.03.02 | 2029-03-02 23:59:38 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0014o00001nReDXAA0 | 4914300958 | t | f | f | f | f | f | f | t | f | Government of Finland, Population Register Centre’s (Väestörekisterikeskus, VRK) | DVV Gov. Root CA - G3 ECC | DVV Gov. Root CA - G3 ECC | Root Certificate | Root Certificate | 5546A52504FBA74F61FFD4890067529ADE3B9C9D07E502592831CCDA9B369FD3 | 5546A52504FBA74F61FFD4890067529ADE3B9C9D07E502592831CCDA9B369FD3 | 2042.05.05 | 2042-05-05 07:51:30 | Client Authentication;Server Authentication | |||||||||
0014o00001nReBsAAK | 4914302325 | t | f | f | f | f | f | f | t | f | Government of Finland, Population Register Centre’s (Väestörekisterikeskus, VRK) | DVV Gov. Root CA - G3 RSA | DVV Gov. Root CA - G3 RSA | Root Certificate | Root Certificate | D3ED3FC40AD26B52E001E1E18F4B9449529DEB75A81D5EB680D7B62DB23BA96D | D3ED3FC40AD26B52E001E1E18F4B9449529DEB75A81D5EB680D7B62DB23BA96D | 2042.05.05 | 2042-05-05 08:30:42 | Client Authentication;Server Authentication | |||||||||
001o000000rGWhbAAG | 41854 | t | f | f | f | f | f | f | t | f | Government of Finland, Population Register Centre’s (Väestörekisterikeskus, VRK) | VRK Gov. Root CA | VRK Gov. Root CA | Root Certificate | Root Certificate | F008733EC500DC498763CC9264C6FCEA40EC22000E927D053CE9C90BFA046CB2 | F008733EC500DC498763CC9264C6FCEA40EC22000E927D053CE9C90BFA046CB2 | 2023.12.18 | 2023-12-18 13:51:08 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001P3T5iQAF | 1435180874 | t | f | f | f | f | f | f | t | f | Government of Finland, Population Register Centre’s (Väestörekisterikeskus, VRK) | VRK Gov. Root CA - G2 | VRK Gov. Root CA - G2 | Root Certificate | Root Certificate | 34FF2A4409DC1383E9F8966E8ADFE5719EBA373FD0AD5E2F49F90EE07CF5D4C1 | 34FF2A4409DC1383E9F8966E8ADFE5719EBA373FD0AD5E2F49F90EE07CF5D4C1 | 2038.12.13 | 2038-12-13 08:50:31 | Client Authentication;Document Signing;Secure Email;Server Authentication | |||||||||
001o000000HshF9AAJ | 4854 | t | f | f | f | f | f | f | t | f | Government of Hong Kong (SAR), Hongkong Post, Certizen | Hongkong Post Root CA 1 | Hongkong Post Root CA 1 | Root Certificate | Root Certificate | F9E67D336C51002AC054C632022D66DDA2E7E3FFF10AD061ED31D8BBB410CFB2 | F9E67D336C51002AC054C632022D66DDA2E7E3FFF10AD061ED31D8BBB410CFB2 | 2023.05.15 | 2023-05-15 04:52:29 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001J0qqfQAB | 26310646 | t | f | f | f | f | f | f | t | f | Government of Hong Kong (SAR), Hongkong Post, Certizen | Hongkong Post Root CA 2 | Hongkong Post Root CA 2 | Root Certificate | Root Certificate | 3945E08A8D4A0554B7605A7B355B10188E3EF842C76A805C54E3657C4D041AAA | 3945E08A8D4A0554B7605A7B355B10188E3EF842C76A805C54E3657C4D041AAA | 2040.09.05 | 2040-09-05 02:34:36 | Client Authentication;Document Signing;Secure Email | |||||||||
0011J00001J0quSQAR | 815792915 | t | f | f | f | f | t | t | t | t | Government of Hong Kong (SAR), Hongkong Post, Certizen | Hongkong Post Root CA 3 | Hongkong Post Root CA 3 | Root Certificate | Root Certificate | 5A2FC03F0C83B090BBFA40604B0988446C7636183DF9846E17101A447FB8EFD6 | 5A2FC03F0C83B090BBFA40604B0988446C7636183DF9846E17101A447FB8EFD6 | 2042.06.03 | 2042-06-03 02:29:46 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
001o000000rGWe3AAG | 8559354 | t | f | f | f | f | f | f | t | f | Government of India, Ministry of Communications & Information Technology, Controller of Certifying Authorities (CCA) | CCA India 2014 | CCA India 2014 | Root Certificate | Root Certificate | 60109BC6C38328598A112C7A25E38B0F23E5A7511CB815FB64E0C4FF05DB7DF7 | 60109BC6C38328598A112C7A25E38B0F23E5A7511CB815FB64E0C4FF05DB7DF7 | 2024.03.05 | 2024-03-05 10:10:49 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
001o000000rGWYUAA4 | 12726044 | t | f | t | f | f | f | f | t | f | Government of India, Ministry of Communications & Information Technology, Controller of Certifying Authorities (CCA) | CCA India 2015 SPL | CCA India 2015 SPL | Root Certificate | Intermediate Certificate | C34C5DF53080078FFE45B21A7F600469917204F4F0293F1D7209393E5265C04F | C34C5DF53080078FFE45B21A7F600469917204F4F0293F1D7209393E5265C04F | 2025.01.29 | 2025-01-29 11:36:43 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0018Z00002fhF51QAE | 7399360358 | t | f | f | f | f | f | f | t | f | Government of India, Ministry of Communications & Information Technology, Controller of Certifying Authorities (CCA) | CCA India 2022 | CCA India 2022 | Root Certificate | Root Certificate | 9A3FD3176798E842DDCB12C262F11CFACCA70A8B84C6EA6FDA30842A95A94CD8 | 9A3FD3176798E842DDCB12C262F11CFACCA70A8B84C6EA6FDA30842A95A94CD8 | 2042.02.02 | 2042-02-02 12:04:37 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0018Z00002ntYmZQAU | 7833094345 | t | f | f | f | f | f | f | t | f | Government of India, Ministry of Communications & Information Technology, Controller of Certifying Authorities (CCA) | CCA India 2022 SPL | CCA India 2022 SPL | Root Certificate | Root Certificate | B724689B79B2EF9421EF8F5CC733EB093851B170EE715177005A09F226D8C91A | B724689B79B2EF9421EF8F5CC733EB093851B170EE715177005A09F226D8C91A | 2042.09.20 | 2042-09-20 09:18:19 | Client Authentication;Server Authentication | |||||||||
001o000000rGWbOAAW | 1018 | t | f | f | f | f | f | f | t | f | Government of Korea, KLID | GPKIRootCA1 | GPKIRootCA1 | Root Certificate | Root Certificate | 407C276BEAD2E4AF0661EF6697341DEC0A1F9434E4EAFB2D3D32A90549D9DE4A | 407C276BEAD2E4AF0661EF6697341DEC0A1F9434E4EAFB2D3D32A90549D9DE4A | 2031.08.03 | 2031-08-03 06:52:30 | Client Authentication;Secure Email;Server Authentication | |||||||||
0018Z00002yBj9PQAS | 9395959054 | t | f | f | f | f | f | f | t | f | Government of Korea, KLID | MOIS SSL Root CA | MOIS SSL Root CA | Root Certificate | Root Certificate | 1CF341AE35341AC3AE1DC68D5B10DC0C9DC1307656F75FD92CA2C68489D52E9A | 1CF341AE35341AC3AE1DC68D5B10DC0C9DC1307656F75FD92CA2C68489D52E9A | 2043.02.22 | 2043-02-22 01:00:00 | Client Authentication;Server Authentication | |||||||||
001o000000rGWcHAAW | 8583975 | t | f | f | f | f | f | f | t | f | Government of Saudi Arabia, NIC (SDAIA) | Saudi National Root CA | Saudi National Root CA | Root Certificate | Root Certificate | 34BB34E14FAED0D3392F2FC441C0ECD5FD88AD88118DF2D1BA76CDEC1EEA10B8 | 34BB34E14FAED0D3392F2FC441C0ECD5FD88AD88118DF2D1BA76CDEC1EEA10B8 | 2029.11.29 | 2029-11-29 07:25:20 | Client Authentication;Secure Email;Time Stamping | |||||||||
001o000000HshDmAAJ | 8559063 | t | f | f | f | f | t | f | t | t | Government of Spain, Autoritat de Certificació de la Comunitat Valenciana (ACCV) | ACCVRAIZ1 | ACCVRAIZ1 | Root Certificate | Root Certificate | 9A6EC012E1A7DA9DBE34194D478AD7C0DB1822FB071DF12981496ED104384113 | 9A6EC012E1A7DA9DBE34194D478AD7C0DB1822FB071DF12981496ED104384113 | 2030.12.31 | 2030-12-31 09:37:37 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Websites | |||||
001o0000010cvfIAAQ | 12977063 | t | f | f | f | f | t | f | t | t | Government of Spain, Fábrica Nacional de Moneda y Timbre (FNMT) | AC RAIZ FNMT-RCM | AC RAIZ FNMT-RCM | Root Certificate | Root Certificate | EBC5570C29018C4D67B1AA127BAF12F703B4611EBC17B7DAB5573894179B93FA | EBC5570C29018C4D67B1AA127BAF12F703B4611EBC17B7DAB5573894179B93FA | 2030.01.01 | 2030-01-01 00:00:00 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | Websites | |||||
0011J00001Oa3G7QAJ | 1490711558 | t | f | f | f | f | f | f | t | t | Government of Spain, Fábrica Nacional de Moneda y Timbre (FNMT) | AC RAIZ FNMT-RCM SERVIDORES SEGUROS | AC RAIZ FNMT-RCM SERVIDORES SEGUROS | Root Certificate | Root Certificate | 554153B13D2CF9DDB753BFBE1A4E0AE08D0AA4187058FE60A2B862B2E4B87BCB | 554153B13D2CF9DDB753BFBE1A4E0AE08D0AA4187058FE60A2B862B2E4B87BCB | 2043.12.20 | 2043-12-20 09:37:33 | Server Authentication | Server Authentication | Server Authentication | Websites | ||||||
001o000000rGWTkAAO | 12755488 | t | f | f | f | f | f | f | t | f | Government of Sweden (Försäkringskassan) | Swedish Government Root Authority v3 | Swedish Government Root Authority v3 | Root Certificate | Root Certificate | 8F9ADB6D895DAB5ADF5C3D3FAB83927BE0FB64EF82485C62280D584E8BD55D22 | 8F9ADB6D895DAB5ADF5C3D3FAB83927BE0FB64EF82485C62280D584E8BD55D22 | 2040.09.29 | 2040-09-29 11:42:09 | Client Authentication;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000TNZv0AAH | 8693290 | t | f | f | f | f | f | f | t | t | Government of The Netherlands, PKIoverheid (Logius) | Staat der Nederlanden Root CA - G3 | Staat der Nederlanden Root CA - G3 | Root Certificate | Root Certificate | 3C4FB0B95AB8B30032F432B86F535FE172C185D0FD39865837CF36187FA6F428 | 3C4FB0B95AB8B30032F432B86F535FE172C185D0FD39865837CF36187FA6F428 | 2028.11.13 | 2028-11-13 23:00:00 | Client Authentication;Document Signing;IP security tunnel termination;IP security user;Secure Email | |||||||||
001o000000rkEk0AAE | 36499465 | t | f | f | f | f | t | f | t | t | Government of Turkey, Kamu Sertifikasyon Merkezi (Kamu SM) | TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 | TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 | Root Certificate | Root Certificate | 46EDC3689046D53A453FB3104AB80DCAEC658B2660EA1629DD7E867990648716 | 46EDC3689046D53A453FB3104AB80DCAEC658B2660EA1629DD7E867990648716 | 2043.10.25 | 2043-10-25 08:25:55 | clientAuth;codeSigning;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | |||||
0011J000019xc88QAA | 26312168 | t | f | f | f | f | f | f | t | f | Halcom D.D. | Halcom Root Certificate Authority | Halcom Root Certificate Authority | Root Certificate | Root Certificate | D7BA3F4FF8AD05633451470DDA3378A3491B90005E5C687D2B68D53647CFDD66 | D7BA3F4FF8AD05633451470DDA3378A3491B90005E5C687D2B68D53647CFDD66 | 2036.06.10 | 2036-06-10 07:07:50 | Client Authentication;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | |||||||||
0014o00001llqQfAAI | 4147052292 | t | f | f | f | f | t | f | t | t | HARICA | HARICA Client ECC Root CA 2021 | HARICA Client ECC Root CA 2021 | Root Certificate | Root Certificate | 8DD4B5373CB0DE36769C12339280D82746B3AA6CD426E797A31BABE4279CF00B | 8DD4B5373CB0DE36769C12339280D82746B3AA6CD426E797A31BABE4279CF00B | 2045.02.13 | 2045-02-13 11:03:33 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Document Signing;Secure Email | ||||||||
0014o00001llqQaAAI | 4147049674 | t | f | f | f | f | t | f | t | t | HARICA | HARICA Client RSA Root CA 2021 | HARICA Client RSA Root CA 2021 | Root Certificate | Root Certificate | 1BE7ABE30686B16348AFD1C61B6866A0EA7F4821E67D5E8AF937CF8011BC750D | 1BE7ABE30686B16348AFD1C61B6866A0EA7F4821E67D5E8AF937CF8011BC750D | 2045.02.13 | 2045-02-13 10:58:45 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Document Signing;Secure Email | ||||||||
0014o00001llqQLAAY | 4147049302 | t | f | f | f | f | f | f | t | f | HARICA | HARICA Code Signing ECC Root CA 2021 | HARICA Code Signing ECC Root CA 2021 | Root Certificate | Root Certificate | 794E774638CE7B3CF05EBC8967CF47315316C351DC26387476E0C099C2ED47CC | 794E774638CE7B3CF05EBC8967CF47315316C351DC26387476E0C099C2ED47CC | 2045.02.13 | 2045-02-13 11:04:35 | Code Signing;EV Server Authentication;Time Stamping | |||||||||
0014o00001llqQ1AAI | 4147046281 | t | f | f | f | f | f | f | t | f | HARICA | HARICA Code Signing RSA Root CA 2021 | HARICA Code Signing RSA Root CA 2021 | Root Certificate | Root Certificate | C40EBDCD75A90E4B7496ABB23E789A48E33C03284F75D95130575AE6860AE13C | C40EBDCD75A90E4B7496ABB23E789A48E33C03284F75D95130575AE6860AE13C | 2045.02.13 | 2045-02-13 10:59:53 | Code Signing;EV Server Authentication;Time Stamping | |||||||||
0014o00001llqSUAAY | 4147045948 | t | f | f | f | f | t | t | t | t | HARICA | HARICA TLS ECC Root CA 2021 | HARICA TLS ECC Root CA 2021 | Root Certificate | Root Certificate | 3F99CC474ACFCE4DFED58794665E478D1547739F2E780F1BB4CA9B133097D401 | 3F99CC474ACFCE4DFED58794665E478D1547739F2E780F1BB4CA9B133097D401 | 2045.02.13 | 2045-02-13 11:01:09 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
0014o00001llqSCAAY | 4147041876 | t | f | f | f | f | t | t | t | t | HARICA | HARICA TLS RSA Root CA 2021 | HARICA TLS RSA Root CA 2021 | Root Certificate | Root Certificate | D95D0E8EDA79525BF9BEB11B14D2100D3294985F0C62D9FABD9CD999ECCB7B1D | D95D0E8EDA79525BF9BEB11B14D2100D3294985F0C62D9FABD9CD999ECCB7B1D | 2045.02.13 | 2045-02-13 10:55:37 | clientAuth;codeSigning;emailProtection;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
001o000000rGWdeAAG | 12729857 | t | f | f | f | f | t | f | t | t | HARICA | Hellenic Academic and Research Institutions ECC RootCA 2015 | Hellenic Academic and Research Institutions ECC RootCA 2015 | Root Certificate | Root Certificate | 44B545AA8A25E65A73CA15DC27FC36D24C1CB9953A066539B11582DC487B4833 | 44B545AA8A25E65A73CA15DC27FC36D24C1CB9953A066539B11582DC487B4833 | 2040.06.30 | 2040-06-30 10:37:12 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication | Email;Websites | |||||||
001o000000HshF8AAJ | 1877101 | t | f | f | f | f | f | f | t | f | HARICA | Hellenic Academic and Research Institutions RootCA 2011 | Hellenic Academic and Research Institutions RootCA 2011 | Root Certificate | Root Certificate | BC104F15A48BE709DCA542A7E1D4B9DF6F054527E802EAA92D595444258AFE71 | BC104F15A48BE709DCA542A7E1D4B9DF6F054527E802EAA92D595444258AFE71 | 2031.12.01 | 2031-12-01 13:49:52 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWVHAA4 | 12731951 | t | f | f | f | f | t | f | t | t | HARICA | Hellenic Academic and Research Institutions RootCA 2015 | Hellenic Academic and Research Institutions RootCA 2015 | Root Certificate | Root Certificate | A040929A02CE53B4ACF4F2FFC6981CE4496F755E6D45FE0B2A692BCD52523F36 | A040929A02CE53B4ACF4F2FFC6981CE4496F755E6D45FE0B2A692BCD52523F36 | 2040.06.30 | 2040-06-30 10:11:21 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Code Signing;Document Signing;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||||
001o000000TNZiVAAX | 8955726 | t | f | f | f | f | t | t | t | t | IdenTrust Services, LLC | IdenTrust Commercial Root CA 1 | IdenTrust Commercial Root CA 1 | Root Certificate | Root Certificate | 5D56499BE4D2E08BCFCAD08A3E38723D50503BDE706948E42F55603019E528AE | 5D56499BE4D2E08BCFCAD08A3E38723D50503BDE706948E42F55603019E528AE | 2034.01.16 | 2034-01-16 18:12:23 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Document Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000TNZikAAH | 8579785 | t | f | f | f | f | t | f | t | t | IdenTrust Services, LLC | IdenTrust Public Sector Root CA 1 | IdenTrust Public Sector Root CA 1 | Root Certificate | Root Certificate | 30D0895A9A448A262091635522D1F52010B5867ACAE12C78EF958FD4F4389F2F | 30D0895A9A448A262091635522D1F52010B5867ACAE12C78EF958FD4F4389F2F | 2034.01.16 | 2034-01-16 17:53:32 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||||
001o000000x2973AAA | 9314791 | t | f | f | f | f | t | f | t | t | Internet Security Research Group | ISRG Root X1 | ISRG Root X1 | Root Certificate | Root Certificate | 96BCEC06264976F37460779ACF28C5A7CFE8A3C0AAE11A8FFCEE05C0BDDF08C6 | 96BCEC06264976F37460779ACF28C5A7CFE8A3C0AAE11A8FFCEE05C0BDDF08C6 | 2035.06.04 | 2035-06-04 11:04:38 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | |||||
0014o00001mHcuOAAS | 3335562555 | t | f | f | f | f | t | f | t | t | Internet Security Research Group | ISRG Root X2 | ISRG Root X2 | Root Certificate | Root Certificate | 69729B8E15A86EFC177A57AFB7171DFC64ADD28C2FCA8CF1507E34453CCB1470 | 69729B8E15A86EFC177A57AFB7171DFC64ADD28C2FCA8CF1507E34453CCB1470 | 2040.09.17 | 2040-09-17 16:00:00 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | |||||
0011J00001P3SXuQAN | 1595994419 | t | f | f | f | f | f | t | f | t | iTrusChina Co., Ltd. | vTrus ECC Root CA | vTrus ECC Root CA | Root Certificate | Root Certificate | 30FBBA2C32238E2A98547AF97931E550428B9B3F1C8EEB6633DCFA86C5B27DD3 | 30FBBA2C32238E2A98547AF97931E550428B9B3F1C8EEB6633DCFA86C5B27DD3 | 2043.07.31 | 2043-07-31 07:26:44 | Server Authentication | EV Server Authentication;Server Authentication | Websites | |||||||
0011J00001P3STxQAN | 1595993136 | t | f | f | f | f | f | t | f | t | iTrusChina Co., Ltd. | vTrus Root CA | vTrus Root CA | Root Certificate | Root Certificate | 8A71DE6559336F426C26E53880D00D88A18DA4C6A91F0DCB6194E206C5C96387 | 8A71DE6559336F426C26E53880D00D88A18DA4C6A91F0DCB6194E206C5C96387 | 2043.07.31 | 2043-07-31 07:24:05 | Server Authentication | EV Server Authentication;Server Authentication | Websites | |||||||
001o000000HshFEAAZ | 1616324 | t | f | f | f | f | t | t | t | t | Izenpe S.A. | Izenpe.com | Izenpe.com | Root Certificate | Root Certificate | 2530CC8E98321502BAD96F9B1FBA1B099E2D299E0F4548BB914F363BC0D4531F | 2530CC8E98321502BAD96F9B1FBA1B099E2D299E0F4548BB914F363BC0D4531F | 2037.12.13 | 2037-12-13 08:27:25 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Server Authentication | Websites | |||||
0011J00001QWfoKQAT | 13917 | t | f | f | f | f | f | f | t | f | Izenpe S.A. | Izenpe.com | Izenpe.com | Root Certificate | Root Certificate | 23804203CA45D8CDE716B8C13BF3B448457FA06CC10250997FA01458317C41E5 | 23804203CA45D8CDE716B8C13BF3B448457FA06CC10250997FA01458317C41E5 | 2037.12.13 | 2037-12-13 08:27:25 | EV Server Authentication;EV Server Authentication | |||||||||
001o000000mNhUdAAK | 12979946 | t | f | f | f | f | f | f | t | t | Krajowa Izba Rozliczeniowa S.A. (KIR) | SZAFIR ROOT CA2 | SZAFIR ROOT CA2 | Root Certificate | Root Certificate | A1339D33281A0B56E557D3D32B1CE7F9367EB094BD5FA72A7E5004C8DED7CAFE | A1339D33281A0B56E557D3D32B1CE7F9367EB094BD5FA72A7E5004C8DED7CAFE | 2035.10.19 | 2035-10-19 07:43:30 | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication | Email;Websites | ||||||
0018Z00002vy3FxQAI | 8949139383 | t | f | f | f | f | f | f | t | t | LAWtrust | LAWtrust Root CA2 (4096) | LAWtrust Root CA2 (4096) | Root Certificate | Root Certificate | 48E1CF9E43B688A51044160F46D773B8277FE45BEAAD0E4DF90D1974382FEA99 | 48E1CF9E43B688A51044160F46D773B8277FE45BEAAD0E4DF90D1974382FEA99 | 2053.02.14 | 2053-02-14 09:49:38 | Client Authentication;Document Signing;Secure Email | |||||||||
001o000000rGWXgAAO | 12723650 | t | f | f | f | f | f | f | t | f | LAWtrust | LAWtrust Root Certification Authority 2048 | LAWtrust Root Certification Authority 2048 | Root Certificate | Root Certificate | 9B14E8F5F6EA167666E76DCD6BECC190861D5E8970B99A9470F0231236049704 | 9B14E8F5F6EA167666E76DCD6BECC190861D5E8970B99A9470F0231236049704 | 2032.05.16 | 2032-05-16 16:10:18 | Client Authentication;Secure Email | |||||||||
001o000000rGWUhAAO | 1974591 | t | f | f | f | f | f | f | t | f | LuxTrust | LuxTrust Global Root | LuxTrust Global Root | Root Certificate | Root Certificate | A1B2DBEB64E706C6169E3C4118B23BAA09018A8427666D8BF0E28891EC051950 | A1B2DBEB64E706C6169E3C4118B23BAA09018A8427666D8BF0E28891EC051950 | 2021.03.17 | 2021-03-17 09:51:37 | EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication | |||||||||
001o000000wjNGuAAM | 36499464 | t | f | f | f | f | f | f | t | f | LuxTrust | LuxTrust Global Root 2 | LuxTrust Global Root 2 | Root Certificate | Root Certificate | 54455F7129C20B1447C418F997168F24C58FC5023BF5DA5BE2EB6E1DD8902ED5 | 54455F7129C20B1447C418F997168F24C58FC5023BF5DA5BE2EB6E1DD8902ED5 | 2035.03.05 | 2035-03-05 13:21:57 | EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication | |||||||||
0011J00001MW8ZLQA1 | 1239830339 | t | f | f | f | f | f | f | t | f | Macao Post and Telecommunications Bureau | eSignTrust Root Certification Authority (G03) | eSignTrust Root Certification Authority (G03) | Root Certificate | Root Certificate | 0E30D04A94DCC423E26FDC4C24AFCF4923BD80D83B661B06A2F5856361560407 | 0E30D04A94DCC423E26FDC4C24AFCF4923BD80D83B661B06A2F5856361560407 | 2041.12.31 | 2041-12-31 23:59:59 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0011J00001LVSn1QAH | 1109388819 | t | f | f | f | f | f | f | t | t | Microsec Ltd. | e-Szigno Root CA 2017 | e-Szigno Root CA 2017 | Root Certificate | Root Certificate | BEB00B30839B9BC32C32E4447905950641F26421B15ED089198B518AE2EA1B99 | BEB00B30839B9BC32C32E4447905950641F26421B15ED089198B518AE2EA1B99 | 2042.08.22 | 2042-08-22 12:07:06 | Server Authentication | Server Authentication | Client Authentication;Code Signing;Document Signing;Secure Email;Server Authentication;Time Stamping | Email;Websites | ||||||
0018Z00003DoKSLQA3 | 11688620582 | t | f | f | f | f | f | f | t | f | Microsec Ltd. | e-Szigno TLS Root CA 2023 | e-Szigno TLS Root CA 2023 | Root Certificate | Root Certificate | B49141502D00663D740F2E7EC340C52800962666121A36D09CF7DD2B90384FB4 | B49141502D00663D740F2E7EC340C52800962666121A36D09CF7DD2B90384FB4 | 2038.07.17 | 2038-07-17 14:00:00 | Client Authentication;Server Authentication | |||||||||
001o000000HshFHAAZ | 194998 | t | f | f | f | f | t | f | t | t | Microsec Ltd. | Microsec e-Szigno Root CA 2009 | Microsec e-Szigno Root CA 2009 | Root Certificate | Root Certificate | 3C5F81FEA5FAB82C64BFA2EAECAFCDE8E077FC8620A7CAE537163DF36EDBF378 | 3C5F81FEA5FAB82C64BFA2EAECAFCDE8E077FC8620A7CAE537163DF36EDBF378 | 2029.12.30 | 2029-12-30 11:30:18 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0018Z00002iKhmyQAC | 7399364714 | t | t | f | f | f | f | f | f | f | Microsoft Corporation | Microsoft Corporation | Copyright (c) 1997 Microsoft Corp. | Root Certificate | Root Certificate | 6EF914723F089D2ADAFF98D470A3651CCF1768E559FBDCC0FAAA640AA12E5753 | 6EF914723F089D2ADAFF98D470A3651CCF1768E559FBDCC0FAAA640AA12E5753 | 1999.12.30 | 1999-12-30 23:59:59 | ||||||||||
0011J00001QTD1sQAH | 554380367 | t | f | f | f | f | f | f | t | f | Microsoft Corporation | Microsoft ECC Product Root Certificate Authority 2018 | Microsoft ECC Product Root Certificate Authority 2018 | Root Certificate | Root Certificate | CACA93B9D23D2B6FA76E8B8471931E0DF3EC6F63AF3CDBB936C41954A1872326 | CACA93B9D23D2B6FA76E8B8471931E0DF3EC6F63AF3CDBB936C41954A1872326 | 2043.02.27 | 2043-02-27 20:50:46 | Client Authentication;Code Signing;Document Signing;Encrypting File System;IP security end system;IP security IKE intermediate;IP security tunnel termination;IP security user;OCSP Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001W4GugQAF | 2565145421 | t | f | f | f | f | t | f | t | t | Microsoft Corporation | Microsoft ECC Root Certificate Authority 2017 | Microsoft ECC Root Certificate Authority 2017 | Root Certificate | Root Certificate | 358DF39D764AF9E1B766E9C972DF352EE15CFAC227AF6AD1D70E8E4A6EDCBA02 | 358DF39D764AF9E1B766E9C972DF352EE15CFAC227AF6AD1D70E8E4A6EDCBA02 | 2042.07.18 | 2042-07-18 23:16:04 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | |||||
0011J00001QTD3AQAX | 918173942 | t | f | f | f | f | f | f | t | f | Microsoft Corporation | Microsoft ECC TS Root Certificate Authority 2018 | Microsoft ECC TS Root Certificate Authority 2018 | Root Certificate | Root Certificate | 3FD4BE8BAAD2F26E1BDE06C7584BB720DD1A972D111F5A4999BC44B08FB4960D | 3FD4BE8BAAD2F26E1BDE06C7584BB720DD1A972D111F5A4999BC44B08FB4960D | 2043.02.27 | 2043-02-27 21:00:12 | Client Authentication;Code Signing;Document Signing;Encrypting File System;IP security end system;IP security IKE intermediate;IP security tunnel termination;IP security user;OCSP Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0014o00001nqPvqAAE | 4749323725 | t | f | f | f | f | f | f | t | f | Microsoft Corporation | Microsoft Identity Verification Root Certificate Authority 2020 | Microsoft Identity Verification Root Certificate Authority 2020 | Root Certificate | Root Certificate | 5367F20C7ADE0E2BCA790915056D086B720C33C1FA2A2661ACF787E3292E1270 | 5367F20C7ADE0E2BCA790915056D086B720C33C1FA2A2661ACF787E3292E1270 | 2045.04.16 | 2045-04-16 18:44:40 | Code Signing;Time Stamping | |||||||||
001o000000rGWYKAA4 | 12722905 | t | f | f | f | f | f | f | t | f | Microsoft Corporation | Microsoft Root Certificate Authority 2010 | Microsoft Root Certificate Authority 2010 | Root Certificate | Root Certificate | DF545BF919A2439C36983B54CDFC903DFA4F37D3996D8D84B4C31EEC6F3C163E | DF545BF919A2439C36983B54CDFC903DFA4F37D3996D8D84B4C31EEC6F3C163E | 2035.06.23 | 2035-06-23 22:04:01 | Client Authentication;Code Signing;Document Signing;Encrypting File System;IP security end system;IP security IKE intermediate;IP security tunnel termination;IP security user;OCSP Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWcNAAW | 10654462 | t | f | f | f | f | f | f | t | f | Microsoft Corporation | Microsoft Root Certificate Authority 2011 | Microsoft Root Certificate Authority 2011 | Root Certificate | Root Certificate | 847DF6A78497943F27FC72EB93F9A637320A02B561D0A91B09E87A7807ED7C61 | 847DF6A78497943F27FC72EB93F9A637320A02B561D0A91B09E87A7807ED7C61 | 2036.03.22 | 2036-03-22 22:13:04 | Client Authentication;Code Signing;Document Signing;Encrypting File System;IP security end system;IP security IKE intermediate;IP security tunnel termination;IP security user;OCSP Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001W4GvoQAF | 2565151295 | t | f | f | f | f | t | f | t | t | Microsoft Corporation | Microsoft RSA Root Certificate Authority 2017 | Microsoft RSA Root Certificate Authority 2017 | Root Certificate | Root Certificate | C741F70F4B2A8D88BF2E71C14122EF53EF10EBA0CFA5E64CFA20F418853073E0 | C741F70F4B2A8D88BF2E71C14122EF53EF10EBA0CFA5E64CFA20F418853073E0 | 2042.07.18 | 2042-07-18 23:00:23 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Server Authentication | Websites | |||||
0011J00001CALXxQAP | 266273897 | t | f | f | f | f | f | f | t | f | Microsoft Corporation | Microsoft Time Stamp Root Certificate Authority 2014 | Microsoft Time Stamp Root Certificate Authority 2014 | Root Certificate | Root Certificate | 65AF95F4BE86847344634282F941B2E605063EF0C8542F014CA088D182109E4F | 65AF95F4BE86847344634282F941B2E605063EF0C8542F014CA088D182109E4F | 2039.10.22 | 2039-10-22 22:15:19 | Time Stamping | |||||||||
001o000000rGWZDAA4 | 8642580 | t | f | f | f | f | f | f | t | f | MULTICERT | MULTICERT Root Certification Authority 01 | MULTICERT Root Certification Authority 01 | Root Certificate | Root Certificate | 604D32D036895AED3BFEFAEB727C009EC0F2B3CDFA42A1C71730E6A72C3BE9D4 | 604D32D036895AED3BFEFAEB727C009EC0F2B3CDFA42A1C71730E6A72C3BE9D4 | 2039.04.04 | 2039-04-04 08:59:47 | Client Authentication;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | |||||||||
0018Z000037J2PXQA0 | 10248277007 | t | f | f | f | f | f | f | t | f | NAVER Cloud Trust Services | NAVER Cloud Trust Services ECC Root G1 | NAVER Cloud Trust Services ECC Root G1 | Root Certificate | Root Certificate | A7C8681042F3675AA8505D3BA313D80F8AC3250FDF874AD29B834689C087FB11 | A7C8681042F3675AA8505D3BA313D80F8AC3250FDF874AD29B834689C087FB11 | 2043.06.06 | 2043-06-06 23:59:59 | Client Authentication;Server Authentication | |||||||||
0018Z000037J2OnQAK | 10248279330 | t | f | f | f | f | f | f | t | f | NAVER Cloud Trust Services | NAVER Cloud Trust Services RSA Root G1 | NAVER Cloud Trust Services RSA Root G1 | Root Certificate | Root Certificate | 49A2762987788D4834B32305D767760F244D507742E8C2539FD4CA3AD52C16EE | 49A2762987788D4834B32305D767760F244D507742E8C2539FD4CA3AD52C16EE | 2043.06.06 | 2043-06-06 23:59:59 | Client Authentication;Server Authentication | |||||||||
0011J00001MlgxgQAB | 1321953839 | t | f | f | f | f | t | f | t | t | NAVER Cloud Trust Services | NAVER Global Root Certification Authority | NAVER Global Root Certification Authority | Root Certificate | Root Certificate | 88F438DCF8FFD1FA8F429115FFE5F82AE1E06E0C70C375FAAD717B34A49E7265 | 88F438DCF8FFD1FA8F429115FFE5F82AE1E06E0C70C375FAAD717B34A49E7265 | 2037.08.18 | 2037-08-18 23:59:59 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Document Signing;Secure Email;Server Authentication | Websites | |||||
001o000000HshFIAAZ | 2274 | t | f | f | f | f | t | t | t | t | Netlock | NetLock Arany (Class Gold) Főtanúsítvány | NetLock Arany (Class Gold) Főtanúsítvány | Root Certificate | Root Certificate | 6C61DAC3A2DEF031506BE036D2A6FE401994FBD13DF9C8D466599274C446EC98 | 6C61DAC3A2DEF031506BE036D2A6FE401994FBD13DF9C8D466599274C446EC98 | 2028.12.06 | 2028-12-06 15:08:21 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Qualified Website Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000rGWh7AAG | 12729624 | t | f | f | f | f | f | f | t | f | Netlock | NetLock Platina (Class Platinum) Főtanúsítvány | NetLock Platina (Class Platinum) Főtanúsítvány | Root Certificate | Root Certificate | EB7E05AA58E7BD328A282BF8867033F3C035342B516EE85C01673DFFFFBBFE58 | EB7E05AA58E7BD328A282BF8867033F3C035342B516EE85C01673DFFFFBBFE58 | 2028.12.06 | 2028-12-06 15:12:44 | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J000018NWlAQAW | 175283341 | t | f | f | f | f | f | f | t | f | Netrust Pte Ltd | Netrust Root CA 2 | Netrust Root CA 2 | Root Certificate | Root Certificate | 65353833CF234C79562164F90849C0D104DBABF8EE41064D83E8CBE03BA1C5A5 | 65353833CF234C79562164F90849C0D104DBABF8EE41064D83E8CBE03BA1C5A5 | 2041.09.01 | 2041-09-01 08:55:17 | Client Authentication;IP security IKE intermediate;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000HshFNAAZ | 7677 | t | f | f | f | f | t | f | f | f | Network Solutions | Network Solutions Certificate Authority | Network Solutions Certificate Authority | Root Certificate | Root Certificate | 15F0BA00A3AC7AF3AC884C072B1011A077BD77C097F40164B2F8598ABD83860C | 15F0BA00A3AC7AF3AC884C072B1011A077BD77C097F40164B2F8598ABD83860C | 2029.12.31 | 2029-12-31 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | |||||||||
001o000000rGWTtAAO | 1635870 | t | f | f | f | f | f | f | t | f | Network Solutions | Network Solutions Certificate Authority | Network Solutions Certificate Authority | Root Certificate | Root Certificate | 001686CD181F83A1B1217D305B365C41E3470A78A1D37B134A98CD547B92DAB3 | 001686CD181F83A1B1217D305B365C41E3470A78A1D37B134A98CD547B92DAB3 | 2030.12.31 | 2030-12-31 23:59:59 | EV Server Authentication | |||||||||
001o000000rGWhlAAG | 8562589 | t | f | f | f | f | f | f | t | f | NISZ Nemzeti Infokommunikációs Szolgáltató Zrt. | Főtanúsítványkiadó - Kormányzati Hitelesítés Szolgáltató | Főtanúsítványkiadó - Kormányzati Hitelesítés Szolgáltató | Root Certificate | Root Certificate | C2157309D9AEE17BF34F4DF5E88DBAEBA57E0361EB814CBC239F4D54D329A38D | C2157309D9AEE17BF34F4DF5E88DBAEBA57E0361EB814CBC239F4D54D329A38D | 2033.09.13 | 2033-09-13 10:27:04 | Client Authentication;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWWiAAO | 12725959 | t | f | f | f | f | f | f | t | f | Notarius | Notarius Root Certificate Authority | Notarius Root Certificate Authority | Root Certificate | Root Certificate | C7B8948FECCAACE5B509A343F38D0301D07901885604B3F267270E1EBBEF0FE7 | C7B8948FECCAACE5B509A343F38D0301D07901885604B3F267270E1EBBEF0FE7 | 2034.12.17 | 2034-12-17 16:00:51 | Client Authentication;Document Signing;Secure Email | |||||||||
0018Z00002Y35Q3QAJ | 6238662838 | t | f | f | f | f | f | f | t | f | Notarius | Notarius Root Certificate Authority | Notarius Root Certificate Authority | Root Certificate | Root Certificate | AAA15BDDB1C924AD7A7F22F89E5CD3E2C61407A064E011B7CF4CB618716449A4 | AAA15BDDB1C924AD7A7F22F89E5CD3E2C61407A064E011B7CF4CB618716449A4 | 2036.05.17 | 2036-05-17 18:17:06 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
001o000000HshFOAAZ | 62188 | t | f | f | f | f | t | f | t | t | OISTE | OISTE WISeKey Global Root GA CA | OISTE WISeKey Global Root GA CA | Root Certificate | Root Certificate | 41C923866AB4CAD6B7AD578081582E020797A6CBDF4FFF78CE8396B38937D7F5 | 41C923866AB4CAD6B7AD578081582E020797A6CBDF4FFF78CE8396B38937D7F5 | 2037.12.11 | 2037-12-11 16:09:51 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email;Time Stamping | ||||||||
001o000000ioqQ4AAI | 12730783 | t | f | f | f | f | t | t | t | t | OISTE | OISTE WISeKey Global Root GB CA | OISTE WISeKey Global Root GB CA | Root Certificate | Root Certificate | 6B9C08E86EB0F767CFAD65CD98B62149E5494A67F5845E7BD1ED019F27B86BD6 | 6B9C08E86EB0F767CFAD65CD98B62149E5494A67F5845E7BD1ED019F27B86BD6 | 2039.12.01 | 2039-12-01 15:10:31 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0011J00001C8NRkQAN | 266273870 | t | f | f | f | f | t | f | t | t | OISTE | OISTE WISeKey Global Root GC CA | OISTE WISeKey Global Root GC CA | Root Certificate | Root Certificate | 8560F91C3624DABA9570B5FEA0DBE36FF11A8323BE9486854FB3F34A5571198D | 8560F91C3624DABA9570B5FEA0DBE36FF11A8323BE9486854FB3F34A5571198D | 2042.05.09 | 2042-05-09 09:58:33 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Document Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000rGWZNAA4 | 8559406 | t | f | f | f | f | f | f | t | f | Open Access Technology International, Inc. (OATI) | OATI WebCARES Root CA | OATI WebCARES Root CA | Root Certificate | Root Certificate | 7A77C6C61EEEB9AA65C4EA410D65D895B26A81123283009DB104B48DE80B2479 | 7A77C6C61EEEB9AA65C4EA410D65D895B26A81123283009DB104B48DE80B2479 | 2038.06.03 | 2038-06-03 19:36:00 | Client Authentication;Secure Email;Server Authentication | |||||||||
001o000000rGWdjAAG | 4796 | t | f | f | f | f | f | f | t | f | PostSignum | PostSignum Root QCA 2 | PostSignum Root QCA 2 | Root Certificate | Root Certificate | AD016F958050E0E7E46FAE7DCC50197ED8E3FF0A4B262E5DDCDB3EDDDC7D6578 | AD016F958050E0E7E46FAE7DCC50197ED8E3FF0A4B262E5DDCDB3EDDDC7D6578 | 2025.01.19 | 2025-01-19 08:04:31 | Client Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0011J00001KPVXpQAP | 988210727 | t | f | f | f | f | f | f | t | f | PostSignum | PostSignum Root QCA 4 | PostSignum Root QCA 4 | Root Certificate | Root Certificate | AC7F7862E685C7A7D9826A58EA32D183D4893FCC8F8FD6D900C9769A987E77F0 | AC7F7862E685C7A7D9826A58EA32D183D4893FCC8F8FD6D900C9769A987E77F0 | 2038.07.26 | 2038-07-26 09:56:08 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000HshFPAAZ | 156583 | t | f | t | f | f | f | f | f | f | PROCERT | PSCProcert | PSCProcert | Root Certificate | Intermediate Certificate | 3CFC3C14D1F684FF17E38C43CA440C00B967EC933E8BFE064CA1D72C90F2ADB0 | 3CFC3C14D1F684FF17E38C43CA440C00B967EC933E8BFE064CA1D72C90F2ADB0 | 2020.12.25 | 2020-12-25 23:59:59 | ||||||||||
0018Z00002nsEoCQAU | 7833092247 | t | f | f | f | f | f | f | t | f | První certifikační autorita, a.s. | I.CA Root CA/ECC 05/2022 | I.CA Root CA/ECC 05/2022 | Root Certificate | Root Certificate | 3808CE3E961CA532682FFB8708B544E8F175AA065601A45902DF92128FC38532 | 3808CE3E961CA532682FFB8708B544E8F175AA065601A45902DF92128FC38532 | 2047.05.03 | 2047-05-03 12:10:00 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0014o00001lQyewAAC | 2961095236 | t | f | f | f | f | f | f | t | f | První certifikační autorita, a.s. | I.CA Root CA/ECC 12/2016 | I.CA Root CA/ECC 12/2016 | Root Certificate | Root Certificate | B8692148FF49C3799FA2347AE28BCC5289623512B67DC19170452ADE24BA51D5 | B8692148FF49C3799FA2347AE28BCC5289623512B67DC19170452ADE24BA51D5 | 2041.12.07 | 2041-12-07 11:00:00 | Client Authentication;Document Signing;Secure Email | |||||||||
001o000000rGWdPAAW | 12730795 | t | f | f | f | f | f | f | t | f | První certifikační autorita, a.s. | I.CA Root CA/RSA | I.CA Root CA/RSA | Root Certificate | Root Certificate | D3D607A9FF24A19523B6DA9D2C649446F8788CB96D9FD130972E120C13677730 | D3D607A9FF24A19523B6DA9D2C649446F8788CB96D9FD130972E120C13677730 | 2040.05.27 | 2040-05-27 12:20:00 | Client Authentication;Document Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
0018Z00002nsEryQAE | 7833089817 | t | f | f | f | f | f | f | t | f | První certifikační autorita, a.s. | I.CA Root CA/RSA 05/2022 | I.CA Root CA/RSA 05/2022 | Root Certificate | Root Certificate | D279C01A12E8DD9A6230E459FAA447CEB336998477338C2EE4135C96737418EB | D279C01A12E8DD9A6230E459FAA447CEB336998477338C2EE4135C96737418EB | 2047.05.03 | 2047-05-03 12:05:00 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0018Z00002nsEs8QAE | 7833086219 | t | f | f | f | f | f | f | t | f | První certifikační autorita, a.s. | I.CA TLS Root CA/RSA 05/2022 | I.CA TLS Root CA/RSA 05/2022 | Root Certificate | Root Certificate | F9A17A00E5C294BA9614A715819AF57F3FD48CC413453FBB8A5FC7E97964E2BC | F9A17A00E5C294BA9614A715819AF57F3FD48CC413453FBB8A5FC7E97964E2BC | 2047.05.03 | 2047-05-03 12:15:00 | Client Authentication;Server Authentication | |||||||||
0018Z00003CjzfkQAB | 11405692330 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis Client ECC P384 Root G4 | QuoVadis Client ECC P384 Root G4 | Root Certificate | Root Certificate | D3C07AC44BD8FF1975BC62F1C7E9840EA8E188A4BA51133B8C4EFF05E34A2729 | D3C07AC44BD8FF1975BC62F1C7E9840EA8E188A4BA51133B8C4EFF05E34A2729 | 2048.03.09 | 2048-03-09 15:17:16 | Client Authentication | |||||||||
0018Z00003CjzfjQAB | 11405695493 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis Client RSA 4096 Root G4 | QuoVadis Client RSA 4096 Root G4 | Root Certificate | Root Certificate | 80AC91FA891C79723A61ABC77F86E19905A92DA27E51695CA0C0B66C1C039BF2 | 80AC91FA891C79723A61ABC77F86E19905A92DA27E51695CA0C0B66C1C039BF2 | 2048.03.09 | 2048-03-09 15:12:20 | Client Authentication | |||||||||
001o000000HshFQAAZ | 8564337 | t | f | f | f | f | t | f | t | t | QuoVadis | QuoVadis Root CA 1 G3 | QuoVadis Root CA 1 G3 | Root Certificate | Root Certificate | 8A866FD1B276B57E578E921C65828A2BED58E9F2F288054134B7F1F4BFC9CC74 | 8A866FD1B276B57E578E921C65828A2BED58E9F2F288054134B7F1F4BFC9CC74 | 2042.01.12 | 2042-01-12 17:27:44 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||||
001o000000HshFRAAZ | 2472 | t | f | f | f | f | t | t | t | t | QuoVadis | QuoVadis Root CA 2 | QuoVadis Root CA 2 | Root Certificate | Root Certificate | 85A0DD7DD720ADB7FF05F83D542B209DC7FF4528F7D677B18389FEA5E5C49E86 | 85A0DD7DD720ADB7FF05F83D542B209DC7FF4528F7D677B18389FEA5E5C49E86 | 2031.11.24 | 2031-11-24 18:23:33 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshFSAAZ | 6006153 | t | f | f | f | f | t | t | t | t | QuoVadis | QuoVadis Root CA 2 G3 | QuoVadis Root CA 2 G3 | Root Certificate | Root Certificate | 8FE4FB0AF93A4D0D67DB0BEBB23E37C71BF325DCBCDD240EA04DAF58B47E1840 | 8FE4FB0AF93A4D0D67DB0BEBB23E37C71BF325DCBCDD240EA04DAF58B47E1840 | 2042.01.12 | 2042-01-12 18:59:32 | clientAuth;codeSigning;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000HshFTAAZ | 6929 | t | f | f | f | f | t | f | t | t | QuoVadis | QuoVadis Root CA 3 | QuoVadis Root CA 3 | Root Certificate | Root Certificate | 18F1FC7F205DF8ADDDEB7FE007DD57E3AF375A9C4D8D73546BF4F1FED1E18D35 | 18F1FC7F205DF8ADDDEB7FE007DD57E3AF375A9C4D8D73546BF4F1FED1E18D35 | 2031.11.24 | 2031-11-24 19:06:44 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||||
001o000000HshFUAAZ | 8586094 | t | f | f | f | f | t | f | t | t | QuoVadis | QuoVadis Root CA 3 G3 | QuoVadis Root CA 3 G3 | Root Certificate | Root Certificate | 88EF81DE202EB018452E43F864725CEA5FBD1FC2D9D205730709C5D8B8690F46 | 88EF81DE202EB018452E43F864725CEA5FBD1FC2D9D205730709C5D8B8690F46 | 2042.01.12 | 2042-01-12 20:26:32 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0018Z00003CjzflQAB | 11405696511 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis Signing ECC P384 Root G4 | QuoVadis Signing ECC P384 Root G4 | Root Certificate | Root Certificate | 771535D43D4633BD307EB7B8A3966B5DF00707C088089920080C1AE6D3CB0F68 | 771535D43D4633BD307EB7B8A3966B5DF00707C088089920080C1AE6D3CB0F68 | 2048.03.09 | 2048-03-09 15:36:01 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0018Z00003CjzftQAB | 11405697840 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis Signing RSA 4096 Root G4 | QuoVadis Signing RSA 4096 Root G4 | Root Certificate | Root Certificate | 9F8E6DB31E740285E0C2C2DEB09E442BDD4E74BDEEAE2962BC82D1ECB9F39855 | 9F8E6DB31E740285E0C2C2DEB09E442BDD4E74BDEEAE2962BC82D1ECB9F39855 | 2048.03.09 | 2048-03-09 15:32:47 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
0018Z00003CjzfuQAB | 11405699632 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis SMIME ECC P384 Root G4 | QuoVadis SMIME ECC P384 Root G4 | Root Certificate | Root Certificate | 83FDDB2FD9DAE3B21EEBD33CF46251D746F0D6102B683150DD7B98AD8E4BB9F8 | 83FDDB2FD9DAE3B21EEBD33CF46251D746F0D6102B683150DD7B98AD8E4BB9F8 | 2048.03.09 | 2048-03-09 15:29:13 | Client Authentication;Secure Email | |||||||||
0018Z00003CjzfvQAB | 11405700743 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis SMIME RSA 4096 Root G4 | QuoVadis SMIME RSA 4096 Root G4 | Root Certificate | Root Certificate | 5232A304AA4A10CFE6C47842EA3381CB31D619E24F58126D534CD50C5CE7845D | 5232A304AA4A10CFE6C47842EA3381CB31D619E24F58126D534CD50C5CE7845D | 2048.03.09 | 2048-03-09 15:26:26 | Client Authentication;Secure Email | |||||||||
0018Z00003Cjzg3QAB | 10813301362 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis TLS ECC P384 Root G4 | QuoVadis TLS ECC P384 Root G4 | Root Certificate | Root Certificate | 6E1FD3AE0D2D477C8F5EE5F335CC5B6356872654E5356A73D8C0A30A17C252A2 | 6E1FD3AE0D2D477C8F5EE5F335CC5B6356872654E5356A73D8C0A30A17C252A2 | 2048.03.09 | 2048-03-09 15:23:44 | Client Authentication;EV Server Authentication;Server Authentication | |||||||||
0018Z00003Cjzg4QAB | 9734057705 | t | f | f | f | f | f | f | t | f | QuoVadis | QuoVadis TLS RSA 4096 Root G4 | QuoVadis TLS RSA 4096 Root G4 | Root Certificate | Root Certificate | C8A2D38A24F5AC302D8A08EBD38923D9A750B49220F092E82D1C53249E1533D0 | C8A2D38A24F5AC302D8A08EBD38923D9A750B49220F092E82D1C53249E1533D0 | 2048.03.09 | 2048-03-09 15:20:25 | Client Authentication;EV Server Authentication;Server Authentication | |||||||||
0018Z00002iKhl7QAC | 8332869 | t | f | t | f | f | f | f | f | f | RSA the Security Division of EMC | Secure Server Certification Authority | Secure Server Certification Authority | Root Certificate | Intermediate Certificate | 2930BD09A07126BDC17288D4F2AD84645EC948607907A97B5ED0B0B05879EF69 | 2930BD09A07126BDC17288D4F2AD84645EC948607907A97B5ED0B0B05879EF69 | 2010.01.07 | 2010-01-07 23:59:59 | ||||||||||
0018Z00003AVmfYQAT | 10906949956 | t | f | f | f | f | f | f | t | f | SECOM Trust Systems Co., Ltd. | SECOM Document Signing RSA Root CA 2023 | SECOM Document Signing RSA Root CA 2023 | Root Certificate | Root Certificate | 46219BBF9148F00E8B7A4C619B57CF7602701FF81348400718870FABD31FC5BE | 46219BBF9148F00E8B7A4C619B57CF7602701FF81348400718870FABD31FC5BE | 2048.01.01 | 2048-01-01 08:33:59 | Document Signing | |||||||||
0018Z00002u4QZNQA2 | 8509801258 | t | f | f | f | f | f | f | t | f | SECOM Trust Systems CO., LTD. | SECOM RSA Root CA 2023 | SECOM RSA Root CA 2023 | Root Certificate | Root Certificate | 2C154235528D701790B675AFF6E1970827B10ED665E913835BF46E3460FD5C84 | 2C154235528D701790B675AFF6E1970827B10ED665E913835BF46E3460FD5C84 | 2048.01.01 | 2048-01-01 08:03:37 | Document Signing | |||||||||
001o000000xnVWeAAM | 100961663 | t | f | f | f | f | t | f | t | t | SECOM Trust Systems CO., LTD. | Security Communication ECC RootCA1 | Security Communication ECC RootCA1 | Root Certificate | Root Certificate | E74FBDA55BD564C473A36B441AA799C8A68E077440E8288B9FA1E50E4BBACA11 | E74FBDA55BD564C473A36B441AA799C8A68E077440E8288B9FA1E50E4BBACA11 | 2038.01.18 | 2038-01-18 05:15:28 | clientAuth;serverAuth | Server Authentication | Server Authentication | Client Authentication;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000HshFcAAJ | 168370 | t | f | f | f | f | f | f | t | f | SECOM Trust Systems CO., LTD. | Security Communication EV RootCA1 | Security Communication EV RootCA1 | Root Certificate | Root Certificate | A22DBA681E97376E2D397D728AAE3A9B6296B9FDBA60BC2E11F647F2C675FB37 | A22DBA681E97376E2D397D728AAE3A9B6296B9FDBA60BC2E11F647F2C675FB37 | 2037.06.06 | 2037-06-06 02:12:32 | EV Server Authentication | |||||||||
001o000000HshFdAAJ | 144 | t | f | f | f | f | f | f | t | f | SECOM Trust Systems CO., LTD. | Security Communication RootCA1 | Security Communication RootCA1 | Root Certificate | Root Certificate | E75E72ED9F560EEC6EB4800073A43FC3AD19195A392282017895974A99026B6C | E75E72ED9F560EEC6EB4800073A43FC3AD19195A392282017895974A99026B6C | 2023.09.30 | 2023-09-30 04:20:49 | Client Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000HshFeAAJ | 1176879 | t | f | f | f | f | t | t | t | t | SECOM Trust Systems CO., LTD. | Security Communication RootCA2 | Security Communication RootCA2 | Root Certificate | Root Certificate | 513B2CECB810D4CDE5DD85391ADFC6C2DD60D87BB736D2B521484AA47A0EBEF6 | 513B2CECB810D4CDE5DD85391ADFC6C2DD60D87BB736D2B521484AA47A0EBEF6 | 2029.05.29 | 2029-05-29 05:00:39 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000xnVafAAE | 100961662 | t | f | f | f | f | f | f | t | f | SECOM Trust Systems CO., LTD. | Security Communication RootCA3 | Security Communication RootCA3 | Root Certificate | Root Certificate | 24A55C2AB051442D0617766541239A4AD032D7C55175AA34FFDE2FBC4F5C5294 | 24A55C2AB051442D0617766541239A4AD032D7C55175AA34FFDE2FBC4F5C5294 | 2038.01.18 | 2038-01-18 06:17:16 | Client Authentication;Code Signing;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000HshDkAAJ | 331986 | t | f | f | f | f | t | f | t | t | Sectigo | AAA Certificate Services | AAA Certificate Services | Root Certificate | Root Certificate | D7A7A0FB5D7E2731D771E9484EBCDEF71D5F0C3E0A2948782BC83EE0EA699EF4 | D7A7A0FB5D7E2731D771E9484EBCDEF71D5F0C3E0A2948782BC83EE0EA699EF4 | 2028.12.31 | 2028-12-31 23:59:59 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | ||||||||
001o000000HshDqAAJ | 1 | t | f | f | f | f | f | f | t | f | Sectigo | AddTrust External CA Root | AddTrust External CA Root | Root Certificate | Root Certificate | 687FA451382278FFF0C8B11F8D43D576671C6EB2BCEAB413FB83D965D06D2FF2 | 687FA451382278FFF0C8B11F8D43D576671C6EB2BCEAB413FB83D965D06D2FF2 | 2020.05.30 | 2020-05-30 10:48:38 | EV Server Authentication;EV Server Authentication | |||||||||
001o000000vml8HAAQ | 1616334 | t | f | f | f | f | f | t | t | f | Sectigo | COMODO Certification Authority | COMODO Certification Authority | Root Certificate | Root Certificate | 1A0D20445DE5BA1862D19EF880858CBCE50102B36E8F0A040C3C69E74522FE6E | 1A0D20445DE5BA1862D19EF880858CBCE50102B36E8F0A040C3C69E74522FE6E | 2030.12.31 | 2030-12-31 23:59:59 | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | |||||||
001o000000HshENAAZ | 141 | t | f | f | f | f | t | f | f | t | Sectigo | COMODO Certification Authority | COMODO Certification Authority | Root Certificate | Root Certificate | 0C2CD63DF7806FA399EDE809116B575BF87989F06518F9808C860503178BAF66 | 0C2CD63DF7806FA399EDE809116B575BF87989F06518F9808C860503178BAF66 | 2029.12.31 | 2029-12-31 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Email;Websites | ||||||||
001o000000HshEOAAZ | 2835394 | t | f | f | f | f | t | t | t | t | Sectigo | COMODO ECC Certification Authority | COMODO ECC Certification Authority | Root Certificate | Root Certificate | 1793927A0614549789ADCE2F8F34F7F0B66D0F3AE3A3B84D21EC15DBBA4FADC7 | 1793927A0614549789ADCE2F8F34F7F0B66D0F3AE3A3B84D21EC15DBBA4FADC7 | 2038.01.18 | 2038-01-18 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000OrM8lAAF | 1720081 | t | f | f | f | f | t | t | t | t | Sectigo | COMODO RSA Certification Authority | COMODO RSA Certification Authority | Root Certificate | Root Certificate | 52F0E1C4E58EC629291B60317F074671B85D7EA80D5B07273463534B32B40234 | 52F0E1C4E58EC629291B60317F074671B85D7EA80D5B07273463534B32B40234 | 2038.01.18 | 2038-01-18 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0018Z00002leJNSQA2 | 4256644597 | t | f | f | f | f | f | f | t | f | Sectigo | Sectigo Public Code Signing Root E46 | Sectigo Public Code Signing Root E46 | Root Certificate | Root Certificate | 8F6371D8CC5AA7CA149667A98B5496398951E4319F7AFBCC6A660D673E438D0B | 8F6371D8CC5AA7CA149667A98B5496398951E4319F7AFBCC6A660D673E438D0B | 2046.03.21 | 2046-03-21 23:59:59 | Code Signing | |||||||||
0018Z00002leJN0QAM | 4256644598 | t | f | f | f | f | f | f | t | f | Sectigo | Sectigo Public Code Signing Root R46 | Sectigo Public Code Signing Root R46 | Root Certificate | Root Certificate | 7E76260AE69A55D3F060B0FD18B2A8C01443C87B60791030C9FA0B0585101A38 | 7E76260AE69A55D3F060B0FD18B2A8C01443C87B60791030C9FA0B0585101A38 | 2046.03.21 | 2046-03-21 23:59:59 | Code Signing | |||||||||
0018Z00002leJNXQA2 | 4292602906 | t | f | f | f | f | f | f | t | f | Sectigo | Sectigo Public Document Signing Root E46 | Sectigo Public Document Signing Root E46 | Root Certificate | Root Certificate | 01A1A03E1F3DD7ED3CCADAE4D668B4446065DDF3B2DCF05D1DAFFDB2591B3838 | 01A1A03E1F3DD7ED3CCADAE4D668B4446065DDF3B2DCF05D1DAFFDB2591B3838 | 2046.03.21 | 2046-03-21 23:59:59 | Document Signing | |||||||||
0018Z00002leJMuQAM | 4292601243 | t | f | f | f | f | f | f | t | f | Sectigo | Sectigo Public Document Signing Root R46 | Sectigo Public Document Signing Root R46 | Root Certificate | Root Certificate | 43A61038597C31F4E7D75DEEB831E38462D968308C68B5A078F719139735DA89 | 43A61038597C31F4E7D75DEEB831E38462D968308C68B5A078F719139735DA89 | 2046.03.21 | 2046-03-21 23:59:59 | Document Signing | |||||||||
0018Z00002leJMzQAM | 4256644601 | t | f | f | f | f | t | f | t | t | Sectigo | Sectigo Public Email Protection Root E46 | Sectigo Public Email Protection Root E46 | Root Certificate | Root Certificate | 22D9599234D60F1D4BC7C7E96F43FA555B07301FD475175089DAFB8C25E477B3 | 22D9599234D60F1D4BC7C7E96F43FA555B07301FD475175089DAFB8C25E477B3 | 2046.03.21 | 2046-03-21 23:59:59 | clientAuth;emailProtection | Client Authentication;Secure Email | ||||||||
0018Z00002leJMyQAM | 4256644602 | t | f | f | f | f | t | f | t | t | Sectigo | Sectigo Public Email Protection Root R46 | Sectigo Public Email Protection Root R46 | Root Certificate | Root Certificate | D5917A7791EB7CF20A2E57EB98284A67B28A57E89182DA53D546678C9FDE2B4F | D5917A7791EB7CF20A2E57EB98284A67B28A57E89182DA53D546678C9FDE2B4F | 2046.03.21 | 2046-03-21 23:59:59 | clientAuth;emailProtection | Client Authentication;Secure Email | ||||||||
0018Z00002leJMtQAM | 4256644603 | t | f | f | f | f | t | t | t | t | Sectigo | Sectigo Public Server Authentication Root E46 | Sectigo Public Server Authentication Root E46 | Root Certificate | Root Certificate | C90F26F0FB1B4018B22227519B5CA2B53E2CA5B3BE5CF18EFE1BEF47380C5383 | C90F26F0FB1B4018B22227519B5CA2B53E2CA5B3BE5CF18EFE1BEF47380C5383 | 2046.03.21 | 2046-03-21 23:59:59 | clientAuth;EV Server Authentication;EV Server Authentication;serverAuth | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Server Authentication | Websites | |||||
0018Z00002leJMoQAM | 4256644734 | t | f | f | f | f | t | t | t | t | Sectigo | Sectigo Public Server Authentication Root R46 | Sectigo Public Server Authentication Root R46 | Root Certificate | Root Certificate | 7BB647A62AEEAC88BF257AA522D01FFEA395E0AB45C73F93F65654EC38F25A06 | 7BB647A62AEEAC88BF257AA522D01FFEA395E0AB45C73F93F65654EC38F25A06 | 2046.03.21 | 2046-03-21 23:59:59 | clientAuth;EV Server Authentication;EV Server Authentication;serverAuth | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;EV Server Authentication;Server Authentication | Websites | |||||
0018Z00002leJMqQAM | 4256644599 | t | f | f | f | f | t | f | t | f | Sectigo | Sectigo Public Time Stamping Root E46 | Sectigo Public Time Stamping Root E46 | Root Certificate | Root Certificate | E44DDB7952261F15005CD60C1D0C38C18CBFD17C273A31F8ED4C8F53E2685F32 | E44DDB7952261F15005CD60C1D0C38C18CBFD17C273A31F8ED4C8F53E2685F32 | 2046.03.21 | 2046-03-21 23:59:59 | clientAuth;timeStamping | Time Stamping | ||||||||
0018Z00002leJMpQAM | 4256644600 | t | f | f | f | f | t | f | t | f | Sectigo | Sectigo Public Time Stamping Root R46 | Sectigo Public Time Stamping Root R46 | Root Certificate | Root Certificate | 4941B001B8A97E961B7817C9D9E960EC4B056BFC915A8C1AABF6EF6B3AC046A5 | 4941B001B8A97E961B7817C9D9E960EC4B056BFC915A8C1AABF6EF6B3AC046A5 | 2046.03.21 | 2046-03-21 23:59:59 | clientAuth;timeStamping | Time Stamping | ||||||||
001o000000OrM9AAAV | 2841410 | t | f | f | f | f | t | t | t | t | Sectigo | USERTrust ECC Certification Authority | USERTrust ECC Certification Authority | Root Certificate | Root Certificate | 4FF460D54B9C86DABFBCFC5712E0400D2BED3FBC4D4FBDAA86E06ADCD2A9AD7A | 4FF460D54B9C86DABFBCFC5712E0400D2BED3FBC4D4FBDAA86E06ADCD2A9AD7A | 2038.01.18 | 2038-01-18 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshGJAAZ | 12624698 | t | f | t | f | f | f | f | f | f | Sectigo | USERTrust Legacy Secure Server CA | USERTrust Legacy Secure Server CA | Root Certificate | Intermediate Certificate | 92966E8344D2FB3A280EB8604D8140774CE1A057C582BEBC834D0302E859BC43 | 92966E8344D2FB3A280EB8604D8140774CE1A057C582BEBC834D0302E859BC43 | 2015.11.01 | 2015-11-01 23:59:59 | ||||||||||
001o000000OrM8vAAF | 1199354 | t | f | f | f | f | t | t | t | t | Sectigo | USERTrust RSA Certification Authority | USERTrust RSA Certification Authority | Root Certificate | Root Certificate | E793C9B02FD8AA13E21C31228ACCB08119643B749C898964B1746D46C3D4CBD2 | E793C9B02FD8AA13E21C31228ACCB08119643B749C898964B1746D46C3D4CBD2 | 2038.01.18 | 2038-01-18 23:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0014o00001kykXJAAY | 3624902417 | t | f | t | f | f | f | f | f | f | Serviço Federal de Processamento de Dados | Autoridade Certificadora do SERPRO SSL | Autoridade Certificadora do SERPRO SSL | Root Certificate | Intermediate Certificate | 6EF040E36483E5EE9EF3E09A840AC4CCBE3D2333E474A7A8488ECDAC6B7758D7 | 6EF040E36483E5EE9EF3E09A840AC4CCBE3D2333E474A7A8488ECDAC6B7758D7 | 2032.07.01 | 2032-07-01 12:00:59 | ||||||||||
0014o00001lPvEjAAK | 3756574427 | t | f | t | f | f | f | f | f | f | Serviço Federal de Processamento de Dados | Autoridade Certificadora do SERPRO SSLv1 | Autoridade Certificadora do SERPRO SSLv1 | Autoridade Certificadora do SERPRO SSLv1 | Root Certificate | Intermediate Certificate | 08FC942D5176E568ACBEF9C595F36A20DE6ACF9EA30C6F5FCEDD48216ED5B070 | 08FC942D5176E568ACBEF9C595F36A20DE6ACF9EA30C6F5FCEDD48216ED5B070 | 2032.07.01 | 2032-07-01 12:00:59 | |||||||||
001o000000wglm8AAA | 52590928 | t | f | f | f | f | f | t | t | t | Shanghai Electronic Certification Authority Co., Ltd. | UCA Extended Validation Root | UCA Extended Validation Root | Root Certificate | Root Certificate | D43AF9B35473755C9684FC06D7D8CB70EE5C28E773FB294EB41EE71722924D24 | D43AF9B35473755C9684FC06D7D8CB70EE5C28E773FB294EB41EE71722924D24 | 2038.12.31 | 2038-12-31 00:00:00 | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;EV Server Authentication;EV Server Authentication;Server Authentication | Websites | ||||||
001o000000wgm0PAAQ | 52590901 | t | f | f | f | f | f | f | t | t | Shanghai Electronic Certification Authority Co., Ltd. | UCA Global G2 Root | UCA Global G2 Root | Root Certificate | Root Certificate | 9BEA11C976FE014764C1BE56A6F914B5A560317ABD9988393382E5161AA0493C | 9BEA11C976FE014764C1BE56A6F914B5A560317ABD9988393382E5161AA0493C | 2040.12.31 | 2040-12-31 00:00:00 | Server Authentication | Server Authentication | Client Authentication;Code Signing;Document Signing;Secure Email;Server Authentication;Time Stamping | Email;Websites | ||||||
0011J00001Xc6EjQAJ | 2700890695 | t | f | t | f | f | f | f | f | f | SISP - Sociedade Interbancaria e Sistemas de Pagamentos, S.A. | Entidade de Certificacao Raiz da SISP 01 | Entidade de Certificacao Raiz da SISP 01 | Root Certificate | Intermediate Certificate | BC1B7EECFACFABDB04376FE2BB421F7407EA2144B006D38196B76BB56F013A18 | BC1B7EECFACFABDB04376FE2BB421F7407EA2144B006D38196B76BB56F013A18 | 2030.12.15 | 2030-12-15 08:34:55 | ||||||||||
001o0000015NfBTAA0 | 26312165 | t | f | f | f | f | f | f | t | f | SI-TRUST | SI-TRUST Root | SI-TRUST Root | Root Certificate | Root Certificate | FAD540811AFAE0DC767CDF6572A088FA3CE8493DD82B3B869A67D10AAB4E8124 | FAD540811AFAE0DC767CDF6572A088FA3CE8493DD82B3B869A67D10AAB4E8124 | 2037.12.25 | 2037-12-25 08:08:17 | Client Authentication;Document Signing;Secure Email;Server Authentication;Time Stamping | |||||||||
001o000000rGWUcAAO | 8567162 | t | f | f | f | f | f | f | t | f | Skaitmeninio sertifikavimo centras (SSC) | SSC GDL CA Root B | SSC GDL CA Root B | Root Certificate | Root Certificate | C31EEF5682ABB551EBC828DED84098518A6768526D152EE164CFB972A1425D53 | C31EEF5682ABB551EBC828DED84098518A6768526D152EE164CFB972A1425D53 | 2033.06.04 | 2033-06-04 14:21:55 | EV Server Authentication;EV Server Authentication | |||||||||
0018Z00002oh8BGQAY | 7937649716 | t | f | f | f | f | t | f | t | t | SSL.com | SSL.com Client ECC Root CA 2022 | SSL.com Client ECC Root CA 2022 | Root Certificate | Root Certificate | AD7DD58D03AEDB22A30B5084394920CE12230C2D8017AD9B81AB04079BDD026B | AD7DD58D03AEDB22A30B5084394920CE12230C2D8017AD9B81AB04079BDD026B | 2046.08.19 | 2046-08-19 16:30:31 | clientAuth;emailProtection | Client Authentication;Secure Email | ||||||||
0018Z00002oh8BQQAY | 7937650317 | t | f | f | f | f | t | f | t | t | SSL.com | SSL.com Client RSA Root CA 2022 | SSL.com Client RSA Root CA 2022 | Root Certificate | Root Certificate | 1D4CA4A2AB21D0093659804FC0EB2175A617279B56A2475245C9517AFEB59153 | 1D4CA4A2AB21D0093659804FC0EB2175A617279B56A2475245C9517AFEB59153 | 2046.08.19 | 2046-08-19 16:31:06 | clientAuth;emailProtection | Client Authentication;Secure Email | ||||||||
0018Z00003CigQlQAJ | 11283932820 | t | f | f | f | f | f | f | t | f | SSL.com | SSL.com Code Signing ECC Root CA 2022 | SSL.com Code Signing ECC Root CA 2022 | Root Certificate | Root Certificate | E17DB396AFC136FF1D6DCDA4BB443DA2D817131855BE1C4B6FECEA221036722A | E17DB396AFC136FF1D6DCDA4BB443DA2D817131855BE1C4B6FECEA221036722A | 2046.08.19 | 2046-08-19 16:31:34 | Client Authentication;Code Signing;Time Stamping | |||||||||
0018Z00003CigVVQAZ | 11283934550 | t | f | f | f | f | f | f | t | f | SSL.com | SSL.com Code Signing RSA Root CA 2022 | SSL.com Code Signing RSA Root CA 2022 | Root Certificate | Root Certificate | 253E3CA36E37E867EE68867B997B9EC724DCC3161063AB0393B54F2BB7B6C315 | 253E3CA36E37E867EE68867B997B9EC724DCC3161063AB0393B54F2BB7B6C315 | 2046.08.19 | 2046-08-19 16:32:07 | Client Authentication;Code Signing;Time Stamping | |||||||||
0018Z00003CigVkQAJ | 11283932819 | t | f | f | f | f | f | f | t | f | SSL.com | SSL.com Document Signing ECC Root CA 2022 | SSL.com Document Signing ECC Root CA 2022 | Root Certificate | Root Certificate | 5ECE6AB27131FB58A887E94177D55BD9E51AAA2DED6C081B54A39BE3CB84E1F1 | 5ECE6AB27131FB58A887E94177D55BD9E51AAA2DED6C081B54A39BE3CB84E1F1 | 2046.08.19 | 2046-08-19 16:32:43 | Client Authentication;Document Signing | |||||||||
0018Z00003CigVaQAJ | 11283934551 | t | f | f | f | f | f | f | t | f | SSL.com | SSL.com Document Signing RSA Root CA 2022 | SSL.com Document Signing RSA Root CA 2022 | Root Certificate | Root Certificate | E807D49A859ABBC861C72CA907D443AD0FE87EAB9D99B913F2CB5B4AADABE641 | E807D49A859ABBC861C72CA907D443AD0FE87EAB9D99B913F2CB5B4AADABE641 | 2046.08.19 | 2046-08-19 16:33:17 | Client Authentication;Document Signing | |||||||||
001o000000wh8IFAAY | 36499467 | t | f | f | f | f | t | t | t | t | SSL.com | SSL.com EV Root Certification Authority ECC | SSL.com EV Root Certification Authority ECC | Root Certificate | Root Certificate | 22A2C1F7BDED704CC1E701B5F408C310880FE956B5DE2A4A44F99C873A25A7C8 | 22A2C1F7BDED704CC1E701B5F408C310880FE956B5DE2A4A44F99C873A25A7C8 | 2041.02.12 | 2041-02-12 18:15:23 | clientAuth;codeSigning;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Document Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000wh8LYAAY | 36499463 | t | f | f | f | f | f | f | t | f | SSL.com | SSL.com EV Root Certification Authority RSA | SSL.com EV Root Certification Authority RSA | Root Certificate | Root Certificate | 5ADFA25013BED3710831572DE51C4B9A21171C00313249C4CB4719D37FBB8D20 | 5ADFA25013BED3710831572DE51C4B9A21171C00313249C4CB4719D37FBB8D20 | 2041.02.12 | 2041-02-12 17:50:48 | EV Server Authentication;EV Server Authentication | |||||||||
0011J000018LItcQAG | 163978581 | t | f | f | f | f | t | t | t | t | SSL.com | SSL.com EV Root Certification Authority RSA R2 | SSL.com EV Root Certification Authority RSA R2 | Root Certificate | Root Certificate | 2E7BF16CC22485A7BBE2AA8696750761B0AE39BE3B2FE9D0CC6D4EF73491425C | 2E7BF16CC22485A7BBE2AA8696750761B0AE39BE3B2FE9D0CC6D4EF73491425C | 2042.05.30 | 2042-05-30 18:14:37 | clientAuth;codeSigning;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;Document Signing;Encrypting File System;EV Server Authentication;EV Server Authentication;EV Server Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
001o000000wh8U2AAI | 36499472 | t | f | f | f | f | t | f | t | t | SSL.com | SSL.com Root Certification Authority ECC | SSL.com Root Certification Authority ECC | Root Certificate | Root Certificate | 3417BB06CC6007DA1B961C920B8AB4CE3FAD820E4AA30B9ACBC4A74EBDCEBC65 | 3417BB06CC6007DA1B961C920B8AB4CE3FAD820E4AA30B9ACBC4A74EBDCEBC65 | 2041.02.12 | 2041-02-12 18:14:03 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000wh8bhAAA | 36499471 | t | f | f | f | f | t | f | t | t | SSL.com | SSL.com Root Certification Authority RSA | SSL.com Root Certification Authority RSA | Root Certificate | Root Certificate | 85666A562EE0BE5CE925C1D8890A6F76A87EC16D4D7D5F29EA7419CF20123B69 | 85666A562EE0BE5CE925C1D8890A6F76A87EC16D4D7D5F29EA7419CF20123B69 | 2041.02.12 | 2041-02-12 17:39:39 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Code Signing;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0018Z00002jEuBiQAK | 7439766705 | t | f | f | f | f | t | t | t | t | SSL.com | SSL.com TLS ECC Root CA 2022 | SSL.com TLS ECC Root CA 2022 | Root Certificate | Root Certificate | C32FFD9F46F936D16C3673990959434B9AD60AAFBB9E7CF33654F144CC1BA143 | C32FFD9F46F936D16C3673990959434B9AD60AAFBB9E7CF33654F144CC1BA143 | 2046.08.19 | 2046-08-19 16:33:47 | clientAuth;EV Server Authentication;serverAuth | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
0018Z00002jEuITQA0 | 7439767372 | t | f | f | f | f | t | t | t | t | SSL.com | SSL.com TLS RSA Root CA 2022 | SSL.com TLS RSA Root CA 2022 | Root Certificate | Root Certificate | 8FAF7D2E2CB4709BB8E0B33666BF75A5DD45B5DE480F8EA8D4BFE6BEBC17F2ED | 8FAF7D2E2CB4709BB8E0B33666BF75A5DD45B5DE480F8EA8D4BFE6BEBC17F2ED | 2046.08.19 | 2046-08-19 16:34:21 | clientAuth;EV Server Authentication;serverAuth | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Server Authentication | Websites | |||||
001o000000HshFnAAJ | 7749 | t | f | f | f | f | f | f | t | f | Start Commercial (StartCom) Ltd. | StartCom Certification Authority | StartCom Certification Authority | Root Certificate | Root Certificate | C766A9BEF2D4071C863A31AA4920E813B2D198608CB7B7CFE21143B836DF09EA | C766A9BEF2D4071C863A31AA4920E813B2D198608CB7B7CFE21143B836DF09EA | 2036.09.17 | 2036-09-17 19:46:36 | EV Server Authentication | |||||||||
001o000000HshFpAAJ | 5695 | t | f | f | f | f | f | f | t | f | Start Commercial (StartCom) Ltd. | StartCom Certification Authority G2 | StartCom Certification Authority G2 | Root Certificate | Root Certificate | C7BA6567DE93A798AE1FAA791E712D378FAE1F93C4397FEA441BB7CBE6FD5995 | C7BA6567DE93A798AE1FAA791E712D378FAE1F93C4397FEA441BB7CBE6FD5995 | 2039.12.31 | 2039-12-31 23:59:01 | EV Server Authentication | |||||||||
001o000000rGWdtAAG | 9022768 | t | f | f | f | f | f | f | t | f | Swiss BIT, Swiss Federal Office of Information Technology, Systems and Telecommunication (FOITT) | Swiss Government Root CA I | Swiss Government Root CA I | Root Certificate | Root Certificate | 6EC6614E9A8EFD47D6318FFDFD0BF65B493A141F77C38D0B319BE1BBBC053DD2 | 6EC6614E9A8EFD47D6318FFDFD0BF65B493A141F77C38D0B319BE1BBBC053DD2 | 2035.02.15 | 2035-02-15 08:59:59 | Client Authentication;Encrypting File System;IP security tunnel termination;IP security user;Secure Email;Time Stamping | |||||||||
001o0000013laTHAAY | 128784703 | t | f | f | f | f | f | f | t | f | Swiss BIT, Swiss Federal Office of Information Technology, Systems and Telecommunication (FOITT) | Swiss Government Root CA III | Swiss Government Root CA III | Root Certificate | Root Certificate | 958ABBAEFF760F4FBF66FF0F2C2708F4739B2C686127239A2C4EC87A68A984C8 | 958ABBAEFF760F4FBF66FF0F2C2708F4739B2C686127239A2C4EC87A68A984C8 | 2041.04.15 | 2041-04-15 06:59:59 | EV Server Authentication;EV Server Authentication;EV Server Authentication | |||||||||
001o000000HshFtAAJ | 8568543 | t | f | f | f | f | f | f | t | f | Swisscom (Switzerland) Ltd | Swisscom Root EV CA 2 | Swisscom Root EV CA 2 | Root Certificate | Root Certificate | D95FEA3CA4EEDCE74CD76E75FC6D1FF62C441F0FA8BC77F034B19E5DB258015D | D95FEA3CA4EEDCE74CD76E75FC6D1FF62C441F0FA8BC77F034B19E5DB258015D | 2031.06.25 | 2031-06-25 08:45:08 | EV Server Authentication | |||||||||
001o000000HshFuAAJ | 1221 | t | f | f | f | f | t | t | t | t | SwissSign AG | SwissSign Gold CA - G2 | SwissSign Gold CA - G2 | Root Certificate | Root Certificate | 62DD0BE9B9F50A163EA0F8E75C053B1ECA57EA55C8688F647C6881F2C8357B95 | 62DD0BE9B9F50A163EA0F8E75C053B1ECA57EA55C8688F647C6881F2C8357B95 | 2036.10.25 | 2036-10-25 08:30:35 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;EV Server Authentication;Secure Email;Server Authentication | Email;Websites | |||||
001o000000rGWSRAA4 | 7470477 | t | f | f | f | f | f | f | t | f | SwissSign AG | SwissSign Gold Root CA - G3 | SwissSign Gold Root CA - G3 | Root Certificate | Root Certificate | 7AF6EA9F753A1E709BD64D0BEB867C11E8C295A56E24A6E0471459DCCDAA1558 | 7AF6EA9F753A1E709BD64D0BEB867C11E8C295A56E24A6E0471459DCCDAA1558 | 2037.08.04 | 2037-08-04 13:31:47 | EV Server Authentication | |||||||||
0018Z000036Cec1QAC | 7044185765 | t | f | f | f | f | f | f | t | f | SwissSign AG | SwissSign RSA TLS Root CA 2022 - 1 | SwissSign RSA TLS Root CA 2022 - 1 | Root Certificate | Root Certificate | 193144F431E0FDDB740717D4DE926A571133884B4360D30E272913CBE660CE41 | 193144F431E0FDDB740717D4DE926A571133884B4360D30E272913CBE660CE41 | 2047.06.08 | 2047-06-08 11:08:22 | Server Authentication | |||||||||
001o000000HshFwAAJ | 2953 | t | f | f | f | f | t | f | t | f | SwissSign AG | SwissSign Silver CA - G2 | SwissSign Silver CA - G2 | Root Certificate | Root Certificate | BE6C4DA2BBB9BA59B6F3939768374246C3C005993FA98F020D1DEDBED48A81D5 | BE6C4DA2BBB9BA59B6F3939768374246C3C005993FA98F020D1DEDBED48A81D5 | 2036.10.25 | 2036-10-25 08:32:46 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email;Server Authentication | ||||||||
0018Z000036CebwQAC | 7044154542 | t | f | f | f | f | f | f | t | f | SwissSign AG | SwissSign AG | SwissSign RSA SMIME Root CA 2022 - 1 | SwissSign RSA SMIME Root CA 2022 - 1 | Root Certificate | Root Certificate | 9A12C392BFE57891A0C545309D4D9FD567E480CB613D6342278B195C79A7931F | 9A12C392BFE57891A0C545309D4D9FD567E480CB613D6342278B195C79A7931F | 2047.06.08 | 2047-06-08 10:53:13 | Secure Email | ||||||||
0018Z00002u6qx6QAA | 8697291574 | t | f | f | f | f | f | t | t | t | Taiwan-CA Inc. (TWCA) | TWCA CYBER Root CA | TWCA CYBER Root CA | Root Certificate | Root Certificate | 3F63BB2814BE174EC8B6439CF08D6D56F0B7C405883A5648A334424D6B3EC558 | 3F63BB2814BE174EC8B6439CF08D6D56F0B7C405883A5648A334424D6B3EC558 | 2047.11.22 | 2047-11-22 15:59:59 | Server Authentication | EV Server Authentication;Server Authentication | Server Authentication | Websites | ||||||
001o000000HshGHAAZ | 8559119 | t | f | f | f | f | t | t | t | t | Taiwan-CA Inc. (TWCA) | TWCA Global Root CA | TWCA Global Root CA | Root Certificate | Root Certificate | 59769007F7685D0FCD50872F9F95D5755A5B2B457D81F3692B610A98672F0E1B | 59769007F7685D0FCD50872F9F95D5755A5B2B457D81F3692B610A98672F0E1B | 2030.12.31 | 2030-12-31 15:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | EV Server Authentication;Secure Email;Server Authentication | Email;Websites | |||||
0018Z00002u6qxVQAQ | 8697287480 | t | f | f | f | f | f | f | t | t | Taiwan-CA Inc. (TWCA) | TWCA Global Root CA G2 | TWCA Global Root CA G2 | Root Certificate | Root Certificate | 3A0072D49FFC04E996C59AEB75991D3C340F3615D6FD4DCE90AC0B3D88EAD4F4 | 3A0072D49FFC04E996C59AEB75991D3C340F3615D6FD4DCE90AC0B3D88EAD4F4 | 2047.11.22 | 2047-11-22 15:59:59 | Client Authentication;Document Signing;Secure Email;Time Stamping | |||||||||
001o000000HshGIAAZ | 1566986 | t | f | f | f | f | t | f | t | t | Taiwan-CA Inc. (TWCA) | TWCA Root Certification Authority | TWCA Root Certification Authority | Root Certificate | Root Certificate | BFD88FE1101C41AE3E801BF8BE56350EE9BAD1A6B9BD515EDC5C6D5B8711AC44 | BFD88FE1101C41AE3E801BF8BE56350EE9BAD1A6B9BD515EDC5C6D5B8711AC44 | 2030.12.31 | 2030-12-31 15:59:59 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;Encrypting File System;EV Server Authentication;IP security tunnel termination;IP security user;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||||
001o000000HshG3AAJ | 989582 | t | f | f | f | f | t | f | t | t | Telia Company | TeliaSonera Root CA v1 | TeliaSonera Root CA v1 | Root Certificate | Root Certificate | DD6936FE21F8F077C123A1A521C12224F72255B73E03A7260693E8A24B0FA389 | DD6936FE21F8F077C123A1A521C12224F72255B73E03A7260693E8A24B0FA389 | 2032.10.18 | 2032-10-18 12:00:50 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0011J00001kV8ZmQAK | 1199641739 | t | f | f | f | f | t | f | t | t | Telia Company | Telia Company | Telia Root CA v2 | Telia Root CA v2 | Root Certificate | Root Certificate | 242B69742FCB1E5B2ABF98898B94572187544E5B4D9911786573621F6A74B82C | 242B69742FCB1E5B2ABF98898B94572187544E5B4D9911786573621F6A74B82C | 2043.11.29 | 2043-11-29 11:55:54 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Server Authentication | Server Authentication | Client Authentication;Document Signing;Secure Email;Server Authentication | Email;Websites | ||||
001o000000rGWaGAAW | 12725344 | t | f | f | f | f | f | f | t | f | Thailand National Root Certificate Authority (Electronic Transactions Development Agency) | Thailand National Root Certification Authority - G1 | Thailand National Root Certification Authority - G1 | Root Certificate | Root Certificate | 2A8DA2F8D23E0CD3B5871ECFB0F42276CA73230667F474EEDE71C5EE32CC3EC6 | 2A8DA2F8D23E0CD3B5871ECFB0F42276CA73230667F474EEDE71C5EE32CC3EC6 | 2036.03.27 | 2036-03-27 10:10:22 | Client Authentication;Document Signing;Encrypting File System;Secure Email;Server Authentication;Time Stamping | |||||||||
0018Z00002WNev6QAD | 6368205792 | t | f | f | f | f | f | f | f | t | TrustAsia Technologies, Inc. | TrustAsia Global Root CA G3 | TrustAsia Global Root CA G3 | Root Certificate | Root Certificate | E0D3226AEB1163C2E48FF9BE3B50B4C6431BE7BB1EACC5C36B5D5EC509039A08 | E0D3226AEB1163C2E48FF9BE3B50B4C6431BE7BB1EACC5C36B5D5EC509039A08 | 2046.05.19 | 2046-05-19 02:10:19 | Email;Websites | |||||||||
0018Z00002WNevBQAT | 6368207277 | t | f | f | f | f | f | f | f | t | TrustAsia Technologies, Inc. | TrustAsia Global Root CA G4 | TrustAsia Global Root CA G4 | Root Certificate | Root Certificate | BE4B56CB5056C0136A526DF444508DAA36A0B54F42E4AC38F72AF470E479654C | BE4B56CB5056C0136A526DF444508DAA36A0B54F42E4AC38F72AF470E479654C | 2046.05.19 | 2046-05-19 02:10:22 | Email;Websites | |||||||||
0011J00001QTdoCQAT | 1435351934 | t | f | f | f | f | f | f | t | f | TrustFactory(Pty)Ltd | TrustFactory Client Root Certificate Authority | TrustFactory Client Root Certificate Authority | Root Certificate | Root Certificate | 92C4DB06C42A130D663574D7741B7F93C806FD6714DCE890E84B568FAE86E64C | 92C4DB06C42A130D663574D7741B7F93C806FD6714DCE890E84B568FAE86E64C | 2047.11.28 | 2047-11-28 11:48:36 | Client Authentication;Document Signing;Secure Email | |||||||||
0018Z00002mLAjYQAW | 4522781392 | t | f | t | f | f | f | f | f | f | Valid Certificadora | AC VALID SSL EV | AC VALID SSL EV | AC VALID SSL EV | Root Certificate | Intermediate Certificate | AD960D6A51AF58E1EC09EE05E6DF827A7718379CABF0A5529DE4B01C122908C0 | AD960D6A51AF58E1EC09EE05E6DF827A7718379CABF0A5529DE4B01C122908C0 | 2032.07.01 | 2032-07-01 12:00:59 | |||||||||
001o000000HshFZAAZ | 1227348 | t | f | f | f | f | t | f | t | t | Viking Cloud, Inc. | Secure Global CA | Secure Global CA | Root Certificate | Root Certificate | 4200F5043AC8590EBB527D209ED1503029FBCBD41CA1B506EC27F15ADE7DAC69 | 4200F5043AC8590EBB527D209ED1503029FBCBD41CA1B506EC27F15ADE7DAC69 | 2029.12.31 | 2029-12-31 19:52:06 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Client Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||||
001o000000HshFbAAJ | 119 | t | f | f | f | f | t | t | t | t | Viking Cloud, Inc. | SecureTrust CA | SecureTrust CA | Root Certificate | Root Certificate | F1C1B50AE5A20DD8030EC9F6BC24823DD367B5255759B4E71B61FCE9F7375D73 | F1C1B50AE5A20DD8030EC9F6BC24823DD367B5255759B4E71B61FCE9F7375D73 | 2029.12.31 | 2029-12-31 19:40:55 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Websites | |||||
0011J00001OB9hiQAD | 1428779690 | t | f | f | f | f | t | t | t | t | Viking Cloud, Inc. | Trustwave Global Certification Authority | Trustwave Global Certification Authority | Root Certificate | Root Certificate | 97552015F5DDFC3C8788C006944555408894450084F100867086BC1A2BB58DC8 | 97552015F5DDFC3C8788C006944555408894450084F100867086BC1A2BB58DC8 | 2042.08.23 | 2042-08-23 19:34:12 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0011J00001OB9goQAD | 1428780385 | t | f | f | f | f | t | t | t | t | Viking Cloud, Inc. | Trustwave Global ECC P256 Certification Authority | Trustwave Global ECC P256 Certification Authority | Root Certificate | Root Certificate | 945BBC825EA554F489D1FD51A73DDF2EA624AC7019A05205225C22A78CCFA8B4 | 945BBC825EA554F489D1FD51A73DDF2EA624AC7019A05205225C22A78CCFA8B4 | 2042.08.23 | 2042-08-23 19:35:10 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
0011J00001OB9jKQAT | 1428782011 | t | f | f | f | f | t | t | t | t | Viking Cloud, Inc. | Trustwave Global ECC P384 Certification Authority | Trustwave Global ECC P384 Certification Authority | Root Certificate | Root Certificate | 55903859C8C0C3EBB8759ECE4E2557225FF5758BBD38EBD48276601E1BD58097 | 55903859C8C0C3EBB8759ECE4E2557225FF5758BBD38EBD48276601E1BD58097 | 2042.08.23 | 2042-08-23 19:36:43 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;serverAuth;timeStamping | Server Authentication | EV Server Authentication;Server Authentication | Client Authentication;Code Signing;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | Email;Websites | |||||
001o000000HshGdAAJ | 95564 | t | f | f | f | f | t | f | t | t | Viking Cloud, Inc. | XRamp Global Certification Authority | XRamp Global Certification Authority | Root Certificate | Root Certificate | CECDDC905099D8DADFC5B1D209B737CBE2C18CFB2C10C0FF0BCF0D3286FC1AA2 | CECDDC905099D8DADFC5B1D209B737CBE2C18CFB2C10C0FF0BCF0D3286FC1AA2 | 2035.01.01 | 2035-01-01 05:37:19 | clientAuth;codeSigning;emailProtection;EV Server Authentication;EV Server Authentication;timeStamping | Client Authentication;EV Server Authentication;Secure Email;Server Authentication;Time Stamping | ||||||||
0011J00001kWp2aQAC | 2961094747 | t | f | t | f | f | f | f | f | f | Vintegris / vinCAsign | vinCAsign Qualified Authority | vinCAsign Qualified Authority | Root Certificate | Intermediate Certificate | 2EE6E5FE882F2B92705456AB78368BE83731485277CD0BD9BA381C99135F86E2 | 2EE6E5FE882F2B92705456AB78368BE83731485277CD0BD9BA381C99135F86E2 | 2042.04.20 | 2042-04-20 10:14:55 | ||||||||||
001o000000rGWZwAAO | 1855983 | t | f | f | f | f | t | f | t | f | Visa | Visa Information Delivery Root CA | Visa Information Delivery Root CA | Root Certificate | Root Certificate | C57A3ACBE8C06BA1988A83485BF326F2448775379849DE01CA43571AF357E74B | C57A3ACBE8C06BA1988A83485BF326F2448775379849DE01CA43571AF357E74B | 2025.06.29 | 2025-06-29 17:42:42 | clientAuth;codeSigning;emailProtection;serverAuth;timeStamping | Client Authentication;Secure Email;Server Authentication | ||||||||
0014o00001nqJkmAAE | 5150406205 | t | f | f | f | f | f | f | t | f | Visa | Visa Public ECC Root CA | Visa Public ECC Root CA | Root Certificate | Root Certificate | E6BE68CE06FE0DA0C140F1AEB00B67B636C5EEA9422088929362375CE086DB39 | E6BE68CE06FE0DA0C140F1AEB00B67B636C5EEA9422088929362375CE086DB39 | 2041.03.15 | 2041-03-15 00:00:00 | Client Authentication;Server Authentication | |||||||||
0014o00001npzwKAAQ | 5150409166 | t | f | f | f | f | f | f | t | f | Visa | Visa Public RSA Root CA | Visa Public RSA Root CA | Root Certificate | Root Certificate | 07CD9AA9064A9B94C6AEF8FB784C1BBC1BEDA08ACBE86878D781A39167626CF8 | 07CD9AA9064A9B94C6AEF8FB784C1BBC1BEDA08ACBE86878D781A39167626CF8 | 2041.03.15 | 2041-03-15 00:00:00 | Client Authentication;Server Authentication | |||||||||
001o000000ioq7bAAA | 8701030 | t | f | f | f | f | f | f | t | f | WoSign CA Limited | CA WoSign ECC Root | CA WoSign ECC Root | Root Certificate | Root Certificate | 8B45DA1C06F791EB0CABF26BE588F5FB23165C2E614BF885562D0DCE50B29B02 | 8B45DA1C06F791EB0CABF26BE588F5FB23165C2E614BF885562D0DCE50B29B02 | 2044.11.08 | 2044-11-08 00:58:58 | EV Server Authentication | |||||||||
001o000000HshEBAAZ | 8559376 | t | f | f | f | f | f | f | t | f | WoSign CA Limited | CA 沃通根证书 | CA 沃通根证书 | Root Certificate | Root Certificate | D6F034BD94AA233F0297ECA4245B283973E447AA590F310C77F48FDF83112254 | D6F034BD94AA233F0297ECA4245B283973E447AA590F310C77F48FDF83112254 | 2039.08.08 | 2039-08-08 01:00:01 | EV Server Authentication | |||||||||
001o000000HshECAAZ | 8559076 | t | f | f | f | f | f | f | t | f | WoSign CA Limited | Certification Authority of WoSign | Certification Authority of WoSign | Root Certificate | Root Certificate | 4B22D5A6AEC99F3CDB79AA5EC06838479CD5ECBA7164F7F22DC1D65F63D85708 | 4B22D5A6AEC99F3CDB79AA5EC06838479CD5ECBA7164F7F22DC1D65F63D85708 | 2039.08.08 | 2039-08-08 01:00:01 | EV Server Authentication | |||||||||
001o000000ioq72AAA | 8671670 | t | f | f | f | f | f | f | t | f | WoSign CA Limited | Certification Authority of WoSign G2 | Certification Authority of WoSign G2 | Root Certificate | Root Certificate | D487A56F83B07482E85E963394C1ECC2C9E51D0903EE946B02C301581ED99E16 | D487A56F83B07482E85E963394C1ECC2C9E51D0903EE946B02C301581ED99E16 | 2044.11.08 | 2044-11-08 00:58:58 | EV Server Authentication | |||||||||
001o000000rGWTjAAO | 2233447 | t | f | f | f | f | f | f | t | f | WoSign CA Limited | Class 1 Primary CA | Class 1 Primary CA | Root Certificate | Root Certificate | 7D8CE822222B90C0B14342C7A8145D1F24351F4D1A1FE0EDFD312EE73FB00149 | 7D8CE822222B90C0B14342C7A8145D1F24351F4D1A1FE0EDFD312EE73FB00149 | 2020.07.06 | 2020-07-06 23:59:59 | EV Server Authentication | |||||||||
0011J00001KPVJ1QAP | 988141391 | t | f | f | f | f | f | f | t | f | Zetes | ZETES TSP ROOT CA 001 | ZETES TSP ROOT CA 001 | Root Certificate | Root Certificate | 016E1DCD5F78841BBEBBAE9DDEA08C8D7EC54E698E95BB778ECDD1E10D8BF4F9 | 016E1DCD5F78841BBEBBAE9DDEA08C8D7EC54E698E95BB778ECDD1E10D8BF4F9 | 2036.05.20 | 2036-05-20 13:23:38 | Client Authentication;Document Signing;Secure Email;Time Stamping |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment