From 85fff929c218a94bd32363107878a4bd00944b71 Mon Sep 17 00:00:00 2001 From: cvs2hg Date: Fri, 25 Jan 2008 15:07:04 +0000 Subject: fixup commit for tag 'NSS_3_11_5_WITH_CKBI_1_65_RTM' --- security/nss/lib/ckfw/builtins/Makefile | 2 +- security/nss/lib/ckfw/builtins/binst.c | 2 +- security/nss/lib/ckfw/builtins/bslot.c | 2 +- security/nss/lib/ckfw/builtins/btoken.c | 2 +- security/nss/lib/ckfw/builtins/builtins.h | 31 +- security/nss/lib/ckfw/builtins/certdata.c | 2945 ++++-- security/nss/lib/ckfw/builtins/certdata.perl | 6 +- security/nss/lib/ckfw/builtins/certdata.txt | 14053 ++++++++++++++----------- security/nss/lib/ckfw/builtins/constants.c | 38 +- security/nss/lib/ckfw/builtins/nssckbi.h | 4 +- 10 files changed, 10123 insertions(+), 6962 deletions(-) diff --git a/security/nss/lib/ckfw/builtins/Makefile b/security/nss/lib/ckfw/builtins/Makefile index d1410119c..0a2384a2f 100644 --- a/security/nss/lib/ckfw/builtins/Makefile +++ b/security/nss/lib/ckfw/builtins/Makefile @@ -77,7 +77,7 @@ include $(CORE_DEPTH)/coreconf/rules.mk # Generate certdata.c. generate: - perl certdata.perl < certdata.txt + $(PERL) certdata.perl < certdata.txt # This'll need some help from a build person. diff --git a/security/nss/lib/ckfw/builtins/binst.c b/security/nss/lib/ckfw/builtins/binst.c index 2d912f4a4..5a825ce0d 100644 --- a/security/nss/lib/ckfw/builtins/binst.c +++ b/security/nss/lib/ckfw/builtins/binst.c @@ -121,7 +121,7 @@ builtins_mdInstance_GetSlots return CKR_OK; } -NSS_IMPLEMENT_DATA const NSSCKMDInstance +const NSSCKMDInstance nss_builtins_mdInstance = { (void *)NULL, /* etc */ NULL, /* Initialize */ diff --git a/security/nss/lib/ckfw/builtins/bslot.c b/security/nss/lib/ckfw/builtins/bslot.c index ebf951d48..68e92c8bc 100644 --- a/security/nss/lib/ckfw/builtins/bslot.c +++ b/security/nss/lib/ckfw/builtins/bslot.c @@ -110,7 +110,7 @@ builtins_mdSlot_GetToken return (NSSCKMDToken *)&nss_builtins_mdToken; } -NSS_IMPLEMENT_DATA const NSSCKMDSlot +const NSSCKMDSlot nss_builtins_mdSlot = { (void *)NULL, /* etc */ NULL, /* Initialize */ diff --git a/security/nss/lib/ckfw/builtins/btoken.c b/security/nss/lib/ckfw/builtins/btoken.c index 7808161d9..af05d0b22 100644 --- a/security/nss/lib/ckfw/builtins/btoken.c +++ b/security/nss/lib/ckfw/builtins/btoken.c @@ -150,7 +150,7 @@ builtins_mdToken_OpenSession return nss_builtins_CreateSession(fwSession, pError); } -NSS_IMPLEMENT_DATA const NSSCKMDToken +const NSSCKMDToken nss_builtins_mdToken = { (void *)NULL, /* etc */ NULL, /* Setup */ diff --git a/security/nss/lib/ckfw/builtins/builtins.h b/security/nss/lib/ckfw/builtins/builtins.h index a3937ac9f..457c75f34 100644 --- a/security/nss/lib/ckfw/builtins/builtins.h +++ b/security/nss/lib/ckfw/builtins/builtins.h @@ -64,23 +64,24 @@ struct builtinsInternalObjectStr { }; typedef struct builtinsInternalObjectStr builtinsInternalObject; -NSS_EXTERN_DATA builtinsInternalObject nss_builtins_data[]; -NSS_EXTERN_DATA const PRUint32 nss_builtins_nObjects; +extern builtinsInternalObject nss_builtins_data[]; +extern const PRUint32 nss_builtins_nObjects; -NSS_EXTERN_DATA const CK_VERSION nss_builtins_CryptokiVersion; -NSS_EXTERN_DATA const NSSUTF8 * nss_builtins_ManufacturerID; -NSS_EXTERN_DATA const NSSUTF8 * nss_builtins_LibraryDescription; -NSS_EXTERN_DATA const CK_VERSION nss_builtins_LibraryVersion; -NSS_EXTERN_DATA const NSSUTF8 * nss_builtins_SlotDescription; -NSS_EXTERN_DATA const CK_VERSION nss_builtins_HardwareVersion; -NSS_EXTERN_DATA const CK_VERSION nss_builtins_FirmwareVersion; -NSS_EXTERN_DATA const NSSUTF8 * nss_builtins_TokenLabel; -NSS_EXTERN_DATA const NSSUTF8 * nss_builtins_TokenModel; -NSS_EXTERN_DATA const NSSUTF8 * nss_builtins_TokenSerialNumber; +extern const CK_VERSION nss_builtins_CryptokiVersion; +extern const CK_VERSION nss_builtins_LibraryVersion; +extern const CK_VERSION nss_builtins_HardwareVersion; +extern const CK_VERSION nss_builtins_FirmwareVersion; -NSS_EXTERN_DATA const NSSCKMDInstance nss_builtins_mdInstance; -NSS_EXTERN_DATA const NSSCKMDSlot nss_builtins_mdSlot; -NSS_EXTERN_DATA const NSSCKMDToken nss_builtins_mdToken; +extern const NSSUTF8 nss_builtins_ManufacturerID[]; +extern const NSSUTF8 nss_builtins_LibraryDescription[]; +extern const NSSUTF8 nss_builtins_SlotDescription[]; +extern const NSSUTF8 nss_builtins_TokenLabel[]; +extern const NSSUTF8 nss_builtins_TokenModel[]; +extern const NSSUTF8 nss_builtins_TokenSerialNumber[]; + +extern const NSSCKMDInstance nss_builtins_mdInstance; +extern const NSSCKMDSlot nss_builtins_mdSlot; +extern const NSSCKMDToken nss_builtins_mdToken; NSS_EXTERN NSSCKMDSession * nss_builtins_CreateSession diff --git a/security/nss/lib/ckfw/builtins/certdata.c b/security/nss/lib/ckfw/builtins/certdata.c index c8f3dde8e..398e2a67a 100644 --- a/security/nss/lib/ckfw/builtins/certdata.c +++ b/security/nss/lib/ckfw/builtins/certdata.c @@ -42,15 +42,15 @@ static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$""; @(#) $RCSfile$ #include "builtins.h" #endif /* BUILTINS_H */ -static const CK_TRUST ckt_netscape_valid = CKT_NETSCAPE_VALID; -static const CK_OBJECT_CLASS cko_certificate = CKO_CERTIFICATE; -static const CK_TRUST ckt_netscape_trusted_delegator = CKT_NETSCAPE_TRUSTED_DELEGATOR; -static const CK_OBJECT_CLASS cko_netscape_trust = CKO_NETSCAPE_TRUST; +static const CK_BBOOL ck_false = CK_FALSE; static const CK_BBOOL ck_true = CK_TRUE; -static const CK_OBJECT_CLASS cko_data = CKO_DATA; static const CK_CERTIFICATE_TYPE ckc_x_509 = CKC_X_509; -static const CK_BBOOL ck_false = CK_FALSE; +static const CK_OBJECT_CLASS cko_certificate = CKO_CERTIFICATE; +static const CK_OBJECT_CLASS cko_data = CKO_DATA; static const CK_OBJECT_CLASS cko_netscape_builtin_root_list = CKO_NETSCAPE_BUILTIN_ROOT_LIST; +static const CK_OBJECT_CLASS cko_netscape_trust = CKO_NETSCAPE_TRUST; +static const CK_TRUST ckt_netscape_trust_unknown = CKT_NETSCAPE_TRUST_UNKNOWN; +static const CK_TRUST ckt_netscape_trusted_delegator = CKT_NETSCAPE_TRUSTED_DELEGATOR; #ifdef DEBUG static const CK_ATTRIBUTE_TYPE nss_builtins_types_0 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_APPLICATION, CKA_VALUE @@ -255,7 +255,7 @@ static const CK_ATTRIBUTE_TYPE nss_builtins_types_66 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE }; static const CK_ATTRIBUTE_TYPE nss_builtins_types_67 [] = { - CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED }; static const CK_ATTRIBUTE_TYPE nss_builtins_types_68 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE @@ -273,7 +273,7 @@ static const CK_ATTRIBUTE_TYPE nss_builtins_types_72 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE }; static const CK_ATTRIBUTE_TYPE nss_builtins_types_73 [] = { - CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED }; static const CK_ATTRIBUTE_TYPE nss_builtins_types_74 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE @@ -303,7 +303,7 @@ static const CK_ATTRIBUTE_TYPE nss_builtins_types_82 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE }; static const CK_ATTRIBUTE_TYPE nss_builtins_types_83 [] = { - CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED }; static const CK_ATTRIBUTE_TYPE nss_builtins_types_84 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE @@ -677,6 +677,72 @@ static const CK_ATTRIBUTE_TYPE nss_builtins_types_206 [] = { static const CK_ATTRIBUTE_TYPE nss_builtins_types_207 [] = { CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED }; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_208 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_209 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_210 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_211 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_212 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_213 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_214 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_215 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_216 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_217 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_218 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_219 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_220 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_221 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_222 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_223 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_224 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_225 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_226 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_227 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_228 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE +}; +static const CK_ATTRIBUTE_TYPE nss_builtins_types_229 [] = { + CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED +}; #ifdef DEBUG static const NSSItem nss_builtins_items_0 [] = { { (void *)&cko_data, (PRUint32)sizeof(CK_OBJECT_CLASS) }, @@ -685,7 +751,7 @@ static const NSSItem nss_builtins_items_0 [] = { { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, { (void *)"CVS ID", (PRUint32)7 }, { (void *)"NSS", (PRUint32)4 }, - { (void *)"@(#) $RCSfile$ $Revision$ $Date$""; @(#) $RCSfile$ $Revision$ $Date$", (PRUint32)165 } + { (void *)"@(#) $RCSfile$ $Revision$ $Date$""; @(#) $RCSfile$ $Revision$ $Date$", (PRUint32)170 } }; #endif /* DEBUG */ static const NSSItem nss_builtins_items_1 [] = { @@ -784,7 +850,7 @@ static const NSSItem nss_builtins_items_3 [] = { , (PRUint32)18 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) } }; static const NSSItem nss_builtins_items_4 [] = { @@ -1080,7 +1146,7 @@ static const NSSItem nss_builtins_items_9 [] = { , (PRUint32)206 }, { (void *)"\002\001\000" , (PRUint32)3 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } @@ -1206,7 +1272,7 @@ static const NSSItem nss_builtins_items_11 [] = { , (PRUint32)210 }, { (void *)"\002\001\000" , (PRUint32)3 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } @@ -1333,9 +1399,9 @@ static const NSSItem nss_builtins_items_13 [] = { , (PRUint32)212 }, { (void *)"\002\001\000" , (PRUint32)3 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; static const NSSItem nss_builtins_items_14 [] = { @@ -1456,7 +1522,7 @@ static const NSSItem nss_builtins_items_15 [] = { { (void *)"\002\001\001" , (PRUint32)3 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) } }; @@ -1582,7 +1648,7 @@ static const NSSItem nss_builtins_items_17 [] = { { (void *)"\002\001\001" , (PRUint32)3 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) } }; @@ -2353,9 +2419,9 @@ static const NSSItem nss_builtins_items_31 [] = { { (void *)"\002\021\000\315\272\177\126\360\337\344\274\124\376\042\254\263" "\162\252\125" , (PRUint32)19 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; static const NSSItem nss_builtins_items_32 [] = { @@ -2445,7 +2511,7 @@ static const NSSItem nss_builtins_items_33 [] = { { (void *)"\002\020\055\033\374\112\027\215\243\221\353\347\377\365\213\105" "\276\013" , (PRUint32)18 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } @@ -2660,9 +2726,9 @@ static const NSSItem nss_builtins_items_37 [] = { { (void *)"\002\020\114\307\352\252\230\076\161\323\223\020\370\075\072\211" "\221\222" , (PRUint32)18 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; static const NSSItem nss_builtins_items_38 [] = { @@ -2783,7 +2849,7 @@ static const NSSItem nss_builtins_items_39 [] = { { (void *)"\002\021\000\271\057\140\314\210\237\241\172\106\011\270\133\160" "\154\212\257" , (PRUint32)19 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } @@ -3142,6 +3208,114 @@ static const NSSItem nss_builtins_items_45 [] = { { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; static const NSSItem nss_builtins_items_46 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"GlobalSign Root CA - R2", (PRUint32)24 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\114\061\040\060\036\006\003\125\004\013\023\027\107\154\157" +"\142\141\154\123\151\147\156\040\122\157\157\164\040\103\101\040" +"\055\040\122\062\061\023\060\021\006\003\125\004\012\023\012\107" +"\154\157\142\141\154\123\151\147\156\061\023\060\021\006\003\125" +"\004\003\023\012\107\154\157\142\141\154\123\151\147\156" +, (PRUint32)78 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\114\061\040\060\036\006\003\125\004\013\023\027\107\154\157" +"\142\141\154\123\151\147\156\040\122\157\157\164\040\103\101\040" +"\055\040\122\062\061\023\060\021\006\003\125\004\012\023\012\107" +"\154\157\142\141\154\123\151\147\156\061\023\060\021\006\003\125" +"\004\003\023\012\107\154\157\142\141\154\123\151\147\156" +, (PRUint32)78 }, + { (void *)"\002\013\004\000\000\000\000\001\017\206\046\346\015" +, (PRUint32)13 }, + { (void *)"\060\202\003\272\060\202\002\242\240\003\002\001\002\002\013\004" +"\000\000\000\000\001\017\206\046\346\015\060\015\006\011\052\206" +"\110\206\367\015\001\001\005\005\000\060\114\061\040\060\036\006" +"\003\125\004\013\023\027\107\154\157\142\141\154\123\151\147\156" +"\040\122\157\157\164\040\103\101\040\055\040\122\062\061\023\060" +"\021\006\003\125\004\012\023\012\107\154\157\142\141\154\123\151" +"\147\156\061\023\060\021\006\003\125\004\003\023\012\107\154\157" +"\142\141\154\123\151\147\156\060\036\027\015\060\066\061\062\061" +"\065\060\070\060\060\060\060\132\027\015\062\061\061\062\061\065" +"\060\070\060\060\060\060\132\060\114\061\040\060\036\006\003\125" +"\004\013\023\027\107\154\157\142\141\154\123\151\147\156\040\122" +"\157\157\164\040\103\101\040\055\040\122\062\061\023\060\021\006" +"\003\125\004\012\023\012\107\154\157\142\141\154\123\151\147\156" +"\061\023\060\021\006\003\125\004\003\023\012\107\154\157\142\141" +"\154\123\151\147\156\060\202\001\042\060\015\006\011\052\206\110" +"\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001" +"\012\002\202\001\001\000\246\317\044\016\276\056\157\050\231\105" +"\102\304\253\076\041\124\233\013\323\177\204\160\372\022\263\313" +"\277\207\137\306\177\206\323\262\060\134\326\375\255\361\173\334" +"\345\370\140\226\011\222\020\365\320\123\336\373\173\176\163\210" +"\254\122\210\173\112\246\312\111\246\136\250\247\214\132\021\274" +"\172\202\353\276\214\351\263\254\226\045\007\227\112\231\052\007" +"\057\264\036\167\277\212\017\265\002\174\033\226\270\305\271\072" +"\054\274\326\022\271\353\131\175\342\320\006\206\137\136\111\152" +"\265\071\136\210\064\354\274\170\014\010\230\204\154\250\315\113" +"\264\240\175\014\171\115\360\270\055\313\041\312\325\154\133\175" +"\341\240\051\204\241\371\323\224\111\313\044\142\221\040\274\335" +"\013\325\331\314\371\352\047\012\053\163\221\306\235\033\254\310" +"\313\350\340\240\364\057\220\213\115\373\260\066\033\366\031\172" +"\205\340\155\362\141\023\210\134\237\340\223\012\121\227\212\132" +"\316\257\253\325\367\252\011\252\140\275\334\331\137\337\162\251" +"\140\023\136\000\001\311\112\372\077\244\352\007\003\041\002\216" +"\202\312\003\302\233\217\002\003\001\000\001\243\201\234\060\201" +"\231\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001" +"\006\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001" +"\001\377\060\035\006\003\125\035\016\004\026\004\024\233\342\007" +"\127\147\034\036\300\152\006\336\131\264\232\055\337\334\031\206" +"\056\060\066\006\003\125\035\037\004\057\060\055\060\053\240\051" +"\240\047\206\045\150\164\164\160\072\057\057\143\162\154\056\147" +"\154\157\142\141\154\163\151\147\156\056\156\145\164\057\162\157" +"\157\164\055\162\062\056\143\162\154\060\037\006\003\125\035\043" +"\004\030\060\026\200\024\233\342\007\127\147\034\036\300\152\006" +"\336\131\264\232\055\337\334\031\206\056\060\015\006\011\052\206" +"\110\206\367\015\001\001\005\005\000\003\202\001\001\000\231\201" +"\123\207\034\150\227\206\221\354\340\112\270\104\013\253\201\254" +"\047\117\326\301\270\034\103\170\263\014\232\374\352\054\074\156" +"\141\033\115\113\051\365\237\005\035\046\301\270\351\203\000\142" +"\105\266\251\010\223\271\251\063\113\030\232\302\370\207\210\116" +"\333\335\161\064\032\301\124\332\106\077\340\323\052\253\155\124" +"\042\365\072\142\315\040\157\272\051\211\327\335\221\356\323\134" +"\242\076\241\133\101\365\337\345\144\103\055\351\325\071\253\322" +"\242\337\267\213\320\300\200\031\034\105\300\055\214\350\370\055" +"\244\164\126\111\305\005\265\117\025\336\156\104\170\071\207\250" +"\176\273\363\171\030\221\273\364\157\235\301\360\214\065\214\135" +"\001\373\303\155\271\357\104\155\171\106\061\176\012\376\251\202" +"\301\377\357\253\156\040\304\120\311\137\235\115\233\027\214\014" +"\345\001\311\240\101\152\163\123\372\245\120\264\156\045\017\373" +"\114\030\364\375\122\331\216\151\261\350\021\017\336\210\330\373" +"\035\111\367\252\336\225\317\040\170\302\140\022\333\045\100\214" +"\152\374\176\102\070\100\144\022\367\236\201\341\223\056" +, (PRUint32)958 } +}; +static const NSSItem nss_builtins_items_47 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"GlobalSign Root CA - R2", (PRUint32)24 }, + { (void *)"\165\340\253\266\023\205\022\047\034\004\370\137\335\336\070\344" +"\267\044\056\376" +, (PRUint32)20 }, + { (void *)"\224\024\167\176\076\136\375\217\060\275\101\260\317\347\320\060" +, (PRUint32)16 }, + { (void *)"\060\114\061\040\060\036\006\003\125\004\013\023\027\107\154\157" +"\142\141\154\123\151\147\156\040\122\157\157\164\040\103\101\040" +"\055\040\122\062\061\023\060\021\006\003\125\004\012\023\012\107" +"\154\157\142\141\154\123\151\147\156\061\023\060\021\006\003\125" +"\004\003\023\012\107\154\157\142\141\154\123\151\147\156" +, (PRUint32)78 }, + { (void *)"\002\013\004\000\000\000\000\001\017\206\046\346\015" +, (PRUint32)13 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_48 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3226,7 +3400,7 @@ static const NSSItem nss_builtins_items_46 [] = { "\161\202\053\231\317\072\267\365\055\162\310" , (PRUint32)747 } }; -static const NSSItem nss_builtins_items_47 [] = { +static const NSSItem nss_builtins_items_49 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3257,7 +3431,7 @@ static const NSSItem nss_builtins_items_47 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_48 [] = { +static const NSSItem nss_builtins_items_50 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3342,7 +3516,7 @@ static const NSSItem nss_builtins_items_48 [] = { "\276\355\164\114\274\133\325\142\037\103\335" , (PRUint32)747 } }; -static const NSSItem nss_builtins_items_49 [] = { +static const NSSItem nss_builtins_items_51 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3373,7 +3547,7 @@ static const NSSItem nss_builtins_items_49 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_50 [] = { +static const NSSItem nss_builtins_items_52 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3458,7 +3632,7 @@ static const NSSItem nss_builtins_items_50 [] = { "\040\017\105\176\153\242\177\243\214\025\356" , (PRUint32)747 } }; -static const NSSItem nss_builtins_items_51 [] = { +static const NSSItem nss_builtins_items_53 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3489,7 +3663,7 @@ static const NSSItem nss_builtins_items_51 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_52 [] = { +static const NSSItem nss_builtins_items_54 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3596,7 +3770,7 @@ static const NSSItem nss_builtins_items_52 [] = { "\113\336\006\226\161\054\362\333\266\037\244\357\077\356" , (PRUint32)1054 } }; -static const NSSItem nss_builtins_items_53 [] = { +static const NSSItem nss_builtins_items_55 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3624,12 +3798,12 @@ static const NSSItem nss_builtins_items_53 [] = { { (void *)"\002\021\000\213\133\165\126\204\124\205\013\000\317\257\070\110" "\316\261\244" , (PRUint32)19 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_54 [] = { +static const NSSItem nss_builtins_items_56 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3736,7 +3910,7 @@ static const NSSItem nss_builtins_items_54 [] = { "\311\130\020\371\252\357\132\266\317\113\113\337\052" , (PRUint32)1053 } }; -static const NSSItem nss_builtins_items_55 [] = { +static const NSSItem nss_builtins_items_57 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3764,12 +3938,12 @@ static const NSSItem nss_builtins_items_55 [] = { { (void *)"\002\020\141\160\313\111\214\137\230\105\051\347\260\246\331\120" "\133\172" , (PRUint32)18 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_56 [] = { +static const NSSItem nss_builtins_items_58 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3876,7 +4050,7 @@ static const NSSItem nss_builtins_items_56 [] = { "\153\271\012\172\116\117\113\204\356\113\361\175\335\021" , (PRUint32)1054 } }; -static const NSSItem nss_builtins_items_57 [] = { +static const NSSItem nss_builtins_items_59 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -3909,7 +4083,7 @@ static const NSSItem nss_builtins_items_57 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_58 [] = { +static const NSSItem nss_builtins_items_60 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4016,7 +4190,7 @@ static const NSSItem nss_builtins_items_58 [] = { "\367\146\103\363\236\203\076\040\252\303\065\140\221\316" , (PRUint32)1054 } }; -static const NSSItem nss_builtins_items_59 [] = { +static const NSSItem nss_builtins_items_61 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4049,7 +4223,7 @@ static const NSSItem nss_builtins_items_59 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_60 [] = { +static const NSSItem nss_builtins_items_62 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4167,7 +4341,7 @@ static const NSSItem nss_builtins_items_60 [] = { "\155\055\105\013\367\012\223\352\355\006\371\262" , (PRUint32)1244 } }; -static const NSSItem nss_builtins_items_61 [] = { +static const NSSItem nss_builtins_items_63 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4199,7 +4373,7 @@ static const NSSItem nss_builtins_items_61 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_62 [] = { +static const NSSItem nss_builtins_items_64 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4319,7 +4493,7 @@ static const NSSItem nss_builtins_items_62 [] = { "\354" , (PRUint32)1265 } }; -static const NSSItem nss_builtins_items_63 [] = { +static const NSSItem nss_builtins_items_65 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4351,7 +4525,7 @@ static const NSSItem nss_builtins_items_63 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_64 [] = { +static const NSSItem nss_builtins_items_66 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4459,7 +4633,7 @@ static const NSSItem nss_builtins_items_64 [] = { "\275\114\105\236\141\272\277\204\201\222\003\321\322\151\174\305" , (PRUint32)1120 } }; -static const NSSItem nss_builtins_items_65 [] = { +static const NSSItem nss_builtins_items_67 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4490,7 +4664,7 @@ static const NSSItem nss_builtins_items_65 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_66 [] = { +static const NSSItem nss_builtins_items_68 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4572,7 +4746,7 @@ static const NSSItem nss_builtins_items_66 [] = { "\347\201\035\031\303\044\102\352\143\071\251" , (PRUint32)891 } }; -static const NSSItem nss_builtins_items_67 [] = { +static const NSSItem nss_builtins_items_69 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4594,9 +4768,10 @@ static const NSSItem nss_builtins_items_67 [] = { , (PRUint32)6 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) } + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_68 [] = { +static const NSSItem nss_builtins_items_70 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4664,7 +4839,7 @@ static const NSSItem nss_builtins_items_68 [] = { "\126\224\251\125" , (PRUint32)660 } }; -static const NSSItem nss_builtins_items_69 [] = { +static const NSSItem nss_builtins_items_71 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4689,7 +4864,7 @@ static const NSSItem nss_builtins_items_69 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_70 [] = { +static const NSSItem nss_builtins_items_72 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4756,7 +4931,7 @@ static const NSSItem nss_builtins_items_70 [] = { "\132\052\202\262\067\171" , (PRUint32)646 } }; -static const NSSItem nss_builtins_items_71 [] = { +static const NSSItem nss_builtins_items_73 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4781,7 +4956,7 @@ static const NSSItem nss_builtins_items_71 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_72 [] = { +static const NSSItem nss_builtins_items_74 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4856,7 +5031,7 @@ static const NSSItem nss_builtins_items_72 [] = { "\221\060\352\315" , (PRUint32)804 } }; -static const NSSItem nss_builtins_items_73 [] = { +static const NSSItem nss_builtins_items_75 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4877,9 +5052,10 @@ static const NSSItem nss_builtins_items_73 [] = { , (PRUint32)6 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) } + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_74 [] = { +static const NSSItem nss_builtins_items_76 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4964,7 +5140,7 @@ static const NSSItem nss_builtins_items_74 [] = { "\265\314\255\006" , (PRUint32)900 } }; -static const NSSItem nss_builtins_items_75 [] = { +static const NSSItem nss_builtins_items_77 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -4987,10 +5163,10 @@ static const NSSItem nss_builtins_items_75 [] = { , (PRUint32)4 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_76 [] = { +static const NSSItem nss_builtins_items_78 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5099,7 +5275,7 @@ static const NSSItem nss_builtins_items_76 [] = { "\043\020\077\041\020\131\267\344\100\335\046\014\043\366\252\256" , (PRUint32)1328 } }; -static const NSSItem nss_builtins_items_77 [] = { +static const NSSItem nss_builtins_items_79 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5124,7 +5300,7 @@ static const NSSItem nss_builtins_items_77 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_78 [] = { +static const NSSItem nss_builtins_items_80 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5218,7 +5394,7 @@ static const NSSItem nss_builtins_items_78 [] = { "\065\341\035\026\034\320\274\053\216\326\161\331" , (PRUint32)1052 } }; -static const NSSItem nss_builtins_items_79 [] = { +static const NSSItem nss_builtins_items_81 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5241,10 +5417,10 @@ static const NSSItem nss_builtins_items_79 [] = { , (PRUint32)3 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_80 [] = { +static const NSSItem nss_builtins_items_82 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5342,7 +5518,7 @@ static const NSSItem nss_builtins_items_80 [] = { "\027\132\173\320\274\307\217\116\206\004" , (PRUint32)1082 } }; -static const NSSItem nss_builtins_items_81 [] = { +static const NSSItem nss_builtins_items_83 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5369,7 +5545,7 @@ static const NSSItem nss_builtins_items_81 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_82 [] = { +static const NSSItem nss_builtins_items_84 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5463,7 +5639,7 @@ static const NSSItem nss_builtins_items_82 [] = { "\116\072\063\014\053\263\055\220\006" , (PRUint32)1049 } }; -static const NSSItem nss_builtins_items_83 [] = { +static const NSSItem nss_builtins_items_85 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5474,22 +5650,22 @@ static const NSSItem nss_builtins_items_83 [] = { , (PRUint32)20 }, { (void *)"\301\142\076\043\305\202\163\234\003\131\113\053\351\167\111\177" , (PRUint32)16 }, - { (void *)"\060\157\061\013\060\011\006\003\125\004\006\023\002\123\105\061" + { (void *)"\060\144\061\013\060\011\006\003\125\004\006\023\002\123\105\061" "\024\060\022\006\003\125\004\012\023\013\101\144\144\124\162\165" -"\163\164\040\101\102\061\046\060\044\006\003\125\004\013\023\035" -"\101\144\144\124\162\165\163\164\040\105\170\164\145\162\156\141" -"\154\040\124\124\120\040\116\145\164\167\157\162\153\061\042\060" -"\040\006\003\125\004\003\023\031\101\144\144\124\162\165\163\164" -"\040\105\170\164\145\162\156\141\154\040\103\101\040\122\157\157" -"\164" -, (PRUint32)113 }, +"\163\164\040\101\102\061\035\060\033\006\003\125\004\013\023\024" +"\101\144\144\124\162\165\163\164\040\124\124\120\040\116\145\164" +"\167\157\162\153\061\040\060\036\006\003\125\004\003\023\027\101" +"\144\144\124\162\165\163\164\040\120\165\142\154\151\143\040\103" +"\101\040\122\157\157\164" +, (PRUint32)102 }, { (void *)"\002\001\001" , (PRUint32)3 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) } + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_84 [] = { +static const NSSItem nss_builtins_items_86 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5584,7 +5760,7 @@ static const NSSItem nss_builtins_items_84 [] = { "\306\241" , (PRUint32)1058 } }; -static const NSSItem nss_builtins_items_85 [] = { +static const NSSItem nss_builtins_items_87 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -5610,501 +5786,25 @@ static const NSSItem nss_builtins_items_85 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_86 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Class 1 Public Primary OCSP Responder", (PRUint32)47 }, - { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, - { (void *)"\060\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145" -"\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035" -"\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040" -"\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060" -"\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146" -"\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057" -"\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155" -"\057\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003" -"\125\004\003\023\045\103\154\141\163\163\040\061\040\120\165\142" -"\154\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120" -"\040\122\145\163\160\157\156\144\145\162" -, (PRUint32)170 }, - { (void *)"0", (PRUint32)2 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151" -"\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004" -"\013\023\056\103\154\141\163\163\040\061\040\120\165\142\154\151" -"\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\020\053\150\324\243\106\236\305\073\050\011\253\070\135\177" -"\047\040" -, (PRUint32)18 }, - { (void *)"\060\202\003\236\060\202\003\007\240\003\002\001\002\002\020\053" -"\150\324\243\106\236\305\073\050\011\253\070\135\177\047\040\060" -"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137" -"\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027\060" -"\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147\156" -"\054\040\111\156\143\056\061\067\060\065\006\003\125\004\013\023" -"\056\103\154\141\163\163\040\061\040\120\165\142\154\151\143\040" -"\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151\143" -"\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060" -"\036\027\015\060\060\060\070\060\064\060\060\060\060\060\060\132" -"\027\015\060\064\060\070\060\063\062\063\065\071\065\071\132\060" -"\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145\162" -"\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035\006" -"\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040\124" -"\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060\071" -"\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146\040" -"\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057\167" -"\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155\057" -"\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003\125" -"\004\003\023\045\103\154\141\163\163\040\061\040\120\165\142\154" -"\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120\040" -"\122\145\163\160\157\156\144\145\162\060\201\237\060\015\006\011" -"\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000\060" -"\201\211\002\201\201\000\271\355\136\172\072\167\137\316\137\072" -"\122\374\315\144\367\161\265\157\152\226\306\131\222\125\224\135" -"\057\133\056\301\021\352\046\212\313\247\201\074\366\132\104\336" -"\172\023\057\375\132\121\331\173\067\046\112\300\047\077\004\003" -"\152\126\301\203\054\341\157\133\251\124\120\044\112\306\056\172" -"\114\241\133\067\124\044\041\061\037\241\170\030\166\247\261\160" -"\332\042\320\152\376\007\142\100\306\367\366\233\175\014\006\270" -"\113\307\050\344\146\043\204\121\357\106\267\223\330\201\063\313" -"\345\066\254\306\350\005\002\003\001\000\001\243\202\001\020\060" -"\202\001\014\060\040\006\003\125\035\021\004\031\060\027\244\025" -"\060\023\061\021\060\017\006\003\125\004\003\023\010\117\103\123" -"\120\040\061\055\061\060\061\006\003\125\035\037\004\052\060\050" -"\060\046\240\044\240\042\206\040\150\164\164\160\072\057\057\143" -"\162\154\056\166\145\162\151\163\151\147\156\056\143\157\155\057" -"\160\143\141\061\056\143\162\154\060\023\006\003\125\035\045\004" -"\014\060\012\006\010\053\006\001\005\005\007\003\011\060\102\006" -"\010\053\006\001\005\005\007\001\001\004\066\060\064\060\062\006" -"\010\053\006\001\005\005\007\060\001\246\046\026\044\150\164\164" -"\160\072\057\057\157\143\163\160\056\166\145\162\151\163\151\147" -"\156\056\143\157\155\057\157\143\163\160\057\163\164\141\164\165" -"\163\060\104\006\003\125\035\040\004\075\060\073\060\071\006\013" -"\140\206\110\001\206\370\105\001\007\001\001\060\052\060\050\006" -"\010\053\006\001\005\005\007\002\001\026\034\150\164\164\160\163" -"\072\057\057\167\167\167\056\166\145\162\151\163\151\147\156\056" -"\143\157\155\057\122\120\101\060\011\006\003\125\035\023\004\002" -"\060\000\060\013\006\003\125\035\017\004\004\003\002\007\200\060" -"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\201" -"\201\000\160\220\335\270\344\276\123\027\174\177\002\351\325\367" -"\213\231\223\061\140\215\176\346\140\153\044\357\140\254\322\316" -"\221\336\200\155\011\244\323\270\070\345\104\312\162\136\015\055" -"\301\167\234\275\054\003\170\051\215\244\245\167\207\365\361\053" -"\046\255\314\007\154\072\124\132\050\340\011\363\115\012\004\312" -"\324\130\151\013\247\263\365\335\001\245\347\334\360\037\272\301" -"\135\220\215\263\352\117\301\021\131\227\152\262\053\023\261\332" -"\255\227\241\263\261\240\040\133\312\062\253\215\317\023\360\037" -"\051\303" -, (PRUint32)930 } -}; -static const NSSItem nss_builtins_items_87 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Class 1 Public Primary OCSP Responder", (PRUint32)47 }, - { (void *)"\004\226\110\344\112\311\314\255\105\203\230\331\074\175\221\365" -"\042\104\033\212" -, (PRUint32)20 }, - { (void *)"\176\157\072\123\033\174\276\260\060\333\103\036\036\224\211\262" -, (PRUint32)16 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151" -"\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004" -"\013\023\056\103\154\141\163\163\040\061\040\120\165\142\154\151" -"\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\020\053\150\324\243\106\236\305\073\050\011\253\070\135\177" -"\047\040" -, (PRUint32)18 }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } -}; static const NSSItem nss_builtins_items_88 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Class 2 Public Primary OCSP Responder", (PRUint32)47 }, + { (void *)"Verisign Time Stamping Authority CA", (PRUint32)36 }, { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, - { (void *)"\060\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145" + { (void *)"\060\201\245\061\027\060\025\006\003\125\004\012\023\016\126\145" "\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035" "\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040" "\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060" "\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146" "\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057" "\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155" -"\057\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003" -"\125\004\003\023\045\103\154\141\163\163\040\062\040\120\165\142" -"\154\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120" -"\040\122\145\163\160\157\156\144\145\162" -, (PRUint32)170 }, - { (void *)"0", (PRUint32)2 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151" -"\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004" -"\013\023\056\103\154\141\163\163\040\062\040\120\165\142\154\151" -"\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\020\011\106\027\346\035\330\324\034\240\014\240\142\350\171" -"\212\247" -, (PRUint32)18 }, - { (void *)"\060\202\003\236\060\202\003\007\240\003\002\001\002\002\020\011" -"\106\027\346\035\330\324\034\240\014\240\142\350\171\212\247\060" -"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137" -"\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027\060" -"\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147\156" -"\054\040\111\156\143\056\061\067\060\065\006\003\125\004\013\023" -"\056\103\154\141\163\163\040\062\040\120\165\142\154\151\143\040" -"\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151\143" -"\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060" -"\036\027\015\060\060\060\070\060\061\060\060\060\060\060\060\132" -"\027\015\060\064\060\067\063\061\062\063\065\071\065\071\132\060" -"\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145\162" -"\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035\006" -"\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040\124" -"\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060\071" -"\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146\040" -"\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057\167" -"\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155\057" -"\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003\125" -"\004\003\023\045\103\154\141\163\163\040\062\040\120\165\142\154" -"\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120\040" -"\122\145\163\160\157\156\144\145\162\060\201\237\060\015\006\011" -"\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000\060" -"\201\211\002\201\201\000\320\312\143\061\141\177\104\064\174\005" -"\175\013\075\152\220\313\171\113\167\012\077\113\307\043\345\300" -"\142\055\176\234\176\076\210\207\221\320\254\350\115\111\207\242" -"\226\220\212\335\004\245\002\077\214\233\351\211\376\142\240\342" -"\132\275\310\335\264\170\346\245\102\223\010\147\001\300\040\115" -"\327\134\364\135\332\263\343\067\246\122\032\054\114\145\115\212" -"\207\331\250\243\361\111\124\273\074\134\200\121\150\306\373\111" -"\377\013\125\253\025\335\373\232\301\271\035\164\015\262\214\104" -"\135\211\374\237\371\203\002\003\001\000\001\243\202\001\020\060" -"\202\001\014\060\040\006\003\125\035\021\004\031\060\027\244\025" -"\060\023\061\021\060\017\006\003\125\004\003\023\010\117\103\123" -"\120\040\061\055\062\060\061\006\003\125\035\037\004\052\060\050" -"\060\046\240\044\240\042\206\040\150\164\164\160\072\057\057\143" -"\162\154\056\166\145\162\151\163\151\147\156\056\143\157\155\057" -"\160\143\141\062\056\143\162\154\060\023\006\003\125\035\045\004" -"\014\060\012\006\010\053\006\001\005\005\007\003\011\060\102\006" -"\010\053\006\001\005\005\007\001\001\004\066\060\064\060\062\006" -"\010\053\006\001\005\005\007\060\001\246\046\026\044\150\164\164" -"\160\072\057\057\157\143\163\160\056\166\145\162\151\163\151\147" -"\156\056\143\157\155\057\157\143\163\160\057\163\164\141\164\165" -"\163\060\104\006\003\125\035\040\004\075\060\073\060\071\006\013" -"\140\206\110\001\206\370\105\001\007\001\001\060\052\060\050\006" -"\010\053\006\001\005\005\007\002\001\026\034\150\164\164\160\163" -"\072\057\057\167\167\167\056\166\145\162\151\163\151\147\156\056" -"\143\157\155\057\122\120\101\060\011\006\003\125\035\023\004\002" -"\060\000\060\013\006\003\125\035\017\004\004\003\002\007\200\060" -"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\201" -"\201\000\037\175\011\156\044\106\165\004\234\363\046\233\343\071" -"\156\027\357\274\275\242\033\322\002\204\206\253\320\100\227\054" -"\304\103\210\067\031\153\042\250\003\161\120\235\040\334\066\140" -"\040\232\163\055\163\125\154\130\233\054\302\264\064\054\172\063" -"\102\312\221\331\351\103\257\317\036\340\365\304\172\253\077\162" -"\143\036\251\067\341\133\073\210\263\023\206\202\220\127\313\127" -"\377\364\126\276\042\335\343\227\250\341\274\042\103\302\335\115" -"\333\366\201\236\222\024\236\071\017\023\124\336\202\330\300\136" -"\064\215" -, (PRUint32)930 } -}; -static const NSSItem nss_builtins_items_89 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Class 2 Public Primary OCSP Responder", (PRUint32)47 }, - { (void *)"\042\171\151\276\320\122\116\115\035\066\262\361\162\041\167\361" -"\124\123\110\167" -, (PRUint32)20 }, - { (void *)"\363\105\275\020\226\015\205\113\357\237\021\142\064\247\136\265" -, (PRUint32)16 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151" -"\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004" -"\013\023\056\103\154\141\163\163\040\062\040\120\165\142\154\151" -"\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\020\011\106\027\346\035\330\324\034\240\014\240\142\350\171" -"\212\247" -, (PRUint32)18 }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } -}; -static const NSSItem nss_builtins_items_90 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Class 3 Public Primary OCSP Responder", (PRUint32)47 }, - { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, - { (void *)"\060\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145" -"\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035" -"\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040" -"\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060" -"\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146" -"\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057" -"\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155" -"\057\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003" -"\125\004\003\023\045\103\154\141\163\163\040\063\040\120\165\142" -"\154\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120" -"\040\122\145\163\160\157\156\144\145\162" -, (PRUint32)170 }, - { (void *)"0", (PRUint32)2 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151" -"\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004" -"\013\023\056\103\154\141\163\163\040\063\040\120\165\142\154\151" -"\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\020\056\226\236\277\266\142\154\354\173\351\163\314\343\154" -"\301\204" -, (PRUint32)18 }, - { (void *)"\060\202\003\242\060\202\003\013\240\003\002\001\002\002\020\056" -"\226\236\277\266\142\154\354\173\351\163\314\343\154\301\204\060" -"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137" -"\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027\060" -"\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147\156" -"\054\040\111\156\143\056\061\067\060\065\006\003\125\004\013\023" -"\056\103\154\141\163\163\040\063\040\120\165\142\154\151\143\040" -"\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151\143" -"\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060" -"\036\027\015\060\060\060\070\060\064\060\060\060\060\060\060\132" -"\027\015\060\064\060\070\060\063\062\063\065\071\065\071\132\060" -"\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145\162" -"\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035\006" -"\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040\124" -"\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060\071" -"\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146\040" -"\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057\167" -"\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155\057" -"\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003\125" -"\004\003\023\045\103\154\141\163\163\040\063\040\120\165\142\154" -"\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120\040" -"\122\145\163\160\157\156\144\145\162\060\201\237\060\015\006\011" -"\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000\060" -"\201\211\002\201\201\000\361\344\010\016\203\273\165\343\110\345" -"\270\333\246\360\271\253\351\074\142\307\136\065\133\320\002\124" -"\021\330\311\321\126\271\166\113\271\253\172\346\315\272\366\014" -"\004\326\176\326\260\012\145\254\116\071\343\361\367\055\243\045" -"\071\357\260\213\317\276\333\014\135\156\160\364\007\315\160\367" -"\072\300\076\065\026\355\170\214\103\317\302\046\056\107\326\206" -"\175\234\361\276\326\147\014\042\045\244\312\145\346\037\172\170" -"\050\057\077\005\333\004\041\277\341\105\146\376\074\267\202\355" -"\132\270\026\025\271\125\002\003\001\000\001\243\202\001\024\060" -"\202\001\020\060\040\006\003\125\035\021\004\031\060\027\244\025" -"\060\023\061\021\060\017\006\003\125\004\003\023\010\117\103\123" -"\120\040\061\055\063\060\065\006\003\125\035\037\004\056\060\054" -"\060\052\240\050\240\046\206\044\150\164\164\160\072\057\057\143" -"\162\154\056\166\145\162\151\163\151\147\156\056\143\157\155\057" -"\160\143\141\063\056\061\056\061\056\143\162\154\060\023\006\003" -"\125\035\045\004\014\060\012\006\010\053\006\001\005\005\007\003" -"\011\060\102\006\010\053\006\001\005\005\007\001\001\004\066\060" -"\064\060\062\006\010\053\006\001\005\005\007\060\001\246\046\026" -"\044\150\164\164\160\072\057\057\157\143\163\160\056\166\145\162" -"\151\163\151\147\156\056\143\157\155\057\157\143\163\160\057\163" -"\164\141\164\165\163\060\104\006\003\125\035\040\004\075\060\073" -"\060\071\006\013\140\206\110\001\206\370\105\001\007\001\001\060" -"\052\060\050\006\010\053\006\001\005\005\007\002\001\026\034\150" -"\164\164\160\163\072\057\057\167\167\167\056\166\145\162\151\163" -"\151\147\156\056\143\157\155\057\122\120\101\060\011\006\003\125" -"\035\023\004\002\060\000\060\013\006\003\125\035\017\004\004\003" -"\002\007\200\060\015\006\011\052\206\110\206\367\015\001\001\005" -"\005\000\003\201\201\000\002\366\123\143\300\251\036\362\320\213" -"\063\060\217\110\233\114\260\126\264\203\161\112\276\334\120\330" -"\365\266\340\013\333\275\170\117\351\317\011\064\332\051\111\235" -"\001\163\132\221\221\202\124\054\023\012\323\167\043\317\067\374" -"\143\336\247\343\366\267\265\151\105\050\111\303\221\334\252\107" -"\034\251\210\231\054\005\052\215\215\212\372\142\342\132\267\000" -"\040\135\071\304\050\302\313\374\236\250\211\256\133\075\216\022" -"\352\062\262\374\353\024\327\011\025\032\300\315\033\325\265\025" -"\116\101\325\226\343\116" -, (PRUint32)934 } -}; -static const NSSItem nss_builtins_items_91 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Class 3 Public Primary OCSP Responder", (PRUint32)47 }, - { (void *)"\265\355\267\332\046\072\126\164\322\042\105\060\324\307\217\172" -"\007\365\345\137" -, (PRUint32)20 }, - { (void *)"\175\121\222\311\166\203\230\026\336\214\263\206\304\175\146\373" -, (PRUint32)16 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151" -"\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004" -"\013\023\056\103\154\141\163\163\040\063\040\120\165\142\154\151" -"\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\020\056\226\236\277\266\142\154\354\173\351\163\314\343\154" -"\301\204" -, (PRUint32)18 }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } -}; -static const NSSItem nss_builtins_items_92 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Secure Server OCSP Responder", (PRUint32)38 }, - { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, - { (void *)"\060\201\236\061\027\060\025\006\003\125\004\012\023\016\126\145" -"\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035" -"\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040" -"\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060" -"\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146" -"\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057" -"\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155" -"\057\122\120\101\040\050\143\051\060\060\061\045\060\043\006\003" -"\125\004\003\023\034\123\145\143\165\162\145\040\123\145\162\166" -"\145\162\040\117\103\123\120\040\122\145\163\160\157\156\144\145" -"\162" -, (PRUint32)161 }, - { (void *)"0", (PRUint32)2 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\040\060\036\006\003\125\004\012\023\027\122\123\101\040\104\141" -"\164\141\040\123\145\143\165\162\151\164\171\054\040\111\156\143" -"\056\061\056\060\054\006\003\125\004\013\023\045\123\145\143\165" -"\162\145\040\123\145\162\166\145\162\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\021\000\377\105\325\047\135\044\373\263\302\071\044\123\127" -"\341\117\336" -, (PRUint32)19 }, - { (void *)"\060\202\003\237\060\202\003\014\240\003\002\001\002\002\021\000" -"\377\105\325\047\135\044\373\263\302\071\044\123\127\341\117\336" -"\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060" -"\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061\040" -"\060\036\006\003\125\004\012\023\027\122\123\101\040\104\141\164" -"\141\040\123\145\143\165\162\151\164\171\054\040\111\156\143\056" -"\061\056\060\054\006\003\125\004\013\023\045\123\145\143\165\162" -"\145\040\123\145\162\166\145\162\040\103\145\162\164\151\146\151" -"\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171" -"\060\036\027\015\060\060\060\070\060\064\060\060\060\060\060\060" -"\132\027\015\060\064\060\070\060\063\062\063\065\071\065\071\132" -"\060\201\236\061\027\060\025\006\003\125\004\012\023\016\126\145" -"\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035" -"\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040" -"\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060" -"\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146" -"\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057" -"\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155" -"\057\122\120\101\040\050\143\051\060\060\061\045\060\043\006\003" -"\125\004\003\023\034\123\145\143\165\162\145\040\123\145\162\166" -"\145\162\040\117\103\123\120\040\122\145\163\160\157\156\144\145" -"\162\060\201\237\060\015\006\011\052\206\110\206\367\015\001\001" -"\001\005\000\003\201\215\000\060\201\211\002\201\201\000\270\121" -"\231\144\205\016\356\263\012\150\360\277\143\166\035\123\365\374" -"\241\170\214\063\356\237\364\276\071\332\233\017\115\107\251\217" -"\040\350\113\104\275\316\315\173\220\321\060\350\220\304\045\173" -"\211\050\336\275\366\223\035\377\271\377\222\265\251\215\344\256" -"\314\342\303\007\203\152\243\162\020\001\047\142\042\246\065\046" -"\071\055\236\317\140\014\374\107\244\327\320\102\170\247\035\154" -"\320\313\117\025\247\051\012\264\225\105\304\261\347\132\011\327" -"\071\225\330\035\065\236\302\275\263\135\301\014\113\037\002\003" -"\001\000\001\243\202\001\035\060\202\001\031\060\040\006\003\125" -"\035\021\004\031\060\027\244\025\060\023\061\021\060\017\006\003" -"\125\004\003\023\010\117\103\123\120\040\061\055\064\060\076\006" -"\003\125\035\037\004\067\060\065\060\063\240\061\240\057\206\055" -"\150\164\164\160\072\057\057\143\162\154\056\166\145\162\151\163" -"\151\147\156\056\143\157\155\057\122\123\101\123\145\143\165\162" -"\145\123\145\162\166\145\162\055\160\056\143\162\154\060\023\006" -"\003\125\035\045\004\014\060\012\006\010\053\006\001\005\005\007" -"\003\011\060\102\006\010\053\006\001\005\005\007\001\001\004\066" -"\060\064\060\062\006\010\053\006\001\005\005\007\060\001\246\046" -"\026\044\150\164\164\160\072\057\057\157\143\163\160\056\166\145" -"\162\151\163\151\147\156\056\143\157\155\057\157\143\163\160\057" -"\163\164\141\164\165\163\060\104\006\003\125\035\040\004\075\060" -"\073\060\071\006\013\140\206\110\001\206\370\105\001\007\001\001" -"\060\052\060\050\006\010\053\006\001\005\005\007\002\001\026\034" -"\150\164\164\160\163\072\057\057\167\167\167\056\166\145\162\151" -"\163\151\147\156\056\143\157\155\057\122\120\101\060\011\006\003" -"\125\035\023\004\002\060\000\060\013\006\003\125\035\017\004\004" -"\003\002\007\200\060\015\006\011\052\206\110\206\367\015\001\001" -"\005\005\000\003\176\000\000\263\020\123\146\234\111\223\056\061" -"\240\002\102\322\130\127\176\146\241\376\033\212\141\030\120\100" -"\054\036\053\101\245\326\333\377\254\010\034\132\005\155\002\134" -"\052\266\226\117\107\333\276\116\333\316\314\272\206\270\030\316" -"\261\022\221\137\143\367\363\110\076\314\361\115\023\344\155\011" -"\224\170\000\222\313\243\040\235\006\013\152\240\103\007\316\321" -"\031\154\217\030\165\232\237\027\063\375\251\046\270\343\342\336" -"\302\250\304\132\212\177\230\326\007\006\153\314\126\236\206\160" -"\316\324\357" -, (PRUint32)931 } -}; -static const NSSItem nss_builtins_items_93 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Secure Server OCSP Responder", (PRUint32)38 }, - { (void *)"\161\236\140\141\327\175\054\203\361\242\135\074\366\215\002\274" -"\224\070\305\056" -, (PRUint32)20 }, - { (void *)"\054\142\303\330\200\001\026\011\352\131\352\170\253\020\103\366" -, (PRUint32)16 }, - { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -"\040\060\036\006\003\125\004\012\023\027\122\123\101\040\104\141" -"\164\141\040\123\145\143\165\162\151\164\171\054\040\111\156\143" -"\056\061\056\060\054\006\003\125\004\013\023\045\123\145\143\165" -"\162\145\040\123\145\162\166\145\162\040\103\145\162\164\151\146" -"\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164" -"\171" -, (PRUint32)97 }, - { (void *)"\002\021\000\377\105\325\047\135\044\373\263\302\071\044\123\127" -"\341\117\336" -, (PRUint32)19 }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } -}; -static const NSSItem nss_builtins_items_94 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Verisign Time Stamping Authority CA", (PRUint32)36 }, - { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, - { (void *)"\060\201\245\061\027\060\025\006\003\125\004\012\023\016\126\145" -"\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035" -"\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040" -"\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060" -"\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146" -"\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057" -"\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155" -"\057\162\160\141\040\050\143\051\060\060\061\054\060\052\006\003" -"\125\004\003\023\043\126\145\162\151\123\151\147\156\040\124\151" -"\155\145\040\123\164\141\155\160\151\156\147\040\101\165\164\150" -"\157\162\151\164\171\040\103\101" -, (PRUint32)168 }, +"\057\162\160\141\040\050\143\051\060\060\061\054\060\052\006\003" +"\125\004\003\023\043\126\145\162\151\123\151\147\156\040\124\151" +"\155\145\040\123\164\141\155\160\151\156\147\040\101\165\164\150" +"\157\162\151\164\171\040\103\101" +, (PRUint32)168 }, { (void *)"0", (PRUint32)2 }, { (void *)"\060\201\301\061\013\060\011\006\003\125\004\006\023\002\125\123" "\061\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123" @@ -6187,7 +5887,7 @@ static const NSSItem nss_builtins_items_94 [] = { "\024" , (PRUint32)977 } }; -static const NSSItem nss_builtins_items_95 [] = { +static const NSSItem nss_builtins_items_89 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6220,7 +5920,7 @@ static const NSSItem nss_builtins_items_95 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_96 [] = { +static const NSSItem nss_builtins_items_90 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6295,7 +5995,7 @@ static const NSSItem nss_builtins_items_96 [] = { "\011\254\211\111\323" , (PRUint32)677 } }; -static const NSSItem nss_builtins_items_97 [] = { +static const NSSItem nss_builtins_items_91 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6323,7 +6023,7 @@ static const NSSItem nss_builtins_items_97 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_98 [] = { +static const NSSItem nss_builtins_items_92 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6435,7 +6135,7 @@ static const NSSItem nss_builtins_items_98 [] = { "\005\377\154\211\063\360\354\025\017" , (PRUint32)1177 } }; -static const NSSItem nss_builtins_items_99 [] = { +static const NSSItem nss_builtins_items_93 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6466,7 +6166,7 @@ static const NSSItem nss_builtins_items_99 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_100 [] = { +static const NSSItem nss_builtins_items_94 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6577,7 +6277,7 @@ static const NSSItem nss_builtins_items_100 [] = { "\316\145\146\227\256\046\136" , (PRUint32)1159 } }; -static const NSSItem nss_builtins_items_101 [] = { +static const NSSItem nss_builtins_items_95 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6608,7 +6308,7 @@ static const NSSItem nss_builtins_items_101 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_102 [] = { +static const NSSItem nss_builtins_items_96 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6703,7 +6403,7 @@ static const NSSItem nss_builtins_items_102 [] = { "\071\050\150\016\163\335\045\232\336\022" , (PRUint32)1002 } }; -static const NSSItem nss_builtins_items_103 [] = { +static const NSSItem nss_builtins_items_97 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6731,7 +6431,7 @@ static const NSSItem nss_builtins_items_103 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_104 [] = { +static const NSSItem nss_builtins_items_98 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6858,7 +6558,7 @@ static const NSSItem nss_builtins_items_104 [] = { "\204\327\372\334\162\133\367\301\072\150" , (PRUint32)1514 } }; -static const NSSItem nss_builtins_items_105 [] = { +static const NSSItem nss_builtins_items_99 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -6886,7 +6586,7 @@ static const NSSItem nss_builtins_items_105 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_106 [] = { +static const NSSItem nss_builtins_items_100 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7001,7 +6701,7 @@ static const NSSItem nss_builtins_items_106 [] = { "\061\210\027\120\237\311\304\016\213\330\250\002\143\015" , (PRUint32)1390 } }; -static const NSSItem nss_builtins_items_107 [] = { +static const NSSItem nss_builtins_items_101 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7027,7 +6727,7 @@ static const NSSItem nss_builtins_items_107 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_108 [] = { +static const NSSItem nss_builtins_items_102 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7157,7 +6857,7 @@ static const NSSItem nss_builtins_items_108 [] = { "\254\142\127\251\367" , (PRUint32)1621 } }; -static const NSSItem nss_builtins_items_109 [] = { +static const NSSItem nss_builtins_items_103 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7183,7 +6883,7 @@ static const NSSItem nss_builtins_items_109 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_110 [] = { +static const NSSItem nss_builtins_items_104 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7299,7 +6999,7 @@ static const NSSItem nss_builtins_items_110 [] = { "\230\150\373\001\103\326\033\342\011\261\227\034" , (PRUint32)1388 } }; -static const NSSItem nss_builtins_items_111 [] = { +static const NSSItem nss_builtins_items_105 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7326,7 +7026,7 @@ static const NSSItem nss_builtins_items_111 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_112 [] = { +static const NSSItem nss_builtins_items_106 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7404,7 +7104,7 @@ static const NSSItem nss_builtins_items_112 [] = { "\354\040\005\141\336" , (PRUint32)869 } }; -static const NSSItem nss_builtins_items_113 [] = { +static const NSSItem nss_builtins_items_107 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7428,7 +7128,7 @@ static const NSSItem nss_builtins_items_113 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_114 [] = { +static const NSSItem nss_builtins_items_108 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7489,7 +7189,7 @@ static const NSSItem nss_builtins_items_114 [] = { "\215\210\043\361\025\101\015\245\106\076\221\077\213\353\367\161" , (PRUint32)608 } }; -static const NSSItem nss_builtins_items_115 [] = { +static const NSSItem nss_builtins_items_109 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7513,7 +7213,7 @@ static const NSSItem nss_builtins_items_115 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_116 [] = { +static const NSSItem nss_builtins_items_110 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7591,7 +7291,7 @@ static const NSSItem nss_builtins_items_116 [] = { "\302\005\146\200\241\313\346\063" , (PRUint32)856 } }; -static const NSSItem nss_builtins_items_117 [] = { +static const NSSItem nss_builtins_items_111 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7615,7 +7315,7 @@ static const NSSItem nss_builtins_items_117 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_118 [] = { +static const NSSItem nss_builtins_items_112 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7694,7 +7394,7 @@ static const NSSItem nss_builtins_items_118 [] = { "\342\042\051\256\175\203\100\250\272\154" , (PRUint32)874 } }; -static const NSSItem nss_builtins_items_119 [] = { +static const NSSItem nss_builtins_items_113 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7718,7 +7418,7 @@ static const NSSItem nss_builtins_items_119 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_120 [] = { +static const NSSItem nss_builtins_items_114 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7829,7 +7529,7 @@ static const NSSItem nss_builtins_items_120 [] = { "\244\346\216\330\371\051\110\212\316\163\376\054" , (PRUint32)1388 } }; -static const NSSItem nss_builtins_items_121 [] = { +static const NSSItem nss_builtins_items_115 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7853,7 +7553,7 @@ static const NSSItem nss_builtins_items_121 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_122 [] = { +static const NSSItem nss_builtins_items_116 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7964,7 +7664,7 @@ static const NSSItem nss_builtins_items_122 [] = { "\362\034\054\176\256\002\026\322\126\320\057\127\123\107\350\222" , (PRUint32)1392 } }; -static const NSSItem nss_builtins_items_123 [] = { +static const NSSItem nss_builtins_items_117 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -7988,7 +7688,7 @@ static const NSSItem nss_builtins_items_123 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_124 [] = { +static const NSSItem nss_builtins_items_118 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8096,7 +7796,7 @@ static const NSSItem nss_builtins_items_124 [] = { "\152\372\246\070\254\037\304\204" , (PRUint32)1128 } }; -static const NSSItem nss_builtins_items_125 [] = { +static const NSSItem nss_builtins_items_119 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8127,7 +7827,7 @@ static const NSSItem nss_builtins_items_125 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_126 [] = { +static const NSSItem nss_builtins_items_120 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8214,7 +7914,7 @@ static const NSSItem nss_builtins_items_126 [] = { "\200\072\231\355\165\314\106\173" , (PRUint32)936 } }; -static const NSSItem nss_builtins_items_127 [] = { +static const NSSItem nss_builtins_items_121 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8240,7 +7940,7 @@ static const NSSItem nss_builtins_items_127 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_128 [] = { +static const NSSItem nss_builtins_items_122 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8359,7 +8059,7 @@ static const NSSItem nss_builtins_items_128 [] = { "\105\217\046\221\242\216\376\251" , (PRUint32)1448 } }; -static const NSSItem nss_builtins_items_129 [] = { +static const NSSItem nss_builtins_items_123 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8385,7 +8085,7 @@ static const NSSItem nss_builtins_items_129 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_130 [] = { +static const NSSItem nss_builtins_items_124 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8473,7 +8173,7 @@ static const NSSItem nss_builtins_items_130 [] = { "\222\340\134\366\007\017" , (PRUint32)934 } }; -static const NSSItem nss_builtins_items_131 [] = { +static const NSSItem nss_builtins_items_125 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8500,7 +8200,7 @@ static const NSSItem nss_builtins_items_131 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_132 [] = { +static const NSSItem nss_builtins_items_126 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8592,7 +8292,7 @@ static const NSSItem nss_builtins_items_132 [] = { "\367\115\146\177\247\360\034\001\046\170\262\146\107\160\121\144" , (PRUint32)864 } }; -static const NSSItem nss_builtins_items_133 [] = { +static const NSSItem nss_builtins_items_127 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8623,7 +8323,7 @@ static const NSSItem nss_builtins_items_133 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_134 [] = { +static const NSSItem nss_builtins_items_128 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8715,7 +8415,7 @@ static const NSSItem nss_builtins_items_134 [] = { "\030\122\051\213\107\064\022\011\324\273\222\065\357\017\333\064" , (PRUint32)864 } }; -static const NSSItem nss_builtins_items_135 [] = { +static const NSSItem nss_builtins_items_129 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8746,7 +8446,7 @@ static const NSSItem nss_builtins_items_135 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_136 [] = { +static const NSSItem nss_builtins_items_130 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8817,7 +8517,7 @@ static const NSSItem nss_builtins_items_136 [] = { "\350\140\052\233\205\112\100\363\153\212\044\354\006\026\054\163" , (PRUint32)784 } }; -static const NSSItem nss_builtins_items_137 [] = { +static const NSSItem nss_builtins_items_131 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8840,7 +8540,7 @@ static const NSSItem nss_builtins_items_137 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_138 [] = { +static const NSSItem nss_builtins_items_132 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8938,7 +8638,7 @@ static const NSSItem nss_builtins_items_138 [] = { "\225\351\066\226\230\156" , (PRUint32)1078 } }; -static const NSSItem nss_builtins_items_139 [] = { +static const NSSItem nss_builtins_items_133 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -8965,7 +8665,7 @@ static const NSSItem nss_builtins_items_139 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_140 [] = { +static const NSSItem nss_builtins_items_134 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9064,7 +8764,7 @@ static const NSSItem nss_builtins_items_140 [] = { "\354\375\051" , (PRUint32)1091 } }; -static const NSSItem nss_builtins_items_141 [] = { +static const NSSItem nss_builtins_items_135 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9091,7 +8791,7 @@ static const NSSItem nss_builtins_items_141 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_142 [] = { +static const NSSItem nss_builtins_items_136 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9192,7 +8892,7 @@ static const NSSItem nss_builtins_items_142 [] = { "\160\136\310\304\170\260\142" , (PRUint32)1095 } }; -static const NSSItem nss_builtins_items_143 [] = { +static const NSSItem nss_builtins_items_137 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9220,7 +8920,7 @@ static const NSSItem nss_builtins_items_143 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_144 [] = { +static const NSSItem nss_builtins_items_138 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9398,7 +9098,7 @@ static const NSSItem nss_builtins_items_144 [] = { "\001\177\046\304\143\365\045\102\136\142\275" , (PRUint32)2043 } }; -static const NSSItem nss_builtins_items_145 [] = { +static const NSSItem nss_builtins_items_139 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9435,7 +9135,7 @@ static const NSSItem nss_builtins_items_145 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_146 [] = { +static const NSSItem nss_builtins_items_140 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9612,7 +9312,7 @@ static const NSSItem nss_builtins_items_146 [] = { "\206\063\076\346\057\110\156\257\124\220\116\255\261\045" , (PRUint32)2030 } }; -static const NSSItem nss_builtins_items_147 [] = { +static const NSSItem nss_builtins_items_141 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9649,7 +9349,7 @@ static const NSSItem nss_builtins_items_147 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_148 [] = { +static const NSSItem nss_builtins_items_142 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9826,7 +9526,7 @@ static const NSSItem nss_builtins_items_148 [] = { "\257\175\310\352\351\324\126\331\016\023\262\305\105\120" , (PRUint32)2030 } }; -static const NSSItem nss_builtins_items_149 [] = { +static const NSSItem nss_builtins_items_143 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -9863,7 +9563,7 @@ static const NSSItem nss_builtins_items_149 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_150 [] = { +static const NSSItem nss_builtins_items_144 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10041,7 +9741,7 @@ static const NSSItem nss_builtins_items_150 [] = { "\336\007\043\162\346\275\040\024\113\264\206" , (PRUint32)2043 } }; -static const NSSItem nss_builtins_items_151 [] = { +static const NSSItem nss_builtins_items_145 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10078,7 +9778,7 @@ static const NSSItem nss_builtins_items_151 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_152 [] = { +static const NSSItem nss_builtins_items_146 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10256,7 +9956,7 @@ static const NSSItem nss_builtins_items_152 [] = { "\311\024\025\014\343\007\203\233\046\165\357" , (PRUint32)2043 } }; -static const NSSItem nss_builtins_items_153 [] = { +static const NSSItem nss_builtins_items_147 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10293,7 +9993,7 @@ static const NSSItem nss_builtins_items_153 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_154 [] = { +static const NSSItem nss_builtins_items_148 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10373,7 +10073,7 @@ static const NSSItem nss_builtins_items_154 [] = { "\134\152\371\162\224\325\001\117\240\333\102" , (PRUint32)699 } }; -static const NSSItem nss_builtins_items_155 [] = { +static const NSSItem nss_builtins_items_149 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10403,7 +10103,7 @@ static const NSSItem nss_builtins_items_155 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_156 [] = { +static const NSSItem nss_builtins_items_150 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10587,7 +10287,7 @@ static const NSSItem nss_builtins_items_156 [] = { "\207\112\137\334\357\351\126\360\012\014\350\165" , (PRUint32)2108 } }; -static const NSSItem nss_builtins_items_157 [] = { +static const NSSItem nss_builtins_items_151 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10625,7 +10325,7 @@ static const NSSItem nss_builtins_items_157 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_158 [] = { +static const NSSItem nss_builtins_items_152 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10751,7 +10451,7 @@ static const NSSItem nss_builtins_items_158 [] = { "\112\164\066\371" , (PRUint32)1492 } }; -static const NSSItem nss_builtins_items_159 [] = { +static const NSSItem nss_builtins_items_153 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10779,7 +10479,302 @@ static const NSSItem nss_builtins_items_159 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_160 [] = { +static const NSSItem nss_builtins_items_154 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"QuoVadis Root CA 2", (PRUint32)19 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\062" +, (PRUint32)71 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\062" +, (PRUint32)71 }, + { (void *)"\002\002\005\011" +, (PRUint32)4 }, + { (void *)"\060\202\005\267\060\202\003\237\240\003\002\001\002\002\002\005" +"\011\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000" +"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\062\060\036\027\015\060\066\061\061\062" +"\064\061\070\062\067\060\060\132\027\015\063\061\061\061\062\064" +"\061\070\062\063\063\063\132\060\105\061\013\060\011\006\003\125" +"\004\006\023\002\102\115\061\031\060\027\006\003\125\004\012\023" +"\020\121\165\157\126\141\144\151\163\040\114\151\155\151\164\145" +"\144\061\033\060\031\006\003\125\004\003\023\022\121\165\157\126" +"\141\144\151\163\040\122\157\157\164\040\103\101\040\062\060\202" +"\002\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005" +"\000\003\202\002\017\000\060\202\002\012\002\202\002\001\000\232" +"\030\312\113\224\015\000\055\257\003\051\212\360\017\201\310\256" +"\114\031\205\035\010\237\253\051\104\205\363\057\201\255\062\036" +"\220\106\277\243\206\046\032\036\376\176\034\030\072\134\234\140" +"\027\052\072\164\203\063\060\175\141\124\021\313\355\253\340\346" +"\322\242\176\365\153\157\030\267\012\013\055\375\351\076\357\012" +"\306\263\020\351\334\302\106\027\370\135\375\244\332\377\236\111" +"\132\234\346\063\346\044\226\367\077\272\133\053\034\172\065\302" +"\326\147\376\253\146\120\213\155\050\140\053\357\327\140\303\307" +"\223\274\215\066\221\363\177\370\333\021\023\304\234\167\166\301" +"\256\267\002\152\201\172\251\105\203\342\005\346\271\126\301\224" +"\067\217\110\161\143\042\354\027\145\007\225\212\113\337\217\306" +"\132\012\345\260\343\137\136\153\021\253\014\371\205\353\104\351" +"\370\004\163\362\351\376\134\230\214\365\163\257\153\264\176\315" +"\324\134\002\053\114\071\341\262\225\225\055\102\207\327\325\263" +"\220\103\267\154\023\361\336\335\366\304\370\211\077\321\165\365" +"\222\303\221\325\212\210\320\220\354\334\155\336\211\302\145\161" +"\226\213\015\003\375\234\277\133\026\254\222\333\352\376\171\174" +"\255\353\257\367\026\313\333\315\045\053\345\037\373\232\237\342" +"\121\314\072\123\014\110\346\016\275\311\264\166\006\122\346\021" +"\023\205\162\143\003\004\340\004\066\053\040\031\002\350\164\247" +"\037\266\311\126\146\360\165\045\334\147\301\016\141\140\210\263" +"\076\321\250\374\243\332\035\260\321\261\043\124\337\104\166\155" +"\355\101\330\301\262\042\266\123\034\337\065\035\334\241\167\052" +"\061\344\055\365\345\345\333\310\340\377\345\200\327\013\143\240" +"\377\063\241\017\272\054\025\025\352\227\263\322\242\265\276\362" +"\214\226\036\032\217\035\154\244\141\067\271\206\163\063\327\227" +"\226\236\043\175\202\244\114\201\342\241\321\272\147\137\225\007" +"\243\047\021\356\026\020\173\274\105\112\114\262\004\322\253\357" +"\325\375\014\121\316\120\152\010\061\371\221\332\014\217\144\134" +"\003\303\072\213\040\077\156\215\147\075\072\326\376\175\133\210" +"\311\136\373\314\141\334\213\063\167\323\104\062\065\011\142\004" +"\222\026\020\330\236\047\107\373\073\041\343\370\353\035\133\002" +"\003\001\000\001\243\201\260\060\201\255\060\017\006\003\125\035" +"\023\001\001\377\004\005\060\003\001\001\377\060\013\006\003\125" +"\035\017\004\004\003\002\001\006\060\035\006\003\125\035\016\004" +"\026\004\024\032\204\142\274\110\114\063\045\004\324\356\320\366" +"\003\304\031\106\321\224\153\060\156\006\003\125\035\043\004\147" +"\060\145\200\024\032\204\142\274\110\114\063\045\004\324\356\320" +"\366\003\304\031\106\321\224\153\241\111\244\107\060\105\061\013" +"\060\011\006\003\125\004\006\023\002\102\115\061\031\060\027\006" +"\003\125\004\012\023\020\121\165\157\126\141\144\151\163\040\114" +"\151\155\151\164\145\144\061\033\060\031\006\003\125\004\003\023" +"\022\121\165\157\126\141\144\151\163\040\122\157\157\164\040\103" +"\101\040\062\202\002\005\011\060\015\006\011\052\206\110\206\367" +"\015\001\001\005\005\000\003\202\002\001\000\076\012\026\115\237" +"\006\133\250\256\161\135\057\005\057\147\346\023\105\203\304\066" +"\366\363\300\046\014\015\265\107\144\135\370\264\162\311\106\245" +"\003\030\047\125\211\170\175\166\352\226\064\200\027\040\334\347" +"\203\370\215\374\007\270\332\137\115\056\147\262\204\375\331\104" +"\374\167\120\201\346\174\264\311\015\013\162\123\370\166\007\007" +"\101\107\226\014\373\340\202\046\223\125\214\376\042\037\140\145" +"\174\137\347\046\263\367\062\220\230\120\324\067\161\125\366\222" +"\041\170\367\225\171\372\370\055\046\207\146\126\060\167\246\067" +"\170\063\122\020\130\256\077\141\216\362\152\261\357\030\176\112" +"\131\143\312\215\242\126\325\247\057\274\126\037\317\071\301\342" +"\373\012\250\025\054\175\115\172\143\306\154\227\104\074\322\157" +"\303\112\027\012\370\220\322\127\242\031\121\245\055\227\101\332" +"\007\117\251\120\332\220\215\224\106\341\076\360\224\375\020\000" +"\070\365\073\350\100\341\264\156\126\032\040\314\157\130\215\355" +"\056\105\217\326\351\223\077\347\261\054\337\072\326\042\214\334" +"\204\273\042\157\320\370\344\306\071\351\004\210\074\303\272\353" +"\125\172\155\200\231\044\365\154\001\373\370\227\260\224\133\353" +"\375\322\157\361\167\150\015\065\144\043\254\270\125\241\003\321" +"\115\102\031\334\370\165\131\126\243\371\250\111\171\370\257\016" +"\271\021\240\174\267\152\355\064\320\266\046\142\070\032\207\014" +"\370\350\375\056\323\220\177\007\221\052\035\326\176\134\205\203" +"\231\260\070\010\077\351\136\371\065\007\344\311\142\156\127\177" +"\247\120\225\367\272\310\233\346\216\242\001\305\326\146\277\171" +"\141\363\074\034\341\271\202\134\135\240\303\351\330\110\275\031" +"\242\021\024\031\156\262\206\033\150\076\110\067\032\210\267\135" +"\226\136\234\307\357\047\142\010\342\221\031\134\322\361\041\335" +"\272\027\102\202\227\161\201\123\061\251\237\366\175\142\277\162" +"\341\243\223\035\314\212\046\132\011\070\320\316\327\015\200\026" +"\264\170\245\072\207\114\215\212\245\325\106\227\362\054\020\271" +"\274\124\042\300\001\120\151\103\236\364\262\357\155\370\354\332" +"\361\343\261\357\337\221\217\124\052\013\045\301\046\031\304\122" +"\020\005\145\325\202\020\352\302\061\315\056" +, (PRUint32)1467 } +}; +static const NSSItem nss_builtins_items_155 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"QuoVadis Root CA 2", (PRUint32)19 }, + { (void *)"\312\072\373\317\022\100\066\113\104\262\026\040\210\200\110\071" +"\031\223\174\367" +, (PRUint32)20 }, + { (void *)"\136\071\173\335\370\272\354\202\351\254\142\272\014\124\000\053" +, (PRUint32)16 }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\062" +, (PRUint32)71 }, + { (void *)"\002\002\005\011" +, (PRUint32)4 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_156 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"QuoVadis Root CA 3", (PRUint32)19 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\063" +, (PRUint32)71 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\063" +, (PRUint32)71 }, + { (void *)"\002\002\005\306" +, (PRUint32)4 }, + { (void *)"\060\202\006\235\060\202\004\205\240\003\002\001\002\002\002\005" +"\306\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000" +"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\063\060\036\027\015\060\066\061\061\062" +"\064\061\071\061\061\062\063\132\027\015\063\061\061\061\062\064" +"\061\071\060\066\064\064\132\060\105\061\013\060\011\006\003\125" +"\004\006\023\002\102\115\061\031\060\027\006\003\125\004\012\023" +"\020\121\165\157\126\141\144\151\163\040\114\151\155\151\164\145" +"\144\061\033\060\031\006\003\125\004\003\023\022\121\165\157\126" +"\141\144\151\163\040\122\157\157\164\040\103\101\040\063\060\202" +"\002\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005" +"\000\003\202\002\017\000\060\202\002\012\002\202\002\001\000\314" +"\127\102\026\124\234\346\230\323\323\115\356\376\355\307\237\103" +"\071\112\145\263\350\026\210\064\333\015\131\221\164\317\222\270" +"\004\100\255\002\113\061\253\274\215\221\150\330\040\016\032\001" +"\342\032\173\116\027\135\342\212\267\077\231\032\315\353\141\253" +"\302\145\246\037\267\267\275\267\217\374\375\160\217\013\240\147" +"\276\001\242\131\317\161\346\017\051\166\377\261\126\171\105\053" +"\037\236\172\124\350\243\051\065\150\244\001\117\017\244\056\067" +"\357\033\277\343\217\020\250\162\253\130\127\347\124\206\310\311" +"\363\133\332\054\332\135\216\156\074\243\076\332\373\202\345\335" +"\362\134\262\005\063\157\212\066\316\320\023\116\377\277\112\014" +"\064\114\246\303\041\275\120\004\125\353\261\273\235\373\105\036" +"\144\025\336\125\001\214\002\166\265\313\241\077\102\151\274\057" +"\275\150\103\026\126\211\052\067\141\221\375\246\256\116\300\313" +"\024\145\224\067\113\222\006\357\004\320\310\234\210\333\013\173" +"\201\257\261\075\052\304\145\072\170\266\356\334\200\261\322\323" +"\231\234\072\356\153\132\153\263\215\267\325\316\234\302\276\245" +"\113\057\026\261\236\150\073\006\157\256\175\237\370\336\354\314" +"\051\247\230\243\045\103\057\357\361\137\046\341\210\115\370\136" +"\156\327\331\024\156\031\063\151\247\073\204\211\223\304\123\125" +"\023\241\121\170\100\370\270\311\242\356\173\272\122\102\203\236" +"\024\355\005\122\132\131\126\247\227\374\235\077\012\051\330\334" +"\117\221\016\023\274\336\225\244\337\213\231\276\254\233\063\210" +"\357\265\201\257\033\306\042\123\310\366\307\356\227\024\260\305" +"\174\170\122\310\360\316\156\167\140\204\246\351\052\166\040\355" +"\130\001\027\060\223\351\032\213\340\163\143\331\152\222\224\111" +"\116\264\255\112\205\304\243\042\060\374\011\355\150\042\163\246" +"\210\014\125\041\130\305\341\072\237\052\335\312\341\220\340\331" +"\163\253\154\200\270\350\013\144\223\240\234\214\031\377\263\322" +"\014\354\221\046\207\212\263\242\341\160\217\054\012\345\315\155" +"\150\121\353\332\077\005\177\213\062\346\023\134\153\376\137\100" +"\342\042\310\264\264\144\117\326\272\175\110\076\250\151\014\327" +"\273\206\161\311\163\270\077\073\235\045\113\332\377\100\353\002" +"\003\001\000\001\243\202\001\225\060\202\001\221\060\017\006\003" +"\125\035\023\001\001\377\004\005\060\003\001\001\377\060\201\341" +"\006\003\125\035\040\004\201\331\060\201\326\060\201\323\006\011" +"\053\006\001\004\001\276\130\000\003\060\201\305\060\201\223\006" +"\010\053\006\001\005\005\007\002\002\060\201\206\032\201\203\101" +"\156\171\040\165\163\145\040\157\146\040\164\150\151\163\040\103" +"\145\162\164\151\146\151\143\141\164\145\040\143\157\156\163\164" +"\151\164\165\164\145\163\040\141\143\143\145\160\164\141\156\143" +"\145\040\157\146\040\164\150\145\040\121\165\157\126\141\144\151" +"\163\040\122\157\157\164\040\103\101\040\063\040\103\145\162\164" +"\151\146\151\143\141\164\145\040\120\157\154\151\143\171\040\057" +"\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\120" +"\162\141\143\164\151\143\145\040\123\164\141\164\145\155\145\156" +"\164\056\060\055\006\010\053\006\001\005\005\007\002\001\026\041" +"\150\164\164\160\072\057\057\167\167\167\056\161\165\157\166\141" +"\144\151\163\147\154\157\142\141\154\056\143\157\155\057\143\160" +"\163\060\013\006\003\125\035\017\004\004\003\002\001\006\060\035" +"\006\003\125\035\016\004\026\004\024\362\300\023\340\202\103\076" +"\373\356\057\147\062\226\065\134\333\270\313\002\320\060\156\006" +"\003\125\035\043\004\147\060\145\200\024\362\300\023\340\202\103" +"\076\373\356\057\147\062\226\065\134\333\270\313\002\320\241\111" +"\244\107\060\105\061\013\060\011\006\003\125\004\006\023\002\102" +"\115\061\031\060\027\006\003\125\004\012\023\020\121\165\157\126" +"\141\144\151\163\040\114\151\155\151\164\145\144\061\033\060\031" +"\006\003\125\004\003\023\022\121\165\157\126\141\144\151\163\040" +"\122\157\157\164\040\103\101\040\063\202\002\005\306\060\015\006" +"\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002\001" +"\000\117\255\240\054\114\372\300\362\157\367\146\125\253\043\064" +"\356\347\051\332\303\133\266\260\203\331\320\320\342\041\373\363" +"\140\247\073\135\140\123\047\242\233\366\010\042\052\347\277\240" +"\162\345\234\044\152\061\261\220\172\047\333\204\021\211\047\246" +"\167\132\070\327\277\254\206\374\356\135\203\274\006\306\321\167" +"\153\017\155\044\057\113\172\154\247\007\226\312\343\204\237\255" +"\210\213\035\253\026\215\133\146\027\331\026\364\213\200\322\335" +"\370\262\166\303\374\070\023\252\014\336\102\151\053\156\363\074" +"\353\200\047\333\365\246\104\015\237\132\125\131\013\325\015\122" +"\110\305\256\237\362\057\200\305\352\062\120\065\022\227\056\301" +"\341\377\361\043\210\121\070\237\362\146\126\166\347\017\121\227" +"\245\122\014\115\111\121\225\066\075\277\242\113\014\020\035\206" +"\231\114\252\363\162\021\223\344\352\366\233\332\250\135\247\115" +"\267\236\002\256\163\000\310\332\043\003\350\371\352\031\164\142" +"\000\224\313\042\040\276\224\247\131\265\202\152\276\231\171\172" +"\251\362\112\044\122\367\164\375\272\116\346\250\035\002\156\261" +"\015\200\104\301\256\323\043\067\137\273\205\174\053\222\056\350" +"\176\245\213\335\231\341\277\047\157\055\135\252\173\207\376\012" +"\335\113\374\216\365\046\344\156\160\102\156\063\354\061\236\173" +"\223\301\344\311\151\032\075\300\153\116\042\155\356\253\130\115" +"\306\320\101\301\053\352\117\022\207\136\353\105\330\154\365\230" +"\002\323\240\330\125\212\006\231\031\242\240\167\321\060\236\254" +"\314\165\356\203\365\260\142\071\317\154\127\342\114\322\221\013" +"\016\165\050\033\232\277\375\032\103\361\312\167\373\073\217\141" +"\270\151\050\026\102\004\136\160\052\034\041\330\217\341\275\043" +"\133\055\164\100\222\331\143\031\015\163\335\151\274\142\107\274" +"\340\164\053\262\353\175\276\101\033\265\300\106\305\241\042\313" +"\137\116\301\050\222\336\030\272\325\052\050\273\021\213\027\223" +"\230\231\140\224\134\043\317\132\047\227\136\013\005\006\223\067" +"\036\073\151\066\353\251\236\141\035\217\062\332\216\014\326\164" +"\076\173\011\044\332\001\167\107\304\073\315\064\214\231\365\312" +"\341\045\141\063\262\131\033\342\156\327\067\127\266\015\251\022" +"\332" +, (PRUint32)1697 } +}; +static const NSSItem nss_builtins_items_157 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"QuoVadis Root CA 3", (PRUint32)19 }, + { (void *)"\037\111\024\367\330\164\225\035\335\256\002\300\276\375\072\055" +"\202\165\121\205" +, (PRUint32)20 }, + { (void *)"\061\205\074\142\224\227\143\271\252\375\211\116\257\157\340\317" +, (PRUint32)16 }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061" +"\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144" +"\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003" +"\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157" +"\157\164\040\103\101\040\063" +, (PRUint32)71 }, + { (void *)"\002\002\005\306" +, (PRUint32)4 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_158 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10859,7 +10854,7 @@ static const NSSItem nss_builtins_items_160 [] = { "\057\317\246\356\311\160\042\024\275\375\276\154\013\003" , (PRUint32)862 } }; -static const NSSItem nss_builtins_items_161 [] = { +static const NSSItem nss_builtins_items_159 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10884,7 +10879,7 @@ static const NSSItem nss_builtins_items_161 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_162 [] = { +static const NSSItem nss_builtins_items_160 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10957,7 +10952,7 @@ static const NSSItem nss_builtins_items_162 [] = { "\127\275\125\232" , (PRUint32)804 } }; -static const NSSItem nss_builtins_items_163 [] = { +static const NSSItem nss_builtins_items_161 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -10975,12 +10970,12 @@ static const NSSItem nss_builtins_items_163 [] = { , (PRUint32)59 }, { (void *)"\002\001\044" , (PRUint32)3 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_164 [] = { +static const NSSItem nss_builtins_items_162 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11053,7 +11048,7 @@ static const NSSItem nss_builtins_items_164 [] = { "\160\254\337\114" , (PRUint32)804 } }; -static const NSSItem nss_builtins_items_165 [] = { +static const NSSItem nss_builtins_items_163 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11076,7 +11071,7 @@ static const NSSItem nss_builtins_items_165 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_166 [] = { +static const NSSItem nss_builtins_items_164 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11162,7 +11157,7 @@ static const NSSItem nss_builtins_items_166 [] = { "\025\301\044\174\062\174\003\035\073\241\130\105\062\223" , (PRUint32)958 } }; -static const NSSItem nss_builtins_items_167 [] = { +static const NSSItem nss_builtins_items_165 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11187,7 +11182,7 @@ static const NSSItem nss_builtins_items_167 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_168 [] = { +static const NSSItem nss_builtins_items_166 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11278,7 +11273,7 @@ static const NSSItem nss_builtins_items_168 [] = { "\151\003\142\270\231\005\005\075\153\170\022\275\260\157\145" , (PRUint32)1071 } }; -static const NSSItem nss_builtins_items_169 [] = { +static const NSSItem nss_builtins_items_167 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11302,7 +11297,7 @@ static const NSSItem nss_builtins_items_169 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_170 [] = { +static const NSSItem nss_builtins_items_168 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11406,7 +11401,7 @@ static const NSSItem nss_builtins_items_170 [] = { "\004\243\103\055\332\374\013\142\352\057\137\142\123" , (PRUint32)1309 } }; -static const NSSItem nss_builtins_items_171 [] = { +static const NSSItem nss_builtins_items_169 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11429,7 +11424,7 @@ static const NSSItem nss_builtins_items_171 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_172 [] = { +static const NSSItem nss_builtins_items_170 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11535,7 +11530,7 @@ static const NSSItem nss_builtins_items_172 [] = { "\364\010" , (PRUint32)1122 } }; -static const NSSItem nss_builtins_items_173 [] = { +static const NSSItem nss_builtins_items_171 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11561,11 +11556,11 @@ static const NSSItem nss_builtins_items_173 [] = { "\255\151" , (PRUint32)18 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_174 [] = { +static const NSSItem nss_builtins_items_172 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11679,7 +11674,7 @@ static const NSSItem nss_builtins_items_174 [] = { "\005\323\312\003\112\124" , (PRUint32)1190 } }; -static const NSSItem nss_builtins_items_175 [] = { +static const NSSItem nss_builtins_items_173 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11706,12 +11701,12 @@ static const NSSItem nss_builtins_items_175 [] = { { (void *)"\002\020\104\276\014\213\120\000\044\264\021\323\066\045\045\147" "\311\211" , (PRUint32)18 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_176 [] = { +static const NSSItem nss_builtins_items_174 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11818,7 +11813,7 @@ static const NSSItem nss_builtins_items_176 [] = { "\062\234\036\273\235\370\146\250" , (PRUint32)1144 } }; -static const NSSItem nss_builtins_items_177 [] = { +static const NSSItem nss_builtins_items_175 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11844,11 +11839,11 @@ static const NSSItem nss_builtins_items_177 [] = { "\012\375" , (PRUint32)18 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_178 [] = { +static const NSSItem nss_builtins_items_176 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11954,7 +11949,7 @@ static const NSSItem nss_builtins_items_178 [] = { "\275\023\122\035\250\076\315\000\037\310" , (PRUint32)1130 } }; -static const NSSItem nss_builtins_items_179 [] = { +static const NSSItem nss_builtins_items_177 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -11979,12 +11974,12 @@ static const NSSItem nss_builtins_items_179 [] = { { (void *)"\002\020\104\276\014\213\120\000\044\264\021\323\066\055\340\263" "\137\033" , (PRUint32)18 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_180 [] = { +static const NSSItem nss_builtins_items_178 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12093,7 +12088,7 @@ static const NSSItem nss_builtins_items_180 [] = { "\334" , (PRUint32)1217 } }; -static const NSSItem nss_builtins_items_181 [] = { +static const NSSItem nss_builtins_items_179 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12121,7 +12116,7 @@ static const NSSItem nss_builtins_items_181 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_182 [] = { +static const NSSItem nss_builtins_items_180 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12228,7 +12223,7 @@ static const NSSItem nss_builtins_items_182 [] = { "\166\135\165\220\032\365\046\217\360" , (PRUint32)1225 } }; -static const NSSItem nss_builtins_items_183 [] = { +static const NSSItem nss_builtins_items_181 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12255,7 +12250,7 @@ static const NSSItem nss_builtins_items_183 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_184 [] = { +static const NSSItem nss_builtins_items_182 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12405,7 +12400,7 @@ static const NSSItem nss_builtins_items_184 [] = { "\306\224\107\351\050" , (PRUint32)1749 } }; -static const NSSItem nss_builtins_items_185 [] = { +static const NSSItem nss_builtins_items_183 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12432,12 +12427,12 @@ static const NSSItem nss_builtins_items_185 [] = { , (PRUint32)204 }, { (void *)"\002\001\173" , (PRUint32)3 }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_186 [] = { +static const NSSItem nss_builtins_items_184 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12580,7 +12575,7 @@ static const NSSItem nss_builtins_items_186 [] = { "\210" , (PRUint32)1665 } }; -static const NSSItem nss_builtins_items_187 [] = { +static const NSSItem nss_builtins_items_185 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12611,7 +12606,7 @@ static const NSSItem nss_builtins_items_187 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_188 [] = { +static const NSSItem nss_builtins_items_186 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12730,7 +12725,7 @@ static const NSSItem nss_builtins_items_188 [] = { "\066\053\143\254\130\001\153\063\051\120\206\203\361\001\110" , (PRUint32)1359 } }; -static const NSSItem nss_builtins_items_189 [] = { +static const NSSItem nss_builtins_items_187 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12759,7 +12754,7 @@ static const NSSItem nss_builtins_items_189 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_190 [] = { +static const NSSItem nss_builtins_items_188 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12879,7 +12874,7 @@ static const NSSItem nss_builtins_items_190 [] = { "\063\004\324" , (PRUint32)1363 } }; -static const NSSItem nss_builtins_items_191 [] = { +static const NSSItem nss_builtins_items_189 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -12908,7 +12903,7 @@ static const NSSItem nss_builtins_items_191 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_192 [] = { +static const NSSItem nss_builtins_items_190 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13009,7 +13004,7 @@ static const NSSItem nss_builtins_items_192 [] = { "\264\003\045\274" , (PRUint32)1076 } }; -static const NSSItem nss_builtins_items_193 [] = { +static const NSSItem nss_builtins_items_191 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13038,7 +13033,7 @@ static const NSSItem nss_builtins_items_193 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_194 [] = { +static const NSSItem nss_builtins_items_192 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13131,7 +13126,7 @@ static const NSSItem nss_builtins_items_194 [] = { "\177\333\275\237" , (PRUint32)1028 } }; -static const NSSItem nss_builtins_items_195 [] = { +static const NSSItem nss_builtins_items_193 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13157,7 +13152,7 @@ static const NSSItem nss_builtins_items_195 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_196 [] = { +static const NSSItem nss_builtins_items_194 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13251,7 +13246,7 @@ static const NSSItem nss_builtins_items_196 [] = { "\037\027\224" , (PRUint32)1043 } }; -static const NSSItem nss_builtins_items_197 [] = { +static const NSSItem nss_builtins_items_195 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13277,7 +13272,7 @@ static const NSSItem nss_builtins_items_197 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; -static const NSSItem nss_builtins_items_198 [] = { +static const NSSItem nss_builtins_items_196 [] = { { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13397,7 +13392,7 @@ static const NSSItem nss_builtins_items_198 [] = { "\160\043\261\200\337\032\040\070\347\176" , (PRUint32)1306 } }; -static const NSSItem nss_builtins_items_199 [] = { +static const NSSItem nss_builtins_items_197 [] = { { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, @@ -13425,7 +13420,189 @@ static const NSSItem nss_builtins_items_199 [] = { , (PRUint32)3 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_198 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"StartCom Certification Authority", (PRUint32)33 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061" +"\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103" +"\157\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013" +"\023\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154" +"\040\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147" +"\156\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123" +"\164\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143" +"\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171" +, (PRUint32)127 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061" +"\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103" +"\157\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013" +"\023\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154" +"\040\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147" +"\156\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123" +"\164\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143" +"\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171" +, (PRUint32)127 }, + { (void *)"\002\001\001" +, (PRUint32)3 }, + { (void *)"\060\202\007\311\060\202\005\261\240\003\002\001\002\002\001\001" +"\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060" +"\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061\026" +"\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103\157" +"\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013\023" +"\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154\040" +"\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147\156" +"\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123\164" +"\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143\141" +"\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060\036" +"\027\015\060\066\060\071\061\067\061\071\064\066\063\066\132\027" +"\015\063\066\060\071\061\067\061\071\064\066\063\066\132\060\175" +"\061\013\060\011\006\003\125\004\006\023\002\111\114\061\026\060" +"\024\006\003\125\004\012\023\015\123\164\141\162\164\103\157\155" +"\040\114\164\144\056\061\053\060\051\006\003\125\004\013\023\042" +"\123\145\143\165\162\145\040\104\151\147\151\164\141\154\040\103" +"\145\162\164\151\146\151\143\141\164\145\040\123\151\147\156\151" +"\156\147\061\051\060\047\006\003\125\004\003\023\040\123\164\141" +"\162\164\103\157\155\040\103\145\162\164\151\146\151\143\141\164" +"\151\157\156\040\101\165\164\150\157\162\151\164\171\060\202\002" +"\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000" +"\003\202\002\017\000\060\202\002\012\002\202\002\001\000\301\210" +"\333\011\274\154\106\174\170\237\225\173\265\063\220\362\162\142" +"\326\301\066\040\042\044\136\316\351\167\362\103\012\242\006\144" +"\244\314\216\066\370\070\346\043\360\156\155\261\074\335\162\243" +"\205\034\241\323\075\264\063\053\323\057\257\376\352\260\101\131" +"\147\266\304\006\175\012\236\164\205\326\171\114\200\067\172\337" +"\071\005\122\131\367\364\033\106\103\244\322\205\205\322\303\161" +"\363\165\142\064\272\054\212\177\036\217\356\355\064\320\021\307" +"\226\315\122\075\272\063\326\335\115\336\013\073\112\113\237\302" +"\046\057\372\265\026\034\162\065\167\312\074\135\346\312\341\046" +"\213\032\066\166\134\001\333\164\024\045\376\355\265\240\210\017" +"\335\170\312\055\037\007\227\060\001\055\162\171\372\106\326\023" +"\052\250\271\246\253\203\111\035\345\362\357\335\344\001\216\030" +"\012\217\143\123\026\205\142\251\016\031\072\314\265\146\246\302" +"\153\164\007\344\053\341\166\076\264\155\330\366\104\341\163\142" +"\037\073\304\276\240\123\126\045\154\121\011\367\252\253\312\277" +"\166\375\155\233\363\235\333\277\075\146\274\014\126\252\257\230" +"\110\225\072\113\337\247\130\120\331\070\165\251\133\352\103\014" +"\002\377\231\353\350\154\115\160\133\051\145\234\335\252\135\314" +"\257\001\061\354\014\353\322\215\350\352\234\173\346\156\367\047" +"\146\014\032\110\327\156\102\343\077\336\041\076\173\341\015\160" +"\373\143\252\250\154\032\124\264\134\045\172\311\242\311\213\026" +"\246\273\054\176\027\136\005\115\130\156\022\035\001\356\022\020" +"\015\306\062\177\030\377\374\364\372\315\156\221\350\066\111\276" +"\032\110\151\213\302\226\115\032\022\262\151\027\301\012\220\326" +"\372\171\042\110\277\272\173\151\370\160\307\372\172\067\330\330" +"\015\322\166\117\127\377\220\267\343\221\322\335\357\302\140\267" +"\147\072\335\376\252\234\360\324\213\177\162\042\316\306\237\227" +"\266\370\257\212\240\020\250\331\373\030\306\266\265\134\122\074" +"\211\266\031\052\163\001\012\017\003\263\022\140\362\172\057\201" +"\333\243\156\377\046\060\227\365\213\335\211\127\266\255\075\263" +"\257\053\305\267\166\002\360\245\326\053\232\206\024\052\162\366" +"\343\063\214\135\011\113\023\337\273\214\164\023\122\113\002\003" +"\001\000\001\243\202\002\122\060\202\002\116\060\014\006\003\125" +"\035\023\004\005\060\003\001\001\377\060\013\006\003\125\035\017" +"\004\004\003\002\001\256\060\035\006\003\125\035\016\004\026\004" +"\024\116\013\357\032\244\100\133\245\027\151\207\060\312\064\150" +"\103\320\101\256\362\060\144\006\003\125\035\037\004\135\060\133" +"\060\054\240\052\240\050\206\046\150\164\164\160\072\057\057\143" +"\145\162\164\056\163\164\141\162\164\143\157\155\056\157\162\147" +"\057\163\146\163\143\141\055\143\162\154\056\143\162\154\060\053" +"\240\051\240\047\206\045\150\164\164\160\072\057\057\143\162\154" +"\056\163\164\141\162\164\143\157\155\056\157\162\147\057\163\146" +"\163\143\141\055\143\162\154\056\143\162\154\060\202\001\135\006" +"\003\125\035\040\004\202\001\124\060\202\001\120\060\202\001\114" +"\006\013\053\006\001\004\001\201\265\067\001\001\001\060\202\001" +"\073\060\057\006\010\053\006\001\005\005\007\002\001\026\043\150" +"\164\164\160\072\057\057\143\145\162\164\056\163\164\141\162\164" +"\143\157\155\056\157\162\147\057\160\157\154\151\143\171\056\160" +"\144\146\060\065\006\010\053\006\001\005\005\007\002\001\026\051" +"\150\164\164\160\072\057\057\143\145\162\164\056\163\164\141\162" +"\164\143\157\155\056\157\162\147\057\151\156\164\145\162\155\145" +"\144\151\141\164\145\056\160\144\146\060\201\320\006\010\053\006" +"\001\005\005\007\002\002\060\201\303\060\047\026\040\123\164\141" +"\162\164\040\103\157\155\155\145\162\143\151\141\154\040\050\123" +"\164\141\162\164\103\157\155\051\040\114\164\144\056\060\003\002" +"\001\001\032\201\227\114\151\155\151\164\145\144\040\114\151\141" +"\142\151\154\151\164\171\054\040\162\145\141\144\040\164\150\145" +"\040\163\145\143\164\151\157\156\040\052\114\145\147\141\154\040" +"\114\151\155\151\164\141\164\151\157\156\163\052\040\157\146\040" +"\164\150\145\040\123\164\141\162\164\103\157\155\040\103\145\162" +"\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157" +"\162\151\164\171\040\120\157\154\151\143\171\040\141\166\141\151" +"\154\141\142\154\145\040\141\164\040\150\164\164\160\072\057\057" +"\143\145\162\164\056\163\164\141\162\164\143\157\155\056\157\162" +"\147\057\160\157\154\151\143\171\056\160\144\146\060\021\006\011" +"\140\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060" +"\070\006\011\140\206\110\001\206\370\102\001\015\004\053\026\051" +"\123\164\141\162\164\103\157\155\040\106\162\145\145\040\123\123" +"\114\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040" +"\101\165\164\150\157\162\151\164\171\060\015\006\011\052\206\110" +"\206\367\015\001\001\005\005\000\003\202\002\001\000\026\154\231" +"\364\146\014\064\365\320\205\136\175\012\354\332\020\116\070\034" +"\136\337\246\045\005\113\221\062\301\350\073\361\075\335\104\011" +"\133\007\111\212\051\313\146\002\267\261\232\367\045\230\011\074" +"\216\033\341\335\066\207\053\113\273\150\323\071\146\075\240\046" +"\307\362\071\221\035\121\253\202\173\176\325\316\132\344\342\003" +"\127\160\151\227\010\371\136\130\246\012\337\214\006\232\105\026" +"\026\070\012\136\127\366\142\307\172\002\005\346\274\036\265\362" +"\236\364\251\051\203\370\262\024\343\156\050\207\104\303\220\032" +"\336\070\251\074\254\103\115\144\105\316\335\050\251\134\362\163" +"\173\004\370\027\350\253\261\363\056\134\144\156\163\061\072\022" +"\270\274\263\021\344\175\217\201\121\232\073\215\211\364\115\223" +"\146\173\074\003\355\323\232\035\232\363\145\120\365\240\320\165" +"\237\057\257\360\352\202\103\230\370\151\234\211\171\304\103\216" +"\106\162\343\144\066\022\257\367\045\036\070\211\220\167\176\303" +"\153\152\271\303\313\104\113\254\170\220\213\347\307\054\036\113" +"\021\104\310\064\122\047\315\012\135\237\205\301\211\325\032\170" +"\362\225\020\123\062\335\200\204\146\165\331\265\150\050\373\141" +"\056\276\204\250\070\300\231\022\206\245\036\147\144\255\006\056" +"\057\251\160\205\307\226\017\174\211\145\365\216\103\124\016\253" +"\335\245\200\071\224\140\300\064\311\226\160\054\243\022\365\037" +"\110\173\275\034\176\153\267\235\220\364\042\073\256\370\374\052" +"\312\372\202\122\240\357\257\113\125\223\353\301\265\360\042\213" +"\254\064\116\046\042\004\241\207\054\165\112\267\345\175\023\327" +"\270\014\144\300\066\322\311\057\206\022\214\043\011\301\033\202" +"\073\163\111\243\152\127\207\224\345\326\170\305\231\103\143\343" +"\115\340\167\055\341\145\231\162\151\004\032\107\011\346\017\001" +"\126\044\373\037\277\016\171\251\130\056\271\304\011\001\176\225" +"\272\155\000\006\076\262\352\112\020\071\330\320\053\365\277\354" +"\165\277\227\002\305\011\033\010\334\125\067\342\201\373\067\204" +"\103\142\040\312\347\126\113\145\352\376\154\301\044\223\044\241" +"\064\353\005\377\232\042\256\233\175\077\361\145\121\012\246\060" +"\152\263\364\210\034\200\015\374\162\212\350\203\136" +, (PRUint32)1997 } +}; +static const NSSItem nss_builtins_items_199 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"StartCom Certification Authority", (PRUint32)33 }, + { (void *)"\076\053\367\362\003\033\226\363\214\346\304\330\250\135\076\055" +"\130\107\152\017" +, (PRUint32)20 }, + { (void *)"\042\115\217\212\374\367\065\302\273\127\064\220\173\213\042\026" +, (PRUint32)16 }, + { (void *)"\060\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061" +"\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103" +"\157\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013" +"\023\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154" +"\040\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147" +"\156\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123" +"\164\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143" +"\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171" +, (PRUint32)127 }, + { (void *)"\002\001\001" +, (PRUint32)3 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; static const NSSItem nss_builtins_items_200 [] = { @@ -13696,7 +13873,7 @@ static const NSSItem nss_builtins_items_203 [] = { , (PRUint32)3 }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; static const NSSItem nss_builtins_items_204 [] = { @@ -13972,8 +14149,1378 @@ static const NSSItem nss_builtins_items_207 [] = { { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } }; +static const NSSItem nss_builtins_items_208 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DigiCert Assured ID Root CA", (PRUint32)28 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\145\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\044\060\042\006\003\125\004\003\023\033\104\151\147\151" +"\103\145\162\164\040\101\163\163\165\162\145\144\040\111\104\040" +"\122\157\157\164\040\103\101" +, (PRUint32)103 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\145\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\044\060\042\006\003\125\004\003\023\033\104\151\147\151" +"\103\145\162\164\040\101\163\163\165\162\145\144\040\111\104\040" +"\122\157\157\164\040\103\101" +, (PRUint32)103 }, + { (void *)"\002\020\014\347\340\345\027\330\106\376\217\345\140\374\033\360" +"\060\071" +, (PRUint32)18 }, + { (void *)"\060\202\003\267\060\202\002\237\240\003\002\001\002\002\020\014" +"\347\340\345\027\330\106\376\217\345\140\374\033\360\060\071\060" +"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\145" +"\061\013\060\011\006\003\125\004\006\023\002\125\123\061\025\060" +"\023\006\003\125\004\012\023\014\104\151\147\151\103\145\162\164" +"\040\111\156\143\061\031\060\027\006\003\125\004\013\023\020\167" +"\167\167\056\144\151\147\151\143\145\162\164\056\143\157\155\061" +"\044\060\042\006\003\125\004\003\023\033\104\151\147\151\103\145" +"\162\164\040\101\163\163\165\162\145\144\040\111\104\040\122\157" +"\157\164\040\103\101\060\036\027\015\060\066\061\061\061\060\060" +"\060\060\060\060\060\132\027\015\063\061\061\061\061\060\060\060" +"\060\060\060\060\132\060\145\061\013\060\011\006\003\125\004\006" +"\023\002\125\123\061\025\060\023\006\003\125\004\012\023\014\104" +"\151\147\151\103\145\162\164\040\111\156\143\061\031\060\027\006" +"\003\125\004\013\023\020\167\167\167\056\144\151\147\151\143\145" +"\162\164\056\143\157\155\061\044\060\042\006\003\125\004\003\023" +"\033\104\151\147\151\103\145\162\164\040\101\163\163\165\162\145" +"\144\040\111\104\040\122\157\157\164\040\103\101\060\202\001\042" +"\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003" +"\202\001\017\000\060\202\001\012\002\202\001\001\000\255\016\025" +"\316\344\103\200\134\261\207\363\267\140\371\161\022\245\256\334" +"\046\224\210\252\364\316\365\040\071\050\130\140\014\370\200\332" +"\251\025\225\062\141\074\265\261\050\204\212\212\334\237\012\014" +"\203\027\172\217\220\254\212\347\171\123\134\061\204\052\366\017" +"\230\062\066\166\314\336\335\074\250\242\357\152\373\041\362\122" +"\141\337\237\040\327\037\342\261\331\376\030\144\322\022\133\137" +"\371\130\030\065\274\107\315\241\066\371\153\177\324\260\070\076" +"\301\033\303\214\063\331\330\057\030\376\050\017\263\247\203\326" +"\303\156\104\300\141\065\226\026\376\131\234\213\166\155\327\361" +"\242\113\015\053\377\013\162\332\236\140\320\216\220\065\306\170" +"\125\207\040\241\317\345\155\012\310\111\174\061\230\063\154\042" +"\351\207\320\062\132\242\272\023\202\021\355\071\027\235\231\072" +"\162\241\346\372\244\331\325\027\061\165\256\205\175\042\256\077" +"\001\106\206\366\050\171\310\261\332\344\127\027\304\176\034\016" +"\260\264\222\246\126\263\275\262\227\355\252\247\360\267\305\250" +"\077\225\026\320\377\241\226\353\010\137\030\167\117\002\003\001" +"\000\001\243\143\060\141\060\016\006\003\125\035\017\001\001\377" +"\004\004\003\002\001\206\060\017\006\003\125\035\023\001\001\377" +"\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026" +"\004\024\105\353\242\257\364\222\313\202\061\055\121\213\247\247" +"\041\235\363\155\310\017\060\037\006\003\125\035\043\004\030\060" +"\026\200\024\105\353\242\257\364\222\313\202\061\055\121\213\247" +"\247\041\235\363\155\310\017\060\015\006\011\052\206\110\206\367" +"\015\001\001\005\005\000\003\202\001\001\000\242\016\274\337\342" +"\355\360\343\162\163\172\144\224\277\367\162\146\330\062\344\102" +"\165\142\256\207\353\362\325\331\336\126\263\237\314\316\024\050" +"\271\015\227\140\134\022\114\130\344\323\075\203\111\105\130\227" +"\065\151\032\250\107\352\126\306\171\253\022\330\147\201\204\337" +"\177\011\074\224\346\270\046\054\040\275\075\263\050\211\367\137" +"\377\042\342\227\204\037\351\145\357\207\340\337\301\147\111\263" +"\135\353\262\011\052\353\046\355\170\276\175\077\053\363\267\046" +"\065\155\137\211\001\266\111\133\237\001\005\233\253\075\045\301" +"\314\266\177\302\361\157\206\306\372\144\150\353\201\055\224\353" +"\102\267\372\214\036\335\142\361\276\120\147\267\154\275\363\361" +"\037\153\014\066\007\026\177\067\174\251\133\155\172\361\022\106" +"\140\203\327\047\004\276\113\316\227\276\303\147\052\150\021\337" +"\200\347\014\063\146\277\023\015\024\156\363\177\037\143\020\036" +"\372\215\033\045\155\154\217\245\267\141\001\261\322\243\046\241" +"\020\161\235\255\342\303\371\303\231\121\267\053\007\010\316\056" +"\346\120\262\247\372\012\105\057\242\360\362" +, (PRUint32)955 } +}; +static const NSSItem nss_builtins_items_209 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DigiCert Assured ID Root CA", (PRUint32)28 }, + { (void *)"\005\143\270\143\015\142\327\132\273\310\253\036\113\337\265\250" +"\231\262\115\103" +, (PRUint32)20 }, + { (void *)"\207\316\013\173\052\016\111\000\341\130\161\233\067\250\223\162" +, (PRUint32)16 }, + { (void *)"\060\145\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\044\060\042\006\003\125\004\003\023\033\104\151\147\151" +"\103\145\162\164\040\101\163\163\165\162\145\144\040\111\104\040" +"\122\157\157\164\040\103\101" +, (PRUint32)103 }, + { (void *)"\002\020\014\347\340\345\027\330\106\376\217\345\140\374\033\360" +"\060\071" +, (PRUint32)18 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_210 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DigiCert Global Root CA", (PRUint32)24 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147\151" +"\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157\164" +"\040\103\101" +, (PRUint32)99 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147\151" +"\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157\164" +"\040\103\101" +, (PRUint32)99 }, + { (void *)"\002\020\010\073\340\126\220\102\106\261\241\165\152\311\131\221" +"\307\112" +, (PRUint32)18 }, + { (void *)"\060\202\003\257\060\202\002\227\240\003\002\001\002\002\020\010" +"\073\340\126\220\102\106\261\241\165\152\311\131\221\307\112\060" +"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\141" +"\061\013\060\011\006\003\125\004\006\023\002\125\123\061\025\060" +"\023\006\003\125\004\012\023\014\104\151\147\151\103\145\162\164" +"\040\111\156\143\061\031\060\027\006\003\125\004\013\023\020\167" +"\167\167\056\144\151\147\151\143\145\162\164\056\143\157\155\061" +"\040\060\036\006\003\125\004\003\023\027\104\151\147\151\103\145" +"\162\164\040\107\154\157\142\141\154\040\122\157\157\164\040\103" +"\101\060\036\027\015\060\066\061\061\061\060\060\060\060\060\060" +"\060\132\027\015\063\061\061\061\061\060\060\060\060\060\060\060" +"\132\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123" +"\061\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103" +"\145\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013" +"\023\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143" +"\157\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147" +"\151\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157" +"\164\040\103\101\060\202\001\042\060\015\006\011\052\206\110\206" +"\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012" +"\002\202\001\001\000\342\073\341\021\162\336\250\244\323\243\127" +"\252\120\242\217\013\167\220\311\242\245\356\022\316\226\133\001" +"\011\040\314\001\223\247\116\060\267\123\367\103\304\151\000\127" +"\235\342\215\042\335\207\006\100\000\201\011\316\316\033\203\277" +"\337\315\073\161\106\342\326\146\307\005\263\166\047\026\217\173" +"\236\036\225\175\356\267\110\243\010\332\326\257\172\014\071\006" +"\145\177\112\135\037\274\027\370\253\276\356\050\327\164\177\172" +"\170\231\131\205\150\156\134\043\062\113\277\116\300\350\132\155" +"\343\160\277\167\020\277\374\001\366\205\331\250\104\020\130\062" +"\251\165\030\325\321\242\276\107\342\047\152\364\232\063\370\111" +"\010\140\213\324\137\264\072\204\277\241\252\112\114\175\076\317" +"\117\137\154\166\136\240\113\067\221\236\334\042\346\155\316\024" +"\032\216\152\313\376\315\263\024\144\027\307\133\051\236\062\277" +"\362\356\372\323\013\102\324\253\267\101\062\332\014\324\357\370" +"\201\325\273\215\130\077\265\033\350\111\050\242\160\332\061\004" +"\335\367\262\026\362\114\012\116\007\250\355\112\075\136\265\177" +"\243\220\303\257\047\002\003\001\000\001\243\143\060\141\060\016" +"\006\003\125\035\017\001\001\377\004\004\003\002\001\206\060\017" +"\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377\060" +"\035\006\003\125\035\016\004\026\004\024\003\336\120\065\126\321" +"\114\273\146\360\243\342\033\033\303\227\262\075\321\125\060\037" +"\006\003\125\035\043\004\030\060\026\200\024\003\336\120\065\126" +"\321\114\273\146\360\243\342\033\033\303\227\262\075\321\125\060" +"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202" +"\001\001\000\313\234\067\252\110\023\022\012\372\335\104\234\117" +"\122\260\364\337\256\004\365\171\171\010\243\044\030\374\113\053" +"\204\300\055\271\325\307\376\364\301\037\130\313\270\155\234\172" +"\164\347\230\051\253\021\265\343\160\240\241\315\114\210\231\223" +"\214\221\160\342\253\017\034\276\223\251\377\143\325\344\007\140" +"\323\243\277\235\133\011\361\325\216\343\123\364\216\143\372\077" +"\247\333\264\146\337\142\146\326\321\156\101\215\362\055\265\352" +"\167\112\237\235\130\342\053\131\300\100\043\355\055\050\202\105" +"\076\171\124\222\046\230\340\200\110\250\067\357\360\326\171\140" +"\026\336\254\350\016\315\156\254\104\027\070\057\111\332\341\105" +"\076\052\271\066\123\317\072\120\006\367\056\350\304\127\111\154" +"\141\041\030\325\004\255\170\074\054\072\200\153\247\353\257\025" +"\024\351\330\211\301\271\070\154\342\221\154\212\377\144\271\167" +"\045\127\060\300\033\044\243\341\334\351\337\107\174\265\264\044" +"\010\005\060\354\055\275\013\277\105\277\120\271\251\363\353\230" +"\001\022\255\310\210\306\230\064\137\215\012\074\306\351\325\225" +"\225\155\336" +, (PRUint32)947 } +}; +static const NSSItem nss_builtins_items_211 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DigiCert Global Root CA", (PRUint32)24 }, + { (void *)"\250\230\135\072\145\345\345\304\262\327\326\155\100\306\335\057" +"\261\234\124\066" +, (PRUint32)20 }, + { (void *)"\171\344\251\204\015\175\072\226\327\300\117\342\103\114\211\056" +, (PRUint32)16 }, + { (void *)"\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147\151" +"\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157\164" +"\040\103\101" +, (PRUint32)99 }, + { (void *)"\002\020\010\073\340\126\220\102\106\261\241\165\152\311\131\221" +"\307\112" +, (PRUint32)18 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_212 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DigiCert High Assurance EV Root CA", (PRUint32)35 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\154\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\053\060\051\006\003\125\004\003\023\042\104\151\147\151" +"\103\145\162\164\040\110\151\147\150\040\101\163\163\165\162\141" +"\156\143\145\040\105\126\040\122\157\157\164\040\103\101" +, (PRUint32)110 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\154\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\053\060\051\006\003\125\004\003\023\042\104\151\147\151" +"\103\145\162\164\040\110\151\147\150\040\101\163\163\165\162\141" +"\156\143\145\040\105\126\040\122\157\157\164\040\103\101" +, (PRUint32)110 }, + { (void *)"\002\020\002\254\134\046\152\013\100\233\217\013\171\362\256\106" +"\045\167" +, (PRUint32)18 }, + { (void *)"\060\202\003\305\060\202\002\255\240\003\002\001\002\002\020\002" +"\254\134\046\152\013\100\233\217\013\171\362\256\106\045\167\060" +"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\154" +"\061\013\060\011\006\003\125\004\006\023\002\125\123\061\025\060" +"\023\006\003\125\004\012\023\014\104\151\147\151\103\145\162\164" +"\040\111\156\143\061\031\060\027\006\003\125\004\013\023\020\167" +"\167\167\056\144\151\147\151\143\145\162\164\056\143\157\155\061" +"\053\060\051\006\003\125\004\003\023\042\104\151\147\151\103\145" +"\162\164\040\110\151\147\150\040\101\163\163\165\162\141\156\143" +"\145\040\105\126\040\122\157\157\164\040\103\101\060\036\027\015" +"\060\066\061\061\061\060\060\060\060\060\060\060\132\027\015\063" +"\061\061\061\061\060\060\060\060\060\060\060\132\060\154\061\013" +"\060\011\006\003\125\004\006\023\002\125\123\061\025\060\023\006" +"\003\125\004\012\023\014\104\151\147\151\103\145\162\164\040\111" +"\156\143\061\031\060\027\006\003\125\004\013\023\020\167\167\167" +"\056\144\151\147\151\143\145\162\164\056\143\157\155\061\053\060" +"\051\006\003\125\004\003\023\042\104\151\147\151\103\145\162\164" +"\040\110\151\147\150\040\101\163\163\165\162\141\156\143\145\040" +"\105\126\040\122\157\157\164\040\103\101\060\202\001\042\060\015" +"\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001" +"\017\000\060\202\001\012\002\202\001\001\000\306\314\345\163\346" +"\373\324\273\345\055\055\062\246\337\345\201\077\311\315\045\111" +"\266\161\052\303\325\224\064\147\242\012\034\260\137\151\246\100" +"\261\304\267\262\217\320\230\244\251\101\131\072\323\334\224\326" +"\074\333\164\070\244\112\314\115\045\202\367\112\245\123\022\070" +"\356\363\111\155\161\221\176\143\266\253\246\137\303\244\204\370" +"\117\142\121\276\370\305\354\333\070\222\343\006\345\010\221\014" +"\304\050\101\125\373\313\132\211\025\176\161\350\065\277\115\162" +"\011\075\276\072\070\120\133\167\061\033\215\263\307\044\105\232" +"\247\254\155\000\024\132\004\267\272\023\353\121\012\230\101\101" +"\042\116\145\141\207\201\101\120\246\171\134\211\336\031\112\127" +"\325\056\346\135\034\123\054\176\230\315\032\006\026\244\150\163" +"\320\064\004\023\134\241\161\323\132\174\125\333\136\144\341\067" +"\207\060\126\004\345\021\264\051\200\022\361\171\071\210\242\002" +"\021\174\047\146\267\210\267\170\362\312\012\250\070\253\012\144" +"\302\277\146\135\225\204\301\241\045\036\207\135\032\120\013\040" +"\022\314\101\273\156\013\121\070\270\113\313\002\003\001\000\001" +"\243\143\060\141\060\016\006\003\125\035\017\001\001\377\004\004" +"\003\002\001\206\060\017\006\003\125\035\023\001\001\377\004\005" +"\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024" +"\261\076\303\151\003\370\277\107\001\324\230\046\032\010\002\357" +"\143\144\053\303\060\037\006\003\125\035\043\004\030\060\026\200" +"\024\261\076\303\151\003\370\277\107\001\324\230\046\032\010\002" +"\357\143\144\053\303\060\015\006\011\052\206\110\206\367\015\001" +"\001\005\005\000\003\202\001\001\000\034\032\006\227\334\327\234" +"\237\074\210\146\006\010\127\041\333\041\107\370\052\147\252\277" +"\030\062\166\100\020\127\301\212\363\172\331\021\145\216\065\372" +"\236\374\105\265\236\331\114\061\113\270\221\350\103\054\216\263" +"\170\316\333\343\123\171\161\326\345\041\224\001\332\125\207\232" +"\044\144\366\212\146\314\336\234\067\315\250\064\261\151\233\043" +"\310\236\170\042\053\160\103\343\125\107\061\141\031\357\130\305" +"\205\057\116\060\366\240\061\026\043\310\347\342\145\026\063\313" +"\277\032\033\240\075\370\312\136\213\061\213\140\010\211\055\014" +"\006\134\122\267\304\371\012\230\321\025\137\237\022\276\174\066" +"\143\070\275\104\244\177\344\046\053\012\304\227\151\015\351\214" +"\342\300\020\127\270\310\166\022\221\125\362\110\151\330\274\052" +"\002\133\017\104\324\040\061\333\364\272\160\046\135\220\140\236" +"\274\113\027\011\057\264\313\036\103\150\311\007\047\301\322\134" +"\367\352\041\271\150\022\234\074\234\277\236\374\200\134\233\143" +"\315\354\107\252\045\047\147\240\067\363\000\202\175\124\327\251" +"\370\351\056\023\243\167\350\037\112" +, (PRUint32)969 } +}; +static const NSSItem nss_builtins_items_213 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DigiCert High Assurance EV Root CA", (PRUint32)35 }, + { (void *)"\137\267\356\006\063\342\131\333\255\014\114\232\346\323\217\032" +"\141\307\334\045" +, (PRUint32)20 }, + { (void *)"\324\164\336\127\134\071\262\323\234\205\203\305\300\145\111\212" +, (PRUint32)16 }, + { (void *)"\060\154\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145" +"\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023" +"\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157" +"\155\061\053\060\051\006\003\125\004\003\023\042\104\151\147\151" +"\103\145\162\164\040\110\151\147\150\040\101\163\163\165\162\141" +"\156\143\145\040\105\126\040\122\157\157\164\040\103\101" +, (PRUint32)110 }, + { (void *)"\002\020\002\254\134\046\152\013\100\233\217\013\171\362\256\106" +"\045\167" +, (PRUint32)18 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_214 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"Certplus Class 2 Primary CA", (PRUint32)28 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061" +"\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154" +"\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141" +"\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101" +, (PRUint32)63 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061" +"\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154" +"\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141" +"\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101" +, (PRUint32)63 }, + { (void *)"\002\021\000\205\275\113\363\330\332\343\151\366\224\327\137\303" +"\245\104\043" +, (PRUint32)19 }, + { (void *)"\060\202\003\222\060\202\002\172\240\003\002\001\002\002\021\000" +"\205\275\113\363\330\332\343\151\366\224\327\137\303\245\104\043" +"\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060" +"\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061\021" +"\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154\165" +"\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141\163" +"\163\040\062\040\120\162\151\155\141\162\171\040\103\101\060\036" +"\027\015\071\071\060\067\060\067\061\067\060\065\060\060\132\027" +"\015\061\071\060\067\060\066\062\063\065\071\065\071\132\060\075" +"\061\013\060\011\006\003\125\004\006\023\002\106\122\061\021\060" +"\017\006\003\125\004\012\023\010\103\145\162\164\160\154\165\163" +"\061\033\060\031\006\003\125\004\003\023\022\103\154\141\163\163" +"\040\062\040\120\162\151\155\141\162\171\040\103\101\060\202\001" +"\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000" +"\003\202\001\017\000\060\202\001\012\002\202\001\001\000\334\120" +"\226\320\022\370\065\322\010\170\172\266\122\160\375\157\356\317" +"\271\021\313\135\167\341\354\351\176\004\215\326\314\157\163\103" +"\127\140\254\063\012\104\354\003\137\034\200\044\221\345\250\221" +"\126\022\202\367\340\053\364\333\256\141\056\211\020\215\153\154" +"\272\263\002\275\325\066\305\110\067\043\342\360\132\067\122\063" +"\027\022\342\321\140\115\276\057\101\021\343\366\027\045\014\213" +"\221\300\033\231\173\231\126\015\257\356\322\274\107\127\343\171" +"\111\173\064\211\047\044\204\336\261\354\351\130\116\376\116\337" +"\132\276\101\255\254\010\305\030\016\357\322\123\356\154\320\235" +"\022\001\023\215\334\200\142\367\225\251\104\210\112\161\116\140" +"\125\236\333\043\031\171\126\007\014\077\143\013\134\260\342\276" +"\176\025\374\224\063\130\101\070\164\304\341\217\213\337\046\254" +"\037\265\213\073\267\103\131\153\260\044\246\155\220\213\304\162" +"\352\135\063\230\267\313\336\136\173\357\224\361\033\076\312\311" +"\041\301\305\230\002\252\242\366\133\167\233\365\176\226\125\064" +"\034\147\151\300\361\102\343\107\254\374\050\034\146\125\002\003" +"\001\000\001\243\201\214\060\201\211\060\017\006\003\125\035\023" +"\004\010\060\006\001\001\377\002\001\012\060\013\006\003\125\035" +"\017\004\004\003\002\001\006\060\035\006\003\125\035\016\004\026" +"\004\024\343\163\055\337\313\016\050\014\336\335\263\244\312\171" +"\270\216\273\350\060\211\060\021\006\011\140\206\110\001\206\370" +"\102\001\001\004\004\003\002\001\006\060\067\006\003\125\035\037" +"\004\060\060\056\060\054\240\052\240\050\206\046\150\164\164\160" +"\072\057\057\167\167\167\056\143\145\162\164\160\154\165\163\056" +"\143\157\155\057\103\122\114\057\143\154\141\163\163\062\056\143" +"\162\154\060\015\006\011\052\206\110\206\367\015\001\001\005\005" +"\000\003\202\001\001\000\247\124\317\210\104\031\313\337\324\177" +"\000\337\126\063\142\265\367\121\001\220\353\303\077\321\210\104" +"\351\044\135\357\347\024\275\040\267\232\074\000\376\155\237\333" +"\220\334\327\364\142\326\213\160\135\347\345\004\110\251\150\174" +"\311\361\102\363\154\177\305\172\174\035\121\210\272\322\012\076" +"\047\135\336\055\121\116\323\023\144\151\344\056\343\323\347\233" +"\011\231\246\340\225\233\316\032\327\177\276\074\316\122\263\021" +"\025\301\017\027\315\003\273\234\045\025\272\242\166\211\374\006" +"\361\030\320\223\113\016\174\202\267\245\364\366\137\376\355\100" +"\246\235\204\164\071\271\334\036\205\026\332\051\033\206\043\000" +"\311\273\211\176\156\200\210\036\057\024\264\003\044\250\062\157" +"\003\232\107\054\060\276\126\306\247\102\002\160\033\352\100\330" +"\272\005\003\160\007\244\226\377\375\110\063\012\341\334\245\201" +"\220\233\115\335\175\347\347\262\315\134\310\152\225\370\245\366" +"\215\304\135\170\010\276\173\006\326\111\317\031\066\120\043\056" +"\010\346\236\005\115\107\030\325\026\351\261\326\266\020\325\273" +"\227\277\242\216\264\124" +, (PRUint32)918 } +}; +static const NSSItem nss_builtins_items_215 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"Certplus Class 2 Primary CA", (PRUint32)28 }, + { (void *)"\164\040\164\101\162\234\335\222\354\171\061\330\043\020\215\302" +"\201\222\342\273" +, (PRUint32)20 }, + { (void *)"\210\054\214\122\270\242\074\363\367\273\003\352\256\254\102\013" +, (PRUint32)16 }, + { (void *)"\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061" +"\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154" +"\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141" +"\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101" +, (PRUint32)63 }, + { (void *)"\002\021\000\205\275\113\363\330\332\343\151\366\224\327\137\303" +"\245\104\043" +, (PRUint32)19 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_216 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DST Root CA X3", (PRUint32)15 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147" +"\151\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124" +"\162\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004" +"\003\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130" +"\063" +, (PRUint32)65 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147" +"\151\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124" +"\162\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004" +"\003\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130" +"\063" +, (PRUint32)65 }, + { (void *)"\002\020\104\257\260\200\326\243\047\272\211\060\071\206\056\370" +"\100\153" +, (PRUint32)18 }, + { (void *)"\060\202\003\112\060\202\002\062\240\003\002\001\002\002\020\104" +"\257\260\200\326\243\047\272\211\060\071\206\056\370\100\153\060" +"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\077" +"\061\044\060\042\006\003\125\004\012\023\033\104\151\147\151\164" +"\141\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165" +"\163\164\040\103\157\056\061\027\060\025\006\003\125\004\003\023" +"\016\104\123\124\040\122\157\157\164\040\103\101\040\130\063\060" +"\036\027\015\060\060\060\071\063\060\062\061\061\062\061\071\132" +"\027\015\062\061\060\071\063\060\061\064\060\061\061\065\132\060" +"\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147\151" +"\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124\162" +"\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004\003" +"\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130\063" +"\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001" +"\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001" +"\000\337\257\351\227\120\010\203\127\264\314\142\145\366\220\202" +"\354\307\323\054\153\060\312\133\354\331\303\175\307\100\301\030" +"\024\213\340\350\063\166\111\052\343\077\041\111\223\254\116\016" +"\257\076\110\313\145\356\374\323\041\017\145\322\052\331\062\217" +"\214\345\367\167\260\022\173\265\225\300\211\243\251\272\355\163" +"\056\172\014\006\062\203\242\176\212\024\060\315\021\240\341\052" +"\070\271\171\012\061\375\120\275\200\145\337\267\121\143\203\310" +"\342\210\141\352\113\141\201\354\122\153\271\242\342\113\032\050" +"\237\110\243\236\014\332\011\216\076\027\056\036\335\040\337\133" +"\306\052\212\253\056\275\160\255\305\013\032\045\220\164\162\305" +"\173\152\253\064\326\060\211\377\345\150\023\173\124\013\310\326" +"\256\354\132\234\222\036\075\144\263\214\306\337\277\311\101\160" +"\354\026\162\325\046\354\070\125\071\103\320\374\375\030\134\100" +"\361\227\353\325\232\233\215\035\272\332\045\271\306\330\337\301" +"\025\002\072\253\332\156\361\076\056\365\134\010\234\074\326\203" +"\151\344\020\233\031\052\266\051\127\343\345\075\233\237\360\002" +"\135\002\003\001\000\001\243\102\060\100\060\017\006\003\125\035" +"\023\001\001\377\004\005\060\003\001\001\377\060\016\006\003\125" +"\035\017\001\001\377\004\004\003\002\001\006\060\035\006\003\125" +"\035\016\004\026\004\024\304\247\261\244\173\054\161\372\333\341" +"\113\220\165\377\304\025\140\205\211\020\060\015\006\011\052\206" +"\110\206\367\015\001\001\005\005\000\003\202\001\001\000\243\032" +"\054\233\027\000\134\251\036\356\050\146\067\072\277\203\307\077" +"\113\303\011\240\225\040\135\343\331\131\104\322\076\015\076\275" +"\212\113\240\164\037\316\020\202\234\164\032\035\176\230\032\335" +"\313\023\113\263\040\104\344\221\351\314\374\175\245\333\152\345" +"\376\346\375\340\116\335\267\000\072\265\160\111\257\362\345\353" +"\002\361\321\002\213\031\313\224\072\136\110\304\030\036\130\031" +"\137\036\002\132\360\014\361\261\255\251\334\131\206\213\156\351" +"\221\365\206\312\372\271\146\063\252\131\133\316\342\247\026\163" +"\107\313\053\314\231\260\067\110\317\343\126\113\365\317\017\014" +"\162\062\207\306\360\104\273\123\162\155\103\365\046\110\232\122" +"\147\267\130\253\376\147\166\161\170\333\015\242\126\024\023\071" +"\044\061\205\242\250\002\132\060\107\341\335\120\007\274\002\011" +"\220\000\353\144\143\140\233\026\274\210\311\022\346\322\175\221" +"\213\371\075\062\215\145\264\351\174\261\127\166\352\305\266\050" +"\071\277\025\145\034\310\366\167\226\152\012\215\167\013\330\221" +"\013\004\216\007\333\051\266\012\356\235\202\065\065\020" +, (PRUint32)846 } +}; +static const NSSItem nss_builtins_items_217 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DST Root CA X3", (PRUint32)15 }, + { (void *)"\332\311\002\117\124\330\366\337\224\223\137\261\163\046\070\312" +"\152\327\174\023" +, (PRUint32)20 }, + { (void *)"\101\003\122\334\017\367\120\033\026\360\002\216\272\157\105\305" +, (PRUint32)16 }, + { (void *)"\060\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147" +"\151\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124" +"\162\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004" +"\003\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130" +"\063" +, (PRUint32)65 }, + { (void *)"\002\020\104\257\260\200\326\243\047\272\211\060\071\206\056\370" +"\100\153" +, (PRUint32)18 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_218 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DST ACES CA X6", (PRUint32)15 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\133\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\040\060\036\006\003\125\004\012\023\027\104\151\147\151\164\141" +"\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165\163" +"\164\061\021\060\017\006\003\125\004\013\023\010\104\123\124\040" +"\101\103\105\123\061\027\060\025\006\003\125\004\003\023\016\104" +"\123\124\040\101\103\105\123\040\103\101\040\130\066" +, (PRUint32)93 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\133\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\040\060\036\006\003\125\004\012\023\027\104\151\147\151\164\141" +"\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165\163" +"\164\061\021\060\017\006\003\125\004\013\023\010\104\123\124\040" +"\101\103\105\123\061\027\060\025\006\003\125\004\003\023\016\104" +"\123\124\040\101\103\105\123\040\103\101\040\130\066" +, (PRUint32)93 }, + { (void *)"\002\020\015\136\231\012\326\235\267\170\354\330\007\126\073\206" +"\025\331" +, (PRUint32)18 }, + { (void *)"\060\202\004\011\060\202\002\361\240\003\002\001\002\002\020\015" +"\136\231\012\326\235\267\170\354\330\007\126\073\206\025\331\060" +"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\133" +"\061\013\060\011\006\003\125\004\006\023\002\125\123\061\040\060" +"\036\006\003\125\004\012\023\027\104\151\147\151\164\141\154\040" +"\123\151\147\156\141\164\165\162\145\040\124\162\165\163\164\061" +"\021\060\017\006\003\125\004\013\023\010\104\123\124\040\101\103" +"\105\123\061\027\060\025\006\003\125\004\003\023\016\104\123\124" +"\040\101\103\105\123\040\103\101\040\130\066\060\036\027\015\060" +"\063\061\061\062\060\062\061\061\071\065\070\132\027\015\061\067" +"\061\061\062\060\062\061\061\071\065\070\132\060\133\061\013\060" +"\011\006\003\125\004\006\023\002\125\123\061\040\060\036\006\003" +"\125\004\012\023\027\104\151\147\151\164\141\154\040\123\151\147" +"\156\141\164\165\162\145\040\124\162\165\163\164\061\021\060\017" +"\006\003\125\004\013\023\010\104\123\124\040\101\103\105\123\061" +"\027\060\025\006\003\125\004\003\023\016\104\123\124\040\101\103" +"\105\123\040\103\101\040\130\066\060\202\001\042\060\015\006\011" +"\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000" +"\060\202\001\012\002\202\001\001\000\271\075\365\054\311\224\334" +"\165\212\225\135\143\350\204\167\166\146\271\131\221\134\106\335" +"\222\076\237\371\016\003\264\075\141\222\275\043\046\265\143\356" +"\222\322\236\326\074\310\015\220\137\144\201\261\250\010\015\114" +"\330\371\323\005\050\122\264\001\045\305\225\034\014\176\076\020" +"\204\165\317\301\031\221\143\317\350\250\221\210\271\103\122\273" +"\200\261\125\211\213\061\372\320\267\166\276\101\075\060\232\244" +"\042\045\027\163\350\036\342\323\254\052\275\133\070\041\325\052" +"\113\327\125\175\343\072\125\275\327\155\153\002\127\153\346\107" +"\174\010\310\202\272\336\247\207\075\241\155\270\060\126\302\263" +"\002\201\137\055\365\342\232\060\030\050\270\146\323\313\001\226" +"\157\352\212\105\125\326\340\235\377\147\053\027\002\246\116\032" +"\152\021\013\176\267\173\347\230\326\214\166\157\301\073\333\120" +"\223\176\345\320\216\037\067\270\275\272\306\237\154\351\174\063" +"\362\062\074\046\107\372\047\044\002\311\176\035\133\210\102\023" +"\152\065\174\175\065\351\056\146\221\162\223\325\062\046\304\164" +"\365\123\243\263\135\232\366\011\313\002\003\001\000\001\243\201" +"\310\060\201\305\060\017\006\003\125\035\023\001\001\377\004\005" +"\060\003\001\001\377\060\016\006\003\125\035\017\001\001\377\004" +"\004\003\002\001\306\060\037\006\003\125\035\021\004\030\060\026" +"\201\024\160\153\151\055\157\160\163\100\164\162\165\163\164\144" +"\163\164\056\143\157\155\060\142\006\003\125\035\040\004\133\060" +"\131\060\127\006\012\140\206\110\001\145\003\002\001\001\001\060" +"\111\060\107\006\010\053\006\001\005\005\007\002\001\026\073\150" +"\164\164\160\072\057\057\167\167\167\056\164\162\165\163\164\144" +"\163\164\056\143\157\155\057\143\145\162\164\151\146\151\143\141" +"\164\145\163\057\160\157\154\151\143\171\057\101\103\105\123\055" +"\151\156\144\145\170\056\150\164\155\154\060\035\006\003\125\035" +"\016\004\026\004\024\011\162\006\116\030\103\017\345\326\314\303" +"\152\213\061\173\170\217\250\203\270\060\015\006\011\052\206\110" +"\206\367\015\001\001\005\005\000\003\202\001\001\000\243\330\216" +"\326\262\333\316\005\347\062\315\001\323\004\003\345\166\344\126" +"\053\234\231\220\350\010\060\154\337\175\075\356\345\277\265\044" +"\100\204\111\341\321\050\256\304\302\072\123\060\210\361\365\167" +"\156\121\312\372\377\231\257\044\137\033\240\375\362\254\204\312" +"\337\251\360\137\004\056\255\026\277\041\227\020\201\075\343\377" +"\207\215\062\334\224\345\107\212\136\152\023\311\224\225\075\322" +"\356\310\064\225\320\200\324\255\062\010\200\124\074\340\275\122" +"\123\327\122\174\262\151\077\177\172\317\152\164\312\372\004\052" +"\234\114\132\006\245\351\040\255\105\146\017\151\361\335\277\351" +"\343\062\213\372\340\301\206\115\162\074\056\330\223\170\012\052" +"\370\330\322\047\075\031\211\137\132\173\212\073\314\014\332\121" +"\256\307\013\367\053\260\067\005\354\274\127\043\342\070\322\233" +"\150\363\126\022\210\117\102\174\270\061\304\265\333\344\310\041" +"\064\351\110\021\065\356\372\307\222\127\305\237\064\344\307\366" +"\367\016\013\114\234\150\170\173\161\061\307\353\036\340\147\101" +"\363\267\240\247\315\345\172\063\066\152\372\232\053" +, (PRUint32)1037 } +}; +static const NSSItem nss_builtins_items_219 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"DST ACES CA X6", (PRUint32)15 }, + { (void *)"\100\124\332\157\034\077\100\164\254\355\017\354\315\333\171\321" +"\123\373\220\035" +, (PRUint32)20 }, + { (void *)"\041\330\114\202\053\231\011\063\242\353\024\044\215\216\137\350" +, (PRUint32)16 }, + { (void *)"\060\133\061\013\060\011\006\003\125\004\006\023\002\125\123\061" +"\040\060\036\006\003\125\004\012\023\027\104\151\147\151\164\141" +"\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165\163" +"\164\061\021\060\017\006\003\125\004\013\023\010\104\123\124\040" +"\101\103\105\123\061\027\060\025\006\003\125\004\003\023\016\104" +"\123\124\040\101\103\105\123\040\103\101\040\130\066" +, (PRUint32)93 }, + { (void *)"\002\020\015\136\231\012\326\235\267\170\354\330\007\126\073\206" +"\025\331" +, (PRUint32)18 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_220 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"TURKTRUST Certificate Services Provider Root 1", (PRUint32)47 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303" +"\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157" +"\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151" +"\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304" +"\261\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124" +"\122\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101" +"\122\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051" +"\040\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124" +"\040\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151" +"\155\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303" +"\274\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164" +"\154\145\162\151\040\101\056\305\236\056" +, (PRUint32)186 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303" +"\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157" +"\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151" +"\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304" +"\261\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124" +"\122\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101" +"\122\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051" +"\040\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124" +"\040\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151" +"\155\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303" +"\274\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164" +"\154\145\162\151\040\101\056\305\236\056" +, (PRUint32)186 }, + { (void *)"\002\001\001" +, (PRUint32)3 }, + { (void *)"\060\202\003\373\060\202\002\343\240\003\002\001\002\002\001\001" +"\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060" +"\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303\234" +"\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157\156" +"\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151\172" +"\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304\261" +"\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124\122" +"\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101\122" +"\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051\040" +"\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124\040" +"\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151\155" +"\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303\274" +"\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164\154" +"\145\162\151\040\101\056\305\236\056\060\036\027\015\060\065\060" +"\065\061\063\061\060\062\067\061\067\132\027\015\061\065\060\063" +"\062\062\061\060\062\067\061\067\132\060\201\267\061\077\060\075" +"\006\003\125\004\003\014\066\124\303\234\122\113\124\122\125\123" +"\124\040\105\154\145\153\164\162\157\156\151\153\040\123\145\162" +"\164\151\146\151\153\141\040\110\151\172\155\145\164\040\123\141" +"\304\237\154\141\171\304\261\143\304\261\163\304\261\061\013\060" +"\011\006\003\125\004\006\014\002\124\122\061\017\060\015\006\003" +"\125\004\007\014\006\101\116\113\101\122\101\061\126\060\124\006" +"\003\125\004\012\014\115\050\143\051\040\062\060\060\065\040\124" +"\303\234\122\113\124\122\125\123\124\040\102\151\154\147\151\040" +"\304\260\154\145\164\151\305\237\151\155\040\166\145\040\102\151" +"\154\151\305\237\151\155\040\107\303\274\166\145\156\154\151\304" +"\237\151\040\110\151\172\155\145\164\154\145\162\151\040\101\056" +"\305\236\056\060\202\001\042\060\015\006\011\052\206\110\206\367" +"\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002" +"\202\001\001\000\312\122\005\326\143\003\330\034\137\335\322\173" +"\135\362\014\140\141\133\153\073\164\053\170\015\175\105\275\042" +"\164\350\214\003\301\306\021\052\075\225\274\251\224\260\273\221" +"\227\310\151\174\204\305\264\221\154\154\023\152\244\125\255\244" +"\205\350\225\176\263\000\257\000\302\005\030\365\160\235\066\213" +"\256\313\344\033\201\177\223\210\373\152\125\273\175\205\222\316" +"\272\130\237\333\062\305\275\135\357\042\112\057\101\007\176\111" +"\141\263\206\354\116\246\101\156\204\274\003\354\365\073\034\310" +"\037\302\356\250\356\352\022\112\215\024\317\363\012\340\120\071" +"\371\010\065\370\021\131\255\347\042\352\113\312\024\006\336\102" +"\272\262\231\363\055\124\210\020\006\352\341\032\076\075\147\037" +"\373\316\373\174\202\350\021\135\112\301\271\024\352\124\331\146" +"\233\174\211\175\004\232\142\311\351\122\074\236\234\357\322\365" +"\046\344\346\345\030\174\213\156\337\154\314\170\133\117\162\262" +"\313\134\077\214\005\215\321\114\214\255\222\307\341\170\177\145" +"\154\111\006\120\054\236\062\302\327\112\306\165\212\131\116\165" +"\157\107\136\301\002\003\001\000\001\243\020\060\016\060\014\006" +"\003\125\035\023\004\005\060\003\001\001\377\060\015\006\011\052" +"\206\110\206\367\015\001\001\005\005\000\003\202\001\001\000\025" +"\365\125\377\067\226\200\131\041\244\374\241\025\114\040\366\324" +"\137\332\003\044\374\317\220\032\364\041\012\232\356\072\261\152" +"\357\357\370\140\321\114\066\146\105\035\363\146\002\164\004\173" +"\222\060\250\336\012\166\017\357\225\156\275\311\067\346\032\015" +"\254\211\110\133\314\203\066\302\365\106\134\131\202\126\264\325" +"\376\043\264\330\124\034\104\253\304\247\345\024\316\074\101\141" +"\174\103\346\315\304\201\011\213\044\373\124\045\326\026\250\226" +"\014\147\007\157\263\120\107\343\034\044\050\335\052\230\244\141" +"\376\333\352\022\067\274\001\032\064\205\275\156\117\347\221\162" +"\007\104\205\036\130\312\124\104\335\367\254\271\313\211\041\162" +"\333\217\300\151\051\227\052\243\256\030\043\227\034\101\052\213" +"\174\052\301\174\220\350\251\050\300\323\221\306\255\050\207\100" +"\150\265\377\354\247\322\323\070\030\234\323\175\151\135\360\306" +"\245\036\044\033\243\107\374\151\007\150\347\344\232\264\355\017" +"\241\207\207\002\316\207\322\110\116\341\274\377\313\361\162\222" +"\104\144\003\045\352\336\133\156\237\311\362\116\254\335\307" +, (PRUint32)1023 } +}; +static const NSSItem nss_builtins_items_221 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"TURKTRUST Certificate Services Provider Root 1", (PRUint32)47 }, + { (void *)"\171\230\243\010\341\115\145\205\346\302\036\025\072\161\237\272" +"\132\323\112\331" +, (PRUint32)20 }, + { (void *)"\361\152\042\030\311\315\337\316\202\035\035\267\170\134\251\245" +, (PRUint32)16 }, + { (void *)"\060\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303" +"\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157" +"\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151" +"\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304" +"\261\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124" +"\122\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101" +"\122\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051" +"\040\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124" +"\040\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151" +"\155\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303" +"\274\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164" +"\154\145\162\151\040\101\056\305\236\056" +, (PRUint32)186 }, + { (void *)"\002\001\001" +, (PRUint32)3 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_222 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"TURKTRUST Certificate Services Provider Root 2", (PRUint32)47 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303" +"\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157" +"\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151" +"\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304" +"\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124" +"\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141" +"\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234" +"\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260" +"\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151" +"\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151" +"\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236" +"\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060" +"\065" +, (PRUint32)193 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303" +"\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157" +"\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151" +"\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304" +"\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124" +"\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141" +"\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234" +"\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260" +"\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151" +"\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151" +"\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236" +"\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060" +"\065" +, (PRUint32)193 }, + { (void *)"\002\001\001" +, (PRUint32)3 }, + { (void *)"\060\202\004\074\060\202\003\044\240\003\002\001\002\002\001\001" +"\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060" +"\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303\234" +"\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157\156" +"\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151\172" +"\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304\261" +"\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124\122" +"\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141\162" +"\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234\122" +"\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260\154" +"\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151\305" +"\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151\040" +"\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236\056" +"\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060\065" +"\060\036\027\015\060\065\061\061\060\067\061\060\060\067\065\067" +"\132\027\015\061\065\060\071\061\066\061\060\060\067\065\067\132" +"\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303" +"\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157" +"\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151" +"\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304" +"\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124" +"\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141" +"\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234" +"\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260" +"\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151" +"\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151" +"\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236" +"\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060" +"\065\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001" +"\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001" +"\001\000\251\066\176\303\221\103\114\303\031\230\010\310\307\130" +"\173\117\026\214\245\316\111\001\037\163\016\254\165\023\246\372" +"\236\054\040\336\330\220\016\012\321\151\322\047\373\252\167\237" +"\047\122\045\342\313\135\330\330\203\120\027\175\212\265\202\077" +"\004\216\264\325\360\111\247\144\267\036\056\137\040\234\120\165" +"\117\257\341\265\101\024\364\230\222\210\307\345\345\144\107\141" +"\107\171\375\300\121\361\301\231\347\334\316\152\373\257\265\001" +"\060\334\106\034\357\212\354\225\357\334\377\257\020\034\353\235" +"\330\260\252\152\205\030\015\027\311\076\277\361\233\320\011\211" +"\102\375\240\102\264\235\211\121\125\051\317\033\160\274\204\124" +"\255\301\023\037\230\364\056\166\140\213\135\077\232\255\312\014" +"\277\247\126\133\217\167\270\325\236\171\111\222\077\340\361\227" +"\044\172\154\233\027\017\155\357\123\230\221\053\344\017\276\131" +"\171\007\170\273\227\225\364\237\151\324\130\207\012\251\343\314" +"\266\130\031\237\046\041\261\304\131\215\262\101\165\300\255\151" +"\316\234\000\010\362\066\377\076\360\241\017\032\254\024\375\246" +"\140\017\002\003\001\000\001\243\103\060\101\060\035\006\003\125" +"\035\016\004\026\004\024\331\067\263\116\005\375\331\317\237\022" +"\026\256\266\211\057\353\045\072\210\034\060\017\006\003\125\035" +"\017\001\001\377\004\005\003\003\007\006\000\060\017\006\003\125" +"\035\023\001\001\377\004\005\060\003\001\001\377\060\015\006\011" +"\052\206\110\206\367\015\001\001\005\005\000\003\202\001\001\000" +"\162\140\226\267\311\334\330\051\136\043\205\137\262\263\055\166" +"\373\210\327\027\376\173\155\105\270\366\205\154\237\042\374\052" +"\020\042\354\252\271\060\366\253\130\326\071\020\061\231\051\000" +"\275\211\146\101\373\164\336\221\301\030\013\237\265\141\313\235" +"\072\276\365\250\224\243\042\125\156\027\111\377\322\051\361\070" +"\046\135\357\245\252\072\371\161\173\346\332\130\035\323\164\302" +"\001\372\076\151\130\137\255\313\150\276\024\056\233\154\300\266" +"\334\240\046\372\167\032\342\044\332\032\067\340\147\255\321\163" +"\203\015\245\032\035\156\022\222\176\204\142\000\027\275\274\045" +"\030\127\362\327\251\157\131\210\274\064\267\056\205\170\235\226" +"\334\024\303\054\212\122\233\226\214\122\146\075\206\026\213\107" +"\270\121\011\214\352\175\315\210\162\263\140\063\261\360\012\104" +"\357\017\365\011\067\210\044\016\054\153\040\072\242\372\021\362" +"\100\065\234\104\150\143\073\254\063\157\143\274\054\273\362\322" +"\313\166\175\175\210\330\035\310\005\035\156\274\224\251\146\214" +"\167\161\307\372\221\372\057\121\236\351\071\122\266\347\004\102" +, (PRUint32)1088 } +}; +static const NSSItem nss_builtins_items_223 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"TURKTRUST Certificate Services Provider Root 2", (PRUint32)47 }, + { (void *)"\264\065\324\341\021\235\034\146\220\247\111\353\263\224\275\143" +"\173\247\202\267" +, (PRUint32)20 }, + { (void *)"\067\245\156\324\261\045\204\227\267\375\126\025\172\371\242\000" +, (PRUint32)16 }, + { (void *)"\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303" +"\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157" +"\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151" +"\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304" +"\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124" +"\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141" +"\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234" +"\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260" +"\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151" +"\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151" +"\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236" +"\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060" +"\065" +, (PRUint32)193 }, + { (void *)"\002\001\001" +, (PRUint32)3 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_224 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"SwissSign Platinum CA - G2", (PRUint32)27 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003\023" +"\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164\151" +"\156\165\155\040\103\101\040\055\040\107\062" +, (PRUint32)75 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003\023" +"\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164\151" +"\156\165\155\040\103\101\040\055\040\107\062" +, (PRUint32)75 }, + { (void *)"\002\010\116\262\000\147\014\003\135\117" +, (PRUint32)10 }, + { (void *)"\060\202\005\301\060\202\003\251\240\003\002\001\002\002\010\116" +"\262\000\147\014\003\135\117\060\015\006\011\052\206\110\206\367" +"\015\001\001\005\005\000\060\111\061\013\060\011\006\003\125\004" +"\006\023\002\103\110\061\025\060\023\006\003\125\004\012\023\014" +"\123\167\151\163\163\123\151\147\156\040\101\107\061\043\060\041" +"\006\003\125\004\003\023\032\123\167\151\163\163\123\151\147\156" +"\040\120\154\141\164\151\156\165\155\040\103\101\040\055\040\107" +"\062\060\036\027\015\060\066\061\060\062\065\060\070\063\066\060" +"\060\132\027\015\063\066\061\060\062\065\060\070\063\066\060\060" +"\132\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110" +"\061\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163" +"\123\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003" +"\023\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164" +"\151\156\165\155\040\103\101\040\055\040\107\062\060\202\002\042" +"\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003" +"\202\002\017\000\060\202\002\012\002\202\002\001\000\312\337\242" +"\002\342\332\370\374\007\026\261\336\140\252\336\226\134\144\037" +"\307\057\176\317\147\372\104\102\326\166\143\225\256\353\257\162" +"\040\212\105\107\206\142\170\206\326\040\071\046\364\256\243\375" +"\043\347\245\234\265\042\041\031\267\067\223\042\300\120\234\202" +"\173\324\325\004\104\134\313\264\302\237\222\276\044\330\173\147" +"\042\342\151\137\345\005\170\324\207\331\161\160\063\045\123\264" +"\207\073\051\220\050\066\232\125\104\060\150\244\203\227\177\015" +"\036\234\166\377\025\235\140\227\000\215\212\205\003\354\200\276" +"\352\054\156\020\121\222\314\176\325\243\063\330\326\111\336\130" +"\052\257\366\026\353\113\173\220\062\227\271\272\235\130\361\370" +"\127\111\004\036\242\135\006\160\335\161\333\371\335\213\232\033" +"\214\317\075\243\115\316\313\174\366\273\234\240\372\011\316\043" +"\142\262\351\015\037\342\162\050\217\237\254\150\040\175\157\073" +"\250\205\061\011\177\013\307\350\145\351\343\170\016\011\147\060" +"\213\064\202\373\135\340\314\235\201\155\142\356\010\036\004\054" +"\116\233\354\376\251\117\137\375\151\170\357\011\037\241\264\277" +"\372\363\357\220\036\114\005\213\036\352\172\221\172\303\327\345" +"\373\060\274\154\033\020\130\230\367\032\137\320\051\062\003\023" +"\106\115\141\152\205\114\122\164\057\006\037\173\021\342\204\227" +"\306\231\363\155\177\327\147\203\176\023\150\330\161\050\132\330" +"\316\335\350\020\024\232\376\155\043\207\156\216\132\160\074\325" +"\215\011\000\247\252\274\260\061\067\155\310\204\024\036\133\275" +"\105\143\040\153\113\164\214\275\333\072\016\301\317\132\026\217" +"\245\230\362\166\211\262\023\022\073\013\167\167\254\273\345\074" +"\051\112\222\162\312\141\032\053\136\114\342\203\164\167\372\065" +"\110\172\205\115\215\232\123\304\337\170\312\227\221\110\053\105" +"\053\001\367\034\032\242\355\030\272\012\275\203\372\157\274\215" +"\127\223\073\324\324\246\316\036\361\240\261\316\253\375\053\050" +"\232\117\033\327\303\162\333\244\304\277\135\114\365\335\173\226" +"\151\356\150\200\346\347\230\272\066\267\376\156\355\053\275\040" +"\370\145\031\332\125\011\176\045\334\376\141\142\162\371\176\030" +"\002\357\143\264\320\373\257\345\073\143\214\147\217\002\003\001" +"\000\001\243\201\254\060\201\251\060\016\006\003\125\035\017\001" +"\001\377\004\004\003\002\001\006\060\017\006\003\125\035\023\001" +"\001\377\004\005\060\003\001\001\377\060\035\006\003\125\035\016" +"\004\026\004\024\120\257\314\007\207\025\107\157\070\305\264\145" +"\321\336\225\252\351\337\234\314\060\037\006\003\125\035\043\004" +"\030\060\026\200\024\120\257\314\007\207\025\107\157\070\305\264" +"\145\321\336\225\252\351\337\234\314\060\106\006\003\125\035\040" +"\004\077\060\075\060\073\006\011\140\205\164\001\131\001\001\001" +"\001\060\056\060\054\006\010\053\006\001\005\005\007\002\001\026" +"\040\150\164\164\160\072\057\057\162\145\160\157\163\151\164\157" +"\162\171\056\163\167\151\163\163\163\151\147\156\056\143\157\155" +"\057\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000" +"\003\202\002\001\000\010\205\246\365\026\014\374\104\032\301\143" +"\340\371\125\106\010\374\160\034\102\050\226\216\267\305\301\101" +"\165\116\011\161\171\345\155\226\312\113\245\210\140\320\060\164" +"\270\312\010\334\264\060\236\100\007\026\153\145\225\167\001\256" +"\244\267\065\013\201\332\161\025\251\164\027\070\173\130\312\371" +"\057\373\300\145\166\215\133\001\271\175\336\202\075\144\270\276" +"\024\164\243\012\124\323\054\225\030\027\065\365\121\153\077\217" +"\242\226\141\071\170\153\113\345\246\240\370\123\337\121\020\223" +"\142\347\200\057\342\321\340\274\216\066\106\167\063\354\270\373" +"\216\232\054\211\115\061\021\017\046\236\004\273\267\004\215\013" +"\362\271\374\132\235\073\026\267\057\310\230\253\376\212\120\131" +"\056\243\073\374\051\135\213\301\113\311\342\212\023\035\261\277" +"\273\102\035\122\335\116\330\024\136\020\306\061\007\357\161\047" +"\367\033\071\011\334\202\352\213\263\225\206\136\375\365\332\135" +"\061\246\340\061\266\224\346\104\111\164\305\026\345\367\037\003" +"\141\050\305\310\313\022\240\102\113\371\153\210\010\215\264\062" +"\030\363\165\237\304\177\000\117\005\225\234\243\027\002\303\263" +"\123\233\252\040\071\051\053\146\372\235\257\136\263\222\322\265" +"\246\341\032\371\055\101\151\201\024\264\264\265\355\211\075\316" +"\373\251\235\065\102\104\261\034\024\163\201\317\052\001\065\232" +"\061\325\055\217\155\204\337\200\115\127\343\077\305\204\165\332" +"\211\306\060\273\353\217\313\042\010\240\256\252\361\003\154\072" +"\113\115\011\245\016\162\306\126\153\041\102\116\043\045\024\150" +"\256\166\012\174\014\007\160\144\371\232\057\366\005\071\046\306" +"\014\217\031\177\103\136\156\364\133\025\057\333\141\135\346\147" +"\057\077\010\224\371\140\264\230\061\332\164\361\204\223\161\115" +"\137\373\140\130\321\373\304\301\155\211\242\273\040\037\235\161" +"\221\313\062\233\023\075\076\175\222\122\065\254\222\224\242\323" +"\030\302\174\307\352\257\166\005\026\335\147\047\302\176\034\007" +"\042\041\363\100\012\033\064\007\104\023\302\204\152\216\337\031" +"\132\277\177\353\035\342\032\070\321\134\257\107\222\153\200\265" +"\060\245\311\215\330\253\061\201\037\337\302\146\067\323\223\251" +"\205\206\171\145\322" +, (PRUint32)1477 } +}; +static const NSSItem nss_builtins_items_225 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"SwissSign Platinum CA - G2", (PRUint32)27 }, + { (void *)"\126\340\372\300\073\217\030\043\125\030\345\323\021\312\350\302" +"\103\061\253\146" +, (PRUint32)20 }, + { (void *)"\311\230\047\167\050\036\075\016\025\074\204\000\270\205\003\346" +, (PRUint32)16 }, + { (void *)"\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003\023" +"\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164\151" +"\156\165\155\040\103\101\040\055\040\107\062" +, (PRUint32)75 }, + { (void *)"\002\010\116\262\000\147\014\003\135\117" +, (PRUint32)10 }, + { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_226 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"SwissSign Gold CA - G2", (PRUint32)23 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\037\060\035\006\003\125\004\003\023" +"\026\123\167\151\163\163\123\151\147\156\040\107\157\154\144\040" +"\103\101\040\055\040\107\062" +, (PRUint32)71 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\037\060\035\006\003\125\004\003\023" +"\026\123\167\151\163\163\123\151\147\156\040\107\157\154\144\040" +"\103\101\040\055\040\107\062" +, (PRUint32)71 }, + { (void *)"\002\011\000\273\100\034\103\365\136\117\260" +, (PRUint32)11 }, + { (void *)"\060\202\005\272\060\202\003\242\240\003\002\001\002\002\011\000" +"\273\100\034\103\365\136\117\260\060\015\006\011\052\206\110\206" +"\367\015\001\001\005\005\000\060\105\061\013\060\011\006\003\125" +"\004\006\023\002\103\110\061\025\060\023\006\003\125\004\012\023" +"\014\123\167\151\163\163\123\151\147\156\040\101\107\061\037\060" +"\035\006\003\125\004\003\023\026\123\167\151\163\163\123\151\147" +"\156\040\107\157\154\144\040\103\101\040\055\040\107\062\060\036" +"\027\015\060\066\061\060\062\065\060\070\063\060\063\065\132\027" +"\015\063\066\061\060\062\065\060\070\063\060\063\065\132\060\105" +"\061\013\060\011\006\003\125\004\006\023\002\103\110\061\025\060" +"\023\006\003\125\004\012\023\014\123\167\151\163\163\123\151\147" +"\156\040\101\107\061\037\060\035\006\003\125\004\003\023\026\123" +"\167\151\163\163\123\151\147\156\040\107\157\154\144\040\103\101" +"\040\055\040\107\062\060\202\002\042\060\015\006\011\052\206\110" +"\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002" +"\012\002\202\002\001\000\257\344\356\176\213\044\016\022\156\251" +"\120\055\026\104\073\222\222\134\312\270\135\204\222\102\023\052" +"\274\145\127\202\100\076\127\044\315\120\213\045\052\267\157\374" +"\357\242\320\300\037\002\044\112\023\226\217\043\023\346\050\130" +"\000\243\107\307\006\247\204\043\053\273\275\226\053\177\125\314" +"\213\301\127\037\016\142\145\017\335\075\126\212\163\332\256\176" +"\155\272\201\034\176\102\214\040\065\331\103\115\204\372\204\333" +"\122\054\363\016\047\167\013\153\277\021\057\162\170\237\056\330" +"\076\346\030\067\132\052\162\371\332\142\220\222\225\312\037\234" +"\351\263\074\053\313\363\001\023\277\132\317\301\265\012\140\275" +"\335\265\231\144\123\270\240\226\263\157\342\046\167\221\214\340" +"\142\020\002\237\064\017\244\325\222\063\121\336\276\215\272\204" +"\172\140\074\152\333\237\053\354\336\336\001\077\156\115\345\120" +"\206\313\264\257\355\104\100\305\312\132\214\332\322\053\174\250" +"\356\276\246\345\012\252\016\245\337\005\122\267\125\307\042\135" +"\062\152\227\227\143\023\333\311\333\171\066\173\205\072\112\305" +"\122\211\371\044\347\235\167\251\202\377\125\034\245\161\151\053" +"\321\002\044\362\263\046\324\153\332\004\125\345\301\012\307\155" +"\060\067\220\052\344\236\024\063\136\026\027\125\305\133\265\313" +"\064\211\222\361\235\046\217\241\007\324\306\262\170\120\333\014" +"\014\013\174\013\214\101\327\271\351\335\214\210\367\243\115\262" +"\062\314\330\027\332\315\267\316\146\235\324\375\136\377\275\227" +"\076\051\165\347\176\247\142\130\257\045\064\245\101\307\075\274" +"\015\120\312\003\003\017\010\132\037\225\163\170\142\277\257\162" +"\024\151\016\245\345\003\016\170\216\046\050\102\360\007\013\142" +"\040\020\147\071\106\372\251\003\314\004\070\172\146\357\040\203" +"\265\214\112\126\216\221\000\374\216\134\202\336\210\240\303\342" +"\150\156\175\215\357\074\335\145\364\135\254\121\357\044\200\256" +"\252\126\227\157\371\255\175\332\141\077\230\167\074\245\221\266" +"\034\214\046\332\145\242\011\155\301\342\124\343\271\312\114\114" +"\200\217\167\173\140\232\036\337\266\362\110\036\016\272\116\124" +"\155\230\340\341\242\032\242\167\120\317\304\143\222\354\107\031" +"\235\353\346\153\316\301\002\003\001\000\001\243\201\254\060\201" +"\251\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001" +"\006\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001" +"\001\377\060\035\006\003\125\035\016\004\026\004\024\133\045\173" +"\226\244\145\121\176\270\071\363\300\170\146\136\350\072\347\360" +"\356\060\037\006\003\125\035\043\004\030\060\026\200\024\133\045" +"\173\226\244\145\121\176\270\071\363\300\170\146\136\350\072\347" +"\360\356\060\106\006\003\125\035\040\004\077\060\075\060\073\006" +"\011\140\205\164\001\131\001\002\001\001\060\056\060\054\006\010" +"\053\006\001\005\005\007\002\001\026\040\150\164\164\160\072\057" +"\057\162\145\160\157\163\151\164\157\162\171\056\163\167\151\163" +"\163\163\151\147\156\056\143\157\155\057\060\015\006\011\052\206" +"\110\206\367\015\001\001\005\005\000\003\202\002\001\000\047\272" +"\343\224\174\361\256\300\336\027\346\345\330\325\365\124\260\203" +"\364\273\315\136\005\173\117\237\165\146\257\074\350\126\176\374" +"\162\170\070\003\331\053\142\033\000\271\370\351\140\315\314\316" +"\121\212\307\120\061\156\341\112\176\030\057\151\131\266\075\144" +"\201\053\343\203\204\346\042\207\216\175\340\356\002\231\141\270" +"\036\364\270\053\210\022\026\204\302\061\223\070\226\061\246\271" +"\073\123\077\303\044\223\126\133\151\222\354\305\301\273\070\000" +"\343\354\027\251\270\334\307\174\001\203\237\062\107\272\122\042" +"\064\035\062\172\011\126\247\174\045\066\251\075\113\332\300\202" +"\157\012\273\022\310\207\113\047\021\371\036\055\307\223\077\236" +"\333\137\046\153\122\331\056\212\361\024\306\104\215\025\251\267" +"\277\275\336\246\032\356\256\055\373\110\167\027\376\273\354\257" +"\030\365\052\121\360\071\204\227\225\154\156\033\303\053\304\164" +"\140\171\045\260\012\047\337\337\136\322\071\317\105\175\102\113" +"\337\263\054\036\305\306\135\312\125\072\240\234\151\232\217\332" +"\357\262\260\074\237\207\154\022\053\145\160\025\122\061\032\044" +"\317\157\061\043\120\037\214\117\217\043\303\164\101\143\034\125" +"\250\024\335\076\340\121\120\317\361\033\060\126\016\222\260\202" +"\205\330\203\313\042\144\274\055\270\045\325\124\242\270\006\352" +"\255\222\244\044\240\301\206\265\112\023\152\107\317\056\013\126" +"\225\124\313\316\232\333\152\264\246\262\333\101\010\206\047\167" +"\367\152\240\102\154\013\070\316\327\165\120\062\222\302\337\053" +"\060\042\110\320\325\101\070\045\135\244\351\135\237\306\224\165" +"\320\105\375\060\227\103\217\220\253\012\307\206\163\140\112\151" +"\055\336\245\170\327\006\332\152\236\113\076\167\072\040\023\042" +"\001\320\277\150\236\143\140\153\065\115\013\155\272\241\075\300" +"\223\340\177\043\263\125\255\162\045\116\106\371\322\026\357\260" +"\144\301\001\236\351\312\240\152\230\016\317\330\140\362\057\111" +"\270\344\102\341\070\065\026\364\310\156\117\367\201\126\350\272" +"\243\276\043\257\256\375\157\003\340\002\073\060\166\372\033\155" +"\101\317\001\261\351\270\311\146\364\333\046\363\072\244\164\362" +"\111\044\133\311\260\320\127\301\372\076\172\341\227\311" +, (PRUint32)1470 } +}; +static const NSSItem nss_builtins_items_227 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"SwissSign Gold CA - G2", (PRUint32)23 }, + { (void *)"\330\305\070\212\267\060\033\033\156\324\172\346\105\045\072\157" +"\237\032\047\141" +, (PRUint32)20 }, + { (void *)"\044\167\331\250\221\321\073\372\210\055\302\377\370\315\063\223" +, (PRUint32)16 }, + { (void *)"\060\105\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\037\060\035\006\003\125\004\003\023" +"\026\123\167\151\163\163\123\151\147\156\040\107\157\154\144\040" +"\103\101\040\055\040\107\062" +, (PRUint32)71 }, + { (void *)"\002\011\000\273\100\034\103\365\136\117\260" +, (PRUint32)11 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; +static const NSSItem nss_builtins_items_228 [] = { + { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"SwissSign Silver CA - G2", (PRUint32)25 }, + { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, + { (void *)"\060\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023" +"\030\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145" +"\162\040\103\101\040\055\040\107\062" +, (PRUint32)73 }, + { (void *)"0", (PRUint32)2 }, + { (void *)"\060\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023" +"\030\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145" +"\162\040\103\101\040\055\040\107\062" +, (PRUint32)73 }, + { (void *)"\002\010\117\033\324\057\124\273\057\113" +, (PRUint32)10 }, + { (void *)"\060\202\005\275\060\202\003\245\240\003\002\001\002\002\010\117" +"\033\324\057\124\273\057\113\060\015\006\011\052\206\110\206\367" +"\015\001\001\005\005\000\060\107\061\013\060\011\006\003\125\004" +"\006\023\002\103\110\061\025\060\023\006\003\125\004\012\023\014" +"\123\167\151\163\163\123\151\147\156\040\101\107\061\041\060\037" +"\006\003\125\004\003\023\030\123\167\151\163\163\123\151\147\156" +"\040\123\151\154\166\145\162\040\103\101\040\055\040\107\062\060" +"\036\027\015\060\066\061\060\062\065\060\070\063\062\064\066\132" +"\027\015\063\066\061\060\062\065\060\070\063\062\064\066\132\060" +"\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061\025" +"\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123\151" +"\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023\030" +"\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145\162" +"\040\103\101\040\055\040\107\062\060\202\002\042\060\015\006\011" +"\052\206\110\206\367\015\001\001\001\005\000\003\202\002\017\000" +"\060\202\002\012\002\202\002\001\000\304\361\207\177\323\170\061" +"\367\070\311\370\303\231\103\274\307\367\274\067\347\116\161\272" +"\113\217\245\163\035\134\156\230\256\003\127\256\070\067\103\057" +"\027\075\037\310\316\150\020\301\170\256\031\003\053\020\372\054" +"\171\203\366\350\271\150\271\125\362\004\104\247\071\371\374\004" +"\213\036\361\242\115\047\371\141\173\272\267\345\242\023\266\353" +"\141\076\320\154\321\346\373\372\136\355\035\264\236\240\065\133" +"\241\222\313\360\111\222\376\205\012\005\076\346\331\013\342\117" +"\273\334\225\067\374\221\351\062\065\042\321\037\072\116\047\205" +"\235\260\025\224\062\332\141\015\107\115\140\102\256\222\107\350" +"\203\132\120\130\351\212\213\271\135\241\334\335\231\112\037\066" +"\147\273\110\344\203\266\067\353\110\072\257\017\147\217\027\007" +"\350\004\312\357\152\061\207\324\300\266\371\224\161\173\147\144" +"\270\266\221\112\102\173\145\056\060\152\014\365\220\356\225\346" +"\362\315\202\354\331\241\112\354\366\262\113\345\105\205\346\155" +"\170\223\004\056\234\202\155\066\251\304\061\144\037\206\203\013" +"\052\364\065\012\170\311\125\317\101\260\107\351\060\237\231\276" +"\141\250\006\204\271\050\172\137\070\331\033\251\070\260\203\177" +"\163\301\303\073\110\052\202\017\041\233\270\314\250\065\303\204" +"\033\203\263\076\276\244\225\151\001\072\211\000\170\004\331\311" +"\364\231\031\253\126\176\133\213\206\071\025\221\244\020\054\011" +"\062\200\140\263\223\300\052\266\030\013\235\176\215\111\362\020" +"\112\177\371\325\106\057\031\222\243\231\247\046\254\273\214\074" +"\346\016\274\107\007\334\163\121\361\160\144\057\010\371\264\107" +"\035\060\154\104\352\051\067\205\222\150\146\274\203\070\376\173" +"\071\056\323\120\360\037\373\136\140\266\251\246\372\047\101\361" +"\233\030\162\362\365\204\164\112\311\147\304\124\256\110\144\337" +"\214\321\156\260\035\341\007\217\010\036\231\234\161\351\114\330" +"\245\367\107\022\037\164\321\121\236\206\363\302\242\043\100\013" +"\163\333\113\246\347\163\006\214\301\240\351\301\131\254\106\372" +"\346\057\370\317\161\234\106\155\271\304\025\215\070\171\003\105" +"\110\357\304\135\327\010\356\207\071\042\206\262\015\017\130\103" +"\367\161\251\110\056\375\352\326\037\002\003\001\000\001\243\201" +"\254\060\201\251\060\016\006\003\125\035\017\001\001\377\004\004" +"\003\002\001\006\060\017\006\003\125\035\023\001\001\377\004\005" +"\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024" +"\027\240\315\301\344\101\266\072\133\073\313\105\235\275\034\302" +"\230\372\206\130\060\037\006\003\125\035\043\004\030\060\026\200" +"\024\027\240\315\301\344\101\266\072\133\073\313\105\235\275\034" +"\302\230\372\206\130\060\106\006\003\125\035\040\004\077\060\075" +"\060\073\006\011\140\205\164\001\131\001\003\001\001\060\056\060" +"\054\006\010\053\006\001\005\005\007\002\001\026\040\150\164\164" +"\160\072\057\057\162\145\160\157\163\151\164\157\162\171\056\163" +"\167\151\163\163\163\151\147\156\056\143\157\155\057\060\015\006" +"\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002\001" +"\000\163\306\201\340\047\322\055\017\340\225\060\342\232\101\177" +"\120\054\137\137\142\141\251\206\152\151\030\014\164\111\326\135" +"\204\352\101\122\030\157\130\255\120\126\040\152\306\275\050\151" +"\130\221\334\221\021\065\251\072\035\274\032\245\140\236\330\037" +"\177\105\221\151\331\176\273\170\162\301\006\017\052\316\217\205" +"\160\141\254\240\315\013\270\071\051\126\204\062\116\206\273\075" +"\304\052\331\327\037\162\356\376\121\241\042\101\261\161\002\143" +"\032\202\260\142\253\136\127\022\037\337\313\335\165\240\300\135" +"\171\220\214\033\340\120\346\336\061\376\230\173\160\137\245\220" +"\330\255\370\002\266\157\323\140\335\100\113\042\305\075\255\072" +"\172\237\032\032\107\221\171\063\272\202\334\062\151\003\226\156" +"\037\113\360\161\376\343\147\162\240\261\277\134\213\344\372\231" +"\042\307\204\271\033\215\043\227\077\355\045\340\317\145\273\365" +"\141\004\357\335\036\262\132\101\042\132\241\237\135\054\350\133" +"\311\155\251\014\014\170\252\140\306\126\217\001\132\014\150\274" +"\151\031\171\304\037\176\227\005\277\305\351\044\121\136\324\325" +"\113\123\355\331\043\132\066\003\145\243\301\003\255\101\060\363" +"\106\033\205\220\257\145\265\325\261\344\026\133\170\165\035\227" +"\172\155\131\251\052\217\173\336\303\207\211\020\231\111\163\170" +"\310\075\275\121\065\164\052\325\361\176\151\033\052\273\073\275" +"\045\270\232\132\075\162\141\220\146\207\356\014\326\115\324\021" +"\164\013\152\376\013\003\374\243\125\127\211\376\112\313\256\133" +"\027\005\310\362\215\043\061\123\070\322\055\152\077\202\271\215" +"\010\152\367\136\101\164\156\303\021\176\007\254\051\140\221\077" +"\070\312\127\020\015\275\060\057\307\245\346\101\240\332\256\005" +"\207\232\240\244\145\154\114\011\014\211\272\270\323\271\300\223" +"\212\060\372\215\345\232\153\025\001\116\147\252\332\142\126\076" +"\204\010\146\322\304\066\175\247\076\020\374\210\340\324\200\345" +"\000\275\252\363\116\006\243\172\152\371\142\162\343\011\117\353" +"\233\016\001\043\361\237\273\174\334\334\154\021\227\045\262\362" +"\264\143\024\322\006\052\147\214\203\365\316\352\007\330\232\152" +"\036\354\344\012\273\052\114\353\011\140\071\316\312\142\330\056" +"\156" +, (PRUint32)1473 } +}; +static const NSSItem nss_builtins_items_229 [] = { + { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, + { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, + { (void *)"SwissSign Silver CA - G2", (PRUint32)25 }, + { (void *)"\233\252\345\237\126\356\041\313\103\132\276\045\223\337\247\360" +"\100\321\035\313" +, (PRUint32)20 }, + { (void *)"\340\006\241\311\175\317\311\374\015\300\126\165\226\330\142\023" +, (PRUint32)16 }, + { (void *)"\060\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061" +"\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123" +"\151\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023" +"\030\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145" +"\162\040\103\101\040\055\040\107\062" +, (PRUint32)73 }, + { (void *)"\002\010\117\033\324\057\124\273\057\113" +, (PRUint32)10 }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, + { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } +}; -PR_IMPLEMENT_DATA(builtinsInternalObject) +builtinsInternalObject nss_builtins_data[] = { #ifdef DEBUG { 7, nss_builtins_types_0, nss_builtins_items_0, {NULL} }, @@ -14044,13 +15591,13 @@ nss_builtins_data[] = { { 11, nss_builtins_types_64, nss_builtins_items_64, {NULL} }, { 13, nss_builtins_types_65, nss_builtins_items_65, {NULL} }, { 11, nss_builtins_types_66, nss_builtins_items_66, {NULL} }, - { 12, nss_builtins_types_67, nss_builtins_items_67, {NULL} }, + { 13, nss_builtins_types_67, nss_builtins_items_67, {NULL} }, { 11, nss_builtins_types_68, nss_builtins_items_68, {NULL} }, { 13, nss_builtins_types_69, nss_builtins_items_69, {NULL} }, { 11, nss_builtins_types_70, nss_builtins_items_70, {NULL} }, { 13, nss_builtins_types_71, nss_builtins_items_71, {NULL} }, { 11, nss_builtins_types_72, nss_builtins_items_72, {NULL} }, - { 12, nss_builtins_types_73, nss_builtins_items_73, {NULL} }, + { 13, nss_builtins_types_73, nss_builtins_items_73, {NULL} }, { 11, nss_builtins_types_74, nss_builtins_items_74, {NULL} }, { 13, nss_builtins_types_75, nss_builtins_items_75, {NULL} }, { 11, nss_builtins_types_76, nss_builtins_items_76, {NULL} }, @@ -14060,7 +15607,7 @@ nss_builtins_data[] = { { 11, nss_builtins_types_80, nss_builtins_items_80, {NULL} }, { 13, nss_builtins_types_81, nss_builtins_items_81, {NULL} }, { 11, nss_builtins_types_82, nss_builtins_items_82, {NULL} }, - { 12, nss_builtins_types_83, nss_builtins_items_83, {NULL} }, + { 13, nss_builtins_types_83, nss_builtins_items_83, {NULL} }, { 11, nss_builtins_types_84, nss_builtins_items_84, {NULL} }, { 13, nss_builtins_types_85, nss_builtins_items_85, {NULL} }, { 11, nss_builtins_types_86, nss_builtins_items_86, {NULL} }, @@ -14184,11 +15731,33 @@ nss_builtins_data[] = { { 11, nss_builtins_types_204, nss_builtins_items_204, {NULL} }, { 13, nss_builtins_types_205, nss_builtins_items_205, {NULL} }, { 11, nss_builtins_types_206, nss_builtins_items_206, {NULL} }, - { 13, nss_builtins_types_207, nss_builtins_items_207, {NULL} } -}; -PR_IMPLEMENT_DATA(const PRUint32) + { 13, nss_builtins_types_207, nss_builtins_items_207, {NULL} }, + { 11, nss_builtins_types_208, nss_builtins_items_208, {NULL} }, + { 13, nss_builtins_types_209, nss_builtins_items_209, {NULL} }, + { 11, nss_builtins_types_210, nss_builtins_items_210, {NULL} }, + { 13, nss_builtins_types_211, nss_builtins_items_211, {NULL} }, + { 11, nss_builtins_types_212, nss_builtins_items_212, {NULL} }, + { 13, nss_builtins_types_213, nss_builtins_items_213, {NULL} }, + { 11, nss_builtins_types_214, nss_builtins_items_214, {NULL} }, + { 13, nss_builtins_types_215, nss_builtins_items_215, {NULL} }, + { 11, nss_builtins_types_216, nss_builtins_items_216, {NULL} }, + { 13, nss_builtins_types_217, nss_builtins_items_217, {NULL} }, + { 11, nss_builtins_types_218, nss_builtins_items_218, {NULL} }, + { 13, nss_builtins_types_219, nss_builtins_items_219, {NULL} }, + { 11, nss_builtins_types_220, nss_builtins_items_220, {NULL} }, + { 13, nss_builtins_types_221, nss_builtins_items_221, {NULL} }, + { 11, nss_builtins_types_222, nss_builtins_items_222, {NULL} }, + { 13, nss_builtins_types_223, nss_builtins_items_223, {NULL} }, + { 11, nss_builtins_types_224, nss_builtins_items_224, {NULL} }, + { 13, nss_builtins_types_225, nss_builtins_items_225, {NULL} }, + { 11, nss_builtins_types_226, nss_builtins_items_226, {NULL} }, + { 13, nss_builtins_types_227, nss_builtins_items_227, {NULL} }, + { 11, nss_builtins_types_228, nss_builtins_items_228, {NULL} }, + { 13, nss_builtins_types_229, nss_builtins_items_229, {NULL} } +}; +const PRUint32 #ifdef DEBUG - nss_builtins_nObjects = 207+1; + nss_builtins_nObjects = 229+1; #else - nss_builtins_nObjects = 207; + nss_builtins_nObjects = 229; #endif /* DEBUG */ diff --git a/security/nss/lib/ckfw/builtins/certdata.perl b/security/nss/lib/ckfw/builtins/certdata.perl index 256235cfc..7a9e76ca4 100644 --- a/security/nss/lib/ckfw/builtins/certdata.perl +++ b/security/nss/lib/ckfw/builtins/certdata.perl @@ -211,7 +211,7 @@ static const char CVS_ID[] = $cvsid; EOD ; -while(($a,$b) = each(%constants)) { +foreach $b (sort values(%constants)) { print CFILE $b; } @@ -266,7 +266,7 @@ for( $i = 0; $i <= $count; $i++ ) { } } -print CFILE "\nPR_IMPLEMENT_DATA(builtinsInternalObject)\n"; +print CFILE "\nbuiltinsInternalObject\n"; print CFILE "nss_builtins_data[] = {\n"; for( $i = 0; $i <= $count; $i++ ) { @@ -290,7 +290,7 @@ for( $i = 0; $i <= $count; $i++ ) { print CFILE "};\n"; -print CFILE "PR_IMPLEMENT_DATA(const PRUint32)\n"; +print CFILE "const PRUint32\n"; print CFILE "#ifdef DEBUG\n"; print CFILE " nss_builtins_nObjects = $count+1;\n"; print CFILE "#else\n"; diff --git a/security/nss/lib/ckfw/builtins/certdata.txt b/security/nss/lib/ckfw/builtins/certdata.txt index aa6f1c0f7..9130121de 100644 --- a/security/nss/lib/ckfw/builtins/certdata.txt +++ b/security/nss/lib/ckfw/builtins/certdata.txt @@ -201,7 +201,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_TRUE # @@ -527,7 +527,7 @@ END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\000 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE @@ -663,7 +663,7 @@ END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\000 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE @@ -800,9 +800,9 @@ END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\000 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # @@ -933,7 +933,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_TRUE @@ -1069,7 +1069,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_TRUE @@ -1910,9 +1910,9 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\021\000\315\272\177\126\360\337\344\274\124\376\042\254\263 \162\252\125 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # @@ -2012,7 +2012,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\020\055\033\374\112\027\215\243\221\353\347\377\365\213\105 \276\013 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE @@ -2247,9 +2247,9 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\020\114\307\352\252\230\076\161\323\223\020\370\075\072\211 \221\222 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # @@ -2380,7 +2380,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\021\000\271\057\140\314\210\237\241\172\106\011\270\133\160 \154\212\257 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE @@ -2768,6 +2768,124 @@ CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE +# +# Certificate "GlobalSign Root CA - R2" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "GlobalSign Root CA - R2" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\114\061\040\060\036\006\003\125\004\013\023\027\107\154\157 +\142\141\154\123\151\147\156\040\122\157\157\164\040\103\101\040 +\055\040\122\062\061\023\060\021\006\003\125\004\012\023\012\107 +\154\157\142\141\154\123\151\147\156\061\023\060\021\006\003\125 +\004\003\023\012\107\154\157\142\141\154\123\151\147\156 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\114\061\040\060\036\006\003\125\004\013\023\027\107\154\157 +\142\141\154\123\151\147\156\040\122\157\157\164\040\103\101\040 +\055\040\122\062\061\023\060\021\006\003\125\004\012\023\012\107 +\154\157\142\141\154\123\151\147\156\061\023\060\021\006\003\125 +\004\003\023\012\107\154\157\142\141\154\123\151\147\156 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\013\004\000\000\000\000\001\017\206\046\346\015 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\003\272\060\202\002\242\240\003\002\001\002\002\013\004 +\000\000\000\000\001\017\206\046\346\015\060\015\006\011\052\206 +\110\206\367\015\001\001\005\005\000\060\114\061\040\060\036\006 +\003\125\004\013\023\027\107\154\157\142\141\154\123\151\147\156 +\040\122\157\157\164\040\103\101\040\055\040\122\062\061\023\060 +\021\006\003\125\004\012\023\012\107\154\157\142\141\154\123\151 +\147\156\061\023\060\021\006\003\125\004\003\023\012\107\154\157 +\142\141\154\123\151\147\156\060\036\027\015\060\066\061\062\061 +\065\060\070\060\060\060\060\132\027\015\062\061\061\062\061\065 +\060\070\060\060\060\060\132\060\114\061\040\060\036\006\003\125 +\004\013\023\027\107\154\157\142\141\154\123\151\147\156\040\122 +\157\157\164\040\103\101\040\055\040\122\062\061\023\060\021\006 +\003\125\004\012\023\012\107\154\157\142\141\154\123\151\147\156 +\061\023\060\021\006\003\125\004\003\023\012\107\154\157\142\141 +\154\123\151\147\156\060\202\001\042\060\015\006\011\052\206\110 +\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001 +\012\002\202\001\001\000\246\317\044\016\276\056\157\050\231\105 +\102\304\253\076\041\124\233\013\323\177\204\160\372\022\263\313 +\277\207\137\306\177\206\323\262\060\134\326\375\255\361\173\334 +\345\370\140\226\011\222\020\365\320\123\336\373\173\176\163\210 +\254\122\210\173\112\246\312\111\246\136\250\247\214\132\021\274 +\172\202\353\276\214\351\263\254\226\045\007\227\112\231\052\007 +\057\264\036\167\277\212\017\265\002\174\033\226\270\305\271\072 +\054\274\326\022\271\353\131\175\342\320\006\206\137\136\111\152 +\265\071\136\210\064\354\274\170\014\010\230\204\154\250\315\113 +\264\240\175\014\171\115\360\270\055\313\041\312\325\154\133\175 +\341\240\051\204\241\371\323\224\111\313\044\142\221\040\274\335 +\013\325\331\314\371\352\047\012\053\163\221\306\235\033\254\310 +\313\350\340\240\364\057\220\213\115\373\260\066\033\366\031\172 +\205\340\155\362\141\023\210\134\237\340\223\012\121\227\212\132 +\316\257\253\325\367\252\011\252\140\275\334\331\137\337\162\251 +\140\023\136\000\001\311\112\372\077\244\352\007\003\041\002\216 +\202\312\003\302\233\217\002\003\001\000\001\243\201\234\060\201 +\231\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001 +\006\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001 +\001\377\060\035\006\003\125\035\016\004\026\004\024\233\342\007 +\127\147\034\036\300\152\006\336\131\264\232\055\337\334\031\206 +\056\060\066\006\003\125\035\037\004\057\060\055\060\053\240\051 +\240\047\206\045\150\164\164\160\072\057\057\143\162\154\056\147 +\154\157\142\141\154\163\151\147\156\056\156\145\164\057\162\157 +\157\164\055\162\062\056\143\162\154\060\037\006\003\125\035\043 +\004\030\060\026\200\024\233\342\007\127\147\034\036\300\152\006 +\336\131\264\232\055\337\334\031\206\056\060\015\006\011\052\206 +\110\206\367\015\001\001\005\005\000\003\202\001\001\000\231\201 +\123\207\034\150\227\206\221\354\340\112\270\104\013\253\201\254 +\047\117\326\301\270\034\103\170\263\014\232\374\352\054\074\156 +\141\033\115\113\051\365\237\005\035\046\301\270\351\203\000\142 +\105\266\251\010\223\271\251\063\113\030\232\302\370\207\210\116 +\333\335\161\064\032\301\124\332\106\077\340\323\052\253\155\124 +\042\365\072\142\315\040\157\272\051\211\327\335\221\356\323\134 +\242\076\241\133\101\365\337\345\144\103\055\351\325\071\253\322 +\242\337\267\213\320\300\200\031\034\105\300\055\214\350\370\055 +\244\164\126\111\305\005\265\117\025\336\156\104\170\071\207\250 +\176\273\363\171\030\221\273\364\157\235\301\360\214\065\214\135 +\001\373\303\155\271\357\104\155\171\106\061\176\012\376\251\202 +\301\377\357\253\156\040\304\120\311\137\235\115\233\027\214\014 +\345\001\311\240\101\152\163\123\372\245\120\264\156\045\017\373 +\114\030\364\375\122\331\216\151\261\350\021\017\336\210\330\373 +\035\111\367\252\336\225\317\040\170\302\140\022\333\045\100\214 +\152\374\176\102\070\100\144\022\367\236\201\341\223\056 +END + +# Trust for Certificate "GlobalSign Root CA - R2" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "GlobalSign Root CA - R2" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\165\340\253\266\023\205\022\047\034\004\370\137\335\336\070\344 +\267\044\056\376 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\224\024\167\176\076\136\375\217\060\275\101\260\317\347\320\060 +END +CKA_ISSUER MULTILINE_OCTAL +\060\114\061\040\060\036\006\003\125\004\013\023\027\107\154\157 +\142\141\154\123\151\147\156\040\122\157\157\164\040\103\101\040 +\055\040\122\062\061\023\060\021\006\003\125\004\012\023\012\107 +\154\157\142\141\154\123\151\147\156\061\023\060\021\006\003\125 +\004\003\023\012\107\154\157\142\141\154\123\151\147\156 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\013\004\000\000\000\000\001\017\206\046\346\015 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + # # Certificate "ValiCert Class 1 VA" # @@ -3291,9 +3409,9 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\021\000\213\133\165\126\204\124\205\013\000\317\257\070\110 \316\261\244 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # @@ -3441,7 +3559,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\020\141\160\313\111\214\137\230\105\051\347\260\246\331\120 \133\172 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE @@ -4331,7 +4449,8 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # # Certificate "Equifax Secure Global eBusiness CA" @@ -4645,6 +4764,7 @@ END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # # Certificate "Visa International Global Root 2" @@ -4764,7 +4884,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # @@ -5038,7 +5158,7 @@ CKA_SERIAL_NUMBER MULTILINE_OCTAL END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # @@ -5290,14 +5410,13 @@ CKA_CERT_MD5_HASH MULTILINE_OCTAL \301\142\076\043\305\202\163\234\003\131\113\053\351\167\111\177 END CKA_ISSUER MULTILINE_OCTAL -\060\157\061\013\060\011\006\003\125\004\006\023\002\123\105\061 +\060\144\061\013\060\011\006\003\125\004\006\023\002\123\105\061 \024\060\022\006\003\125\004\012\023\013\101\144\144\124\162\165 -\163\164\040\101\102\061\046\060\044\006\003\125\004\013\023\035 -\101\144\144\124\162\165\163\164\040\105\170\164\145\162\156\141 -\154\040\124\124\120\040\116\145\164\167\157\162\153\061\042\060 -\040\006\003\125\004\003\023\031\101\144\144\124\162\165\163\164 -\040\105\170\164\145\162\156\141\154\040\103\101\040\122\157\157 -\164 +\163\164\040\101\102\061\035\060\033\006\003\125\004\013\023\024 +\101\144\144\124\162\165\163\164\040\124\124\120\040\116\145\164 +\167\157\162\153\061\040\060\036\006\003\125\004\003\023\027\101 +\144\144\124\162\165\163\164\040\120\165\142\154\151\143\040\103 +\101\040\122\157\157\164 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\001 @@ -5305,6 +5424,7 @@ END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # # Certificate "AddTrust Qualified Certificates Root" @@ -5438,128 +5558,143 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Verisign Class 1 Public Primary OCSP Responder" +# Certificate "Verisign Time Stamping Authority CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Class 1 Public Primary OCSP Responder" +CKA_LABEL UTF8 "Verisign Time Stamping Authority CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145 +\060\201\245\061\027\060\025\006\003\125\004\012\023\016\126\145 \162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035 \006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040 \124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060 \071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146 \040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057 \167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155 -\057\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003 -\125\004\003\023\045\103\154\141\163\163\040\061\040\120\165\142 -\154\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120 -\040\122\145\163\160\157\156\144\145\162 +\057\162\160\141\040\050\143\051\060\060\061\054\060\052\006\003 +\125\004\003\023\043\126\145\162\151\123\151\147\156\040\124\151 +\155\145\040\123\164\141\155\160\151\156\147\040\101\165\164\150 +\157\162\151\164\171\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151 -\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004 -\013\023\056\103\154\141\163\163\040\061\040\120\165\142\154\151 -\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\301\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123 +\151\147\156\054\040\111\156\143\056\061\074\060\072\006\003\125 +\004\013\023\063\103\154\141\163\163\040\063\040\120\165\142\154 +\151\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\040\055\040\107\062\061\072\060\070\006\003\125\004\013 +\023\061\050\143\051\040\061\071\071\070\040\126\145\162\151\123 +\151\147\156\054\040\111\156\143\056\040\055\040\106\157\162\040 +\141\165\164\150\157\162\151\172\145\144\040\165\163\145\040\157 +\156\154\171\061\037\060\035\006\003\125\004\013\023\026\126\145 +\162\151\123\151\147\156\040\124\162\165\163\164\040\116\145\164 +\167\157\162\153 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\053\150\324\243\106\236\305\073\050\011\253\070\135\177 -\047\040 +\002\020\123\141\262\140\256\333\161\216\247\224\263\023\063\364 +\007\011 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\236\060\202\003\007\240\003\002\001\002\002\020\053 -\150\324\243\106\236\305\073\050\011\253\070\135\177\047\040\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137 -\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027\060 -\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147\156 -\054\040\111\156\143\056\061\067\060\065\006\003\125\004\013\023 -\056\103\154\141\163\163\040\061\040\120\165\142\154\151\143\040 -\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060 -\036\027\015\060\060\060\070\060\064\060\060\060\060\060\060\132 -\027\015\060\064\060\070\060\063\062\063\065\071\065\071\132\060 -\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145\162 -\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035\006 -\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040\124 -\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060\071 -\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146\040 -\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057\167 -\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155\057 -\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003\125 -\004\003\023\045\103\154\141\163\163\040\061\040\120\165\142\154 -\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120\040 -\122\145\163\160\157\156\144\145\162\060\201\237\060\015\006\011 -\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000\060 -\201\211\002\201\201\000\271\355\136\172\072\167\137\316\137\072 -\122\374\315\144\367\161\265\157\152\226\306\131\222\125\224\135 -\057\133\056\301\021\352\046\212\313\247\201\074\366\132\104\336 -\172\023\057\375\132\121\331\173\067\046\112\300\047\077\004\003 -\152\126\301\203\054\341\157\133\251\124\120\044\112\306\056\172 -\114\241\133\067\124\044\041\061\037\241\170\030\166\247\261\160 -\332\042\320\152\376\007\142\100\306\367\366\233\175\014\006\270 -\113\307\050\344\146\043\204\121\357\106\267\223\330\201\063\313 -\345\066\254\306\350\005\002\003\001\000\001\243\202\001\020\060 -\202\001\014\060\040\006\003\125\035\021\004\031\060\027\244\025 -\060\023\061\021\060\017\006\003\125\004\003\023\010\117\103\123 -\120\040\061\055\061\060\061\006\003\125\035\037\004\052\060\050 -\060\046\240\044\240\042\206\040\150\164\164\160\072\057\057\143 -\162\154\056\166\145\162\151\163\151\147\156\056\143\157\155\057 -\160\143\141\061\056\143\162\154\060\023\006\003\125\035\045\004 -\014\060\012\006\010\053\006\001\005\005\007\003\011\060\102\006 -\010\053\006\001\005\005\007\001\001\004\066\060\064\060\062\006 -\010\053\006\001\005\005\007\060\001\246\046\026\044\150\164\164 -\160\072\057\057\157\143\163\160\056\166\145\162\151\163\151\147 -\156\056\143\157\155\057\157\143\163\160\057\163\164\141\164\165 -\163\060\104\006\003\125\035\040\004\075\060\073\060\071\006\013 -\140\206\110\001\206\370\105\001\007\001\001\060\052\060\050\006 -\010\053\006\001\005\005\007\002\001\026\034\150\164\164\160\163 -\072\057\057\167\167\167\056\166\145\162\151\163\151\147\156\056 -\143\157\155\057\122\120\101\060\011\006\003\125\035\023\004\002 -\060\000\060\013\006\003\125\035\017\004\004\003\002\007\200\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\201 -\201\000\160\220\335\270\344\276\123\027\174\177\002\351\325\367 -\213\231\223\061\140\215\176\346\140\153\044\357\140\254\322\316 -\221\336\200\155\011\244\323\270\070\345\104\312\162\136\015\055 -\301\167\234\275\054\003\170\051\215\244\245\167\207\365\361\053 -\046\255\314\007\154\072\124\132\050\340\011\363\115\012\004\312 -\324\130\151\013\247\263\365\335\001\245\347\334\360\037\272\301 -\135\220\215\263\352\117\301\021\131\227\152\262\053\023\261\332 -\255\227\241\263\261\240\040\133\312\062\253\215\317\023\360\037 -\051\303 -END - -# Trust for Certificate "Verisign Class 1 Public Primary OCSP Responder" +\060\202\003\315\060\202\003\066\240\003\002\001\002\002\020\123 +\141\262\140\256\333\161\216\247\224\263\023\063\364\007\011\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 +\301\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027 +\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147 +\156\054\040\111\156\143\056\061\074\060\072\006\003\125\004\013 +\023\063\103\154\141\163\163\040\063\040\120\165\142\154\151\143 +\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151 +\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 +\040\055\040\107\062\061\072\060\070\006\003\125\004\013\023\061 +\050\143\051\040\061\071\071\070\040\126\145\162\151\123\151\147 +\156\054\040\111\156\143\056\040\055\040\106\157\162\040\141\165 +\164\150\157\162\151\172\145\144\040\165\163\145\040\157\156\154 +\171\061\037\060\035\006\003\125\004\013\023\026\126\145\162\151 +\123\151\147\156\040\124\162\165\163\164\040\116\145\164\167\157 +\162\153\060\036\027\015\060\060\060\071\062\066\060\060\060\060 +\060\060\132\027\015\061\060\060\071\062\065\062\063\065\071\065 +\071\132\060\201\245\061\027\060\025\006\003\125\004\012\023\016 +\126\145\162\151\123\151\147\156\054\040\111\156\143\056\061\037 +\060\035\006\003\125\004\013\023\026\126\145\162\151\123\151\147 +\156\040\124\162\165\163\164\040\116\145\164\167\157\162\153\061 +\073\060\071\006\003\125\004\013\023\062\124\145\162\155\163\040 +\157\146\040\165\163\145\040\141\164\040\150\164\164\160\163\072 +\057\057\167\167\167\056\166\145\162\151\163\151\147\156\056\143 +\157\155\057\162\160\141\040\050\143\051\060\060\061\054\060\052 +\006\003\125\004\003\023\043\126\145\162\151\123\151\147\156\040 +\124\151\155\145\040\123\164\141\155\160\151\156\147\040\101\165 +\164\150\157\162\151\164\171\040\103\101\060\201\237\060\015\006 +\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000 +\060\201\211\002\201\201\000\322\031\235\147\302\000\041\131\142 +\316\264\011\042\104\151\212\370\045\132\333\355\015\267\066\176 +\116\340\273\224\076\220\045\207\302\141\107\051\331\275\124\270 +\143\314\054\175\151\264\063\066\364\067\007\232\301\335\100\124 +\374\340\170\235\240\223\271\011\075\043\121\177\104\302\024\164 +\333\012\276\313\311\060\064\100\230\076\320\327\045\020\201\224 +\275\007\117\234\326\124\047\337\056\250\277\313\220\214\215\165 +\113\274\342\350\104\207\315\346\101\012\045\156\350\364\044\002 +\305\122\017\156\354\230\165\002\003\001\000\001\243\201\337\060 +\201\334\060\017\006\003\125\035\023\004\010\060\006\001\001\377 +\002\001\000\060\105\006\003\125\035\040\004\076\060\074\060\072 +\006\014\140\206\110\001\206\370\105\001\007\027\001\003\060\052 +\060\050\006\010\053\006\001\005\005\007\002\001\026\034\150\164 +\164\160\163\072\057\057\167\167\167\056\166\145\162\151\163\151 +\147\156\056\143\157\155\057\162\160\141\060\061\006\003\125\035 +\037\004\052\060\050\060\046\240\044\240\042\206\040\150\164\164 +\160\072\057\057\143\162\154\056\166\145\162\151\163\151\147\156 +\056\143\157\155\057\160\143\141\063\056\143\162\154\060\013\006 +\003\125\035\017\004\004\003\002\001\006\060\102\006\010\053\006 +\001\005\005\007\001\001\004\066\060\064\060\062\006\010\053\006 +\001\005\005\007\060\001\246\046\026\044\150\164\164\160\072\057 +\057\157\143\163\160\056\166\145\162\151\163\151\147\156\056\143 +\157\155\057\157\143\163\160\057\163\164\141\164\165\163\060\015 +\006\011\052\206\110\206\367\015\001\001\005\005\000\003\201\201 +\000\202\160\150\225\337\266\015\302\001\160\031\112\322\124\126 +\036\254\362\105\114\207\270\365\065\353\170\113\005\251\310\235 +\073\031\041\056\160\064\112\242\365\211\340\025\165\105\347\050 +\067\000\064\047\051\350\067\113\362\357\104\227\153\027\121\032 +\303\126\235\074\032\212\366\112\106\106\067\214\372\313\365\144 +\132\070\150\056\034\303\357\160\316\270\106\006\026\277\367\176 +\347\265\250\076\105\254\251\045\165\042\173\157\077\260\234\224 +\347\307\163\253\254\037\356\045\233\300\026\355\267\312\133\360 +\024 +END + +# Trust for Certificate "Verisign Time Stamping Authority CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Class 1 Public Primary OCSP Responder" +CKA_LABEL UTF8 "Verisign Time Stamping Authority CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\004\226\110\344\112\311\314\255\105\203\230\331\074\175\221\365 -\042\104\033\212 +\246\017\064\310\142\154\201\366\213\367\175\251\366\147\130\212 +\220\077\175\066 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\176\157\072\123\033\174\276\260\060\333\103\036\036\224\211\262 +\211\111\124\214\310\150\232\203\051\354\334\006\163\041\253\227 END CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151 -\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004 -\013\023\056\103\154\141\163\163\040\061\040\120\165\142\154\151 -\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\301\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123 +\151\147\156\054\040\111\156\143\056\061\074\060\072\006\003\125 +\004\013\023\063\103\154\141\163\163\040\063\040\120\165\142\154 +\151\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\040\055\040\107\062\061\072\060\070\006\003\125\004\013 +\023\061\050\143\051\040\061\071\071\070\040\126\145\162\151\123 +\151\147\156\054\040\111\156\143\056\040\055\040\106\157\162\040 +\141\165\164\150\157\162\151\172\145\144\040\165\163\145\040\157 +\156\154\171\061\037\060\035\006\003\125\004\013\023\026\126\145 +\162\151\123\151\147\156\040\124\162\165\163\164\040\116\145\164 +\167\157\162\153 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\053\150\324\243\106\236\305\073\050\011\253\070\135\177 -\047\040 +\002\020\123\141\262\140\256\333\161\216\247\224\263\023\063\364 +\007\011 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -5567,257 +5702,112 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Verisign Class 2 Public Primary OCSP Responder" +# Certificate "Thawte Time Stamping CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Class 2 Public Primary OCSP Responder" +CKA_LABEL UTF8 "Thawte Time Stamping CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145 -\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035 -\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040 -\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060 -\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146 -\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057 -\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155 -\057\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003 -\125\004\003\023\045\103\154\141\163\163\040\062\040\120\165\142 -\154\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120 -\040\122\145\163\160\157\156\144\145\162 +\060\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101 +\061\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145 +\162\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007 +\023\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060 +\015\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035 +\060\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060 +\035\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124 +\151\155\145\163\164\141\155\160\151\156\147\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151 -\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004 -\013\023\056\103\154\141\163\163\040\062\040\120\165\142\154\151 -\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101 +\061\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145 +\162\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007 +\023\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060 +\015\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035 +\060\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060 +\035\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124 +\151\155\145\163\164\141\155\160\151\156\147\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\011\106\027\346\035\330\324\034\240\014\240\142\350\171 -\212\247 +\002\001\000 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\236\060\202\003\007\240\003\002\001\002\002\020\011 -\106\027\346\035\330\324\034\240\014\240\142\350\171\212\247\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137 -\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027\060 -\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147\156 -\054\040\111\156\143\056\061\067\060\065\006\003\125\004\013\023 -\056\103\154\141\163\163\040\062\040\120\165\142\154\151\143\040 -\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060 -\036\027\015\060\060\060\070\060\061\060\060\060\060\060\060\132 -\027\015\060\064\060\067\063\061\062\063\065\071\065\071\132\060 -\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145\162 -\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035\006 -\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040\124 -\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060\071 -\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146\040 -\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057\167 -\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155\057 -\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003\125 -\004\003\023\045\103\154\141\163\163\040\062\040\120\165\142\154 -\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120\040 -\122\145\163\160\157\156\144\145\162\060\201\237\060\015\006\011 -\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000\060 -\201\211\002\201\201\000\320\312\143\061\141\177\104\064\174\005 -\175\013\075\152\220\313\171\113\167\012\077\113\307\043\345\300 -\142\055\176\234\176\076\210\207\221\320\254\350\115\111\207\242 -\226\220\212\335\004\245\002\077\214\233\351\211\376\142\240\342 -\132\275\310\335\264\170\346\245\102\223\010\147\001\300\040\115 -\327\134\364\135\332\263\343\067\246\122\032\054\114\145\115\212 -\207\331\250\243\361\111\124\273\074\134\200\121\150\306\373\111 -\377\013\125\253\025\335\373\232\301\271\035\164\015\262\214\104 -\135\211\374\237\371\203\002\003\001\000\001\243\202\001\020\060 -\202\001\014\060\040\006\003\125\035\021\004\031\060\027\244\025 -\060\023\061\021\060\017\006\003\125\004\003\023\010\117\103\123 -\120\040\061\055\062\060\061\006\003\125\035\037\004\052\060\050 -\060\046\240\044\240\042\206\040\150\164\164\160\072\057\057\143 -\162\154\056\166\145\162\151\163\151\147\156\056\143\157\155\057 -\160\143\141\062\056\143\162\154\060\023\006\003\125\035\045\004 -\014\060\012\006\010\053\006\001\005\005\007\003\011\060\102\006 -\010\053\006\001\005\005\007\001\001\004\066\060\064\060\062\006 -\010\053\006\001\005\005\007\060\001\246\046\026\044\150\164\164 -\160\072\057\057\157\143\163\160\056\166\145\162\151\163\151\147 -\156\056\143\157\155\057\157\143\163\160\057\163\164\141\164\165 -\163\060\104\006\003\125\035\040\004\075\060\073\060\071\006\013 -\140\206\110\001\206\370\105\001\007\001\001\060\052\060\050\006 -\010\053\006\001\005\005\007\002\001\026\034\150\164\164\160\163 -\072\057\057\167\167\167\056\166\145\162\151\163\151\147\156\056 -\143\157\155\057\122\120\101\060\011\006\003\125\035\023\004\002 -\060\000\060\013\006\003\125\035\017\004\004\003\002\007\200\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\201 -\201\000\037\175\011\156\044\106\165\004\234\363\046\233\343\071 -\156\027\357\274\275\242\033\322\002\204\206\253\320\100\227\054 -\304\103\210\067\031\153\042\250\003\161\120\235\040\334\066\140 -\040\232\163\055\163\125\154\130\233\054\302\264\064\054\172\063 -\102\312\221\331\351\103\257\317\036\340\365\304\172\253\077\162 -\143\036\251\067\341\133\073\210\263\023\206\202\220\127\313\127 -\377\364\126\276\042\335\343\227\250\341\274\042\103\302\335\115 -\333\366\201\236\222\024\236\071\017\023\124\336\202\330\300\136 -\064\215 -END - -# Trust for Certificate "Verisign Class 2 Public Primary OCSP Responder" -CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Class 2 Public Primary OCSP Responder" -CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\042\171\151\276\320\122\116\115\035\066\262\361\162\041\167\361 -\124\123\110\167 -END -CKA_CERT_MD5_HASH MULTILINE_OCTAL -\363\105\275\020\226\015\205\113\357\237\021\142\064\247\136\265 -END -CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151 -\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004 -\013\023\056\103\154\141\163\163\040\062\040\120\165\142\154\151 -\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\011\106\027\346\035\330\324\034\240\014\240\142\350\171 -\212\247 -END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE - -# -# Certificate "Verisign Class 3 Public Primary OCSP Responder" -# -CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Class 3 Public Primary OCSP Responder" -CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -CKA_SUBJECT MULTILINE_OCTAL -\060\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145 -\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035 -\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040 -\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060 -\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146 -\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057 -\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155 -\057\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003 -\125\004\003\023\045\103\154\141\163\163\040\063\040\120\165\142 -\154\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120 -\040\122\145\163\160\157\156\144\145\162 -END -CKA_ID UTF8 "0" -CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151 -\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004 -\013\023\056\103\154\141\163\163\040\063\040\120\165\142\154\151 -\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\056\226\236\277\266\142\154\354\173\351\163\314\343\154 -\301\204 +\060\202\002\241\060\202\002\012\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 +\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101\061 +\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145\162 +\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007\023 +\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060\015 +\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035\060 +\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060\035 +\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124\151 +\155\145\163\164\141\155\160\151\156\147\040\103\101\060\036\027 +\015\071\067\060\061\060\061\060\060\060\060\060\060\132\027\015 +\062\060\061\062\063\061\062\063\065\071\065\071\132\060\201\213 +\061\013\060\011\006\003\125\004\006\023\002\132\101\061\025\060 +\023\006\003\125\004\010\023\014\127\145\163\164\145\162\156\040 +\103\141\160\145\061\024\060\022\006\003\125\004\007\023\013\104 +\165\162\142\141\156\166\151\154\154\145\061\017\060\015\006\003 +\125\004\012\023\006\124\150\141\167\164\145\061\035\060\033\006 +\003\125\004\013\023\024\124\150\141\167\164\145\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\061\037\060\035\006\003 +\125\004\003\023\026\124\150\141\167\164\145\040\124\151\155\145 +\163\164\141\155\160\151\156\147\040\103\101\060\201\237\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215 +\000\060\201\211\002\201\201\000\326\053\130\170\141\105\206\123 +\352\064\173\121\234\355\260\346\056\030\016\376\340\137\250\047 +\323\264\311\340\174\131\116\026\016\163\124\140\301\177\366\237 +\056\351\072\205\044\025\074\333\107\004\143\303\236\304\224\032 +\132\337\114\172\363\331\103\035\074\020\172\171\045\333\220\376 +\360\121\347\060\326\101\000\375\237\050\337\171\276\224\273\235 +\266\024\343\043\205\327\251\101\340\114\244\171\260\053\032\213 +\362\370\073\212\076\105\254\161\222\000\264\220\101\230\373\137 +\355\372\267\056\212\370\210\067\002\003\001\000\001\243\023\060 +\021\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001 +\001\377\060\015\006\011\052\206\110\206\367\015\001\001\004\005 +\000\003\201\201\000\147\333\342\302\346\207\075\100\203\206\067 +\065\175\037\316\232\303\014\146\040\250\272\252\004\211\206\302 +\365\020\010\015\277\313\242\005\212\320\115\066\076\364\327\357 +\151\306\136\344\260\224\157\112\271\347\336\133\210\266\173\333 +\343\047\345\166\303\360\065\301\313\265\047\233\063\171\334\220 +\246\000\236\167\372\374\315\047\224\102\026\234\323\034\150\354 +\277\134\335\345\251\173\020\012\062\164\124\023\061\213\205\003 +\204\221\267\130\001\060\024\070\257\050\312\374\261\120\031\031 +\011\254\211\111\323 END -CKA_VALUE MULTILINE_OCTAL -\060\202\003\242\060\202\003\013\240\003\002\001\002\002\020\056 -\226\236\277\266\142\154\354\173\351\163\314\343\154\301\204\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137 -\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027\060 -\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147\156 -\054\040\111\156\143\056\061\067\060\065\006\003\125\004\013\023 -\056\103\154\141\163\163\040\063\040\120\165\142\154\151\143\040 -\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060 -\036\027\015\060\060\060\070\060\064\060\060\060\060\060\060\132 -\027\015\060\064\060\070\060\063\062\063\065\071\065\071\132\060 -\201\247\061\027\060\025\006\003\125\004\012\023\016\126\145\162 -\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035\006 -\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040\124 -\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060\071 -\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146\040 -\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057\167 -\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155\057 -\122\120\101\040\050\143\051\060\060\061\056\060\054\006\003\125 -\004\003\023\045\103\154\141\163\163\040\063\040\120\165\142\154 -\151\143\040\120\162\151\155\141\162\171\040\117\103\123\120\040 -\122\145\163\160\157\156\144\145\162\060\201\237\060\015\006\011 -\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000\060 -\201\211\002\201\201\000\361\344\010\016\203\273\165\343\110\345 -\270\333\246\360\271\253\351\074\142\307\136\065\133\320\002\124 -\021\330\311\321\126\271\166\113\271\253\172\346\315\272\366\014 -\004\326\176\326\260\012\145\254\116\071\343\361\367\055\243\045 -\071\357\260\213\317\276\333\014\135\156\160\364\007\315\160\367 -\072\300\076\065\026\355\170\214\103\317\302\046\056\107\326\206 -\175\234\361\276\326\147\014\042\045\244\312\145\346\037\172\170 -\050\057\077\005\333\004\041\277\341\105\146\376\074\267\202\355 -\132\270\026\025\271\125\002\003\001\000\001\243\202\001\024\060 -\202\001\020\060\040\006\003\125\035\021\004\031\060\027\244\025 -\060\023\061\021\060\017\006\003\125\004\003\023\010\117\103\123 -\120\040\061\055\063\060\065\006\003\125\035\037\004\056\060\054 -\060\052\240\050\240\046\206\044\150\164\164\160\072\057\057\143 -\162\154\056\166\145\162\151\163\151\147\156\056\143\157\155\057 -\160\143\141\063\056\061\056\061\056\143\162\154\060\023\006\003 -\125\035\045\004\014\060\012\006\010\053\006\001\005\005\007\003 -\011\060\102\006\010\053\006\001\005\005\007\001\001\004\066\060 -\064\060\062\006\010\053\006\001\005\005\007\060\001\246\046\026 -\044\150\164\164\160\072\057\057\157\143\163\160\056\166\145\162 -\151\163\151\147\156\056\143\157\155\057\157\143\163\160\057\163 -\164\141\164\165\163\060\104\006\003\125\035\040\004\075\060\073 -\060\071\006\013\140\206\110\001\206\370\105\001\007\001\001\060 -\052\060\050\006\010\053\006\001\005\005\007\002\001\026\034\150 -\164\164\160\163\072\057\057\167\167\167\056\166\145\162\151\163 -\151\147\156\056\143\157\155\057\122\120\101\060\011\006\003\125 -\035\023\004\002\060\000\060\013\006\003\125\035\017\004\004\003 -\002\007\200\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\003\201\201\000\002\366\123\143\300\251\036\362\320\213 -\063\060\217\110\233\114\260\126\264\203\161\112\276\334\120\330 -\365\266\340\013\333\275\170\117\351\317\011\064\332\051\111\235 -\001\163\132\221\221\202\124\054\023\012\323\167\043\317\067\374 -\143\336\247\343\366\267\265\151\105\050\111\303\221\334\252\107 -\034\251\210\231\054\005\052\215\215\212\372\142\342\132\267\000 -\040\135\071\304\050\302\313\374\236\250\211\256\133\075\216\022 -\352\062\262\374\353\024\327\011\025\032\300\315\033\325\265\025 -\116\101\325\226\343\116 -END - -# Trust for Certificate "Verisign Class 3 Public Primary OCSP Responder" + +# Trust for Certificate "Thawte Time Stamping CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Class 3 Public Primary OCSP Responder" +CKA_LABEL UTF8 "Thawte Time Stamping CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\265\355\267\332\046\072\126\164\322\042\105\060\324\307\217\172 -\007\365\345\137 +\276\066\244\126\057\262\356\005\333\263\323\043\043\255\364\105 +\010\116\326\126 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\175\121\222\311\166\203\230\026\336\214\263\206\304\175\146\373 +\177\146\172\161\323\353\151\170\040\232\121\024\235\203\332\040 END CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151 -\147\156\054\040\111\156\143\056\061\067\060\065\006\003\125\004 -\013\023\056\103\154\141\163\163\040\063\040\120\165\142\154\151 -\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101 +\061\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145 +\162\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007 +\023\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060 +\015\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035 +\060\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060 +\035\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124 +\151\155\145\163\164\141\155\160\151\156\147\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\056\226\236\277\266\142\154\354\173\351\163\314\343\154 -\301\204 +\002\001\000 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -5825,128 +5815,152 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Verisign Secure Server OCSP Responder" +# Certificate "Entrust.net Global Secure Server CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Secure Server OCSP Responder" +CKA_LABEL UTF8 "Entrust.net Global Secure Server CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\236\061\027\060\025\006\003\125\004\012\023\016\126\145 -\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035 -\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040 -\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060 -\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146 -\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057 -\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155 -\057\122\120\101\040\050\143\051\060\060\061\045\060\043\006\003 -\125\004\003\023\034\123\145\143\165\162\145\040\123\145\162\166 -\145\162\040\117\103\123\120\040\122\145\163\160\157\156\144\145 -\162 +\060\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156 +\164\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125 +\004\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056 +\156\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157 +\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155 +\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003 +\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156 +\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145 +\144\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162 +\165\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123 +\145\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164 +\151\157\156\040\101\165\164\150\157\162\151\164\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\040\060\036\006\003\125\004\012\023\027\122\123\101\040\104\141 -\164\141\040\123\145\143\165\162\151\164\171\054\040\111\156\143 -\056\061\056\060\054\006\003\125\004\013\023\045\123\145\143\165 -\162\145\040\123\145\162\166\145\162\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156 +\164\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125 +\004\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056 +\156\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157 +\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155 +\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003 +\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156 +\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145 +\144\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162 +\165\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123 +\145\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164 +\151\157\156\040\101\165\164\150\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\021\000\377\105\325\047\135\044\373\263\302\071\044\123\127 -\341\117\336 +\002\004\070\233\021\074 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\237\060\202\003\014\240\003\002\001\002\002\021\000 -\377\105\325\047\135\044\373\263\302\071\044\123\127\341\117\336 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061\040 -\060\036\006\003\125\004\012\023\027\122\123\101\040\104\141\164 -\141\040\123\145\143\165\162\151\164\171\054\040\111\156\143\056 -\061\056\060\054\006\003\125\004\013\023\045\123\145\143\165\162 +\060\202\004\225\060\202\003\376\240\003\002\001\002\002\004\070 +\233\021\074\060\015\006\011\052\206\110\206\367\015\001\001\004 +\005\000\060\201\272\061\024\060\022\006\003\125\004\012\023\013 +\105\156\164\162\165\163\164\056\156\145\164\061\077\060\075\006 +\003\125\004\013\024\066\167\167\167\056\145\156\164\162\165\163 +\164\056\156\145\164\057\123\123\114\137\103\120\123\040\151\156 +\143\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154 +\151\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043 +\006\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040 +\105\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151 +\164\145\144\061\072\060\070\006\003\125\004\003\023\061\105\156 +\164\162\165\163\164\056\156\145\164\040\123\145\143\165\162\145 +\040\123\145\162\166\145\162\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060 +\036\027\015\060\060\060\062\060\064\061\067\062\060\060\060\132 +\027\015\062\060\060\062\060\064\061\067\065\060\060\060\132\060 +\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156\164 +\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125\004 +\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056\156 +\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157\162 +\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155\151 +\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003\125 +\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156\164 +\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145\144 +\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162\165 +\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123\145 +\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164\151 +\157\156\040\101\165\164\150\157\162\151\164\171\060\201\237\060 +\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201 +\215\000\060\201\211\002\201\201\000\307\301\137\116\161\361\316 +\360\140\206\017\322\130\177\323\063\227\055\027\242\165\060\265 +\226\144\046\057\150\303\104\253\250\165\346\000\147\064\127\236 +\145\307\042\233\163\346\323\335\010\016\067\125\252\045\106\201 +\154\275\376\250\366\165\127\127\214\220\154\112\303\076\213\113 +\103\012\311\021\126\232\232\047\042\231\317\125\236\141\331\002 +\342\174\266\174\070\007\334\343\177\117\232\271\003\101\200\266 +\165\147\023\013\237\350\127\066\310\135\000\066\336\146\024\332 +\156\166\037\117\067\214\202\023\211\002\003\001\000\001\243\202 +\001\244\060\202\001\240\060\021\006\011\140\206\110\001\206\370 +\102\001\001\004\004\003\002\000\007\060\201\343\006\003\125\035 +\037\004\201\333\060\201\330\060\201\325\240\201\322\240\201\317 +\244\201\314\060\201\311\061\024\060\022\006\003\125\004\012\023 +\013\105\156\164\162\165\163\164\056\156\145\164\061\077\060\075 +\006\003\125\004\013\024\066\167\167\167\056\145\156\164\162\165 +\163\164\056\156\145\164\057\123\123\114\137\103\120\123\040\151 +\156\143\157\162\160\056\040\142\171\040\162\145\146\056\040\050 +\154\151\155\151\164\163\040\154\151\141\142\056\051\061\045\060 +\043\006\003\125\004\013\023\034\050\143\051\040\062\060\060\060 +\040\105\156\164\162\165\163\164\056\156\145\164\040\114\151\155 +\151\164\145\144\061\072\060\070\006\003\125\004\003\023\061\105 +\156\164\162\165\163\164\056\156\145\164\040\123\145\143\165\162 \145\040\123\145\162\166\145\162\040\103\145\162\164\151\146\151 \143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\060\036\027\015\060\060\060\070\060\064\060\060\060\060\060\060 -\132\027\015\060\064\060\070\060\063\062\063\065\071\065\071\132 -\060\201\236\061\027\060\025\006\003\125\004\012\023\016\126\145 -\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035 -\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040 -\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060 -\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146 -\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057 -\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155 -\057\122\120\101\040\050\143\051\060\060\061\045\060\043\006\003 -\125\004\003\023\034\123\145\143\165\162\145\040\123\145\162\166 -\145\162\040\117\103\123\120\040\122\145\163\160\157\156\144\145 -\162\060\201\237\060\015\006\011\052\206\110\206\367\015\001\001 -\001\005\000\003\201\215\000\060\201\211\002\201\201\000\270\121 -\231\144\205\016\356\263\012\150\360\277\143\166\035\123\365\374 -\241\170\214\063\356\237\364\276\071\332\233\017\115\107\251\217 -\040\350\113\104\275\316\315\173\220\321\060\350\220\304\045\173 -\211\050\336\275\366\223\035\377\271\377\222\265\251\215\344\256 -\314\342\303\007\203\152\243\162\020\001\047\142\042\246\065\046 -\071\055\236\317\140\014\374\107\244\327\320\102\170\247\035\154 -\320\313\117\025\247\051\012\264\225\105\304\261\347\132\011\327 -\071\225\330\035\065\236\302\275\263\135\301\014\113\037\002\003 -\001\000\001\243\202\001\035\060\202\001\031\060\040\006\003\125 -\035\021\004\031\060\027\244\025\060\023\061\021\060\017\006\003 -\125\004\003\023\010\117\103\123\120\040\061\055\064\060\076\006 -\003\125\035\037\004\067\060\065\060\063\240\061\240\057\206\055 -\150\164\164\160\072\057\057\143\162\154\056\166\145\162\151\163 -\151\147\156\056\143\157\155\057\122\123\101\123\145\143\165\162 -\145\123\145\162\166\145\162\055\160\056\143\162\154\060\023\006 -\003\125\035\045\004\014\060\012\006\010\053\006\001\005\005\007 -\003\011\060\102\006\010\053\006\001\005\005\007\001\001\004\066 -\060\064\060\062\006\010\053\006\001\005\005\007\060\001\246\046 -\026\044\150\164\164\160\072\057\057\157\143\163\160\056\166\145 -\162\151\163\151\147\156\056\143\157\155\057\157\143\163\160\057 -\163\164\141\164\165\163\060\104\006\003\125\035\040\004\075\060 -\073\060\071\006\013\140\206\110\001\206\370\105\001\007\001\001 -\060\052\060\050\006\010\053\006\001\005\005\007\002\001\026\034 -\150\164\164\160\163\072\057\057\167\167\167\056\166\145\162\151 -\163\151\147\156\056\143\157\155\057\122\120\101\060\011\006\003 -\125\035\023\004\002\060\000\060\013\006\003\125\035\017\004\004 -\003\002\007\200\060\015\006\011\052\206\110\206\367\015\001\001 -\005\005\000\003\176\000\000\263\020\123\146\234\111\223\056\061 -\240\002\102\322\130\127\176\146\241\376\033\212\141\030\120\100 -\054\036\053\101\245\326\333\377\254\010\034\132\005\155\002\134 -\052\266\226\117\107\333\276\116\333\316\314\272\206\270\030\316 -\261\022\221\137\143\367\363\110\076\314\361\115\023\344\155\011 -\224\170\000\222\313\243\040\235\006\013\152\240\103\007\316\321 -\031\154\217\030\165\232\237\027\063\375\251\046\270\343\342\336 -\302\250\304\132\212\177\230\326\007\006\153\314\126\236\206\160 -\316\324\357 -END - -# Trust for Certificate "Verisign Secure Server OCSP Responder" +\061\015\060\013\006\003\125\004\003\023\004\103\122\114\061\060 +\053\006\003\125\035\020\004\044\060\042\200\017\062\060\060\060 +\060\062\060\064\061\067\062\060\060\060\132\201\017\062\060\062 +\060\060\062\060\064\061\067\065\060\060\060\132\060\013\006\003 +\125\035\017\004\004\003\002\001\006\060\037\006\003\125\035\043 +\004\030\060\026\200\024\313\154\300\153\343\273\076\313\374\042 +\234\376\373\213\222\234\260\362\156\042\060\035\006\003\125\035 +\016\004\026\004\024\313\154\300\153\343\273\076\313\374\042\234 +\376\373\213\222\234\260\362\156\042\060\014\006\003\125\035\023 +\004\005\060\003\001\001\377\060\035\006\011\052\206\110\206\366 +\175\007\101\000\004\020\060\016\033\010\126\065\056\060\072\064 +\056\060\003\002\004\220\060\015\006\011\052\206\110\206\367\015 +\001\001\004\005\000\003\201\201\000\142\333\201\221\316\310\232 +\167\102\057\354\275\047\243\123\017\120\033\352\116\222\360\251 +\257\251\240\272\110\141\313\357\311\006\357\037\325\364\356\337 +\126\055\346\312\152\031\163\252\123\276\222\263\120\002\266\205 +\046\162\143\330\165\120\142\165\024\267\263\120\032\077\312\021 +\000\013\205\105\151\155\266\245\256\121\341\112\334\202\077\154 +\214\064\262\167\153\331\002\366\177\016\352\145\004\361\315\124 +\312\272\311\314\340\204\367\310\076\021\227\323\140\011\030\274 +\005\377\154\211\063\360\354\025\017 +END + +# Trust for Certificate "Entrust.net Global Secure Server CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Secure Server OCSP Responder" +CKA_LABEL UTF8 "Entrust.net Global Secure Server CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\161\236\140\141\327\175\054\203\361\242\135\074\366\215\002\274 -\224\070\305\056 +\211\071\127\156\027\215\367\005\170\017\314\136\310\117\204\366 +\045\072\110\223 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\054\142\303\330\200\001\026\011\352\131\352\170\253\020\103\366 +\235\146\152\314\377\325\365\103\264\277\214\026\321\053\250\231 END CKA_ISSUER MULTILINE_OCTAL -\060\137\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\040\060\036\006\003\125\004\012\023\027\122\123\101\040\104\141 -\164\141\040\123\145\143\165\162\151\164\171\054\040\111\156\143 -\056\061\056\060\054\006\003\125\004\013\023\045\123\145\143\165 -\162\145\040\123\145\162\166\145\162\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156 +\164\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125 +\004\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056 +\156\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157 +\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155 +\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003 +\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156 +\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145 +\144\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162 +\165\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123 +\145\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164 +\151\157\156\040\101\165\164\150\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\021\000\377\105\325\047\135\044\373\263\302\071\044\123\127 -\341\117\336 +\002\004\070\233\021\074 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -5954,143 +5968,151 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Verisign Time Stamping Authority CA" +# Certificate "Entrust.net Global Secure Personal CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Time Stamping Authority CA" +CKA_LABEL UTF8 "Entrust.net Global Secure Personal CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\245\061\027\060\025\006\003\125\004\012\023\016\126\145 -\162\151\123\151\147\156\054\040\111\156\143\056\061\037\060\035 -\006\003\125\004\013\023\026\126\145\162\151\123\151\147\156\040 -\124\162\165\163\164\040\116\145\164\167\157\162\153\061\073\060 -\071\006\003\125\004\013\023\062\124\145\162\155\163\040\157\146 -\040\165\163\145\040\141\164\040\150\164\164\160\163\072\057\057 -\167\167\167\056\166\145\162\151\163\151\147\156\056\143\157\155 -\057\162\160\141\040\050\143\051\060\060\061\054\060\052\006\003 -\125\004\003\023\043\126\145\162\151\123\151\147\156\040\124\151 -\155\145\040\123\164\141\155\160\151\156\147\040\101\165\164\150 -\157\162\151\164\171\040\103\101 +\060\201\264\061\024\060\022\006\003\125\004\012\023\013\105\156 +\164\162\165\163\164\056\156\145\164\061\100\060\076\006\003\125 +\004\013\024\067\167\167\167\056\145\156\164\162\165\163\164\056 +\156\145\164\057\107\103\103\101\137\103\120\123\040\151\156\143 +\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151 +\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006 +\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105 +\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164 +\145\144\061\063\060\061\006\003\125\004\003\023\052\105\156\164 +\162\165\163\164\056\156\145\164\040\103\154\151\145\156\164\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\301\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123 -\151\147\156\054\040\111\156\143\056\061\074\060\072\006\003\125 -\004\013\023\063\103\154\141\163\163\040\063\040\120\165\142\154 -\151\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\040\055\040\107\062\061\072\060\070\006\003\125\004\013 -\023\061\050\143\051\040\061\071\071\070\040\126\145\162\151\123 -\151\147\156\054\040\111\156\143\056\040\055\040\106\157\162\040 -\141\165\164\150\157\162\151\172\145\144\040\165\163\145\040\157 -\156\154\171\061\037\060\035\006\003\125\004\013\023\026\126\145 -\162\151\123\151\147\156\040\124\162\165\163\164\040\116\145\164 -\167\157\162\153 +\060\201\264\061\024\060\022\006\003\125\004\012\023\013\105\156 +\164\162\165\163\164\056\156\145\164\061\100\060\076\006\003\125 +\004\013\024\067\167\167\167\056\145\156\164\162\165\163\164\056 +\156\145\164\057\107\103\103\101\137\103\120\123\040\151\156\143 +\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151 +\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006 +\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105 +\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164 +\145\144\061\063\060\061\006\003\125\004\003\023\052\105\156\164 +\162\165\163\164\056\156\145\164\040\103\154\151\145\156\164\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\123\141\262\140\256\333\161\216\247\224\263\023\063\364 -\007\011 +\002\004\070\236\366\344 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\315\060\202\003\066\240\003\002\001\002\002\020\123 -\141\262\140\256\333\161\216\247\224\263\023\063\364\007\011\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 -\301\061\013\060\011\006\003\125\004\006\023\002\125\123\061\027 -\060\025\006\003\125\004\012\023\016\126\145\162\151\123\151\147 -\156\054\040\111\156\143\056\061\074\060\072\006\003\125\004\013 -\023\063\103\154\141\163\163\040\063\040\120\165\142\154\151\143 -\040\120\162\151\155\141\162\171\040\103\145\162\164\151\146\151 +\060\202\004\203\060\202\003\354\240\003\002\001\002\002\004\070 +\236\366\344\060\015\006\011\052\206\110\206\367\015\001\001\004 +\005\000\060\201\264\061\024\060\022\006\003\125\004\012\023\013 +\105\156\164\162\165\163\164\056\156\145\164\061\100\060\076\006 +\003\125\004\013\024\067\167\167\167\056\145\156\164\162\165\163 +\164\056\156\145\164\057\107\103\103\101\137\103\120\123\040\151 +\156\143\157\162\160\056\040\142\171\040\162\145\146\056\040\050 +\154\151\155\151\164\163\040\154\151\141\142\056\051\061\045\060 +\043\006\003\125\004\013\023\034\050\143\051\040\062\060\060\060 +\040\105\156\164\162\165\163\164\056\156\145\164\040\114\151\155 +\151\164\145\144\061\063\060\061\006\003\125\004\003\023\052\105 +\156\164\162\165\163\164\056\156\145\164\040\103\154\151\145\156 +\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\060\036\027\015\060\060\060 +\062\060\067\061\066\061\066\064\060\132\027\015\062\060\060\062 +\060\067\061\066\064\066\064\060\132\060\201\264\061\024\060\022 +\006\003\125\004\012\023\013\105\156\164\162\165\163\164\056\156 +\145\164\061\100\060\076\006\003\125\004\013\024\067\167\167\167 +\056\145\156\164\162\165\163\164\056\156\145\164\057\107\103\103 +\101\137\103\120\123\040\151\156\143\157\162\160\056\040\142\171 +\040\162\145\146\056\040\050\154\151\155\151\164\163\040\154\151 +\141\142\056\051\061\045\060\043\006\003\125\004\013\023\034\050 +\143\051\040\062\060\060\060\040\105\156\164\162\165\163\164\056 +\156\145\164\040\114\151\155\151\164\145\144\061\063\060\061\006 +\003\125\004\003\023\052\105\156\164\162\165\163\164\056\156\145 +\164\040\103\154\151\145\156\164\040\103\145\162\164\151\146\151 \143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\040\055\040\107\062\061\072\060\070\006\003\125\004\013\023\061 -\050\143\051\040\061\071\071\070\040\126\145\162\151\123\151\147 -\156\054\040\111\156\143\056\040\055\040\106\157\162\040\141\165 -\164\150\157\162\151\172\145\144\040\165\163\145\040\157\156\154 -\171\061\037\060\035\006\003\125\004\013\023\026\126\145\162\151 -\123\151\147\156\040\124\162\165\163\164\040\116\145\164\167\157 -\162\153\060\036\027\015\060\060\060\071\062\066\060\060\060\060 -\060\060\132\027\015\061\060\060\071\062\065\062\063\065\071\065 -\071\132\060\201\245\061\027\060\025\006\003\125\004\012\023\016 -\126\145\162\151\123\151\147\156\054\040\111\156\143\056\061\037 -\060\035\006\003\125\004\013\023\026\126\145\162\151\123\151\147 -\156\040\124\162\165\163\164\040\116\145\164\167\157\162\153\061 -\073\060\071\006\003\125\004\013\023\062\124\145\162\155\163\040 -\157\146\040\165\163\145\040\141\164\040\150\164\164\160\163\072 -\057\057\167\167\167\056\166\145\162\151\163\151\147\156\056\143 -\157\155\057\162\160\141\040\050\143\051\060\060\061\054\060\052 -\006\003\125\004\003\023\043\126\145\162\151\123\151\147\156\040 -\124\151\155\145\040\123\164\141\155\160\151\156\147\040\101\165 -\164\150\157\162\151\164\171\040\103\101\060\201\237\060\015\006 -\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215\000 -\060\201\211\002\201\201\000\322\031\235\147\302\000\041\131\142 -\316\264\011\042\104\151\212\370\045\132\333\355\015\267\066\176 -\116\340\273\224\076\220\045\207\302\141\107\051\331\275\124\270 -\143\314\054\175\151\264\063\066\364\067\007\232\301\335\100\124 -\374\340\170\235\240\223\271\011\075\043\121\177\104\302\024\164 -\333\012\276\313\311\060\064\100\230\076\320\327\045\020\201\224 -\275\007\117\234\326\124\047\337\056\250\277\313\220\214\215\165 -\113\274\342\350\104\207\315\346\101\012\045\156\350\364\044\002 -\305\122\017\156\354\230\165\002\003\001\000\001\243\201\337\060 -\201\334\060\017\006\003\125\035\023\004\010\060\006\001\001\377 -\002\001\000\060\105\006\003\125\035\040\004\076\060\074\060\072 -\006\014\140\206\110\001\206\370\105\001\007\027\001\003\060\052 -\060\050\006\010\053\006\001\005\005\007\002\001\026\034\150\164 -\164\160\163\072\057\057\167\167\167\056\166\145\162\151\163\151 -\147\156\056\143\157\155\057\162\160\141\060\061\006\003\125\035 -\037\004\052\060\050\060\046\240\044\240\042\206\040\150\164\164 -\160\072\057\057\143\162\154\056\166\145\162\151\163\151\147\156 -\056\143\157\155\057\160\143\141\063\056\143\162\154\060\013\006 -\003\125\035\017\004\004\003\002\001\006\060\102\006\010\053\006 -\001\005\005\007\001\001\004\066\060\064\060\062\006\010\053\006 -\001\005\005\007\060\001\246\046\026\044\150\164\164\160\072\057 -\057\157\143\163\160\056\166\145\162\151\163\151\147\156\056\143 -\157\155\057\157\143\163\160\057\163\164\141\164\165\163\060\015 -\006\011\052\206\110\206\367\015\001\001\005\005\000\003\201\201 -\000\202\160\150\225\337\266\015\302\001\160\031\112\322\124\126 -\036\254\362\105\114\207\270\365\065\353\170\113\005\251\310\235 -\073\031\041\056\160\064\112\242\365\211\340\025\165\105\347\050 -\067\000\064\047\051\350\067\113\362\357\104\227\153\027\121\032 -\303\126\235\074\032\212\366\112\106\106\067\214\372\313\365\144 -\132\070\150\056\034\303\357\160\316\270\106\006\026\277\367\176 -\347\265\250\076\105\254\251\045\165\042\173\157\077\260\234\224 -\347\307\163\253\254\037\356\045\233\300\026\355\267\312\133\360 -\024 +\060\201\237\060\015\006\011\052\206\110\206\367\015\001\001\001 +\005\000\003\201\215\000\060\201\211\002\201\201\000\223\164\264 +\266\344\305\113\326\241\150\177\142\325\354\367\121\127\263\162 +\112\230\365\320\211\311\255\143\315\115\065\121\152\204\324\255 +\311\150\171\157\270\353\021\333\207\256\134\044\121\023\361\124 +\045\204\257\051\053\237\343\200\342\331\313\335\306\105\111\064 +\210\220\136\001\227\357\352\123\246\335\374\301\336\113\052\045 +\344\351\065\372\125\005\006\345\211\172\352\244\021\127\073\374 +\174\075\066\315\147\065\155\244\251\045\131\275\146\365\371\047 +\344\225\147\326\077\222\200\136\362\064\175\053\205\002\003\001 +\000\001\243\202\001\236\060\202\001\232\060\021\006\011\140\206 +\110\001\206\370\102\001\001\004\004\003\002\000\007\060\201\335 +\006\003\125\035\037\004\201\325\060\201\322\060\201\317\240\201 +\314\240\201\311\244\201\306\060\201\303\061\024\060\022\006\003 +\125\004\012\023\013\105\156\164\162\165\163\164\056\156\145\164 +\061\100\060\076\006\003\125\004\013\024\067\167\167\167\056\145 +\156\164\162\165\163\164\056\156\145\164\057\107\103\103\101\137 +\103\120\123\040\151\156\143\157\162\160\056\040\142\171\040\162 +\145\146\056\040\050\154\151\155\151\164\163\040\154\151\141\142 +\056\051\061\045\060\043\006\003\125\004\013\023\034\050\143\051 +\040\062\060\060\060\040\105\156\164\162\165\163\164\056\156\145 +\164\040\114\151\155\151\164\145\144\061\063\060\061\006\003\125 +\004\003\023\052\105\156\164\162\165\163\164\056\156\145\164\040 +\103\154\151\145\156\164\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\015 +\060\013\006\003\125\004\003\023\004\103\122\114\061\060\053\006 +\003\125\035\020\004\044\060\042\200\017\062\060\060\060\060\062 +\060\067\061\066\061\066\064\060\132\201\017\062\060\062\060\060 +\062\060\067\061\066\064\066\064\060\132\060\013\006\003\125\035 +\017\004\004\003\002\001\006\060\037\006\003\125\035\043\004\030 +\060\026\200\024\204\213\164\375\305\215\300\377\047\155\040\067 +\105\174\376\055\316\272\323\175\060\035\006\003\125\035\016\004 +\026\004\024\204\213\164\375\305\215\300\377\047\155\040\067\105 +\174\376\055\316\272\323\175\060\014\006\003\125\035\023\004\005 +\060\003\001\001\377\060\035\006\011\052\206\110\206\366\175\007 +\101\000\004\020\060\016\033\010\126\065\056\060\072\064\056\060 +\003\002\004\220\060\015\006\011\052\206\110\206\367\015\001\001 +\004\005\000\003\201\201\000\116\157\065\200\073\321\212\365\016 +\247\040\313\055\145\125\320\222\364\347\204\265\006\046\203\022 +\204\013\254\073\262\104\356\275\317\100\333\040\016\272\156\024 +\352\060\340\073\142\174\177\213\153\174\112\247\325\065\074\276 +\250\134\352\113\273\223\216\200\146\253\017\051\375\115\055\277 +\032\233\012\220\305\253\332\321\263\206\324\057\044\122\134\172 +\155\306\362\376\345\115\032\060\214\220\362\272\327\112\076\103 +\176\324\310\120\032\207\370\117\201\307\166\013\204\072\162\235 +\316\145\146\227\256\046\136 END -# Trust for Certificate "Verisign Time Stamping Authority CA" +# Trust for Certificate "Entrust.net Global Secure Personal CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Verisign Time Stamping Authority CA" +CKA_LABEL UTF8 "Entrust.net Global Secure Personal CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\246\017\064\310\142\154\201\366\213\367\175\251\366\147\130\212 -\220\077\175\066 +\317\164\277\377\233\206\201\133\010\063\124\100\066\076\207\266 +\266\360\277\163 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\211\111\124\214\310\150\232\203\051\354\334\006\163\041\253\227 +\232\167\031\030\355\226\317\337\033\267\016\365\215\271\210\056 END CKA_ISSUER MULTILINE_OCTAL -\060\201\301\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\027\060\025\006\003\125\004\012\023\016\126\145\162\151\123 -\151\147\156\054\040\111\156\143\056\061\074\060\072\006\003\125 -\004\013\023\063\103\154\141\163\163\040\063\040\120\165\142\154 -\151\143\040\120\162\151\155\141\162\171\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\040\055\040\107\062\061\072\060\070\006\003\125\004\013 -\023\061\050\143\051\040\061\071\071\070\040\126\145\162\151\123 -\151\147\156\054\040\111\156\143\056\040\055\040\106\157\162\040 -\141\165\164\150\157\162\151\172\145\144\040\165\163\145\040\157 -\156\154\171\061\037\060\035\006\003\125\004\013\023\026\126\145 -\162\151\123\151\147\156\040\124\162\165\163\164\040\116\145\164 -\167\157\162\153 +\060\201\264\061\024\060\022\006\003\125\004\012\023\013\105\156 +\164\162\165\163\164\056\156\145\164\061\100\060\076\006\003\125 +\004\013\024\067\167\167\167\056\145\156\164\162\165\163\164\056 +\156\145\164\057\107\103\103\101\137\103\120\123\040\151\156\143 +\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151 +\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006 +\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105 +\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164 +\145\144\061\063\060\061\006\003\125\004\003\023\052\105\156\164 +\162\165\163\164\056\156\145\164\040\103\154\151\145\156\164\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\123\141\262\140\256\333\161\216\247\224\263\023\063\364 -\007\011 +\002\004\070\236\366\344 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -6098,112 +6120,132 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Thawte Time Stamping CA" +# Certificate "AOL Time Warner Root Certification Authority 1" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Thawte Time Stamping CA" +CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 1" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101 -\061\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145 -\162\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007 -\023\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060 -\015\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035 -\060\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060 -\035\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124 -\151\155\145\163\164\141\155\160\151\156\147\040\103\101 +\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 +\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 +\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 +\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 +\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\040\061 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101 -\061\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145 -\162\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007 -\023\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060 -\015\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035 -\060\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060 -\035\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124 -\151\155\145\163\164\141\155\160\151\156\147\040\103\101 +\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 +\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 +\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 +\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 +\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\040\061 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\002\241\060\202\002\012\240\003\002\001\002\002\001\000 -\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 -\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101\061 -\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145\162 -\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007\023 -\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060\015 -\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035\060 -\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060\035 -\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124\151 -\155\145\163\164\141\155\160\151\156\147\040\103\101\060\036\027 -\015\071\067\060\061\060\061\060\060\060\060\060\060\132\027\015 -\062\060\061\062\063\061\062\063\065\071\065\071\132\060\201\213 -\061\013\060\011\006\003\125\004\006\023\002\132\101\061\025\060 -\023\006\003\125\004\010\023\014\127\145\163\164\145\162\156\040 -\103\141\160\145\061\024\060\022\006\003\125\004\007\023\013\104 -\165\162\142\141\156\166\151\154\154\145\061\017\060\015\006\003 -\125\004\012\023\006\124\150\141\167\164\145\061\035\060\033\006 -\003\125\004\013\023\024\124\150\141\167\164\145\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\061\037\060\035\006\003 -\125\004\003\023\026\124\150\141\167\164\145\040\124\151\155\145 -\163\164\141\155\160\151\156\147\040\103\101\060\201\237\060\015 -\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215 -\000\060\201\211\002\201\201\000\326\053\130\170\141\105\206\123 -\352\064\173\121\234\355\260\346\056\030\016\376\340\137\250\047 -\323\264\311\340\174\131\116\026\016\163\124\140\301\177\366\237 -\056\351\072\205\044\025\074\333\107\004\143\303\236\304\224\032 -\132\337\114\172\363\331\103\035\074\020\172\171\045\333\220\376 -\360\121\347\060\326\101\000\375\237\050\337\171\276\224\273\235 -\266\024\343\043\205\327\251\101\340\114\244\171\260\053\032\213 -\362\370\073\212\076\105\254\161\222\000\264\220\101\230\373\137 -\355\372\267\056\212\370\210\067\002\003\001\000\001\243\023\060 -\021\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001 -\001\377\060\015\006\011\052\206\110\206\367\015\001\001\004\005 -\000\003\201\201\000\147\333\342\302\346\207\075\100\203\206\067 -\065\175\037\316\232\303\014\146\040\250\272\252\004\211\206\302 -\365\020\010\015\277\313\242\005\212\320\115\066\076\364\327\357 -\151\306\136\344\260\224\157\112\271\347\336\133\210\266\173\333 -\343\047\345\166\303\360\065\301\313\265\047\233\063\171\334\220 -\246\000\236\167\372\374\315\047\224\102\026\234\323\034\150\354 -\277\134\335\345\251\173\020\012\062\164\124\023\061\213\205\003 -\204\221\267\130\001\060\024\070\257\050\312\374\261\120\031\031 -\011\254\211\111\323 +\060\202\003\346\060\202\002\316\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124\151 +\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061\034 +\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143\141 +\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060\065 +\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145\040 +\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\061\060\036\027\015\060\062\060\065\062\071\060 +\066\060\060\060\060\132\027\015\063\067\061\061\062\060\061\065 +\060\063\060\060\132\060\201\203\061\013\060\011\006\003\125\004 +\006\023\002\125\123\061\035\060\033\006\003\125\004\012\023\024 +\101\117\114\040\124\151\155\145\040\127\141\162\156\145\162\040 +\111\156\143\056\061\034\060\032\006\003\125\004\013\023\023\101 +\155\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156 +\143\056\061\067\060\065\006\003\125\004\003\023\056\101\117\114 +\040\124\151\155\145\040\127\141\162\156\145\162\040\122\157\157 +\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\040\061\060\202\001\042\060 +\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202 +\001\017\000\060\202\001\012\002\202\001\001\000\231\336\217\303 +\045\243\151\064\350\005\367\164\271\277\132\227\031\271\057\224 +\322\223\345\055\211\312\204\174\077\020\103\033\214\213\174\204 +\130\370\044\174\110\317\052\375\300\025\331\030\176\204\032\027 +\323\333\236\327\312\344\331\327\252\130\121\207\360\360\213\110 +\116\342\302\304\131\151\060\142\266\060\242\214\013\021\231\141 +\065\155\176\357\305\261\031\006\040\022\216\102\341\337\017\226 +\020\122\250\317\234\137\225\024\330\257\073\165\013\061\040\037 +\104\057\242\142\101\263\273\030\041\333\312\161\074\214\354\266 +\271\015\237\357\121\357\115\173\022\362\013\014\341\254\100\217 +\167\177\260\312\170\161\014\135\026\161\160\242\327\302\072\205 +\315\016\232\304\340\000\260\325\045\352\334\053\344\224\055\070 +\234\211\101\127\144\050\145\031\034\266\104\264\310\061\153\216 +\001\173\166\131\045\177\025\034\204\010\174\163\145\040\012\241 +\004\056\032\062\250\232\040\261\234\054\041\131\347\373\317\356 +\160\055\010\312\143\076\054\233\223\031\152\244\302\227\377\267 +\206\127\210\205\154\236\025\026\053\115\054\263\002\003\001\000 +\001\243\143\060\141\060\017\006\003\125\035\023\001\001\377\004 +\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004 +\024\241\066\060\026\313\206\220\000\105\200\123\261\217\310\330 +\075\174\276\137\022\060\037\006\003\125\035\043\004\030\060\026 +\200\024\241\066\060\026\313\206\220\000\105\200\123\261\217\310 +\330\075\174\276\137\022\060\016\006\003\125\035\017\001\001\377 +\004\004\003\002\001\206\060\015\006\011\052\206\110\206\367\015 +\001\001\005\005\000\003\202\001\001\000\212\040\030\245\276\263 +\057\264\246\204\000\100\060\051\372\264\024\163\114\171\105\247 +\366\160\340\350\176\144\036\012\225\174\152\141\302\357\116\037 +\276\377\311\231\037\007\141\112\341\135\114\315\255\356\320\122 +\062\331\131\062\274\332\171\162\326\173\011\350\002\201\065\323 +\012\337\021\035\311\171\240\200\115\376\132\327\126\326\355\017 +\052\257\247\030\165\063\014\352\301\141\005\117\152\232\211\362 +\215\271\237\056\357\260\137\132\000\353\276\255\240\370\104\005 +\147\274\313\004\357\236\144\305\351\310\077\005\277\306\057\007 +\034\303\066\161\206\312\070\146\112\315\326\270\113\306\154\247 +\227\073\372\023\055\156\043\141\207\241\143\102\254\302\313\227 +\237\141\150\317\055\114\004\235\327\045\117\012\016\115\220\213 +\030\126\250\223\110\127\334\157\256\275\236\147\127\167\211\120 +\263\276\021\233\105\147\203\206\031\207\323\230\275\010\032\026 +\037\130\202\013\341\226\151\005\113\216\354\203\121\061\007\325 +\324\237\377\131\173\250\156\205\317\323\113\251\111\260\137\260 +\071\050\150\016\163\335\045\232\336\022 END -# Trust for Certificate "Thawte Time Stamping CA" +# Trust for Certificate "AOL Time Warner Root Certification Authority 1" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Thawte Time Stamping CA" +CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 1" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\276\066\244\126\057\262\356\005\333\263\323\043\043\255\364\105 -\010\116\326\126 +\164\124\123\134\044\243\247\130\040\176\076\076\323\044\370\026 +\373\041\026\111 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\177\146\172\161\323\353\151\170\040\232\121\024\235\203\332\040 +\347\172\334\261\037\156\006\037\164\154\131\026\047\303\113\300 END CKA_ISSUER MULTILINE_OCTAL -\060\201\213\061\013\060\011\006\003\125\004\006\023\002\132\101 -\061\025\060\023\006\003\125\004\010\023\014\127\145\163\164\145 -\162\156\040\103\141\160\145\061\024\060\022\006\003\125\004\007 -\023\013\104\165\162\142\141\156\166\151\154\154\145\061\017\060 -\015\006\003\125\004\012\023\006\124\150\141\167\164\145\061\035 -\060\033\006\003\125\004\013\023\024\124\150\141\167\164\145\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\061\037\060 -\035\006\003\125\004\003\023\026\124\150\141\167\164\145\040\124 -\151\155\145\163\164\141\155\160\151\156\147\040\103\101 +\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 +\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 +\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 +\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 +\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\040\061 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -6211,152 +6253,164 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Entrust.net Global Secure Server CA" +# Certificate "AOL Time Warner Root Certification Authority 2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Entrust.net Global Secure Server CA" +CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156 -\164\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125 -\004\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056 -\156\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157 -\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155 -\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003 -\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156 -\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145 -\144\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162 -\165\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123 -\145\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164 -\151\157\156\040\101\165\164\150\157\162\151\164\171 +\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 +\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 +\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 +\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 +\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\040\062 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156 -\164\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125 -\004\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056 -\156\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157 -\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155 -\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003 -\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156 -\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145 -\144\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162 -\165\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123 -\145\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164 -\151\157\156\040\101\165\164\150\157\162\151\164\171 +\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 +\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 +\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 +\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 +\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\070\233\021\074 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\225\060\202\003\376\240\003\002\001\002\002\004\070 -\233\021\074\060\015\006\011\052\206\110\206\367\015\001\001\004 -\005\000\060\201\272\061\024\060\022\006\003\125\004\012\023\013 -\105\156\164\162\165\163\164\056\156\145\164\061\077\060\075\006 -\003\125\004\013\024\066\167\167\167\056\145\156\164\162\165\163 -\164\056\156\145\164\057\123\123\114\137\103\120\123\040\151\156 -\143\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154 -\151\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043 -\006\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040 -\105\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151 -\164\145\144\061\072\060\070\006\003\125\004\003\023\061\105\156 -\164\162\165\163\164\056\156\145\164\040\123\145\143\165\162\145 -\040\123\145\162\166\145\162\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060 -\036\027\015\060\060\060\062\060\064\061\067\062\060\060\060\132 -\027\015\062\060\060\062\060\064\061\067\065\060\060\060\132\060 -\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156\164 -\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125\004 -\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056\156 -\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157\162 -\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155\151 -\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003\125 -\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156\164 -\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145\144 -\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162\165 -\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123\145 -\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\060\201\237\060 -\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201 -\215\000\060\201\211\002\201\201\000\307\301\137\116\161\361\316 -\360\140\206\017\322\130\177\323\063\227\055\027\242\165\060\265 -\226\144\046\057\150\303\104\253\250\165\346\000\147\064\127\236 -\145\307\042\233\163\346\323\335\010\016\067\125\252\045\106\201 -\154\275\376\250\366\165\127\127\214\220\154\112\303\076\213\113 -\103\012\311\021\126\232\232\047\042\231\317\125\236\141\331\002 -\342\174\266\174\070\007\334\343\177\117\232\271\003\101\200\266 -\165\147\023\013\237\350\127\066\310\135\000\066\336\146\024\332 -\156\166\037\117\067\214\202\023\211\002\003\001\000\001\243\202 -\001\244\060\202\001\240\060\021\006\011\140\206\110\001\206\370 -\102\001\001\004\004\003\002\000\007\060\201\343\006\003\125\035 -\037\004\201\333\060\201\330\060\201\325\240\201\322\240\201\317 -\244\201\314\060\201\311\061\024\060\022\006\003\125\004\012\023 -\013\105\156\164\162\165\163\164\056\156\145\164\061\077\060\075 -\006\003\125\004\013\024\066\167\167\167\056\145\156\164\162\165 -\163\164\056\156\145\164\057\123\123\114\137\103\120\123\040\151 -\156\143\157\162\160\056\040\142\171\040\162\145\146\056\040\050 -\154\151\155\151\164\163\040\154\151\141\142\056\051\061\045\060 -\043\006\003\125\004\013\023\034\050\143\051\040\062\060\060\060 -\040\105\156\164\162\165\163\164\056\156\145\164\040\114\151\155 -\151\164\145\144\061\072\060\070\006\003\125\004\003\023\061\105 -\156\164\162\165\163\164\056\156\145\164\040\123\145\143\165\162 -\145\040\123\145\162\166\145\162\040\103\145\162\164\151\146\151 -\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\061\015\060\013\006\003\125\004\003\023\004\103\122\114\061\060 -\053\006\003\125\035\020\004\044\060\042\200\017\062\060\060\060 -\060\062\060\064\061\067\062\060\060\060\132\201\017\062\060\062 -\060\060\062\060\064\061\067\065\060\060\060\132\060\013\006\003 -\125\035\017\004\004\003\002\001\006\060\037\006\003\125\035\043 -\004\030\060\026\200\024\313\154\300\153\343\273\076\313\374\042 -\234\376\373\213\222\234\260\362\156\042\060\035\006\003\125\035 -\016\004\026\004\024\313\154\300\153\343\273\076\313\374\042\234 -\376\373\213\222\234\260\362\156\042\060\014\006\003\125\035\023 -\004\005\060\003\001\001\377\060\035\006\011\052\206\110\206\366 -\175\007\101\000\004\020\060\016\033\010\126\065\056\060\072\064 -\056\060\003\002\004\220\060\015\006\011\052\206\110\206\367\015 -\001\001\004\005\000\003\201\201\000\142\333\201\221\316\310\232 -\167\102\057\354\275\047\243\123\017\120\033\352\116\222\360\251 -\257\251\240\272\110\141\313\357\311\006\357\037\325\364\356\337 -\126\055\346\312\152\031\163\252\123\276\222\263\120\002\266\205 -\046\162\143\330\165\120\142\165\024\267\263\120\032\077\312\021 -\000\013\205\105\151\155\266\245\256\121\341\112\334\202\077\154 -\214\064\262\167\153\331\002\366\177\016\352\145\004\361\315\124 -\312\272\311\314\340\204\367\310\076\021\227\323\140\011\030\274 -\005\377\154\211\063\360\354\025\017 -END - -# Trust for Certificate "Entrust.net Global Secure Server CA" -CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Entrust.net Global Secure Server CA" -CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\211\071\127\156\027\215\367\005\170\017\314\136\310\117\204\366 -\045\072\110\223 -END -CKA_CERT_MD5_HASH MULTILINE_OCTAL -\235\146\152\314\377\325\365\103\264\277\214\026\321\053\250\231 -END -CKA_ISSUER MULTILINE_OCTAL -\060\201\272\061\024\060\022\006\003\125\004\012\023\013\105\156 -\164\162\165\163\164\056\156\145\164\061\077\060\075\006\003\125 -\004\013\024\066\167\167\167\056\145\156\164\162\165\163\164\056 -\156\145\164\057\123\123\114\137\103\120\123\040\151\156\143\157 -\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151\155 -\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006\003 -\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105\156 -\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164\145 -\144\061\072\060\070\006\003\125\004\003\023\061\105\156\164\162 -\165\163\164\056\156\145\164\040\123\145\143\165\162\145\040\123 -\145\162\166\145\162\040\103\145\162\164\151\146\151\143\141\164 -\151\157\156\040\101\165\164\150\157\162\151\164\171 +\060\202\005\346\060\202\003\316\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124\151 +\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061\034 +\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143\141 +\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060\065 +\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145\040 +\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\062\060\036\027\015\060\062\060\065\062\071\060 +\066\060\060\060\060\132\027\015\063\067\060\071\062\070\062\063 +\064\063\060\060\132\060\201\203\061\013\060\011\006\003\125\004 +\006\023\002\125\123\061\035\060\033\006\003\125\004\012\023\024 +\101\117\114\040\124\151\155\145\040\127\141\162\156\145\162\040 +\111\156\143\056\061\034\060\032\006\003\125\004\013\023\023\101 +\155\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156 +\143\056\061\067\060\065\006\003\125\004\003\023\056\101\117\114 +\040\124\151\155\145\040\127\141\162\156\145\162\040\122\157\157 +\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\040\062\060\202\002\042\060 +\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202 +\002\017\000\060\202\002\012\002\202\002\001\000\264\067\132\010 +\026\231\024\350\125\261\033\044\153\374\307\213\346\207\251\211 +\356\213\231\315\117\100\206\244\266\115\311\331\261\334\074\115 +\015\205\114\025\154\106\213\122\170\237\370\043\375\147\365\044 +\072\150\135\320\367\144\141\101\124\243\213\245\010\322\051\133 +\233\140\117\046\203\321\143\022\126\111\166\244\026\302\245\235 +\105\254\213\204\225\250\026\261\354\237\352\044\032\357\271\127 +\134\232\044\041\054\115\016\161\037\246\254\135\105\164\003\230 +\304\124\214\026\112\101\167\206\225\165\014\107\001\146\140\374 +\025\361\017\352\365\024\170\307\016\327\156\201\034\136\277\136 +\347\072\052\330\227\027\060\174\000\255\010\235\063\257\270\231 +\141\200\213\250\225\176\024\334\022\154\244\320\330\357\100\111 +\002\066\371\156\251\326\035\226\126\004\262\263\055\026\126\206 +\217\331\040\127\200\315\147\020\155\260\114\360\332\106\266\352 +\045\056\106\257\215\260\205\070\064\213\024\046\202\053\254\256 +\231\013\216\024\327\122\275\236\151\303\206\002\013\352\166\165 +\061\011\316\063\031\041\205\103\346\211\055\237\045\067\147\361 +\043\152\322\000\155\227\371\237\347\051\312\335\037\327\006\352 +\270\311\271\011\041\237\310\077\006\305\322\351\022\106\000\116 +\173\010\353\102\075\053\110\156\235\147\335\113\002\344\104\363 +\223\031\245\047\316\151\172\276\147\323\374\120\244\054\253\303 +\153\271\343\200\114\317\005\141\113\053\334\033\271\246\322\320 +\252\365\053\163\373\316\220\065\237\014\122\034\277\134\041\141 +\021\133\025\113\251\044\121\374\244\134\367\027\235\260\322\372 +\007\351\217\126\344\032\214\150\212\004\323\174\132\343\236\242 +\241\312\161\133\242\324\240\347\051\205\135\003\150\052\117\322 +\006\327\075\371\303\003\057\077\145\371\147\036\107\100\323\143 +\017\343\325\216\371\205\253\227\114\263\327\046\353\226\012\224 +\336\205\066\234\310\177\201\011\002\111\052\016\365\144\062\014 +\202\321\272\152\202\033\263\113\164\021\363\214\167\326\237\277 +\334\067\244\247\125\004\057\324\061\350\323\106\271\003\174\332 +\022\116\131\144\267\121\061\061\120\240\312\034\047\331\020\056 +\255\326\275\020\146\053\303\260\042\112\022\133\002\003\001\000 +\001\243\143\060\141\060\017\006\003\125\035\023\001\001\377\004 +\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004 +\024\117\151\155\003\176\235\237\007\030\103\274\267\020\116\325 +\277\251\304\040\050\060\037\006\003\125\035\043\004\030\060\026 +\200\024\117\151\155\003\176\235\237\007\030\103\274\267\020\116 +\325\277\251\304\040\050\060\016\006\003\125\035\017\001\001\377 +\004\004\003\002\001\206\060\015\006\011\052\206\110\206\367\015 +\001\001\005\005\000\003\202\002\001\000\073\363\256\312\350\056 +\207\205\373\145\131\347\255\021\024\245\127\274\130\237\044\022 +\127\273\373\077\064\332\356\255\172\052\064\162\160\061\153\307 +\031\230\200\311\202\336\067\167\136\124\213\216\362\352\147\117 +\311\164\204\221\126\011\325\345\172\232\201\266\201\302\255\066 +\344\361\124\021\123\363\064\105\001\046\310\345\032\274\064\104 +\041\336\255\045\374\166\026\167\041\220\200\230\127\235\116\352 +\354\057\252\074\024\173\127\301\176\030\024\147\356\044\306\275 +\272\025\260\322\030\275\267\125\201\254\123\300\350\335\151\022 +\023\102\267\002\265\005\101\312\171\120\156\202\016\161\162\223 +\106\350\235\015\135\275\256\316\051\255\143\325\125\026\200\060 +\047\377\166\272\367\270\326\112\343\331\265\371\122\320\116\100 +\251\307\345\302\062\307\252\166\044\341\153\005\120\353\305\277 +\012\124\345\271\102\074\044\373\267\007\234\060\237\171\132\346 +\340\100\122\025\364\374\252\364\126\371\104\227\207\355\016\145 +\162\136\276\046\373\115\244\055\010\007\336\330\134\240\334\201 +\063\231\030\045\021\167\247\353\375\130\011\054\231\153\033\212 +\363\122\077\032\115\110\140\361\240\366\063\002\123\213\355\045 +\011\270\015\055\355\227\163\354\327\226\037\216\140\016\332\020 +\233\057\030\044\366\246\115\012\371\073\313\165\302\314\057\316 +\044\151\311\012\042\216\131\247\367\202\014\327\327\153\065\234 +\103\000\152\304\225\147\272\234\105\313\270\016\067\367\334\116 +\001\117\276\012\266\003\323\255\212\105\367\332\047\115\051\261 +\110\337\344\021\344\226\106\275\154\002\076\326\121\310\225\027 +\001\025\251\362\252\252\362\277\057\145\033\157\320\271\032\223 +\365\216\065\304\200\207\076\224\057\146\344\351\250\377\101\234 +\160\052\117\052\071\030\225\036\176\373\141\001\074\121\010\056 +\050\030\244\026\017\061\375\072\154\043\223\040\166\341\375\007 +\205\321\133\077\322\034\163\062\335\372\271\370\214\317\002\207 +\172\232\226\344\355\117\211\215\123\103\253\016\023\300\001\025 +\264\171\070\333\374\156\075\236\121\266\270\023\213\147\317\371 +\174\331\042\035\366\135\305\034\001\057\230\350\172\044\030\274 +\204\327\372\334\162\133\367\301\072\150 +END + +# Trust for Certificate "AOL Time Warner Root Certification Authority 2" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 2" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\374\041\232\166\021\057\166\301\305\010\203\074\232\057\242\272 +\204\254\010\172 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\001\132\231\303\326\117\251\113\074\073\261\243\253\047\114\277 +END +CKA_ISSUER MULTILINE_OCTAL +\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 +\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 +\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 +\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 +\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\070\233\021\074 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -6364,151 +6418,150 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Entrust.net Global Secure Personal CA" +# Certificate "beTRUSTed Root CA-Baltimore Implementation" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Entrust.net Global Secure Personal CA" +CKA_LABEL UTF8 "beTRUSTed Root CA-Baltimore Implementation" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\264\061\024\060\022\006\003\125\004\012\023\013\105\156 -\164\162\165\163\164\056\156\145\164\061\100\060\076\006\003\125 -\004\013\024\067\167\167\167\056\145\156\164\162\165\163\164\056 -\156\145\164\057\107\103\103\101\137\103\120\123\040\151\156\143 -\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151 -\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006 -\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105 -\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164 -\145\144\061\063\060\061\006\003\125\004\003\023\052\105\156\164 -\162\165\163\164\056\156\145\164\040\103\154\151\145\156\164\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171 +\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\055 +\102\141\154\164\151\155\157\162\145\040\111\155\160\154\145\155 +\145\156\164\141\164\151\157\156 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\264\061\024\060\022\006\003\125\004\012\023\013\105\156 -\164\162\165\163\164\056\156\145\164\061\100\060\076\006\003\125 -\004\013\024\067\167\167\167\056\145\156\164\162\165\163\164\056 -\156\145\164\057\107\103\103\101\137\103\120\123\040\151\156\143 -\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151 -\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006 -\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105 -\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164 -\145\144\061\063\060\061\006\003\125\004\003\023\052\105\156\164 -\162\165\163\164\056\156\145\164\040\103\154\151\145\156\164\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171 +\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\055 +\102\141\154\164\151\155\157\162\145\040\111\155\160\154\145\155 +\145\156\164\141\164\151\157\156 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\070\236\366\344 +\002\004\074\265\075\106 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\203\060\202\003\354\240\003\002\001\002\002\004\070 -\236\366\344\060\015\006\011\052\206\110\206\367\015\001\001\004 -\005\000\060\201\264\061\024\060\022\006\003\125\004\012\023\013 -\105\156\164\162\165\163\164\056\156\145\164\061\100\060\076\006 -\003\125\004\013\024\067\167\167\167\056\145\156\164\162\165\163 -\164\056\156\145\164\057\107\103\103\101\137\103\120\123\040\151 -\156\143\157\162\160\056\040\142\171\040\162\145\146\056\040\050 -\154\151\155\151\164\163\040\154\151\141\142\056\051\061\045\060 -\043\006\003\125\004\013\023\034\050\143\051\040\062\060\060\060 -\040\105\156\164\162\165\163\164\056\156\145\164\040\114\151\155 -\151\164\145\144\061\063\060\061\006\003\125\004\003\023\052\105 -\156\164\162\165\163\164\056\156\145\164\040\103\154\151\145\156 -\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\101\165\164\150\157\162\151\164\171\060\036\027\015\060\060\060 -\062\060\067\061\066\061\066\064\060\132\027\015\062\060\060\062 -\060\067\061\066\064\066\064\060\132\060\201\264\061\024\060\022 -\006\003\125\004\012\023\013\105\156\164\162\165\163\164\056\156 -\145\164\061\100\060\076\006\003\125\004\013\024\067\167\167\167 -\056\145\156\164\162\165\163\164\056\156\145\164\057\107\103\103 -\101\137\103\120\123\040\151\156\143\157\162\160\056\040\142\171 -\040\162\145\146\056\040\050\154\151\155\151\164\163\040\154\151 -\141\142\056\051\061\045\060\043\006\003\125\004\013\023\034\050 -\143\051\040\062\060\060\060\040\105\156\164\162\165\163\164\056 -\156\145\164\040\114\151\155\151\164\145\144\061\063\060\061\006 -\003\125\004\003\023\052\105\156\164\162\165\163\164\056\156\145 -\164\040\103\154\151\145\156\164\040\103\145\162\164\151\146\151 -\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\060\201\237\060\015\006\011\052\206\110\206\367\015\001\001\001 -\005\000\003\201\215\000\060\201\211\002\201\201\000\223\164\264 -\266\344\305\113\326\241\150\177\142\325\354\367\121\127\263\162 -\112\230\365\320\211\311\255\143\315\115\065\121\152\204\324\255 -\311\150\171\157\270\353\021\333\207\256\134\044\121\023\361\124 -\045\204\257\051\053\237\343\200\342\331\313\335\306\105\111\064 -\210\220\136\001\227\357\352\123\246\335\374\301\336\113\052\045 -\344\351\065\372\125\005\006\345\211\172\352\244\021\127\073\374 -\174\075\066\315\147\065\155\244\251\045\131\275\146\365\371\047 -\344\225\147\326\077\222\200\136\362\064\175\053\205\002\003\001 -\000\001\243\202\001\236\060\202\001\232\060\021\006\011\140\206 -\110\001\206\370\102\001\001\004\004\003\002\000\007\060\201\335 -\006\003\125\035\037\004\201\325\060\201\322\060\201\317\240\201 -\314\240\201\311\244\201\306\060\201\303\061\024\060\022\006\003 -\125\004\012\023\013\105\156\164\162\165\163\164\056\156\145\164 -\061\100\060\076\006\003\125\004\013\024\067\167\167\167\056\145 -\156\164\162\165\163\164\056\156\145\164\057\107\103\103\101\137 -\103\120\123\040\151\156\143\157\162\160\056\040\142\171\040\162 -\145\146\056\040\050\154\151\155\151\164\163\040\154\151\141\142 -\056\051\061\045\060\043\006\003\125\004\013\023\034\050\143\051 -\040\062\060\060\060\040\105\156\164\162\165\163\164\056\156\145 -\164\040\114\151\155\151\164\145\144\061\063\060\061\006\003\125 -\004\003\023\052\105\156\164\162\165\163\164\056\156\145\164\040 -\103\154\151\145\156\164\040\103\145\162\164\151\146\151\143\141 -\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\015 -\060\013\006\003\125\004\003\023\004\103\122\114\061\060\053\006 -\003\125\035\020\004\044\060\042\200\017\062\060\060\060\060\062 -\060\067\061\066\061\066\064\060\132\201\017\062\060\062\060\060 -\062\060\067\061\066\064\066\064\060\132\060\013\006\003\125\035 -\017\004\004\003\002\001\006\060\037\006\003\125\035\043\004\030 -\060\026\200\024\204\213\164\375\305\215\300\377\047\155\040\067 -\105\174\376\055\316\272\323\175\060\035\006\003\125\035\016\004 -\026\004\024\204\213\164\375\305\215\300\377\047\155\040\067\105 -\174\376\055\316\272\323\175\060\014\006\003\125\035\023\004\005 -\060\003\001\001\377\060\035\006\011\052\206\110\206\366\175\007 -\101\000\004\020\060\016\033\010\126\065\056\060\072\064\056\060 -\003\002\004\220\060\015\006\011\052\206\110\206\367\015\001\001 -\004\005\000\003\201\201\000\116\157\065\200\073\321\212\365\016 -\247\040\313\055\145\125\320\222\364\347\204\265\006\046\203\022 -\204\013\254\073\262\104\356\275\317\100\333\040\016\272\156\024 -\352\060\340\073\142\174\177\213\153\174\112\247\325\065\074\276 -\250\134\352\113\273\223\216\200\146\253\017\051\375\115\055\277 -\032\233\012\220\305\253\332\321\263\206\324\057\044\122\134\172 -\155\306\362\376\345\115\032\060\214\220\362\272\327\112\076\103 -\176\324\310\120\032\207\370\117\201\307\166\013\204\072\162\235 -\316\145\146\227\256\046\136 -END - -# Trust for Certificate "Entrust.net Global Secure Personal CA" -CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE +\060\202\005\152\060\202\004\122\240\003\002\001\002\002\004\074 +\265\075\106\060\015\006\011\052\206\110\206\367\015\001\001\005 +\005\000\060\146\061\022\060\020\006\003\125\004\012\023\011\142 +\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125\004 +\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157\157 +\164\040\103\101\163\061\063\060\061\006\003\125\004\003\023\052 +\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103 +\101\055\102\141\154\164\151\155\157\162\145\040\111\155\160\154 +\145\155\145\156\164\141\164\151\157\156\060\036\027\015\060\062 +\060\064\061\061\060\067\063\070\065\061\132\027\015\062\062\060 +\064\061\061\060\067\063\070\065\061\132\060\146\061\022\060\020 +\006\003\125\004\012\023\011\142\145\124\122\125\123\124\145\144 +\061\033\060\031\006\003\125\004\013\023\022\142\145\124\122\125 +\123\124\145\144\040\122\157\157\164\040\103\101\163\061\063\060 +\061\006\003\125\004\003\023\052\142\145\124\122\125\123\124\145 +\144\040\122\157\157\164\040\103\101\055\102\141\154\164\151\155 +\157\162\145\040\111\155\160\154\145\155\145\156\164\141\164\151 +\157\156\060\202\001\042\060\015\006\011\052\206\110\206\367\015 +\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202 +\001\001\000\274\176\304\071\234\214\343\326\034\206\377\312\142 +\255\340\177\060\105\172\216\032\263\270\307\371\321\066\377\042 +\363\116\152\137\204\020\373\146\201\303\224\171\061\322\221\341 +\167\216\030\052\303\024\336\121\365\117\243\053\274\030\026\342 +\265\335\171\336\042\370\202\176\313\201\037\375\047\054\217\372 +\227\144\042\216\370\377\141\243\234\033\036\222\217\300\250\011 +\337\011\021\354\267\175\061\232\032\352\203\041\006\074\237\272 +\134\377\224\352\152\270\303\153\125\064\117\075\062\037\335\201 +\024\340\304\074\315\235\060\370\060\251\227\323\356\314\243\320 +\037\137\034\023\201\324\030\253\224\321\143\303\236\177\065\222 +\236\137\104\352\354\364\042\134\267\350\075\175\244\371\211\251 +\221\262\052\331\353\063\207\356\245\375\343\332\314\210\346\211 +\046\156\307\053\202\320\136\235\131\333\024\354\221\203\005\303 +\136\016\306\052\320\004\335\161\075\040\116\130\047\374\123\373 +\170\170\031\024\262\374\220\122\211\070\142\140\007\264\240\354 +\254\153\120\326\375\271\050\153\357\122\055\072\262\377\361\001 +\100\254\067\002\003\001\000\001\243\202\002\036\060\202\002\032 +\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001 +\377\060\202\001\265\006\003\125\035\040\004\202\001\254\060\202 +\001\250\060\202\001\244\006\017\053\006\001\004\001\261\076\000 +\000\001\011\050\203\221\061\060\202\001\217\060\202\001\110\006 +\010\053\006\001\005\005\007\002\002\060\202\001\072\032\202\001 +\066\122\145\154\151\141\156\143\145\040\157\156\040\157\162\040 +\165\163\145\040\157\146\040\164\150\151\163\040\103\145\162\164 +\151\146\151\143\141\164\145\040\143\162\145\141\164\145\163\040 +\141\156\040\141\143\153\156\157\167\154\145\144\147\155\145\156 +\164\040\141\156\144\040\141\143\143\145\160\164\141\156\143\145 +\040\157\146\040\164\150\145\040\164\150\145\156\040\141\160\160 +\154\151\143\141\142\154\145\040\163\164\141\156\144\141\162\144 +\040\164\145\162\155\163\040\141\156\144\040\143\157\156\144\151 +\164\151\157\156\163\040\157\146\040\165\163\145\054\040\164\150 +\145\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\120\162\141\143\164\151\143\145\040\123\164\141\164\145\155\145 +\156\164\040\141\156\144\040\164\150\145\040\122\145\154\171\151 +\156\147\040\120\141\162\164\171\040\101\147\162\145\145\155\145 +\156\164\054\040\167\150\151\143\150\040\143\141\156\040\142\145 +\040\146\157\165\156\144\040\141\164\040\164\150\145\040\142\145 +\124\122\125\123\124\145\144\040\167\145\142\040\163\151\164\145 +\054\040\150\164\164\160\072\057\057\167\167\167\056\142\145\164 +\162\165\163\164\145\144\056\143\157\155\057\160\162\157\144\165 +\143\164\163\137\163\145\162\166\151\143\145\163\057\151\156\144 +\145\170\056\150\164\155\154\060\101\006\010\053\006\001\005\005 +\007\002\001\026\065\150\164\164\160\072\057\057\167\167\167\056 +\142\145\164\162\165\163\164\145\144\056\143\157\155\057\160\162 +\157\144\165\143\164\163\137\163\145\162\166\151\143\145\163\057 +\151\156\144\145\170\056\150\164\155\154\060\035\006\003\125\035 +\016\004\026\004\024\105\075\303\251\321\334\077\044\126\230\034 +\163\030\210\152\377\203\107\355\266\060\037\006\003\125\035\043 +\004\030\060\026\200\024\105\075\303\251\321\334\077\044\126\230 +\034\163\030\210\152\377\203\107\355\266\060\016\006\003\125\035 +\017\001\001\377\004\004\003\002\001\006\060\015\006\011\052\206 +\110\206\367\015\001\001\005\005\000\003\202\001\001\000\111\222 +\274\243\356\254\275\372\015\311\213\171\206\034\043\166\260\200 +\131\167\374\332\177\264\113\337\303\144\113\152\116\016\255\362 +\175\131\167\005\255\012\211\163\260\372\274\313\334\215\000\210 +\217\246\240\262\352\254\122\047\277\241\110\174\227\020\173\272 +\355\023\035\232\007\156\313\061\142\022\350\143\003\252\175\155 +\343\370\033\166\041\170\033\237\113\103\214\323\111\206\366\033 +\134\366\056\140\025\323\351\343\173\165\077\320\002\203\320\030 +\202\101\315\145\067\352\216\062\176\275\153\231\135\060\021\310 +\333\110\124\034\073\341\247\023\323\152\110\223\367\075\214\177 +\005\350\316\363\210\052\143\004\270\352\176\130\174\001\173\133 +\341\305\175\357\041\340\215\016\135\121\175\261\147\375\243\275 +\070\066\306\362\070\206\207\032\226\150\140\106\373\050\024\107 +\125\341\247\200\014\153\342\352\337\115\174\220\110\240\066\275 +\011\027\211\177\303\362\323\234\234\343\335\304\033\335\365\267 +\161\263\123\005\211\006\320\313\112\200\301\310\123\220\265\074 +\061\210\027\120\237\311\304\016\213\330\250\002\143\015 +END + +# Trust for Certificate "beTRUSTed Root CA-Baltimore Implementation" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Entrust.net Global Secure Personal CA" +CKA_LABEL UTF8 "beTRUSTed Root CA-Baltimore Implementation" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\317\164\277\377\233\206\201\133\010\063\124\100\066\076\207\266 -\266\360\277\163 +\334\273\236\267\031\113\304\162\005\301\021\165\051\206\203\133 +\123\312\344\370 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\232\167\031\030\355\226\317\337\033\267\016\365\215\271\210\056 +\201\065\271\373\373\022\312\030\151\066\353\256\151\170\241\361 END CKA_ISSUER MULTILINE_OCTAL -\060\201\264\061\024\060\022\006\003\125\004\012\023\013\105\156 -\164\162\165\163\164\056\156\145\164\061\100\060\076\006\003\125 -\004\013\024\067\167\167\167\056\145\156\164\162\165\163\164\056 -\156\145\164\057\107\103\103\101\137\103\120\123\040\151\156\143 -\157\162\160\056\040\142\171\040\162\145\146\056\040\050\154\151 -\155\151\164\163\040\154\151\141\142\056\051\061\045\060\043\006 -\003\125\004\013\023\034\050\143\051\040\062\060\060\060\040\105 -\156\164\162\165\163\164\056\156\145\164\040\114\151\155\151\164 -\145\144\061\063\060\061\006\003\125\004\003\023\052\105\156\164 -\162\165\163\164\056\156\145\164\040\103\154\151\145\156\164\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171 +\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\055 +\102\141\154\164\151\155\157\162\145\040\111\155\160\154\145\155 +\145\156\164\141\164\151\157\156 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\070\236\366\344 +\002\004\074\265\075\106 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -6516,297 +6569,318 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "AOL Time Warner Root Certification Authority 1" +# Certificate "beTRUSTed Root CA - Entrust Implementation" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 1" +CKA_LABEL UTF8 "beTRUSTed Root CA - Entrust Implementation" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 -\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 -\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 -\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 -\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\040\061 +\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 +\055\040\105\156\164\162\165\163\164\040\111\155\160\154\145\155 +\145\156\164\141\164\151\157\156 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 -\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 -\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 -\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 -\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\040\061 +\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 +\055\040\105\156\164\162\165\163\164\040\111\155\160\154\145\155 +\145\156\164\141\164\151\157\156 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\004\074\265\117\100 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\346\060\202\002\316\240\003\002\001\002\002\001\001 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124\151 -\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061\034 -\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143\141 -\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060\065 -\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145\040 -\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\061\060\036\027\015\060\062\060\065\062\071\060 -\066\060\060\060\060\132\027\015\063\067\061\061\062\060\061\065 -\060\063\060\060\132\060\201\203\061\013\060\011\006\003\125\004 -\006\023\002\125\123\061\035\060\033\006\003\125\004\012\023\024 -\101\117\114\040\124\151\155\145\040\127\141\162\156\145\162\040 -\111\156\143\056\061\034\060\032\006\003\125\004\013\023\023\101 -\155\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156 -\143\056\061\067\060\065\006\003\125\004\003\023\056\101\117\114 -\040\124\151\155\145\040\127\141\162\156\145\162\040\122\157\157 -\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\101\165\164\150\157\162\151\164\171\040\061\060\202\001\042\060 -\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202 -\001\017\000\060\202\001\012\002\202\001\001\000\231\336\217\303 -\045\243\151\064\350\005\367\164\271\277\132\227\031\271\057\224 -\322\223\345\055\211\312\204\174\077\020\103\033\214\213\174\204 -\130\370\044\174\110\317\052\375\300\025\331\030\176\204\032\027 -\323\333\236\327\312\344\331\327\252\130\121\207\360\360\213\110 -\116\342\302\304\131\151\060\142\266\060\242\214\013\021\231\141 -\065\155\176\357\305\261\031\006\040\022\216\102\341\337\017\226 -\020\122\250\317\234\137\225\024\330\257\073\165\013\061\040\037 -\104\057\242\142\101\263\273\030\041\333\312\161\074\214\354\266 -\271\015\237\357\121\357\115\173\022\362\013\014\341\254\100\217 -\167\177\260\312\170\161\014\135\026\161\160\242\327\302\072\205 -\315\016\232\304\340\000\260\325\045\352\334\053\344\224\055\070 -\234\211\101\127\144\050\145\031\034\266\104\264\310\061\153\216 -\001\173\166\131\045\177\025\034\204\010\174\163\145\040\012\241 -\004\056\032\062\250\232\040\261\234\054\041\131\347\373\317\356 -\160\055\010\312\143\076\054\233\223\031\152\244\302\227\377\267 -\206\127\210\205\154\236\025\026\053\115\054\263\002\003\001\000 -\001\243\143\060\141\060\017\006\003\125\035\023\001\001\377\004 -\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004 -\024\241\066\060\026\313\206\220\000\105\200\123\261\217\310\330 -\075\174\276\137\022\060\037\006\003\125\035\043\004\030\060\026 -\200\024\241\066\060\026\313\206\220\000\105\200\123\261\217\310 -\330\075\174\276\137\022\060\016\006\003\125\035\017\001\001\377 -\004\004\003\002\001\206\060\015\006\011\052\206\110\206\367\015 -\001\001\005\005\000\003\202\001\001\000\212\040\030\245\276\263 -\057\264\246\204\000\100\060\051\372\264\024\163\114\171\105\247 -\366\160\340\350\176\144\036\012\225\174\152\141\302\357\116\037 -\276\377\311\231\037\007\141\112\341\135\114\315\255\356\320\122 -\062\331\131\062\274\332\171\162\326\173\011\350\002\201\065\323 -\012\337\021\035\311\171\240\200\115\376\132\327\126\326\355\017 -\052\257\247\030\165\063\014\352\301\141\005\117\152\232\211\362 -\215\271\237\056\357\260\137\132\000\353\276\255\240\370\104\005 -\147\274\313\004\357\236\144\305\351\310\077\005\277\306\057\007 -\034\303\066\161\206\312\070\146\112\315\326\270\113\306\154\247 -\227\073\372\023\055\156\043\141\207\241\143\102\254\302\313\227 -\237\141\150\317\055\114\004\235\327\045\117\012\016\115\220\213 -\030\126\250\223\110\127\334\157\256\275\236\147\127\167\211\120 -\263\276\021\233\105\147\203\206\031\207\323\230\275\010\032\026 -\037\130\202\013\341\226\151\005\113\216\354\203\121\061\007\325 -\324\237\377\131\173\250\156\205\317\323\113\251\111\260\137\260 -\071\050\150\016\163\335\045\232\336\022 -END - -# Trust for Certificate "AOL Time Warner Root Certification Authority 1" -CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 1" -CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\164\124\123\134\044\243\247\130\040\176\076\076\323\044\370\026 -\373\041\026\111 -END -CKA_CERT_MD5_HASH MULTILINE_OCTAL -\347\172\334\261\037\156\006\037\164\154\131\026\047\303\113\300 -END -CKA_ISSUER MULTILINE_OCTAL -\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 -\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 -\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 -\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 -\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\040\061 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 -END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE +\060\202\006\121\060\202\005\071\240\003\002\001\002\002\004\074 +\265\117\100\060\015\006\011\052\206\110\206\367\015\001\001\005 +\005\000\060\146\061\022\060\020\006\003\125\004\012\023\011\142 +\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125\004 +\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157\157 +\164\040\103\101\163\061\063\060\061\006\003\125\004\003\023\052 +\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103 +\101\040\055\040\105\156\164\162\165\163\164\040\111\155\160\154 +\145\155\145\156\164\141\164\151\157\156\060\036\027\015\060\062 +\060\064\061\061\060\070\062\064\062\067\132\027\015\062\062\060 +\064\061\061\060\070\065\064\062\067\132\060\146\061\022\060\020 +\006\003\125\004\012\023\011\142\145\124\122\125\123\124\145\144 +\061\033\060\031\006\003\125\004\013\023\022\142\145\124\122\125 +\123\124\145\144\040\122\157\157\164\040\103\101\163\061\063\060 +\061\006\003\125\004\003\023\052\142\145\124\122\125\123\124\145 +\144\040\122\157\157\164\040\103\101\040\055\040\105\156\164\162 +\165\163\164\040\111\155\160\154\145\155\145\156\164\141\164\151 +\157\156\060\202\001\042\060\015\006\011\052\206\110\206\367\015 +\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202 +\001\001\000\272\364\104\003\252\022\152\265\103\354\125\222\266 +\060\175\065\127\014\333\363\015\047\156\114\367\120\250\233\116 +\053\157\333\365\255\034\113\135\263\251\301\376\173\104\353\133 +\243\005\015\037\305\064\053\060\000\051\361\170\100\262\244\377 +\072\364\001\210\027\176\346\324\046\323\272\114\352\062\373\103 +\167\227\207\043\305\333\103\243\365\052\243\121\136\341\073\322 +\145\151\176\125\025\233\172\347\151\367\104\340\127\265\025\350 +\146\140\017\015\003\373\202\216\243\350\021\173\154\276\307\143 +\016\027\223\337\317\113\256\156\163\165\340\363\252\271\244\300 +\011\033\205\352\161\051\210\101\062\371\360\052\016\154\011\362 +\164\153\146\154\122\023\037\030\274\324\076\367\330\156\040\236 +\312\376\374\041\224\356\023\050\113\327\134\136\014\146\356\351 +\273\017\301\064\261\177\010\166\363\075\046\160\311\213\045\035 +\142\044\014\352\034\165\116\300\022\344\272\023\035\060\051\055 +\126\063\005\273\227\131\176\306\111\117\211\327\057\044\250\266 +\210\100\265\144\222\123\126\044\344\242\240\205\263\136\220\264 +\022\063\315\002\003\001\000\001\243\202\003\005\060\202\003\001 +\060\202\001\267\006\003\125\035\040\004\202\001\256\060\202\001 +\252\060\202\001\246\006\017\053\006\001\004\001\261\076\000\000 +\002\011\050\203\221\061\060\202\001\221\060\202\001\111\006\010 +\053\006\001\005\005\007\002\002\060\202\001\073\032\202\001\067 +\122\145\154\151\141\156\143\145\040\157\156\040\157\162\040\165 +\163\145\040\157\146\040\164\150\151\163\040\103\145\162\164\151 +\146\151\143\141\164\145\040\143\162\145\141\164\145\163\040\141 +\156\040\141\143\153\156\157\167\154\145\144\147\155\145\156\164 +\040\141\156\144\040\141\143\143\145\160\164\141\156\143\145\040 +\157\146\040\164\150\145\040\164\150\145\156\040\141\160\160\154 +\151\143\141\142\154\145\040\163\164\141\156\144\141\162\144\040 +\164\145\162\155\163\040\141\156\144\040\143\157\156\144\151\164 +\151\157\156\163\040\157\146\040\165\163\145\054\040\164\150\145 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\120 +\162\141\143\164\151\143\145\040\123\164\141\164\145\155\145\156 +\164\040\141\156\144\040\164\150\145\040\122\145\154\171\151\156 +\147\040\120\141\162\164\171\040\101\147\162\145\145\155\145\156 +\164\054\040\167\150\151\143\150\040\143\141\156\040\142\145\040 +\146\157\165\156\144\040\141\164\040\164\150\145\040\142\145\124 +\122\125\123\124\145\144\040\167\145\142\040\163\151\164\145\054 +\040\150\164\164\160\163\072\057\057\167\167\167\056\142\145\164 +\162\165\163\164\145\144\056\143\157\155\057\160\162\157\144\165 +\143\164\163\137\163\145\162\166\151\143\145\163\057\151\156\144 +\145\170\056\150\164\155\154\060\102\006\010\053\006\001\005\005 +\007\002\001\026\066\150\164\164\160\163\072\057\057\167\167\167 +\056\142\145\164\162\165\163\164\145\144\056\143\157\155\057\160 +\162\157\144\165\143\164\163\137\163\145\162\166\151\143\145\163 +\057\151\156\144\145\170\056\150\164\155\154\060\021\006\011\140 +\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060\201 +\211\006\003\125\035\037\004\201\201\060\177\060\175\240\173\240 +\171\244\167\060\165\061\022\060\020\006\003\125\004\012\023\011 +\142\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125 +\004\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157 +\157\164\040\103\101\163\061\063\060\061\006\003\125\004\003\023 +\052\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\040\055\040\105\156\164\162\165\163\164\040\111\155\160 +\154\145\155\145\156\164\141\164\151\157\156\061\015\060\013\006 +\003\125\004\003\023\004\103\122\114\061\060\053\006\003\125\035 +\020\004\044\060\042\200\017\062\060\060\062\060\064\061\061\060 +\070\062\064\062\067\132\201\017\062\060\062\062\060\064\061\061 +\060\070\065\064\062\067\132\060\013\006\003\125\035\017\004\004 +\003\002\001\006\060\037\006\003\125\035\043\004\030\060\026\200 +\024\175\160\345\256\070\213\006\077\252\034\032\217\371\317\044 +\060\252\204\204\026\060\035\006\003\125\035\016\004\026\004\024 +\175\160\345\256\070\213\006\077\252\034\032\217\371\317\044\060 +\252\204\204\026\060\014\006\003\125\035\023\004\005\060\003\001 +\001\377\060\035\006\011\052\206\110\206\366\175\007\101\000\004 +\020\060\016\033\010\126\066\056\060\072\064\056\060\003\002\004 +\220\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 +\003\202\001\001\000\052\270\027\316\037\020\224\353\270\232\267 +\271\137\354\332\367\222\044\254\334\222\073\307\040\215\362\231 +\345\135\070\241\302\064\355\305\023\131\134\005\265\053\117\141 +\233\221\373\101\374\374\325\074\115\230\166\006\365\201\175\353 +\335\220\346\321\126\124\332\343\055\014\237\021\062\224\042\001 +\172\366\154\054\164\147\004\314\245\217\216\054\263\103\265\224 +\242\320\175\351\142\177\006\276\047\001\203\236\072\375\212\356 +\230\103\112\153\327\265\227\073\072\277\117\155\264\143\372\063 +\000\064\056\055\155\226\311\173\312\231\143\272\276\364\366\060 +\240\055\230\226\351\126\104\005\251\104\243\141\020\353\202\241 +\147\135\274\135\047\165\252\212\050\066\052\070\222\331\335\244 +\136\000\245\314\314\174\051\052\336\050\220\253\267\341\266\377 +\175\045\013\100\330\252\064\243\055\336\007\353\137\316\012\335 +\312\176\072\175\046\301\142\150\072\346\057\067\363\201\206\041 +\304\251\144\252\357\105\066\321\032\146\174\370\351\067\326\326 +\141\276\242\255\110\347\337\346\164\376\323\155\175\322\045\334 +\254\142\127\251\367 +END + +# Trust for Certificate "beTRUSTed Root CA - Entrust Implementation" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "beTRUSTed Root CA - Entrust Implementation" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\162\231\171\023\354\233\015\256\145\321\266\327\262\112\166\243 +\256\302\356\026 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\175\206\220\217\133\361\362\100\300\367\075\142\265\244\251\073 +END +CKA_ISSUER MULTILINE_OCTAL +\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 +\055\040\105\156\164\162\165\163\164\040\111\155\160\154\145\155 +\145\156\164\141\164\151\157\156 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\004\074\265\117\100 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "AOL Time Warner Root Certification Authority 2" +# Certificate "beTRUSTed Root CA - RSA Implementation" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 2" +CKA_LABEL UTF8 "beTRUSTed Root CA - RSA Implementation" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 -\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 -\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 -\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 -\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\040\062 +\060\142\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\057\060\055\006\003\125\004\003\023\046\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 +\055\040\122\123\101\040\111\155\160\154\145\155\145\156\164\141 +\164\151\157\156 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 -\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 -\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 -\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 -\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\040\062 +\060\142\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\057\060\055\006\003\125\004\003\023\046\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 +\055\040\122\123\101\040\111\155\160\154\145\155\145\156\164\141 +\164\151\157\156 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\020\073\131\307\173\315\133\127\236\275\067\122\254\166\264 +\252\032 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\346\060\202\003\316\240\003\002\001\002\002\001\001 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124\151 -\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061\034 -\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143\141 -\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060\065 -\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145\040 -\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\062\060\036\027\015\060\062\060\065\062\071\060 -\066\060\060\060\060\132\027\015\063\067\060\071\062\070\062\063 -\064\063\060\060\132\060\201\203\061\013\060\011\006\003\125\004 -\006\023\002\125\123\061\035\060\033\006\003\125\004\012\023\024 -\101\117\114\040\124\151\155\145\040\127\141\162\156\145\162\040 -\111\156\143\056\061\034\060\032\006\003\125\004\013\023\023\101 -\155\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156 -\143\056\061\067\060\065\006\003\125\004\003\023\056\101\117\114 -\040\124\151\155\145\040\127\141\162\156\145\162\040\122\157\157 -\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\101\165\164\150\157\162\151\164\171\040\062\060\202\002\042\060 -\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202 -\002\017\000\060\202\002\012\002\202\002\001\000\264\067\132\010 -\026\231\024\350\125\261\033\044\153\374\307\213\346\207\251\211 -\356\213\231\315\117\100\206\244\266\115\311\331\261\334\074\115 -\015\205\114\025\154\106\213\122\170\237\370\043\375\147\365\044 -\072\150\135\320\367\144\141\101\124\243\213\245\010\322\051\133 -\233\140\117\046\203\321\143\022\126\111\166\244\026\302\245\235 -\105\254\213\204\225\250\026\261\354\237\352\044\032\357\271\127 -\134\232\044\041\054\115\016\161\037\246\254\135\105\164\003\230 -\304\124\214\026\112\101\167\206\225\165\014\107\001\146\140\374 -\025\361\017\352\365\024\170\307\016\327\156\201\034\136\277\136 -\347\072\052\330\227\027\060\174\000\255\010\235\063\257\270\231 -\141\200\213\250\225\176\024\334\022\154\244\320\330\357\100\111 -\002\066\371\156\251\326\035\226\126\004\262\263\055\026\126\206 -\217\331\040\127\200\315\147\020\155\260\114\360\332\106\266\352 -\045\056\106\257\215\260\205\070\064\213\024\046\202\053\254\256 -\231\013\216\024\327\122\275\236\151\303\206\002\013\352\166\165 -\061\011\316\063\031\041\205\103\346\211\055\237\045\067\147\361 -\043\152\322\000\155\227\371\237\347\051\312\335\037\327\006\352 -\270\311\271\011\041\237\310\077\006\305\322\351\022\106\000\116 -\173\010\353\102\075\053\110\156\235\147\335\113\002\344\104\363 -\223\031\245\047\316\151\172\276\147\323\374\120\244\054\253\303 -\153\271\343\200\114\317\005\141\113\053\334\033\271\246\322\320 -\252\365\053\163\373\316\220\065\237\014\122\034\277\134\041\141 -\021\133\025\113\251\044\121\374\244\134\367\027\235\260\322\372 -\007\351\217\126\344\032\214\150\212\004\323\174\132\343\236\242 -\241\312\161\133\242\324\240\347\051\205\135\003\150\052\117\322 -\006\327\075\371\303\003\057\077\145\371\147\036\107\100\323\143 -\017\343\325\216\371\205\253\227\114\263\327\046\353\226\012\224 -\336\205\066\234\310\177\201\011\002\111\052\016\365\144\062\014 -\202\321\272\152\202\033\263\113\164\021\363\214\167\326\237\277 -\334\067\244\247\125\004\057\324\061\350\323\106\271\003\174\332 -\022\116\131\144\267\121\061\061\120\240\312\034\047\331\020\056 -\255\326\275\020\146\053\303\260\042\112\022\133\002\003\001\000 -\001\243\143\060\141\060\017\006\003\125\035\023\001\001\377\004 -\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004 -\024\117\151\155\003\176\235\237\007\030\103\274\267\020\116\325 -\277\251\304\040\050\060\037\006\003\125\035\043\004\030\060\026 -\200\024\117\151\155\003\176\235\237\007\030\103\274\267\020\116 -\325\277\251\304\040\050\060\016\006\003\125\035\017\001\001\377 -\004\004\003\002\001\206\060\015\006\011\052\206\110\206\367\015 -\001\001\005\005\000\003\202\002\001\000\073\363\256\312\350\056 -\207\205\373\145\131\347\255\021\024\245\127\274\130\237\044\022 -\127\273\373\077\064\332\356\255\172\052\064\162\160\061\153\307 -\031\230\200\311\202\336\067\167\136\124\213\216\362\352\147\117 -\311\164\204\221\126\011\325\345\172\232\201\266\201\302\255\066 -\344\361\124\021\123\363\064\105\001\046\310\345\032\274\064\104 -\041\336\255\045\374\166\026\167\041\220\200\230\127\235\116\352 -\354\057\252\074\024\173\127\301\176\030\024\147\356\044\306\275 -\272\025\260\322\030\275\267\125\201\254\123\300\350\335\151\022 -\023\102\267\002\265\005\101\312\171\120\156\202\016\161\162\223 -\106\350\235\015\135\275\256\316\051\255\143\325\125\026\200\060 -\047\377\166\272\367\270\326\112\343\331\265\371\122\320\116\100 -\251\307\345\302\062\307\252\166\044\341\153\005\120\353\305\277 -\012\124\345\271\102\074\044\373\267\007\234\060\237\171\132\346 -\340\100\122\025\364\374\252\364\126\371\104\227\207\355\016\145 -\162\136\276\046\373\115\244\055\010\007\336\330\134\240\334\201 -\063\231\030\045\021\167\247\353\375\130\011\054\231\153\033\212 -\363\122\077\032\115\110\140\361\240\366\063\002\123\213\355\045 -\011\270\015\055\355\227\163\354\327\226\037\216\140\016\332\020 -\233\057\030\044\366\246\115\012\371\073\313\165\302\314\057\316 -\044\151\311\012\042\216\131\247\367\202\014\327\327\153\065\234 -\103\000\152\304\225\147\272\234\105\313\270\016\067\367\334\116 -\001\117\276\012\266\003\323\255\212\105\367\332\047\115\051\261 -\110\337\344\021\344\226\106\275\154\002\076\326\121\310\225\027 -\001\025\251\362\252\252\362\277\057\145\033\157\320\271\032\223 -\365\216\065\304\200\207\076\224\057\146\344\351\250\377\101\234 -\160\052\117\052\071\030\225\036\176\373\141\001\074\121\010\056 -\050\030\244\026\017\061\375\072\154\043\223\040\166\341\375\007 -\205\321\133\077\322\034\163\062\335\372\271\370\214\317\002\207 -\172\232\226\344\355\117\211\215\123\103\253\016\023\300\001\025 -\264\171\070\333\374\156\075\236\121\266\270\023\213\147\317\371 -\174\331\042\035\366\135\305\034\001\057\230\350\172\044\030\274 -\204\327\372\334\162\133\367\301\072\150 +\060\202\005\150\060\202\004\120\240\003\002\001\002\002\020\073 +\131\307\173\315\133\127\236\275\067\122\254\166\264\252\032\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\142 +\061\022\060\020\006\003\125\004\012\023\011\142\145\124\122\125 +\123\124\145\144\061\033\060\031\006\003\125\004\013\023\022\142 +\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101 +\163\061\057\060\055\006\003\125\004\003\023\046\142\145\124\122 +\125\123\124\145\144\040\122\157\157\164\040\103\101\040\055\040 +\122\123\101\040\111\155\160\154\145\155\145\156\164\141\164\151 +\157\156\060\036\027\015\060\062\060\064\061\061\061\061\061\070 +\061\063\132\027\015\062\062\060\064\061\062\061\061\060\067\062 +\065\132\060\142\061\022\060\020\006\003\125\004\012\023\011\142 +\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125\004 +\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157\157 +\164\040\103\101\163\061\057\060\055\006\003\125\004\003\023\046 +\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103 +\101\040\055\040\122\123\101\040\111\155\160\154\145\155\145\156 +\164\141\164\151\157\156\060\202\001\042\060\015\006\011\052\206 +\110\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202 +\001\012\002\202\001\001\000\344\272\064\060\011\216\127\320\271 +\006\054\157\156\044\200\042\277\135\103\246\372\117\254\202\347 +\034\150\160\205\033\243\156\265\252\170\331\156\007\113\077\351 +\337\365\352\350\124\241\141\212\016\057\151\165\030\267\014\345 +\024\215\161\156\230\270\125\374\014\225\320\233\156\341\055\210 +\324\072\100\153\222\361\231\226\144\336\333\377\170\364\356\226 +\035\107\211\174\324\276\271\210\167\043\072\011\346\004\236\155 +\252\136\322\310\275\232\116\031\337\211\352\133\016\176\303\344 +\264\360\340\151\073\210\017\101\220\370\324\161\103\044\301\217 +\046\113\073\126\351\377\214\154\067\351\105\255\205\214\123\303 +\140\206\220\112\226\311\263\124\260\273\027\360\034\105\331\324 +\033\031\144\126\012\031\367\314\341\377\206\257\176\130\136\254 +\172\220\037\311\050\071\105\173\242\266\307\234\037\332\205\324 +\041\206\131\060\223\276\123\063\067\366\357\101\317\063\307\253 +\162\153\045\365\363\123\033\014\114\056\361\165\113\357\240\207 +\367\376\212\025\320\154\325\313\371\150\123\271\160\025\023\302 +\365\056\373\103\065\165\055\002\003\001\000\001\243\202\002\030 +\060\202\002\024\060\014\006\003\125\035\023\004\005\060\003\001 +\001\377\060\202\001\265\006\003\125\035\040\004\202\001\254\060 +\202\001\250\060\202\001\244\006\017\053\006\001\004\001\261\076 +\000\000\003\011\050\203\221\061\060\202\001\217\060\101\006\010 +\053\006\001\005\005\007\002\001\026\065\150\164\164\160\072\057 +\057\167\167\167\056\142\145\164\162\165\163\164\145\144\056\143 +\157\155\057\160\162\157\144\165\143\164\163\137\163\145\162\166 +\151\143\145\163\057\151\156\144\145\170\056\150\164\155\154\060 +\202\001\110\006\010\053\006\001\005\005\007\002\002\060\202\001 +\072\032\202\001\066\122\145\154\151\141\156\143\145\040\157\156 +\040\157\162\040\165\163\145\040\157\146\040\164\150\151\163\040 +\103\145\162\164\151\146\151\143\141\164\145\040\143\162\145\141 +\164\145\163\040\141\156\040\141\143\153\156\157\167\154\145\144 +\147\155\145\156\164\040\141\156\144\040\141\143\143\145\160\164 +\141\156\143\145\040\157\146\040\164\150\145\040\164\150\145\156 +\040\141\160\160\154\151\143\141\142\154\145\040\163\164\141\156 +\144\141\162\144\040\164\145\162\155\163\040\141\156\144\040\143 +\157\156\144\151\164\151\157\156\163\040\157\146\040\165\163\145 +\054\040\164\150\145\040\103\145\162\164\151\146\151\143\141\164 +\151\157\156\040\120\162\141\143\164\151\143\145\040\123\164\141 +\164\145\155\145\156\164\040\141\156\144\040\164\150\145\040\122 +\145\154\171\151\156\147\040\120\141\162\164\171\040\101\147\162 +\145\145\155\145\156\164\054\040\167\150\151\143\150\040\143\141 +\156\040\142\145\040\146\157\165\156\144\040\141\164\040\164\150 +\145\040\142\145\124\122\125\123\124\145\144\040\167\145\142\040 +\163\151\164\145\054\040\150\164\164\160\072\057\057\167\167\167 +\056\142\145\164\162\165\163\164\145\144\056\143\157\155\057\160 +\162\157\144\165\143\164\163\137\163\145\162\166\151\143\145\163 +\057\151\156\144\145\170\056\150\164\155\154\060\013\006\003\125 +\035\017\004\004\003\002\001\006\060\037\006\003\125\035\043\004 +\030\060\026\200\024\251\354\024\176\371\331\103\314\123\053\024 +\255\317\367\360\131\211\101\315\031\060\035\006\003\125\035\016 +\004\026\004\024\251\354\024\176\371\331\103\314\123\053\024\255 +\317\367\360\131\211\101\315\031\060\015\006\011\052\206\110\206 +\367\015\001\001\005\005\000\003\202\001\001\000\333\227\260\165 +\352\014\304\301\230\312\126\005\300\250\255\046\110\257\055\040 +\350\201\307\266\337\103\301\054\035\165\113\324\102\215\347\172 +\250\164\334\146\102\131\207\263\365\151\155\331\251\236\263\175 +\034\061\301\365\124\342\131\044\111\345\356\275\071\246\153\212 +\230\104\373\233\327\052\203\227\064\055\307\175\065\114\055\064 +\270\076\015\304\354\210\047\257\236\222\375\120\141\202\250\140 +\007\024\123\314\145\023\301\366\107\104\151\322\061\310\246\335 +\056\263\013\336\112\215\133\075\253\015\302\065\122\242\126\067 +\314\062\213\050\205\102\234\221\100\172\160\053\070\066\325\341 +\163\032\037\345\372\176\137\334\326\234\073\060\352\333\300\133 +\047\134\323\163\007\301\302\363\114\233\157\237\033\312\036\252 +\250\070\063\011\130\262\256\374\007\350\066\334\125\272\057\117 +\100\376\172\275\006\246\201\301\223\042\174\206\021\012\006\167 +\110\256\065\267\057\062\232\141\136\213\276\051\237\051\044\210 +\126\071\054\250\322\253\226\003\132\324\110\237\271\100\204\013 +\230\150\373\001\103\326\033\342\011\261\227\034 END -# Trust for Certificate "AOL Time Warner Root Certification Authority 2" +# Trust for Certificate "beTRUSTed Root CA - RSA Implementation" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "AOL Time Warner Root Certification Authority 2" +CKA_LABEL UTF8 "beTRUSTed Root CA - RSA Implementation" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\374\041\232\166\021\057\166\301\305\010\203\074\232\057\242\272 -\204\254\010\172 +\035\202\131\312\041\047\303\313\301\154\331\062\366\054\145\051 +\214\250\207\022 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\001\132\231\303\326\117\251\113\074\073\261\243\253\047\114\277 +\206\102\005\011\274\247\235\354\035\363\056\016\272\330\035\320 END CKA_ISSUER MULTILINE_OCTAL -\060\201\203\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\035\060\033\006\003\125\004\012\023\024\101\117\114\040\124 -\151\155\145\040\127\141\162\156\145\162\040\111\156\143\056\061 -\034\060\032\006\003\125\004\013\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\067\060 -\065\006\003\125\004\003\023\056\101\117\114\040\124\151\155\145 -\040\127\141\162\156\145\162\040\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\040\062 +\060\142\061\022\060\020\006\003\125\004\012\023\011\142\145\124 +\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 +\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 +\103\101\163\061\057\060\055\006\003\125\004\003\023\046\142\145 +\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 +\055\040\122\123\101\040\111\155\160\154\145\155\145\156\164\141 +\164\151\157\156 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\020\073\131\307\173\315\133\127\236\275\067\122\254\166\264 +\252\032 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -6814,150 +6888,111 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "beTRUSTed Root CA-Baltimore Implementation" +# Certificate "RSA Security 2048 v3" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "beTRUSTed Root CA-Baltimore Implementation" +CKA_LABEL UTF8 "RSA Security 2048 v3" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\055 -\102\141\154\164\151\155\157\162\145\040\111\155\160\154\145\155 -\145\156\164\141\164\151\157\156 +\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 +\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 +\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 +\162\151\164\171\040\062\060\064\070\040\126\063 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\055 -\102\141\154\164\151\155\157\162\145\040\111\155\160\154\145\155 -\145\156\164\141\164\151\157\156 +\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 +\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 +\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 +\162\151\164\171\040\062\060\064\070\040\126\063 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\074\265\075\106 +\002\020\012\001\001\001\000\000\002\174\000\000\000\012\000\000 +\000\002 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\152\060\202\004\122\240\003\002\001\002\002\004\074 -\265\075\106\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\060\146\061\022\060\020\006\003\125\004\012\023\011\142 -\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125\004 -\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157\157 -\164\040\103\101\163\061\063\060\061\006\003\125\004\003\023\052 -\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103 -\101\055\102\141\154\164\151\155\157\162\145\040\111\155\160\154 -\145\155\145\156\164\141\164\151\157\156\060\036\027\015\060\062 -\060\064\061\061\060\067\063\070\065\061\132\027\015\062\062\060 -\064\061\061\060\067\063\070\065\061\132\060\146\061\022\060\020 -\006\003\125\004\012\023\011\142\145\124\122\125\123\124\145\144 -\061\033\060\031\006\003\125\004\013\023\022\142\145\124\122\125 -\123\124\145\144\040\122\157\157\164\040\103\101\163\061\063\060 -\061\006\003\125\004\003\023\052\142\145\124\122\125\123\124\145 -\144\040\122\157\157\164\040\103\101\055\102\141\154\164\151\155 -\157\162\145\040\111\155\160\154\145\155\145\156\164\141\164\151 -\157\156\060\202\001\042\060\015\006\011\052\206\110\206\367\015 -\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202 -\001\001\000\274\176\304\071\234\214\343\326\034\206\377\312\142 -\255\340\177\060\105\172\216\032\263\270\307\371\321\066\377\042 -\363\116\152\137\204\020\373\146\201\303\224\171\061\322\221\341 -\167\216\030\052\303\024\336\121\365\117\243\053\274\030\026\342 -\265\335\171\336\042\370\202\176\313\201\037\375\047\054\217\372 -\227\144\042\216\370\377\141\243\234\033\036\222\217\300\250\011 -\337\011\021\354\267\175\061\232\032\352\203\041\006\074\237\272 -\134\377\224\352\152\270\303\153\125\064\117\075\062\037\335\201 -\024\340\304\074\315\235\060\370\060\251\227\323\356\314\243\320 -\037\137\034\023\201\324\030\253\224\321\143\303\236\177\065\222 -\236\137\104\352\354\364\042\134\267\350\075\175\244\371\211\251 -\221\262\052\331\353\063\207\356\245\375\343\332\314\210\346\211 -\046\156\307\053\202\320\136\235\131\333\024\354\221\203\005\303 -\136\016\306\052\320\004\335\161\075\040\116\130\047\374\123\373 -\170\170\031\024\262\374\220\122\211\070\142\140\007\264\240\354 -\254\153\120\326\375\271\050\153\357\122\055\072\262\377\361\001 -\100\254\067\002\003\001\000\001\243\202\002\036\060\202\002\032 +\060\202\003\141\060\202\002\111\240\003\002\001\002\002\020\012 +\001\001\001\000\000\002\174\000\000\000\012\000\000\000\002\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\072 +\061\031\060\027\006\003\125\004\012\023\020\122\123\101\040\123 +\145\143\165\162\151\164\171\040\111\156\143\061\035\060\033\006 +\003\125\004\013\023\024\122\123\101\040\123\145\143\165\162\151 +\164\171\040\062\060\064\070\040\126\063\060\036\027\015\060\061 +\060\062\062\062\062\060\063\071\062\063\132\027\015\062\066\060 +\062\062\062\062\060\063\071\062\063\132\060\072\061\031\060\027 +\006\003\125\004\012\023\020\122\123\101\040\123\145\143\165\162 +\151\164\171\040\111\156\143\061\035\060\033\006\003\125\004\013 +\023\024\122\123\101\040\123\145\143\165\162\151\164\171\040\062 +\060\064\070\040\126\063\060\202\001\042\060\015\006\011\052\206 +\110\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202 +\001\012\002\202\001\001\000\267\217\125\161\322\200\335\173\151 +\171\247\360\030\120\062\074\142\147\366\012\225\007\335\346\033 +\363\236\331\322\101\124\153\255\237\174\276\031\315\373\106\253 +\101\150\036\030\352\125\310\057\221\170\211\050\373\047\051\140 +\377\337\217\214\073\311\111\233\265\244\224\316\001\352\076\265 +\143\173\177\046\375\031\335\300\041\275\204\321\055\117\106\303 +\116\334\330\067\071\073\050\257\313\235\032\352\053\257\041\245 +\301\043\042\270\270\033\132\023\207\127\203\321\360\040\347\350 +\117\043\102\260\000\245\175\211\351\351\141\163\224\230\161\046 +\274\055\152\340\367\115\360\361\266\052\070\061\201\015\051\341 +\000\301\121\017\114\122\370\004\132\252\175\162\323\270\207\052 +\273\143\020\003\052\263\241\117\015\132\136\106\267\075\016\365 +\164\354\231\237\371\075\044\201\210\246\335\140\124\350\225\066 +\075\306\011\223\232\243\022\200\000\125\231\031\107\275\320\245 +\174\303\272\373\037\367\365\017\370\254\271\265\364\067\230\023 +\030\336\205\133\267\014\202\073\207\157\225\071\130\060\332\156 +\001\150\027\042\314\300\013\002\003\001\000\001\243\143\060\141 \060\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001 -\377\060\202\001\265\006\003\125\035\040\004\202\001\254\060\202 -\001\250\060\202\001\244\006\017\053\006\001\004\001\261\076\000 -\000\001\011\050\203\221\061\060\202\001\217\060\202\001\110\006 -\010\053\006\001\005\005\007\002\002\060\202\001\072\032\202\001 -\066\122\145\154\151\141\156\143\145\040\157\156\040\157\162\040 -\165\163\145\040\157\146\040\164\150\151\163\040\103\145\162\164 -\151\146\151\143\141\164\145\040\143\162\145\141\164\145\163\040 -\141\156\040\141\143\153\156\157\167\154\145\144\147\155\145\156 -\164\040\141\156\144\040\141\143\143\145\160\164\141\156\143\145 -\040\157\146\040\164\150\145\040\164\150\145\156\040\141\160\160 -\154\151\143\141\142\154\145\040\163\164\141\156\144\141\162\144 -\040\164\145\162\155\163\040\141\156\144\040\143\157\156\144\151 -\164\151\157\156\163\040\157\146\040\165\163\145\054\040\164\150 -\145\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\120\162\141\143\164\151\143\145\040\123\164\141\164\145\155\145 -\156\164\040\141\156\144\040\164\150\145\040\122\145\154\171\151 -\156\147\040\120\141\162\164\171\040\101\147\162\145\145\155\145 -\156\164\054\040\167\150\151\143\150\040\143\141\156\040\142\145 -\040\146\157\165\156\144\040\141\164\040\164\150\145\040\142\145 -\124\122\125\123\124\145\144\040\167\145\142\040\163\151\164\145 -\054\040\150\164\164\160\072\057\057\167\167\167\056\142\145\164 -\162\165\163\164\145\144\056\143\157\155\057\160\162\157\144\165 -\143\164\163\137\163\145\162\166\151\143\145\163\057\151\156\144 -\145\170\056\150\164\155\154\060\101\006\010\053\006\001\005\005 -\007\002\001\026\065\150\164\164\160\072\057\057\167\167\167\056 -\142\145\164\162\165\163\164\145\144\056\143\157\155\057\160\162 -\157\144\165\143\164\163\137\163\145\162\166\151\143\145\163\057 -\151\156\144\145\170\056\150\164\155\154\060\035\006\003\125\035 -\016\004\026\004\024\105\075\303\251\321\334\077\044\126\230\034 -\163\030\210\152\377\203\107\355\266\060\037\006\003\125\035\043 -\004\030\060\026\200\024\105\075\303\251\321\334\077\044\126\230 -\034\163\030\210\152\377\203\107\355\266\060\016\006\003\125\035 -\017\001\001\377\004\004\003\002\001\006\060\015\006\011\052\206 -\110\206\367\015\001\001\005\005\000\003\202\001\001\000\111\222 -\274\243\356\254\275\372\015\311\213\171\206\034\043\166\260\200 -\131\167\374\332\177\264\113\337\303\144\113\152\116\016\255\362 -\175\131\167\005\255\012\211\163\260\372\274\313\334\215\000\210 -\217\246\240\262\352\254\122\047\277\241\110\174\227\020\173\272 -\355\023\035\232\007\156\313\061\142\022\350\143\003\252\175\155 -\343\370\033\166\041\170\033\237\113\103\214\323\111\206\366\033 -\134\366\056\140\025\323\351\343\173\165\077\320\002\203\320\030 -\202\101\315\145\067\352\216\062\176\275\153\231\135\060\021\310 -\333\110\124\034\073\341\247\023\323\152\110\223\367\075\214\177 -\005\350\316\363\210\052\143\004\270\352\176\130\174\001\173\133 -\341\305\175\357\041\340\215\016\135\121\175\261\147\375\243\275 -\070\066\306\362\070\206\207\032\226\150\140\106\373\050\024\107 -\125\341\247\200\014\153\342\352\337\115\174\220\110\240\066\275 -\011\027\211\177\303\362\323\234\234\343\335\304\033\335\365\267 -\161\263\123\005\211\006\320\313\112\200\301\310\123\220\265\074 -\061\210\027\120\237\311\304\016\213\330\250\002\143\015 +\377\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001 +\006\060\037\006\003\125\035\043\004\030\060\026\200\024\007\303 +\121\060\244\252\351\105\256\065\044\372\377\044\054\063\320\261 +\235\214\060\035\006\003\125\035\016\004\026\004\024\007\303\121 +\060\244\252\351\105\256\065\044\372\377\044\054\063\320\261\235 +\214\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 +\003\202\001\001\000\137\076\206\166\156\270\065\074\116\066\034 +\036\171\230\277\375\325\022\021\171\122\016\356\061\211\274\335 +\177\371\321\306\025\041\350\212\001\124\015\072\373\124\271\326 +\143\324\261\252\226\115\242\102\115\324\123\037\213\020\336\177 +\145\276\140\023\047\161\210\244\163\343\204\143\321\244\125\341 +\120\223\346\033\016\171\320\147\274\106\310\277\077\027\015\225 +\346\306\220\151\336\347\264\057\336\225\175\320\022\077\075\076 +\177\115\077\024\150\365\021\120\325\301\364\220\245\010\035\061 +\140\377\140\214\043\124\012\257\376\241\156\305\321\172\052\150 +\170\317\036\202\012\040\264\037\255\345\205\262\152\150\165\116 +\255\045\067\224\205\276\275\241\324\352\267\014\113\074\235\350 +\022\000\360\137\254\015\341\254\160\143\163\367\177\171\237\062 +\045\102\164\005\200\050\277\275\301\044\226\130\025\261\027\041 +\351\211\113\333\007\210\147\364\025\255\160\076\057\115\205\073 +\302\267\333\376\230\150\043\211\341\164\017\336\364\305\204\143 +\051\033\314\313\007\311\000\244\251\327\302\042\117\147\327\167 +\354\040\005\141\336 END -# Trust for Certificate "beTRUSTed Root CA-Baltimore Implementation" +# Trust for Certificate "RSA Security 2048 v3" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "beTRUSTed Root CA-Baltimore Implementation" +CKA_LABEL UTF8 "RSA Security 2048 v3" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\334\273\236\267\031\113\304\162\005\301\021\165\051\206\203\133 -\123\312\344\370 +\045\001\220\031\317\373\331\231\034\267\150\045\164\215\224\137 +\060\223\225\102 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\201\065\271\373\373\022\312\030\151\066\353\256\151\170\241\361 +\167\015\031\261\041\375\000\102\234\076\014\245\335\013\002\216 END CKA_ISSUER MULTILINE_OCTAL -\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\055 -\102\141\154\164\151\155\157\162\145\040\111\155\160\154\145\155 -\145\156\164\141\164\151\157\156 +\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 +\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 +\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 +\162\151\164\171\040\062\060\064\070\040\126\063 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\074\265\075\106 +\002\020\012\001\001\001\000\000\002\174\000\000\000\012\000\000 +\000\002 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -6965,318 +7000,206 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "beTRUSTed Root CA - Entrust Implementation" +# Certificate "RSA Security 1024 v3" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "beTRUSTed Root CA - Entrust Implementation" +CKA_LABEL UTF8 "RSA Security 1024 v3" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 -\055\040\105\156\164\162\165\163\164\040\111\155\160\154\145\155 -\145\156\164\141\164\151\157\156 +\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 +\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 +\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 +\162\151\164\171\040\061\060\062\064\040\126\063 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 -\055\040\105\156\164\162\165\163\164\040\111\155\160\154\145\155 -\145\156\164\141\164\151\157\156 +\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 +\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 +\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 +\162\151\164\171\040\061\060\062\064\040\126\063 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\074\265\117\100 +\002\020\012\001\001\001\000\000\002\174\000\000\000\013\000\000 +\000\002 END CKA_VALUE MULTILINE_OCTAL -\060\202\006\121\060\202\005\071\240\003\002\001\002\002\004\074 -\265\117\100\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\060\146\061\022\060\020\006\003\125\004\012\023\011\142 -\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125\004 -\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157\157 -\164\040\103\101\163\061\063\060\061\006\003\125\004\003\023\052 -\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103 -\101\040\055\040\105\156\164\162\165\163\164\040\111\155\160\154 -\145\155\145\156\164\141\164\151\157\156\060\036\027\015\060\062 -\060\064\061\061\060\070\062\064\062\067\132\027\015\062\062\060 -\064\061\061\060\070\065\064\062\067\132\060\146\061\022\060\020 -\006\003\125\004\012\023\011\142\145\124\122\125\123\124\145\144 -\061\033\060\031\006\003\125\004\013\023\022\142\145\124\122\125 -\123\124\145\144\040\122\157\157\164\040\103\101\163\061\063\060 -\061\006\003\125\004\003\023\052\142\145\124\122\125\123\124\145 -\144\040\122\157\157\164\040\103\101\040\055\040\105\156\164\162 -\165\163\164\040\111\155\160\154\145\155\145\156\164\141\164\151 -\157\156\060\202\001\042\060\015\006\011\052\206\110\206\367\015 -\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202 -\001\001\000\272\364\104\003\252\022\152\265\103\354\125\222\266 -\060\175\065\127\014\333\363\015\047\156\114\367\120\250\233\116 -\053\157\333\365\255\034\113\135\263\251\301\376\173\104\353\133 -\243\005\015\037\305\064\053\060\000\051\361\170\100\262\244\377 -\072\364\001\210\027\176\346\324\046\323\272\114\352\062\373\103 -\167\227\207\043\305\333\103\243\365\052\243\121\136\341\073\322 -\145\151\176\125\025\233\172\347\151\367\104\340\127\265\025\350 -\146\140\017\015\003\373\202\216\243\350\021\173\154\276\307\143 -\016\027\223\337\317\113\256\156\163\165\340\363\252\271\244\300 -\011\033\205\352\161\051\210\101\062\371\360\052\016\154\011\362 -\164\153\146\154\122\023\037\030\274\324\076\367\330\156\040\236 -\312\376\374\041\224\356\023\050\113\327\134\136\014\146\356\351 -\273\017\301\064\261\177\010\166\363\075\046\160\311\213\045\035 -\142\044\014\352\034\165\116\300\022\344\272\023\035\060\051\055 -\126\063\005\273\227\131\176\306\111\117\211\327\057\044\250\266 -\210\100\265\144\222\123\126\044\344\242\240\205\263\136\220\264 -\022\063\315\002\003\001\000\001\243\202\003\005\060\202\003\001 -\060\202\001\267\006\003\125\035\040\004\202\001\256\060\202\001 -\252\060\202\001\246\006\017\053\006\001\004\001\261\076\000\000 -\002\011\050\203\221\061\060\202\001\221\060\202\001\111\006\010 -\053\006\001\005\005\007\002\002\060\202\001\073\032\202\001\067 -\122\145\154\151\141\156\143\145\040\157\156\040\157\162\040\165 -\163\145\040\157\146\040\164\150\151\163\040\103\145\162\164\151 -\146\151\143\141\164\145\040\143\162\145\141\164\145\163\040\141 -\156\040\141\143\153\156\157\167\154\145\144\147\155\145\156\164 -\040\141\156\144\040\141\143\143\145\160\164\141\156\143\145\040 -\157\146\040\164\150\145\040\164\150\145\156\040\141\160\160\154 -\151\143\141\142\154\145\040\163\164\141\156\144\141\162\144\040 -\164\145\162\155\163\040\141\156\144\040\143\157\156\144\151\164 -\151\157\156\163\040\157\146\040\165\163\145\054\040\164\150\145 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\120 -\162\141\143\164\151\143\145\040\123\164\141\164\145\155\145\156 -\164\040\141\156\144\040\164\150\145\040\122\145\154\171\151\156 -\147\040\120\141\162\164\171\040\101\147\162\145\145\155\145\156 -\164\054\040\167\150\151\143\150\040\143\141\156\040\142\145\040 -\146\157\165\156\144\040\141\164\040\164\150\145\040\142\145\124 -\122\125\123\124\145\144\040\167\145\142\040\163\151\164\145\054 -\040\150\164\164\160\163\072\057\057\167\167\167\056\142\145\164 -\162\165\163\164\145\144\056\143\157\155\057\160\162\157\144\165 -\143\164\163\137\163\145\162\166\151\143\145\163\057\151\156\144 -\145\170\056\150\164\155\154\060\102\006\010\053\006\001\005\005 -\007\002\001\026\066\150\164\164\160\163\072\057\057\167\167\167 -\056\142\145\164\162\165\163\164\145\144\056\143\157\155\057\160 -\162\157\144\165\143\164\163\137\163\145\162\166\151\143\145\163 -\057\151\156\144\145\170\056\150\164\155\154\060\021\006\011\140 -\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060\201 -\211\006\003\125\035\037\004\201\201\060\177\060\175\240\173\240 -\171\244\167\060\165\061\022\060\020\006\003\125\004\012\023\011 -\142\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125 -\004\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157 -\157\164\040\103\101\163\061\063\060\061\006\003\125\004\003\023 -\052\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\040\055\040\105\156\164\162\165\163\164\040\111\155\160 -\154\145\155\145\156\164\141\164\151\157\156\061\015\060\013\006 -\003\125\004\003\023\004\103\122\114\061\060\053\006\003\125\035 -\020\004\044\060\042\200\017\062\060\060\062\060\064\061\061\060 -\070\062\064\062\067\132\201\017\062\060\062\062\060\064\061\061 -\060\070\065\064\062\067\132\060\013\006\003\125\035\017\004\004 -\003\002\001\006\060\037\006\003\125\035\043\004\030\060\026\200 -\024\175\160\345\256\070\213\006\077\252\034\032\217\371\317\044 -\060\252\204\204\026\060\035\006\003\125\035\016\004\026\004\024 -\175\160\345\256\070\213\006\077\252\034\032\217\371\317\044\060 -\252\204\204\026\060\014\006\003\125\035\023\004\005\060\003\001 -\001\377\060\035\006\011\052\206\110\206\366\175\007\101\000\004 -\020\060\016\033\010\126\066\056\060\072\064\056\060\003\002\004 -\220\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 -\003\202\001\001\000\052\270\027\316\037\020\224\353\270\232\267 -\271\137\354\332\367\222\044\254\334\222\073\307\040\215\362\231 -\345\135\070\241\302\064\355\305\023\131\134\005\265\053\117\141 -\233\221\373\101\374\374\325\074\115\230\166\006\365\201\175\353 -\335\220\346\321\126\124\332\343\055\014\237\021\062\224\042\001 -\172\366\154\054\164\147\004\314\245\217\216\054\263\103\265\224 -\242\320\175\351\142\177\006\276\047\001\203\236\072\375\212\356 -\230\103\112\153\327\265\227\073\072\277\117\155\264\143\372\063 -\000\064\056\055\155\226\311\173\312\231\143\272\276\364\366\060 -\240\055\230\226\351\126\104\005\251\104\243\141\020\353\202\241 -\147\135\274\135\047\165\252\212\050\066\052\070\222\331\335\244 -\136\000\245\314\314\174\051\052\336\050\220\253\267\341\266\377 -\175\045\013\100\330\252\064\243\055\336\007\353\137\316\012\335 -\312\176\072\175\046\301\142\150\072\346\057\067\363\201\206\041 -\304\251\144\252\357\105\066\321\032\146\174\370\351\067\326\326 -\141\276\242\255\110\347\337\346\164\376\323\155\175\322\045\334 -\254\142\127\251\367 +\060\202\002\134\060\202\001\305\240\003\002\001\002\002\020\012 +\001\001\001\000\000\002\174\000\000\000\013\000\000\000\002\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\072 +\061\031\060\027\006\003\125\004\012\023\020\122\123\101\040\123 +\145\143\165\162\151\164\171\040\111\156\143\061\035\060\033\006 +\003\125\004\013\023\024\122\123\101\040\123\145\143\165\162\151 +\164\171\040\061\060\062\064\040\126\063\060\036\027\015\060\061 +\060\062\062\062\062\061\060\061\064\071\132\027\015\062\066\060 +\062\062\062\062\060\060\061\064\071\132\060\072\061\031\060\027 +\006\003\125\004\012\023\020\122\123\101\040\123\145\143\165\162 +\151\164\171\040\111\156\143\061\035\060\033\006\003\125\004\013 +\023\024\122\123\101\040\123\145\143\165\162\151\164\171\040\061 +\060\062\064\040\126\063\060\201\237\060\015\006\011\052\206\110 +\206\367\015\001\001\001\005\000\003\201\215\000\060\201\211\002 +\201\201\000\325\335\376\146\011\317\044\074\076\256\201\116\116 +\212\304\151\200\133\131\073\337\271\115\114\312\265\055\303\047 +\055\074\257\000\102\155\274\050\246\226\317\177\327\130\254\203 +\012\243\125\265\173\027\220\025\204\114\212\356\046\231\334\130 +\357\307\070\246\252\257\320\216\102\310\142\327\253\254\251\373 +\112\175\277\352\376\022\115\335\377\046\055\157\066\124\150\310 +\322\204\126\356\222\123\141\011\263\077\071\233\250\311\233\275 +\316\237\176\324\031\152\026\051\030\276\327\072\151\334\045\133 +\063\032\121\002\003\001\000\001\243\143\060\141\060\017\006\003 +\125\035\023\001\001\377\004\005\060\003\001\001\377\060\016\006 +\003\125\035\017\001\001\377\004\004\003\002\001\006\060\037\006 +\003\125\035\043\004\030\060\026\200\024\304\300\034\244\007\224 +\375\315\115\001\324\124\332\245\014\137\336\256\005\132\060\035 +\006\003\125\035\016\004\026\004\024\304\300\034\244\007\224\375 +\315\115\001\324\124\332\245\014\137\336\256\005\132\060\015\006 +\011\052\206\110\206\367\015\001\001\005\005\000\003\201\201\000 +\077\055\152\343\046\103\225\175\211\227\145\373\165\344\162\035 +\106\127\304\141\153\151\237\022\233\054\325\132\350\300\242\360 +\103\225\343\037\351\166\315\334\353\274\223\240\145\012\307\115 +\117\137\247\257\242\106\024\271\014\363\314\275\152\156\267\235 +\336\045\102\320\124\377\236\150\163\143\334\044\353\042\277\250 +\162\362\136\000\341\015\116\072\103\156\231\116\077\211\170\003 +\230\312\363\125\314\235\256\216\301\252\105\230\372\217\032\240 +\215\210\043\361\025\101\015\245\106\076\221\077\213\353\367\161 END -# Trust for Certificate "beTRUSTed Root CA - Entrust Implementation" +# Trust for Certificate "RSA Security 1024 v3" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "beTRUSTed Root CA - Entrust Implementation" +CKA_LABEL UTF8 "RSA Security 1024 v3" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\162\231\171\023\354\233\015\256\145\321\266\327\262\112\166\243 -\256\302\356\026 +\074\273\135\340\374\326\071\174\005\210\345\146\227\275\106\052 +\275\371\134\166 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\175\206\220\217\133\361\362\100\300\367\075\142\265\244\251\073 +\072\345\120\260\071\276\307\106\066\063\241\376\202\076\215\224 END CKA_ISSUER MULTILINE_OCTAL -\060\146\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\063\060\061\006\003\125\004\003\023\052\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 -\055\040\105\156\164\162\165\163\164\040\111\155\160\154\145\155 -\145\156\164\141\164\151\157\156 +\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 +\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 +\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 +\162\151\164\171\040\061\060\062\064\040\126\063 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\074\265\117\100 -END +\002\020\012\001\001\001\000\000\002\174\000\000\000\013\000\000 +\000\002 +END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "beTRUSTed Root CA - RSA Implementation" +# Certificate "GeoTrust Global CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "beTRUSTed Root CA - RSA Implementation" +CKA_LABEL UTF8 "GeoTrust Global CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\142\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\057\060\055\006\003\125\004\003\023\046\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 -\055\040\122\123\101\040\111\155\160\154\145\155\145\156\164\141 -\164\151\157\156 +\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004\003 +\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142\141 +\154\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\142\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\057\060\055\006\003\125\004\003\023\046\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 -\055\040\122\123\101\040\111\155\160\154\145\155\145\156\164\141 -\164\151\157\156 +\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004\003 +\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142\141 +\154\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\073\131\307\173\315\133\127\236\275\067\122\254\166\264 -\252\032 +\002\003\002\064\126 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\150\060\202\004\120\240\003\002\001\002\002\020\073 -\131\307\173\315\133\127\236\275\067\122\254\166\264\252\032\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\142 -\061\022\060\020\006\003\125\004\012\023\011\142\145\124\122\125 -\123\124\145\144\061\033\060\031\006\003\125\004\013\023\022\142 -\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101 -\163\061\057\060\055\006\003\125\004\003\023\046\142\145\124\122 -\125\123\124\145\144\040\122\157\157\164\040\103\101\040\055\040 -\122\123\101\040\111\155\160\154\145\155\145\156\164\141\164\151 -\157\156\060\036\027\015\060\062\060\064\061\061\061\061\061\070 -\061\063\132\027\015\062\062\060\064\061\062\061\061\060\067\062 -\065\132\060\142\061\022\060\020\006\003\125\004\012\023\011\142 -\145\124\122\125\123\124\145\144\061\033\060\031\006\003\125\004 -\013\023\022\142\145\124\122\125\123\124\145\144\040\122\157\157 -\164\040\103\101\163\061\057\060\055\006\003\125\004\003\023\046 -\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040\103 -\101\040\055\040\122\123\101\040\111\155\160\154\145\155\145\156 -\164\141\164\151\157\156\060\202\001\042\060\015\006\011\052\206 -\110\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202 -\001\012\002\202\001\001\000\344\272\064\060\011\216\127\320\271 -\006\054\157\156\044\200\042\277\135\103\246\372\117\254\202\347 -\034\150\160\205\033\243\156\265\252\170\331\156\007\113\077\351 -\337\365\352\350\124\241\141\212\016\057\151\165\030\267\014\345 -\024\215\161\156\230\270\125\374\014\225\320\233\156\341\055\210 -\324\072\100\153\222\361\231\226\144\336\333\377\170\364\356\226 -\035\107\211\174\324\276\271\210\167\043\072\011\346\004\236\155 -\252\136\322\310\275\232\116\031\337\211\352\133\016\176\303\344 -\264\360\340\151\073\210\017\101\220\370\324\161\103\044\301\217 -\046\113\073\126\351\377\214\154\067\351\105\255\205\214\123\303 -\140\206\220\112\226\311\263\124\260\273\027\360\034\105\331\324 -\033\031\144\126\012\031\367\314\341\377\206\257\176\130\136\254 -\172\220\037\311\050\071\105\173\242\266\307\234\037\332\205\324 -\041\206\131\060\223\276\123\063\067\366\357\101\317\063\307\253 -\162\153\045\365\363\123\033\014\114\056\361\165\113\357\240\207 -\367\376\212\025\320\154\325\313\371\150\123\271\160\025\023\302 -\365\056\373\103\065\165\055\002\003\001\000\001\243\202\002\030 -\060\202\002\024\060\014\006\003\125\035\023\004\005\060\003\001 -\001\377\060\202\001\265\006\003\125\035\040\004\202\001\254\060 -\202\001\250\060\202\001\244\006\017\053\006\001\004\001\261\076 -\000\000\003\011\050\203\221\061\060\202\001\217\060\101\006\010 -\053\006\001\005\005\007\002\001\026\065\150\164\164\160\072\057 -\057\167\167\167\056\142\145\164\162\165\163\164\145\144\056\143 -\157\155\057\160\162\157\144\165\143\164\163\137\163\145\162\166 -\151\143\145\163\057\151\156\144\145\170\056\150\164\155\154\060 -\202\001\110\006\010\053\006\001\005\005\007\002\002\060\202\001 -\072\032\202\001\066\122\145\154\151\141\156\143\145\040\157\156 -\040\157\162\040\165\163\145\040\157\146\040\164\150\151\163\040 -\103\145\162\164\151\146\151\143\141\164\145\040\143\162\145\141 -\164\145\163\040\141\156\040\141\143\153\156\157\167\154\145\144 -\147\155\145\156\164\040\141\156\144\040\141\143\143\145\160\164 -\141\156\143\145\040\157\146\040\164\150\145\040\164\150\145\156 -\040\141\160\160\154\151\143\141\142\154\145\040\163\164\141\156 -\144\141\162\144\040\164\145\162\155\163\040\141\156\144\040\143 -\157\156\144\151\164\151\157\156\163\040\157\146\040\165\163\145 -\054\040\164\150\145\040\103\145\162\164\151\146\151\143\141\164 -\151\157\156\040\120\162\141\143\164\151\143\145\040\123\164\141 -\164\145\155\145\156\164\040\141\156\144\040\164\150\145\040\122 -\145\154\171\151\156\147\040\120\141\162\164\171\040\101\147\162 -\145\145\155\145\156\164\054\040\167\150\151\143\150\040\143\141 -\156\040\142\145\040\146\157\165\156\144\040\141\164\040\164\150 -\145\040\142\145\124\122\125\123\124\145\144\040\167\145\142\040 -\163\151\164\145\054\040\150\164\164\160\072\057\057\167\167\167 -\056\142\145\164\162\165\163\164\145\144\056\143\157\155\057\160 -\162\157\144\165\143\164\163\137\163\145\162\166\151\143\145\163 -\057\151\156\144\145\170\056\150\164\155\154\060\013\006\003\125 -\035\017\004\004\003\002\001\006\060\037\006\003\125\035\043\004 -\030\060\026\200\024\251\354\024\176\371\331\103\314\123\053\024 -\255\317\367\360\131\211\101\315\031\060\035\006\003\125\035\016 -\004\026\004\024\251\354\024\176\371\331\103\314\123\053\024\255 -\317\367\360\131\211\101\315\031\060\015\006\011\052\206\110\206 -\367\015\001\001\005\005\000\003\202\001\001\000\333\227\260\165 -\352\014\304\301\230\312\126\005\300\250\255\046\110\257\055\040 -\350\201\307\266\337\103\301\054\035\165\113\324\102\215\347\172 -\250\164\334\146\102\131\207\263\365\151\155\331\251\236\263\175 -\034\061\301\365\124\342\131\044\111\345\356\275\071\246\153\212 -\230\104\373\233\327\052\203\227\064\055\307\175\065\114\055\064 -\270\076\015\304\354\210\047\257\236\222\375\120\141\202\250\140 -\007\024\123\314\145\023\301\366\107\104\151\322\061\310\246\335 -\056\263\013\336\112\215\133\075\253\015\302\065\122\242\126\067 -\314\062\213\050\205\102\234\221\100\172\160\053\070\066\325\341 -\163\032\037\345\372\176\137\334\326\234\073\060\352\333\300\133 -\047\134\323\163\007\301\302\363\114\233\157\237\033\312\036\252 -\250\070\063\011\130\262\256\374\007\350\066\334\125\272\057\117 -\100\376\172\275\006\246\201\301\223\042\174\206\021\012\006\167 -\110\256\065\267\057\062\232\141\136\213\276\051\237\051\044\210 -\126\071\054\250\322\253\226\003\132\324\110\237\271\100\204\013 -\230\150\373\001\103\326\033\342\011\261\227\034 +\060\202\003\124\060\202\002\074\240\003\002\001\002\002\003\002 +\064\126\060\015\006\011\052\206\110\206\367\015\001\001\005\005 +\000\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162 +\165\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004 +\003\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142 +\141\154\040\103\101\060\036\027\015\060\062\060\065\062\061\060 +\064\060\060\060\060\132\027\015\062\062\060\065\062\061\060\064 +\060\060\060\060\132\060\102\061\013\060\011\006\003\125\004\006 +\023\002\125\123\061\026\060\024\006\003\125\004\012\023\015\107 +\145\157\124\162\165\163\164\040\111\156\143\056\061\033\060\031 +\006\003\125\004\003\023\022\107\145\157\124\162\165\163\164\040 +\107\154\157\142\141\154\040\103\101\060\202\001\042\060\015\006 +\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017 +\000\060\202\001\012\002\202\001\001\000\332\314\030\143\060\375 +\364\027\043\032\126\176\133\337\074\154\070\344\161\267\170\221 +\324\274\241\330\114\370\250\103\266\003\351\115\041\007\010\210 +\332\130\057\146\071\051\275\005\170\213\235\070\350\005\267\152 +\176\161\244\346\304\140\246\260\357\200\344\211\050\017\236\045 +\326\355\203\363\255\246\221\307\230\311\102\030\065\024\235\255 +\230\106\222\056\117\312\361\207\103\301\026\225\127\055\120\357 +\211\055\200\172\127\255\362\356\137\153\322\000\215\271\024\370 +\024\025\065\331\300\106\243\173\162\310\221\277\311\125\053\315 +\320\227\076\234\046\144\314\337\316\203\031\161\312\116\346\324 +\325\173\251\031\315\125\336\310\354\322\136\070\123\345\134\117 +\214\055\376\120\043\066\374\146\346\313\216\244\071\031\000\267 +\225\002\071\221\013\016\376\070\056\321\035\005\232\366\115\076 +\157\017\007\035\257\054\036\217\140\071\342\372\066\123\023\071 +\324\136\046\053\333\075\250\024\275\062\353\030\003\050\122\004 +\161\345\253\063\075\341\070\273\007\066\204\142\234\171\352\026 +\060\364\137\300\053\350\161\153\344\371\002\003\001\000\001\243 +\123\060\121\060\017\006\003\125\035\023\001\001\377\004\005\060 +\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\300 +\172\230\150\215\211\373\253\005\144\014\021\175\252\175\145\270 +\312\314\116\060\037\006\003\125\035\043\004\030\060\026\200\024 +\300\172\230\150\215\211\373\253\005\144\014\021\175\252\175\145 +\270\312\314\116\060\015\006\011\052\206\110\206\367\015\001\001 +\005\005\000\003\202\001\001\000\065\343\051\152\345\057\135\124 +\216\051\120\224\237\231\032\024\344\217\170\052\142\224\242\047 +\147\236\320\317\032\136\107\351\301\262\244\317\335\101\032\005 +\116\233\113\356\112\157\125\122\263\044\241\067\012\353\144\166 +\052\056\054\363\375\073\165\220\277\372\161\330\307\075\067\322 +\265\005\225\142\271\246\336\211\075\066\173\070\167\110\227\254 +\246\040\217\056\246\311\014\302\262\231\105\000\307\316\021\121 +\042\042\340\245\352\266\025\110\011\144\352\136\117\164\367\005 +\076\307\212\122\014\333\025\264\275\155\233\345\306\261\124\150 +\251\343\151\220\266\232\245\017\270\271\077\040\175\256\112\265 +\270\234\344\035\266\253\346\224\245\301\307\203\255\333\365\047 +\207\016\004\154\325\377\335\240\135\355\207\122\267\053\025\002 +\256\071\246\152\164\351\332\304\347\274\115\064\036\251\134\115 +\063\137\222\011\057\210\146\135\167\227\307\035\166\023\251\325 +\345\361\026\011\021\065\325\254\333\044\161\160\054\230\126\013 +\331\027\264\321\343\121\053\136\165\350\325\320\334\117\064\355 +\302\005\146\200\241\313\346\063 END -# Trust for Certificate "beTRUSTed Root CA - RSA Implementation" +# Trust for Certificate "GeoTrust Global CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "beTRUSTed Root CA - RSA Implementation" +CKA_LABEL UTF8 "GeoTrust Global CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\035\202\131\312\041\047\303\313\301\154\331\062\366\054\145\051 -\214\250\207\022 +\336\050\364\244\377\345\271\057\243\305\003\321\243\111\247\371 +\226\052\202\022 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\206\102\005\011\274\247\235\354\035\363\056\016\272\330\035\320 +\367\165\253\051\373\121\116\267\167\136\377\005\074\231\216\365 END CKA_ISSUER MULTILINE_OCTAL -\060\142\061\022\060\020\006\003\125\004\012\023\011\142\145\124 -\122\125\123\124\145\144\061\033\060\031\006\003\125\004\013\023 -\022\142\145\124\122\125\123\124\145\144\040\122\157\157\164\040 -\103\101\163\061\057\060\055\006\003\125\004\003\023\046\142\145 -\124\122\125\123\124\145\144\040\122\157\157\164\040\103\101\040 -\055\040\122\123\101\040\111\155\160\154\145\155\145\156\164\141 -\164\151\157\156 +\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004\003 +\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142\141 +\154\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\073\131\307\173\315\133\127\236\275\067\122\254\166\264 -\252\032 +\002\003\002\064\126 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -7284,111 +7207,112 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "RSA Security 2048 v3" +# Certificate "GeoTrust Global CA 2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "RSA Security 2048 v3" +CKA_LABEL UTF8 "GeoTrust Global CA 2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 -\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 -\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 -\162\151\164\171\040\062\060\064\070\040\126\063 +\060\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003 +\023\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141 +\154\040\103\101\040\062 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 -\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 -\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 -\162\151\164\171\040\062\060\064\070\040\126\063 +\060\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003 +\023\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141 +\154\040\103\101\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\012\001\001\001\000\000\002\174\000\000\000\012\000\000 -\000\002 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\141\060\202\002\111\240\003\002\001\002\002\020\012 -\001\001\001\000\000\002\174\000\000\000\012\000\000\000\002\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\072 -\061\031\060\027\006\003\125\004\012\023\020\122\123\101\040\123 -\145\143\165\162\151\164\171\040\111\156\143\061\035\060\033\006 -\003\125\004\013\023\024\122\123\101\040\123\145\143\165\162\151 -\164\171\040\062\060\064\070\040\126\063\060\036\027\015\060\061 -\060\062\062\062\062\060\063\071\062\063\132\027\015\062\066\060 -\062\062\062\062\060\063\071\062\063\132\060\072\061\031\060\027 -\006\003\125\004\012\023\020\122\123\101\040\123\145\143\165\162 -\151\164\171\040\111\156\143\061\035\060\033\006\003\125\004\013 -\023\024\122\123\101\040\123\145\143\165\162\151\164\171\040\062 -\060\064\070\040\126\063\060\202\001\042\060\015\006\011\052\206 -\110\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202 -\001\012\002\202\001\001\000\267\217\125\161\322\200\335\173\151 -\171\247\360\030\120\062\074\142\147\366\012\225\007\335\346\033 -\363\236\331\322\101\124\153\255\237\174\276\031\315\373\106\253 -\101\150\036\030\352\125\310\057\221\170\211\050\373\047\051\140 -\377\337\217\214\073\311\111\233\265\244\224\316\001\352\076\265 -\143\173\177\046\375\031\335\300\041\275\204\321\055\117\106\303 -\116\334\330\067\071\073\050\257\313\235\032\352\053\257\041\245 -\301\043\042\270\270\033\132\023\207\127\203\321\360\040\347\350 -\117\043\102\260\000\245\175\211\351\351\141\163\224\230\161\046 -\274\055\152\340\367\115\360\361\266\052\070\061\201\015\051\341 -\000\301\121\017\114\122\370\004\132\252\175\162\323\270\207\052 -\273\143\020\003\052\263\241\117\015\132\136\106\267\075\016\365 -\164\354\231\237\371\075\044\201\210\246\335\140\124\350\225\066 -\075\306\011\223\232\243\022\200\000\125\231\031\107\275\320\245 -\174\303\272\373\037\367\365\017\370\254\271\265\364\067\230\023 -\030\336\205\133\267\014\202\073\207\157\225\071\130\060\332\156 -\001\150\027\042\314\300\013\002\003\001\000\001\243\143\060\141 -\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001 -\377\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001 -\006\060\037\006\003\125\035\043\004\030\060\026\200\024\007\303 -\121\060\244\252\351\105\256\065\044\372\377\044\054\063\320\261 -\235\214\060\035\006\003\125\035\016\004\026\004\024\007\303\121 -\060\244\252\351\105\256\065\044\372\377\044\054\063\320\261\235 -\214\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 -\003\202\001\001\000\137\076\206\166\156\270\065\074\116\066\034 -\036\171\230\277\375\325\022\021\171\122\016\356\061\211\274\335 -\177\371\321\306\025\041\350\212\001\124\015\072\373\124\271\326 -\143\324\261\252\226\115\242\102\115\324\123\037\213\020\336\177 -\145\276\140\023\047\161\210\244\163\343\204\143\321\244\125\341 -\120\223\346\033\016\171\320\147\274\106\310\277\077\027\015\225 -\346\306\220\151\336\347\264\057\336\225\175\320\022\077\075\076 -\177\115\077\024\150\365\021\120\325\301\364\220\245\010\035\061 -\140\377\140\214\043\124\012\257\376\241\156\305\321\172\052\150 -\170\317\036\202\012\040\264\037\255\345\205\262\152\150\165\116 -\255\045\067\224\205\276\275\241\324\352\267\014\113\074\235\350 -\022\000\360\137\254\015\341\254\160\143\163\367\177\171\237\062 -\045\102\164\005\200\050\277\275\301\044\226\130\025\261\027\041 -\351\211\113\333\007\210\147\364\025\255\160\076\057\115\205\073 -\302\267\333\376\230\150\043\211\341\164\017\336\364\305\204\143 -\051\033\314\313\007\311\000\244\251\327\302\042\117\147\327\167 -\354\040\005\141\336 +\060\202\003\146\060\202\002\116\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061\026 +\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165\163 +\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003\023 +\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141\154 +\040\103\101\040\062\060\036\027\015\060\064\060\063\060\064\060 +\065\060\060\060\060\132\027\015\061\071\060\063\060\064\060\065 +\060\060\060\060\132\060\104\061\013\060\011\006\003\125\004\006 +\023\002\125\123\061\026\060\024\006\003\125\004\012\023\015\107 +\145\157\124\162\165\163\164\040\111\156\143\056\061\035\060\033 +\006\003\125\004\003\023\024\107\145\157\124\162\165\163\164\040 +\107\154\157\142\141\154\040\103\101\040\062\060\202\001\042\060 +\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202 +\001\017\000\060\202\001\012\002\202\001\001\000\357\074\115\100 +\075\020\337\073\123\000\341\147\376\224\140\025\076\205\210\361 +\211\015\220\310\050\043\231\005\350\053\040\235\306\363\140\106 +\330\301\262\325\214\061\331\334\040\171\044\201\277\065\062\374 +\143\151\333\261\052\153\356\041\130\362\010\351\170\313\157\313 +\374\026\122\310\221\304\377\075\163\336\261\076\247\302\175\146 +\301\365\176\122\044\032\342\325\147\221\320\202\020\327\170\113 +\117\053\102\071\275\144\055\100\240\260\020\323\070\110\106\210 +\241\014\273\072\063\052\142\230\373\000\235\023\131\177\157\073 +\162\252\356\246\017\206\371\005\141\352\147\177\014\067\226\213 +\346\151\026\107\021\302\047\131\003\263\246\140\302\041\100\126 +\372\240\307\175\072\023\343\354\127\307\263\326\256\235\211\200 +\367\001\347\054\366\226\053\023\015\171\054\331\300\344\206\173 +\113\214\014\162\202\212\373\027\315\000\154\072\023\074\260\204 +\207\113\026\172\051\262\117\333\035\324\013\363\146\067\275\330 +\366\127\273\136\044\172\270\074\213\271\372\222\032\032\204\236 +\330\164\217\252\033\177\136\364\376\105\042\041\002\003\001\000 +\001\243\143\060\141\060\017\006\003\125\035\023\001\001\377\004 +\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004 +\024\161\070\066\362\002\061\123\107\053\156\272\145\106\251\020 +\025\130\040\005\011\060\037\006\003\125\035\043\004\030\060\026 +\200\024\161\070\066\362\002\061\123\107\053\156\272\145\106\251 +\020\025\130\040\005\011\060\016\006\003\125\035\017\001\001\377 +\004\004\003\002\001\206\060\015\006\011\052\206\110\206\367\015 +\001\001\005\005\000\003\202\001\001\000\003\367\265\053\253\135 +\020\374\173\262\262\136\254\233\016\176\123\170\131\076\102\004 +\376\165\243\255\254\201\116\327\002\213\136\304\055\310\122\166 +\307\054\037\374\201\062\230\321\113\306\222\223\063\065\061\057 +\374\330\035\104\335\340\201\177\235\351\213\341\144\221\142\013 +\071\010\214\254\164\235\131\331\172\131\122\227\021\271\026\173 +\157\105\323\226\331\061\175\002\066\017\234\073\156\317\054\015 +\003\106\105\353\240\364\177\110\104\306\010\100\314\336\033\160 +\265\051\255\272\213\073\064\145\165\033\161\041\035\054\024\012 +\260\226\225\270\326\352\362\145\373\051\272\117\352\221\223\164 +\151\266\362\377\341\032\320\014\321\166\205\313\212\045\275\227 +\136\054\157\025\231\046\347\266\051\377\042\354\311\002\307\126 +\000\315\111\271\263\154\173\123\004\032\342\250\311\252\022\005 +\043\302\316\347\273\004\002\314\300\107\242\344\304\051\057\133 +\105\127\211\121\356\074\353\122\010\377\007\065\036\237\065\152 +\107\112\126\230\321\132\205\037\214\365\042\277\253\316\203\363 +\342\042\051\256\175\203\100\250\272\154 END -# Trust for Certificate "RSA Security 2048 v3" +# Trust for Certificate "GeoTrust Global CA 2" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "RSA Security 2048 v3" +CKA_LABEL UTF8 "GeoTrust Global CA 2" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\045\001\220\031\317\373\331\231\034\267\150\045\164\215\224\137 -\060\223\225\102 +\251\351\170\010\024\067\130\210\362\005\031\260\155\053\015\053 +\140\026\220\175 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\167\015\031\261\041\375\000\102\234\076\014\245\335\013\002\216 +\016\100\247\154\336\003\135\217\321\017\344\321\215\371\154\251 END CKA_ISSUER MULTILINE_OCTAL -\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 -\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 -\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 -\162\151\164\171\040\062\060\064\070\040\126\063 +\060\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003 +\023\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141 +\154\040\103\101\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\012\001\001\001\000\000\002\174\000\000\000\012\000\000 -\000\002 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -7396,94 +7320,144 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "RSA Security 1024 v3" +# Certificate "GeoTrust Universal CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "RSA Security 1024 v3" +CKA_LABEL UTF8 "GeoTrust Universal CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 -\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 -\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 -\162\151\164\171\040\061\060\062\064\040\126\063 +\060\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003 +\023\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145 +\162\163\141\154\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 -\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 -\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 -\162\151\164\171\040\061\060\062\064\040\126\063 +\060\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003 +\023\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145 +\162\163\141\154\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\012\001\001\001\000\000\002\174\000\000\000\013\000\000 -\000\002 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\002\134\060\202\001\305\240\003\002\001\002\002\020\012 -\001\001\001\000\000\002\174\000\000\000\013\000\000\000\002\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\072 -\061\031\060\027\006\003\125\004\012\023\020\122\123\101\040\123 -\145\143\165\162\151\164\171\040\111\156\143\061\035\060\033\006 -\003\125\004\013\023\024\122\123\101\040\123\145\143\165\162\151 -\164\171\040\061\060\062\064\040\126\063\060\036\027\015\060\061 -\060\062\062\062\062\061\060\061\064\071\132\027\015\062\066\060 -\062\062\062\062\060\060\061\064\071\132\060\072\061\031\060\027 -\006\003\125\004\012\023\020\122\123\101\040\123\145\143\165\162 -\151\164\171\040\111\156\143\061\035\060\033\006\003\125\004\013 -\023\024\122\123\101\040\123\145\143\165\162\151\164\171\040\061 -\060\062\064\040\126\063\060\201\237\060\015\006\011\052\206\110 -\206\367\015\001\001\001\005\000\003\201\215\000\060\201\211\002 -\201\201\000\325\335\376\146\011\317\044\074\076\256\201\116\116 -\212\304\151\200\133\131\073\337\271\115\114\312\265\055\303\047 -\055\074\257\000\102\155\274\050\246\226\317\177\327\130\254\203 -\012\243\125\265\173\027\220\025\204\114\212\356\046\231\334\130 -\357\307\070\246\252\257\320\216\102\310\142\327\253\254\251\373 -\112\175\277\352\376\022\115\335\377\046\055\157\066\124\150\310 -\322\204\126\356\222\123\141\011\263\077\071\233\250\311\233\275 -\316\237\176\324\031\152\026\051\030\276\327\072\151\334\045\133 -\063\032\121\002\003\001\000\001\243\143\060\141\060\017\006\003 -\125\035\023\001\001\377\004\005\060\003\001\001\377\060\016\006 -\003\125\035\017\001\001\377\004\004\003\002\001\006\060\037\006 -\003\125\035\043\004\030\060\026\200\024\304\300\034\244\007\224 -\375\315\115\001\324\124\332\245\014\137\336\256\005\132\060\035 -\006\003\125\035\016\004\026\004\024\304\300\034\244\007\224\375 -\315\115\001\324\124\332\245\014\137\336\256\005\132\060\015\006 -\011\052\206\110\206\367\015\001\001\005\005\000\003\201\201\000 -\077\055\152\343\046\103\225\175\211\227\145\373\165\344\162\035 -\106\127\304\141\153\151\237\022\233\054\325\132\350\300\242\360 -\103\225\343\037\351\166\315\334\353\274\223\240\145\012\307\115 -\117\137\247\257\242\106\024\271\014\363\314\275\152\156\267\235 -\336\045\102\320\124\377\236\150\163\143\334\044\353\042\277\250 -\162\362\136\000\341\015\116\072\103\156\231\116\077\211\170\003 -\230\312\363\125\314\235\256\216\301\252\105\230\372\217\032\240 -\215\210\043\361\025\101\015\245\106\076\221\077\213\353\367\161 +\060\202\005\150\060\202\003\120\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061\026 +\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165\163 +\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003\023 +\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145\162 +\163\141\154\040\103\101\060\036\027\015\060\064\060\063\060\064 +\060\065\060\060\060\060\132\027\015\062\071\060\063\060\064\060 +\065\060\060\060\060\132\060\105\061\013\060\011\006\003\125\004 +\006\023\002\125\123\061\026\060\024\006\003\125\004\012\023\015 +\107\145\157\124\162\165\163\164\040\111\156\143\056\061\036\060 +\034\006\003\125\004\003\023\025\107\145\157\124\162\165\163\164 +\040\125\156\151\166\145\162\163\141\154\040\103\101\060\202\002 +\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000 +\003\202\002\017\000\060\202\002\012\002\202\002\001\000\246\025 +\125\240\243\306\340\037\214\235\041\120\327\301\276\053\133\265 +\244\236\241\331\162\130\275\000\033\114\277\141\311\024\035\105 +\202\253\306\035\200\326\075\353\020\234\072\257\155\044\370\274 +\161\001\236\006\365\174\137\036\301\016\125\312\203\232\131\060 +\256\031\313\060\110\225\355\042\067\215\364\112\232\162\146\076 +\255\225\300\340\026\000\340\020\037\053\061\016\327\224\124\323 +\102\063\240\064\035\036\105\166\335\117\312\030\067\354\205\025 +\172\031\010\374\325\307\234\360\362\251\056\020\251\222\346\075 +\130\075\251\026\150\074\057\165\041\030\177\050\167\245\341\141 +\027\267\246\351\370\036\231\333\163\156\364\012\242\041\154\356 +\332\252\205\222\146\257\366\172\153\202\332\272\042\010\065\017 +\317\102\361\065\372\152\356\176\053\045\314\072\021\344\155\257 +\163\262\166\035\255\320\262\170\147\032\244\071\034\121\013\147 +\126\203\375\070\135\015\316\335\360\273\053\226\037\336\173\062 +\122\375\035\273\265\006\241\262\041\136\245\326\225\150\177\360 +\231\236\334\105\010\076\347\322\011\015\065\224\335\200\116\123 +\227\327\265\011\104\040\144\026\027\003\002\114\123\015\150\336 +\325\252\162\115\223\155\202\016\333\234\275\317\264\363\134\135 +\124\172\151\011\226\326\333\021\301\215\165\250\264\317\071\310 +\316\074\274\044\174\346\142\312\341\275\175\247\275\127\145\013 +\344\376\045\355\266\151\020\334\050\032\106\275\001\035\320\227 +\265\341\230\073\300\067\144\326\075\224\356\013\341\365\050\256 +\013\126\277\161\213\043\051\101\216\206\305\113\122\173\330\161 +\253\037\212\025\246\073\203\132\327\130\001\121\306\114\101\331 +\177\330\101\147\162\242\050\337\140\203\251\236\310\173\374\123 +\163\162\131\365\223\172\027\166\016\316\367\345\134\331\013\125 +\064\242\252\133\265\152\124\347\023\312\127\354\227\155\364\136 +\006\057\105\213\130\324\043\026\222\344\026\156\050\143\131\060 +\337\120\001\234\143\211\032\237\333\027\224\202\160\067\303\044 +\236\232\107\326\132\312\116\250\151\211\162\037\221\154\333\176 +\236\033\255\307\037\163\335\054\117\031\145\375\177\223\100\020 +\056\322\360\355\074\236\056\050\076\151\046\063\305\173\002\003 +\001\000\001\243\143\060\141\060\017\006\003\125\035\023\001\001 +\377\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004 +\026\004\024\332\273\056\252\260\014\270\210\046\121\164\134\155 +\003\323\300\330\217\172\326\060\037\006\003\125\035\043\004\030 +\060\026\200\024\332\273\056\252\260\014\270\210\046\121\164\134 +\155\003\323\300\330\217\172\326\060\016\006\003\125\035\017\001 +\001\377\004\004\003\002\001\206\060\015\006\011\052\206\110\206 +\367\015\001\001\005\005\000\003\202\002\001\000\061\170\346\307 +\265\337\270\224\100\311\161\304\250\065\354\106\035\302\205\363 +\050\130\206\260\013\374\216\262\071\217\104\125\253\144\204\134 +\151\251\320\232\070\074\372\345\037\065\345\104\343\200\171\224 +\150\244\273\304\237\075\341\064\315\060\106\213\124\053\225\245 +\357\367\077\231\204\375\065\346\317\061\306\334\152\277\247\327 +\043\010\341\230\136\303\132\010\166\251\246\257\167\057\267\140 +\275\104\106\152\357\227\377\163\225\301\216\350\223\373\375\061 +\267\354\127\021\021\105\233\060\361\032\210\071\301\117\074\247 +\000\325\307\374\253\155\200\042\160\245\014\340\135\004\051\002 +\373\313\240\221\321\174\326\303\176\120\325\235\130\276\101\070 +\353\271\165\074\025\331\233\311\112\203\131\300\332\123\375\063 +\273\066\030\233\205\017\025\335\356\055\254\166\223\271\331\001 +\215\110\020\250\373\365\070\206\361\333\012\306\275\204\243\043 +\101\336\326\167\157\205\324\205\034\120\340\256\121\212\272\215 +\076\166\342\271\312\047\362\137\237\357\156\131\015\006\330\053 +\027\244\322\174\153\273\137\024\032\110\217\032\114\347\263\107 +\034\216\114\105\053\040\356\110\337\347\335\011\216\030\250\332 +\100\215\222\046\021\123\141\163\135\353\275\347\304\115\051\067 +\141\353\254\071\055\147\056\026\326\365\000\203\205\241\314\177 +\166\304\175\344\267\113\146\357\003\105\140\151\266\014\122\226 +\222\204\136\246\243\265\244\076\053\331\314\330\033\107\252\362 +\104\332\117\371\003\350\360\024\313\077\363\203\336\320\301\124 +\343\267\350\012\067\115\213\040\131\003\060\031\241\054\310\275 +\021\037\337\256\311\112\305\363\047\146\146\206\254\150\221\377 +\331\346\123\034\017\213\134\151\145\012\046\310\036\064\303\135 +\121\173\327\251\234\006\241\066\335\325\211\224\274\331\344\055 +\014\136\011\154\010\227\174\243\075\174\223\377\077\241\024\247 +\317\265\135\353\333\333\034\304\166\337\210\271\275\105\005\225 +\033\256\374\106\152\114\257\110\343\316\256\017\322\176\353\346 +\154\234\117\201\152\172\144\254\273\076\325\347\313\166\056\305 +\247\110\301\134\220\017\313\310\077\372\346\062\341\215\033\157 +\244\346\216\330\371\051\110\212\316\163\376\054 END -# Trust for Certificate "RSA Security 1024 v3" +# Trust for Certificate "GeoTrust Universal CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "RSA Security 1024 v3" +CKA_LABEL UTF8 "GeoTrust Universal CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\074\273\135\340\374\326\071\174\005\210\345\146\227\275\106\052 -\275\371\134\166 +\346\041\363\065\103\171\005\232\113\150\060\235\212\057\164\042 +\025\207\354\171 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\072\345\120\260\071\276\307\106\066\063\241\376\202\076\215\224 +\222\145\130\213\242\032\061\162\163\150\134\264\245\172\007\110 END CKA_ISSUER MULTILINE_OCTAL -\060\072\061\031\060\027\006\003\125\004\012\023\020\122\123\101 -\040\123\145\143\165\162\151\164\171\040\111\156\143\061\035\060 -\033\006\003\125\004\013\023\024\122\123\101\040\123\145\143\165 -\162\151\164\171\040\061\060\062\064\040\126\063 +\060\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 +\163\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003 +\023\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145 +\162\163\141\154\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\012\001\001\001\000\000\002\174\000\000\000\013\000\000 -\000\002 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -7491,111 +7465,144 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "GeoTrust Global CA" +# Certificate "GeoTrust Universal CA 2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Global CA" +CKA_LABEL UTF8 "GeoTrust Universal CA 2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\060\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061 \026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004\003 -\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142\141 -\154\040\103\101 +\163\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003 +\023\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145 +\162\163\141\154\040\103\101\040\062 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\060\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061 \026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004\003 -\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142\141 -\154\040\103\101 +\163\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003 +\023\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145 +\162\163\141\154\040\103\101\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\003\002\064\126 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\124\060\202\002\074\240\003\002\001\002\002\003\002 -\064\126\060\015\006\011\052\206\110\206\367\015\001\001\005\005 -\000\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162 -\165\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004 -\003\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142 -\141\154\040\103\101\060\036\027\015\060\062\060\065\062\061\060 -\064\060\060\060\060\132\027\015\062\062\060\065\062\061\060\064 -\060\060\060\060\132\060\102\061\013\060\011\006\003\125\004\006 -\023\002\125\123\061\026\060\024\006\003\125\004\012\023\015\107 -\145\157\124\162\165\163\164\040\111\156\143\056\061\033\060\031 -\006\003\125\004\003\023\022\107\145\157\124\162\165\163\164\040 -\107\154\157\142\141\154\040\103\101\060\202\001\042\060\015\006 -\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017 -\000\060\202\001\012\002\202\001\001\000\332\314\030\143\060\375 -\364\027\043\032\126\176\133\337\074\154\070\344\161\267\170\221 -\324\274\241\330\114\370\250\103\266\003\351\115\041\007\010\210 -\332\130\057\146\071\051\275\005\170\213\235\070\350\005\267\152 -\176\161\244\346\304\140\246\260\357\200\344\211\050\017\236\045 -\326\355\203\363\255\246\221\307\230\311\102\030\065\024\235\255 -\230\106\222\056\117\312\361\207\103\301\026\225\127\055\120\357 -\211\055\200\172\127\255\362\356\137\153\322\000\215\271\024\370 -\024\025\065\331\300\106\243\173\162\310\221\277\311\125\053\315 -\320\227\076\234\046\144\314\337\316\203\031\161\312\116\346\324 -\325\173\251\031\315\125\336\310\354\322\136\070\123\345\134\117 -\214\055\376\120\043\066\374\146\346\313\216\244\071\031\000\267 -\225\002\071\221\013\016\376\070\056\321\035\005\232\366\115\076 -\157\017\007\035\257\054\036\217\140\071\342\372\066\123\023\071 -\324\136\046\053\333\075\250\024\275\062\353\030\003\050\122\004 -\161\345\253\063\075\341\070\273\007\066\204\142\234\171\352\026 -\060\364\137\300\053\350\161\153\344\371\002\003\001\000\001\243 -\123\060\121\060\017\006\003\125\035\023\001\001\377\004\005\060 -\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\300 -\172\230\150\215\211\373\253\005\144\014\021\175\252\175\145\270 -\312\314\116\060\037\006\003\125\035\043\004\030\060\026\200\024 -\300\172\230\150\215\211\373\253\005\144\014\021\175\252\175\145 -\270\312\314\116\060\015\006\011\052\206\110\206\367\015\001\001 -\005\005\000\003\202\001\001\000\065\343\051\152\345\057\135\124 -\216\051\120\224\237\231\032\024\344\217\170\052\142\224\242\047 -\147\236\320\317\032\136\107\351\301\262\244\317\335\101\032\005 -\116\233\113\356\112\157\125\122\263\044\241\067\012\353\144\166 -\052\056\054\363\375\073\165\220\277\372\161\330\307\075\067\322 -\265\005\225\142\271\246\336\211\075\066\173\070\167\110\227\254 -\246\040\217\056\246\311\014\302\262\231\105\000\307\316\021\121 -\042\042\340\245\352\266\025\110\011\144\352\136\117\164\367\005 -\076\307\212\122\014\333\025\264\275\155\233\345\306\261\124\150 -\251\343\151\220\266\232\245\017\270\271\077\040\175\256\112\265 -\270\234\344\035\266\253\346\224\245\301\307\203\255\333\365\047 -\207\016\004\154\325\377\335\240\135\355\207\122\267\053\025\002 -\256\071\246\152\164\351\332\304\347\274\115\064\036\251\134\115 -\063\137\222\011\057\210\146\135\167\227\307\035\166\023\251\325 -\345\361\026\011\021\065\325\254\333\044\161\160\054\230\126\013 -\331\027\264\321\343\121\053\136\165\350\325\320\334\117\064\355 -\302\005\146\200\241\313\346\063 +\060\202\005\154\060\202\003\124\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061\026 +\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165\163 +\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003\023 +\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145\162 +\163\141\154\040\103\101\040\062\060\036\027\015\060\064\060\063 +\060\064\060\065\060\060\060\060\132\027\015\062\071\060\063\060 +\064\060\065\060\060\060\060\132\060\107\061\013\060\011\006\003 +\125\004\006\023\002\125\123\061\026\060\024\006\003\125\004\012 +\023\015\107\145\157\124\162\165\163\164\040\111\156\143\056\061 +\040\060\036\006\003\125\004\003\023\027\107\145\157\124\162\165 +\163\164\040\125\156\151\166\145\162\163\141\154\040\103\101\040 +\062\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001 +\001\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002 +\001\000\263\124\122\301\311\076\362\331\334\261\123\032\131\051 +\347\261\303\105\050\345\327\321\355\305\305\113\241\252\164\173 +\127\257\112\046\374\330\365\136\247\156\031\333\164\014\117\065 +\133\062\013\001\343\333\353\172\167\065\352\252\132\340\326\350 +\241\127\224\360\220\243\164\126\224\104\060\003\036\134\116\053 +\205\046\164\202\172\014\166\240\157\115\316\101\055\240\025\006 +\024\137\267\102\315\173\217\130\141\064\334\052\010\371\056\303 +\001\246\042\104\034\114\007\202\346\133\316\320\112\174\004\323 +\031\163\047\360\252\230\177\056\257\116\353\207\036\044\167\152 +\135\266\350\133\105\272\334\303\241\005\157\126\216\217\020\046 +\245\111\303\056\327\101\207\042\340\117\206\312\140\265\352\241 +\143\300\001\227\020\171\275\000\074\022\155\053\025\261\254\113 +\261\356\030\271\116\226\334\334\166\377\073\276\317\137\003\300 +\374\073\350\276\106\033\377\332\100\302\122\367\376\343\072\367 +\152\167\065\320\332\215\353\136\030\152\061\307\036\272\074\033 +\050\326\153\124\306\252\133\327\242\054\033\031\314\242\002\366 +\233\131\275\067\153\206\265\155\202\272\330\352\311\126\274\251 +\066\130\375\076\031\363\355\014\046\251\223\070\370\117\301\135 +\042\006\320\227\352\341\255\306\125\340\201\053\050\203\072\372 +\364\173\041\121\000\276\122\070\316\315\146\171\250\364\201\126 +\342\320\203\011\107\121\133\120\152\317\333\110\032\135\076\367 +\313\366\145\367\154\361\225\370\002\073\062\126\202\071\172\133 +\275\057\211\033\277\241\264\350\377\177\215\214\337\003\361\140 +\116\130\021\114\353\243\077\020\053\203\232\001\163\331\224\155 +\204\000\047\146\254\360\160\100\011\102\222\255\117\223\015\141 +\011\121\044\330\222\325\013\224\141\262\207\262\355\377\232\065 +\377\205\124\312\355\104\103\254\033\074\026\153\110\112\012\034 +\100\210\037\222\302\013\000\005\377\362\310\002\112\244\252\251 +\314\231\226\234\057\130\340\175\341\276\273\007\334\137\004\162 +\134\061\064\303\354\137\055\340\075\144\220\042\346\321\354\270 +\056\335\131\256\331\241\067\277\124\065\334\163\062\117\214\004 +\036\063\262\311\106\361\330\134\310\125\120\311\150\275\250\272 +\066\011\002\003\001\000\001\243\143\060\141\060\017\006\003\125 +\035\023\001\001\377\004\005\060\003\001\001\377\060\035\006\003 +\125\035\016\004\026\004\024\166\363\125\341\372\244\066\373\360 +\237\134\142\161\355\074\364\107\070\020\053\060\037\006\003\125 +\035\043\004\030\060\026\200\024\166\363\125\341\372\244\066\373 +\360\237\134\142\161\355\074\364\107\070\020\053\060\016\006\003 +\125\035\017\001\001\377\004\004\003\002\001\206\060\015\006\011 +\052\206\110\206\367\015\001\001\005\005\000\003\202\002\001\000 +\146\301\306\043\363\331\340\056\156\137\350\317\256\260\260\045 +\115\053\370\073\130\233\100\044\067\132\313\253\026\111\377\263 +\165\171\063\241\057\155\160\027\064\221\376\147\176\217\354\233 +\345\136\202\251\125\037\057\334\324\121\007\022\376\254\026\076 +\054\065\306\143\374\334\020\353\015\243\252\320\174\314\321\320 +\057\121\056\304\024\132\336\350\031\341\076\306\314\244\051\347 +\056\204\252\006\060\170\166\124\163\050\230\131\070\340\000\015 +\142\323\102\175\041\237\256\075\072\214\325\372\167\015\030\053 +\026\016\137\066\341\374\052\265\060\044\317\340\143\014\173\130 +\032\376\231\272\102\022\261\221\364\174\150\342\310\350\257\054 +\352\311\176\256\273\052\075\015\025\334\064\225\266\030\164\250 +\152\017\307\264\364\023\304\344\133\355\012\322\244\227\114\052 +\355\057\154\022\211\075\361\047\160\252\152\003\122\041\237\100 +\250\147\120\362\363\132\037\337\337\043\366\334\170\116\346\230 +\117\125\072\123\343\357\362\364\237\307\174\330\130\257\051\042 +\227\270\340\275\221\056\260\166\354\127\021\317\357\051\104\363 +\351\205\172\140\143\344\135\063\211\027\331\061\252\332\326\363 +\030\065\162\317\207\053\057\143\043\204\135\204\214\077\127\240 +\210\374\231\221\050\046\151\231\324\217\227\104\276\216\325\110 +\261\244\050\051\361\025\264\341\345\236\335\370\217\246\157\046 +\327\011\074\072\034\021\016\246\154\067\367\255\104\207\054\050 +\307\330\164\202\263\320\157\112\127\273\065\051\047\240\213\350 +\041\247\207\144\066\135\314\330\026\254\307\262\047\100\222\125 +\070\050\215\121\156\335\024\147\123\154\161\134\046\204\115\165 +\132\266\176\140\126\251\115\255\373\233\036\227\363\015\331\322 +\227\124\167\332\075\022\267\340\036\357\010\006\254\371\205\207 +\351\242\334\257\176\030\022\203\375\126\027\101\056\325\051\202 +\175\231\364\061\366\161\251\317\054\001\047\245\005\271\252\262 +\110\116\052\357\237\223\122\121\225\074\122\163\216\126\114\027 +\100\300\011\050\344\213\152\110\123\333\354\315\125\125\361\306 +\370\351\242\054\114\246\321\046\137\176\257\132\114\332\037\246 +\362\034\054\176\256\002\026\322\126\320\057\127\123\107\350\222 END -# Trust for Certificate "GeoTrust Global CA" +# Trust for Certificate "GeoTrust Universal CA 2" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Global CA" +CKA_LABEL UTF8 "GeoTrust Universal CA 2" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\336\050\364\244\377\345\271\057\243\305\003\321\243\111\247\371 -\226\052\202\022 +\067\232\031\173\101\205\105\065\014\246\003\151\363\074\056\257 +\107\117\040\171 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\367\165\253\051\373\121\116\267\167\136\377\005\074\231\216\365 +\064\374\270\320\066\333\236\024\263\302\362\333\217\344\224\307 END CKA_ISSUER MULTILINE_OCTAL -\060\102\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\060\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061 \026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\033\060\031\006\003\125\004\003 -\023\022\107\145\157\124\162\165\163\164\040\107\154\157\142\141 -\154\040\103\101 +\163\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003 +\023\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145 +\162\163\141\154\040\103\101\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\003\002\064\126 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -7603,112 +7610,148 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "GeoTrust Global CA 2" +# Certificate "UTN-USER First-Network Applications" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Global CA 2" +CKA_LABEL UTF8 "UTN-USER First-Network Applications" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003 -\023\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141 -\154\040\103\101\040\062 +\060\201\243\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\053\060\051\006\003\125 +\004\003\023\042\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\116\145\164\167\157\162\153\040\101\160\160\154\151\143 +\141\164\151\157\156\163 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003 -\023\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141 -\154\040\103\101\040\062 +\060\201\243\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\053\060\051\006\003\125 +\004\003\023\042\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\116\145\164\167\157\162\153\040\101\160\160\154\151\143 +\141\164\151\157\156\163 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\020\104\276\014\213\120\000\044\264\021\323\066\060\113\300 +\063\167 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\146\060\202\002\116\240\003\002\001\002\002\001\001 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061\026 -\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165\163 -\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003\023 -\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141\154 -\040\103\101\040\062\060\036\027\015\060\064\060\063\060\064\060 -\065\060\060\060\060\132\027\015\061\071\060\063\060\064\060\065 -\060\060\060\060\132\060\104\061\013\060\011\006\003\125\004\006 -\023\002\125\123\061\026\060\024\006\003\125\004\012\023\015\107 -\145\157\124\162\165\163\164\040\111\156\143\056\061\035\060\033 -\006\003\125\004\003\023\024\107\145\157\124\162\165\163\164\040 -\107\154\157\142\141\154\040\103\101\040\062\060\202\001\042\060 -\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202 -\001\017\000\060\202\001\012\002\202\001\001\000\357\074\115\100 -\075\020\337\073\123\000\341\147\376\224\140\025\076\205\210\361 -\211\015\220\310\050\043\231\005\350\053\040\235\306\363\140\106 -\330\301\262\325\214\061\331\334\040\171\044\201\277\065\062\374 -\143\151\333\261\052\153\356\041\130\362\010\351\170\313\157\313 -\374\026\122\310\221\304\377\075\163\336\261\076\247\302\175\146 -\301\365\176\122\044\032\342\325\147\221\320\202\020\327\170\113 -\117\053\102\071\275\144\055\100\240\260\020\323\070\110\106\210 -\241\014\273\072\063\052\142\230\373\000\235\023\131\177\157\073 -\162\252\356\246\017\206\371\005\141\352\147\177\014\067\226\213 -\346\151\026\107\021\302\047\131\003\263\246\140\302\041\100\126 -\372\240\307\175\072\023\343\354\127\307\263\326\256\235\211\200 -\367\001\347\054\366\226\053\023\015\171\054\331\300\344\206\173 -\113\214\014\162\202\212\373\027\315\000\154\072\023\074\260\204 -\207\113\026\172\051\262\117\333\035\324\013\363\146\067\275\330 -\366\127\273\136\044\172\270\074\213\271\372\222\032\032\204\236 -\330\164\217\252\033\177\136\364\376\105\042\041\002\003\001\000 -\001\243\143\060\141\060\017\006\003\125\035\023\001\001\377\004 -\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004 -\024\161\070\066\362\002\061\123\107\053\156\272\145\106\251\020 -\025\130\040\005\011\060\037\006\003\125\035\043\004\030\060\026 -\200\024\161\070\066\362\002\061\123\107\053\156\272\145\106\251 -\020\025\130\040\005\011\060\016\006\003\125\035\017\001\001\377 -\004\004\003\002\001\206\060\015\006\011\052\206\110\206\367\015 -\001\001\005\005\000\003\202\001\001\000\003\367\265\053\253\135 -\020\374\173\262\262\136\254\233\016\176\123\170\131\076\102\004 -\376\165\243\255\254\201\116\327\002\213\136\304\055\310\122\166 -\307\054\037\374\201\062\230\321\113\306\222\223\063\065\061\057 -\374\330\035\104\335\340\201\177\235\351\213\341\144\221\142\013 -\071\010\214\254\164\235\131\331\172\131\122\227\021\271\026\173 -\157\105\323\226\331\061\175\002\066\017\234\073\156\317\054\015 -\003\106\105\353\240\364\177\110\104\306\010\100\314\336\033\160 -\265\051\255\272\213\073\064\145\165\033\161\041\035\054\024\012 -\260\226\225\270\326\352\362\145\373\051\272\117\352\221\223\164 -\151\266\362\377\341\032\320\014\321\166\205\313\212\045\275\227 -\136\054\157\025\231\046\347\266\051\377\042\354\311\002\307\126 -\000\315\111\271\263\154\173\123\004\032\342\250\311\252\022\005 -\043\302\316\347\273\004\002\314\300\107\242\344\304\051\057\133 -\105\127\211\121\356\074\353\122\010\377\007\065\036\237\065\152 -\107\112\126\230\321\132\205\037\214\365\042\277\253\316\203\363 -\342\042\051\256\175\203\100\250\272\154 +\060\202\004\144\060\202\003\114\240\003\002\001\002\002\020\104 +\276\014\213\120\000\044\264\021\323\066\060\113\300\063\167\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 +\243\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 +\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 +\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 +\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 +\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 +\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 +\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 +\165\163\164\056\143\157\155\061\053\060\051\006\003\125\004\003 +\023\042\125\124\116\055\125\123\105\122\106\151\162\163\164\055 +\116\145\164\167\157\162\153\040\101\160\160\154\151\143\141\164 +\151\157\156\163\060\036\027\015\071\071\060\067\060\071\061\070 +\064\070\063\071\132\027\015\061\071\060\067\060\071\061\070\065 +\067\064\071\132\060\201\243\061\013\060\011\006\003\125\004\006 +\023\002\125\123\061\013\060\011\006\003\125\004\010\023\002\125 +\124\061\027\060\025\006\003\125\004\007\023\016\123\141\154\164 +\040\114\141\153\145\040\103\151\164\171\061\036\060\034\006\003 +\125\004\012\023\025\124\150\145\040\125\123\105\122\124\122\125 +\123\124\040\116\145\164\167\157\162\153\061\041\060\037\006\003 +\125\004\013\023\030\150\164\164\160\072\057\057\167\167\167\056 +\165\163\145\162\164\162\165\163\164\056\143\157\155\061\053\060 +\051\006\003\125\004\003\023\042\125\124\116\055\125\123\105\122 +\106\151\162\163\164\055\116\145\164\167\157\162\153\040\101\160 +\160\154\151\143\141\164\151\157\156\163\060\202\001\042\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001 +\017\000\060\202\001\012\002\202\001\001\000\263\373\221\241\344 +\066\125\205\254\006\064\133\240\232\130\262\370\265\017\005\167 +\203\256\062\261\166\222\150\354\043\112\311\166\077\343\234\266 +\067\171\003\271\253\151\215\007\045\266\031\147\344\260\033\030 +\163\141\112\350\176\315\323\057\144\343\246\174\014\372\027\200 +\243\015\107\211\117\121\161\057\356\374\077\371\270\026\200\207 +\211\223\045\040\232\103\202\151\044\166\050\131\065\241\035\300 +\177\203\006\144\026\040\054\323\111\244\205\264\300\141\177\121 +\010\370\150\025\221\200\313\245\325\356\073\072\364\204\004\136 +\140\131\247\214\064\162\356\270\170\305\321\073\022\112\157\176 +\145\047\271\244\125\305\271\157\103\244\305\035\054\231\300\122 +\244\170\114\025\263\100\230\010\153\103\306\001\260\172\173\365 +\153\034\042\077\313\357\377\250\320\072\113\166\025\236\322\321 +\306\056\343\333\127\033\062\242\270\157\350\206\246\077\160\253 +\345\160\222\253\104\036\100\120\373\234\243\142\344\154\156\240 +\310\336\342\200\102\372\351\057\350\316\062\004\217\174\215\267 +\034\243\065\074\025\335\236\303\256\227\245\002\003\001\000\001 +\243\201\221\060\201\216\060\013\006\003\125\035\017\004\004\003 +\002\001\306\060\017\006\003\125\035\023\001\001\377\004\005\060 +\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\372 +\206\311\333\340\272\351\170\365\113\250\326\025\337\360\323\341 +\152\024\074\060\117\006\003\125\035\037\004\110\060\106\060\104 +\240\102\240\100\206\076\150\164\164\160\072\057\057\143\162\154 +\056\165\163\145\162\164\162\165\163\164\056\143\157\155\057\125 +\124\116\055\125\123\105\122\106\151\162\163\164\055\116\145\164 +\167\157\162\153\101\160\160\154\151\143\141\164\151\157\156\163 +\056\143\162\154\060\015\006\011\052\206\110\206\367\015\001\001 +\005\005\000\003\202\001\001\000\244\363\045\314\321\324\221\203 +\042\320\314\062\253\233\226\116\064\221\124\040\045\064\141\137 +\052\002\025\341\213\252\377\175\144\121\317\012\377\274\175\330 +\041\152\170\313\057\121\157\370\102\035\063\275\353\265\173\224 +\303\303\251\240\055\337\321\051\037\035\376\217\077\273\250\105 +\052\177\321\156\125\044\342\273\002\373\061\077\276\350\274\354 +\100\053\370\001\324\126\070\344\312\104\202\265\141\040\041\147 +\145\366\360\013\347\064\370\245\302\234\243\134\100\037\205\223 +\225\006\336\117\324\047\251\266\245\374\026\315\163\061\077\270 +\145\047\317\324\123\032\360\254\156\237\117\005\014\003\201\247 +\204\051\304\132\275\144\127\162\255\073\317\067\030\246\230\306 +\255\006\264\334\010\243\004\325\051\244\226\232\022\147\112\214 +\140\105\235\361\043\232\260\000\234\150\265\230\120\323\357\216 +\056\222\145\261\110\076\041\276\025\060\052\015\265\014\243\153 +\077\256\177\127\365\037\226\174\337\157\335\202\060\054\145\033 +\100\112\315\150\271\162\354\161\166\354\124\216\037\205\014\001 +\152\372\246\070\254\037\304\204 END -# Trust for Certificate "GeoTrust Global CA 2" +# Trust for Certificate "UTN-USER First-Network Applications" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Global CA 2" +CKA_LABEL UTF8 "UTN-USER First-Network Applications" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\251\351\170\010\024\067\130\210\362\005\031\260\155\053\015\053 -\140\026\220\175 +\135\230\234\333\025\226\021\066\121\145\144\033\126\017\333\352 +\052\302\076\361 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\016\100\247\154\336\003\135\217\321\017\344\321\215\371\154\251 +\277\140\131\243\133\272\366\247\166\102\332\157\032\173\120\317 END CKA_ISSUER MULTILINE_OCTAL -\060\104\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\035\060\033\006\003\125\004\003 -\023\024\107\145\157\124\162\165\163\164\040\107\154\157\142\141 -\154\040\103\101\040\062 +\060\201\243\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\053\060\051\006\003\125 +\004\003\023\042\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\116\145\164\167\157\162\153\040\101\160\160\154\151\143 +\141\164\151\157\156\163 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\020\104\276\014\213\120\000\044\264\021\323\066\060\113\300 +\063\167 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -7716,141 +7759,119 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "GeoTrust Universal CA" +# Certificate "America Online Root Certification Authority 1" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Universal CA" +CKA_LABEL UTF8 "America Online Root Certification Authority 1" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003 -\023\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145 -\162\163\141\154\040\103\101 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 +\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 +\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\061 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003 -\023\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145 -\162\163\141\154\040\103\101 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 +\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 +\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\061 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\150\060\202\003\120\240\003\002\001\002\002\001\001 +\060\202\003\244\060\202\002\214\240\003\002\001\002\002\001\001 \060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061\026 -\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165\163 -\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003\023 -\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145\162 -\163\141\154\040\103\101\060\036\027\015\060\064\060\063\060\064 -\060\065\060\060\060\060\132\027\015\062\071\060\063\060\064\060 -\065\060\060\060\060\132\060\105\061\013\060\011\006\003\125\004 -\006\023\002\125\123\061\026\060\024\006\003\125\004\012\023\015 -\107\145\157\124\162\165\163\164\040\111\156\143\056\061\036\060 -\034\006\003\125\004\003\023\025\107\145\157\124\162\165\163\164 -\040\125\156\151\166\145\162\163\141\154\040\103\101\060\202\002 -\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000 -\003\202\002\017\000\060\202\002\012\002\202\002\001\000\246\025 -\125\240\243\306\340\037\214\235\041\120\327\301\276\053\133\265 -\244\236\241\331\162\130\275\000\033\114\277\141\311\024\035\105 -\202\253\306\035\200\326\075\353\020\234\072\257\155\044\370\274 -\161\001\236\006\365\174\137\036\301\016\125\312\203\232\131\060 -\256\031\313\060\110\225\355\042\067\215\364\112\232\162\146\076 -\255\225\300\340\026\000\340\020\037\053\061\016\327\224\124\323 -\102\063\240\064\035\036\105\166\335\117\312\030\067\354\205\025 -\172\031\010\374\325\307\234\360\362\251\056\020\251\222\346\075 -\130\075\251\026\150\074\057\165\041\030\177\050\167\245\341\141 -\027\267\246\351\370\036\231\333\163\156\364\012\242\041\154\356 -\332\252\205\222\146\257\366\172\153\202\332\272\042\010\065\017 -\317\102\361\065\372\152\356\176\053\045\314\072\021\344\155\257 -\163\262\166\035\255\320\262\170\147\032\244\071\034\121\013\147 -\126\203\375\070\135\015\316\335\360\273\053\226\037\336\173\062 -\122\375\035\273\265\006\241\262\041\136\245\326\225\150\177\360 -\231\236\334\105\010\076\347\322\011\015\065\224\335\200\116\123 -\227\327\265\011\104\040\144\026\027\003\002\114\123\015\150\336 -\325\252\162\115\223\155\202\016\333\234\275\317\264\363\134\135 -\124\172\151\011\226\326\333\021\301\215\165\250\264\317\071\310 -\316\074\274\044\174\346\142\312\341\275\175\247\275\127\145\013 -\344\376\045\355\266\151\020\334\050\032\106\275\001\035\320\227 -\265\341\230\073\300\067\144\326\075\224\356\013\341\365\050\256 -\013\126\277\161\213\043\051\101\216\206\305\113\122\173\330\161 -\253\037\212\025\246\073\203\132\327\130\001\121\306\114\101\331 -\177\330\101\147\162\242\050\337\140\203\251\236\310\173\374\123 -\163\162\131\365\223\172\027\166\016\316\367\345\134\331\013\125 -\064\242\252\133\265\152\124\347\023\312\127\354\227\155\364\136 -\006\057\105\213\130\324\043\026\222\344\026\156\050\143\131\060 -\337\120\001\234\143\211\032\237\333\027\224\202\160\067\303\044 -\236\232\107\326\132\312\116\250\151\211\162\037\221\154\333\176 -\236\033\255\307\037\163\335\054\117\031\145\375\177\223\100\020 -\056\322\360\355\074\236\056\050\076\151\046\063\305\173\002\003 -\001\000\001\243\143\060\141\060\017\006\003\125\035\023\001\001 -\377\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004 -\026\004\024\332\273\056\252\260\014\270\210\046\121\164\134\155 -\003\323\300\330\217\172\326\060\037\006\003\125\035\043\004\030 -\060\026\200\024\332\273\056\252\260\014\270\210\046\121\164\134 -\155\003\323\300\330\217\172\326\060\016\006\003\125\035\017\001 -\001\377\004\004\003\002\001\206\060\015\006\011\052\206\110\206 -\367\015\001\001\005\005\000\003\202\002\001\000\061\170\346\307 -\265\337\270\224\100\311\161\304\250\065\354\106\035\302\205\363 -\050\130\206\260\013\374\216\262\071\217\104\125\253\144\204\134 -\151\251\320\232\070\074\372\345\037\065\345\104\343\200\171\224 -\150\244\273\304\237\075\341\064\315\060\106\213\124\053\225\245 -\357\367\077\231\204\375\065\346\317\061\306\334\152\277\247\327 -\043\010\341\230\136\303\132\010\166\251\246\257\167\057\267\140 -\275\104\106\152\357\227\377\163\225\301\216\350\223\373\375\061 -\267\354\127\021\021\105\233\060\361\032\210\071\301\117\074\247 -\000\325\307\374\253\155\200\042\160\245\014\340\135\004\051\002 -\373\313\240\221\321\174\326\303\176\120\325\235\130\276\101\070 -\353\271\165\074\025\331\233\311\112\203\131\300\332\123\375\063 -\273\066\030\233\205\017\025\335\356\055\254\166\223\271\331\001 -\215\110\020\250\373\365\070\206\361\333\012\306\275\204\243\043 -\101\336\326\167\157\205\324\205\034\120\340\256\121\212\272\215 -\076\166\342\271\312\047\362\137\237\357\156\131\015\006\330\053 -\027\244\322\174\153\273\137\024\032\110\217\032\114\347\263\107 -\034\216\114\105\053\040\356\110\337\347\335\011\216\030\250\332 -\100\215\222\046\021\123\141\163\135\353\275\347\304\115\051\067 -\141\353\254\071\055\147\056\026\326\365\000\203\205\241\314\177 -\166\304\175\344\267\113\146\357\003\105\140\151\266\014\122\226 -\222\204\136\246\243\265\244\076\053\331\314\330\033\107\252\362 -\104\332\117\371\003\350\360\024\313\077\363\203\336\320\301\124 -\343\267\350\012\067\115\213\040\131\003\060\031\241\054\310\275 -\021\037\337\256\311\112\305\363\047\146\146\206\254\150\221\377 -\331\346\123\034\017\213\134\151\145\012\046\310\036\064\303\135 -\121\173\327\251\234\006\241\066\335\325\211\224\274\331\344\055 -\014\136\011\154\010\227\174\243\075\174\223\377\077\241\024\247 -\317\265\135\353\333\333\034\304\166\337\210\271\275\105\005\225 -\033\256\374\106\152\114\257\110\343\316\256\017\322\176\353\346 -\154\234\117\201\152\172\144\254\273\076\325\347\313\166\056\305 -\247\110\301\134\220\017\313\310\077\372\346\062\341\215\033\157 -\244\346\216\330\371\051\110\212\316\163\376\054 -END - -# Trust for Certificate "GeoTrust Universal CA" +\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061\034 +\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143\141 +\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060\064 +\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040\117 +\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\040\061\060\036\027\015\060\062\060\065\062\070\060\066 +\060\060\060\060\132\027\015\063\067\061\061\061\071\062\060\064 +\063\060\060\132\060\143\061\013\060\011\006\003\125\004\006\023 +\002\125\123\061\034\060\032\006\003\125\004\012\023\023\101\155 +\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156\143 +\056\061\066\060\064\006\003\125\004\003\023\055\101\155\145\162 +\151\143\141\040\117\156\154\151\156\145\040\122\157\157\164\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\040\061\060\202\001\042\060\015\006 +\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017 +\000\060\202\001\012\002\202\001\001\000\250\057\350\244\151\006 +\003\107\303\351\052\230\377\031\242\160\232\306\120\262\176\245 +\337\150\115\033\174\017\266\227\150\175\055\246\213\227\351\144 +\206\311\243\357\240\206\277\140\145\234\113\124\210\302\110\305 +\112\071\277\024\343\131\125\345\031\264\164\310\264\005\071\134 +\026\245\342\225\005\340\022\256\131\213\242\063\150\130\034\246 +\324\025\267\330\237\327\334\161\253\176\232\277\233\216\063\017 +\042\375\037\056\347\007\066\357\142\071\305\335\313\272\045\024 +\043\336\014\306\075\074\316\202\010\346\146\076\332\121\073\026 +\072\243\005\177\240\334\207\325\234\374\162\251\240\175\170\344 +\267\061\125\036\145\273\324\141\260\041\140\355\020\062\162\305 +\222\045\036\370\220\112\030\170\107\337\176\060\067\076\120\033 +\333\034\323\153\232\206\123\007\260\357\254\006\170\370\204\231 +\376\041\215\114\200\266\014\202\366\146\160\171\032\323\117\243 +\317\361\317\106\260\113\017\076\335\210\142\270\214\251\011\050 +\073\172\307\227\341\036\345\364\237\300\300\256\044\240\310\241 +\331\017\326\173\046\202\151\062\075\247\002\003\001\000\001\243 +\143\060\141\060\017\006\003\125\035\023\001\001\377\004\005\060 +\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\000 +\255\331\243\366\171\366\156\164\251\177\063\075\201\027\327\114 +\317\063\336\060\037\006\003\125\035\043\004\030\060\026\200\024 +\000\255\331\243\366\171\366\156\164\251\177\063\075\201\027\327 +\114\317\063\336\060\016\006\003\125\035\017\001\001\377\004\004 +\003\002\001\206\060\015\006\011\052\206\110\206\367\015\001\001 +\005\005\000\003\202\001\001\000\174\212\321\037\030\067\202\340 +\270\260\243\355\126\225\310\142\141\234\005\242\315\302\142\046 +\141\315\020\026\327\314\264\145\064\320\021\212\255\250\251\005 +\146\357\164\363\155\137\235\231\257\366\213\373\353\122\262\005 +\230\242\157\052\305\124\275\045\275\137\256\310\206\352\106\054 +\301\263\275\301\351\111\160\030\026\227\010\023\214\040\340\033 +\056\072\107\313\036\344\000\060\225\133\364\105\243\300\032\260 +\001\116\253\275\300\043\156\143\077\200\112\305\007\355\334\342 +\157\307\301\142\361\343\162\326\004\310\164\147\013\372\210\253 +\241\001\310\157\360\024\257\322\231\315\121\223\176\355\056\070 +\307\275\316\106\120\075\162\343\171\045\235\233\210\053\020\040 +\335\245\270\062\237\215\340\051\337\041\164\206\202\333\057\202 +\060\306\307\065\206\263\371\226\137\106\333\014\105\375\363\120 +\303\157\306\303\110\255\106\246\341\047\107\012\035\016\233\266 +\302\167\177\143\362\340\175\032\276\374\340\337\327\307\247\154 +\260\371\256\272\074\375\164\264\021\350\130\015\200\274\323\250 +\200\072\231\355\165\314\106\173 +END + +# Trust for Certificate "America Online Root Certification Authority 1" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Universal CA" +CKA_LABEL UTF8 "America Online Root Certification Authority 1" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\346\041\363\065\103\171\005\232\113\150\060\235\212\057\164\042 -\025\207\354\171 +\071\041\301\025\301\135\016\312\134\313\133\304\360\175\041\330 +\005\013\126\152 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\222\145\130\213\242\032\061\162\163\150\134\264\245\172\007\110 +\024\361\010\255\235\372\144\342\211\347\034\317\250\255\175\136 END CKA_ISSUER MULTILINE_OCTAL -\060\105\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\036\060\034\006\003\125\004\003 -\023\025\107\145\157\124\162\165\163\164\040\125\156\151\166\145 -\162\163\141\154\040\103\101 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 +\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 +\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\061 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\001 @@ -7861,293 +7882,154 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "GeoTrust Universal CA 2" +# Certificate "America Online Root Certification Authority 2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Universal CA 2" +CKA_LABEL UTF8 "America Online Root Certification Authority 2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003 -\023\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145 -\162\163\141\154\040\103\101\040\062 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 +\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 +\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\062 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003 -\023\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145 -\162\163\141\154\040\103\101\040\062 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 +\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 +\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\154\060\202\003\124\240\003\002\001\002\002\001\001 +\060\202\005\244\060\202\003\214\240\003\002\001\002\002\001\001 \060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061\026 -\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165\163 -\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003\023 -\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145\162 -\163\141\154\040\103\101\040\062\060\036\027\015\060\064\060\063 -\060\064\060\065\060\060\060\060\132\027\015\062\071\060\063\060 -\064\060\065\060\060\060\060\132\060\107\061\013\060\011\006\003 -\125\004\006\023\002\125\123\061\026\060\024\006\003\125\004\012 -\023\015\107\145\157\124\162\165\163\164\040\111\156\143\056\061 -\040\060\036\006\003\125\004\003\023\027\107\145\157\124\162\165 -\163\164\040\125\156\151\166\145\162\163\141\154\040\103\101\040 -\062\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001 -\001\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002 -\001\000\263\124\122\301\311\076\362\331\334\261\123\032\131\051 -\347\261\303\105\050\345\327\321\355\305\305\113\241\252\164\173 -\127\257\112\046\374\330\365\136\247\156\031\333\164\014\117\065 -\133\062\013\001\343\333\353\172\167\065\352\252\132\340\326\350 -\241\127\224\360\220\243\164\126\224\104\060\003\036\134\116\053 -\205\046\164\202\172\014\166\240\157\115\316\101\055\240\025\006 -\024\137\267\102\315\173\217\130\141\064\334\052\010\371\056\303 -\001\246\042\104\034\114\007\202\346\133\316\320\112\174\004\323 -\031\163\047\360\252\230\177\056\257\116\353\207\036\044\167\152 -\135\266\350\133\105\272\334\303\241\005\157\126\216\217\020\046 -\245\111\303\056\327\101\207\042\340\117\206\312\140\265\352\241 -\143\300\001\227\020\171\275\000\074\022\155\053\025\261\254\113 -\261\356\030\271\116\226\334\334\166\377\073\276\317\137\003\300 -\374\073\350\276\106\033\377\332\100\302\122\367\376\343\072\367 -\152\167\065\320\332\215\353\136\030\152\061\307\036\272\074\033 -\050\326\153\124\306\252\133\327\242\054\033\031\314\242\002\366 -\233\131\275\067\153\206\265\155\202\272\330\352\311\126\274\251 -\066\130\375\076\031\363\355\014\046\251\223\070\370\117\301\135 -\042\006\320\227\352\341\255\306\125\340\201\053\050\203\072\372 -\364\173\041\121\000\276\122\070\316\315\146\171\250\364\201\126 -\342\320\203\011\107\121\133\120\152\317\333\110\032\135\076\367 -\313\366\145\367\154\361\225\370\002\073\062\126\202\071\172\133 -\275\057\211\033\277\241\264\350\377\177\215\214\337\003\361\140 -\116\130\021\114\353\243\077\020\053\203\232\001\163\331\224\155 -\204\000\047\146\254\360\160\100\011\102\222\255\117\223\015\141 -\011\121\044\330\222\325\013\224\141\262\207\262\355\377\232\065 -\377\205\124\312\355\104\103\254\033\074\026\153\110\112\012\034 -\100\210\037\222\302\013\000\005\377\362\310\002\112\244\252\251 -\314\231\226\234\057\130\340\175\341\276\273\007\334\137\004\162 -\134\061\064\303\354\137\055\340\075\144\220\042\346\321\354\270 -\056\335\131\256\331\241\067\277\124\065\334\163\062\117\214\004 -\036\063\262\311\106\361\330\134\310\125\120\311\150\275\250\272 -\066\011\002\003\001\000\001\243\143\060\141\060\017\006\003\125 -\035\023\001\001\377\004\005\060\003\001\001\377\060\035\006\003 -\125\035\016\004\026\004\024\166\363\125\341\372\244\066\373\360 -\237\134\142\161\355\074\364\107\070\020\053\060\037\006\003\125 -\035\043\004\030\060\026\200\024\166\363\125\341\372\244\066\373 -\360\237\134\142\161\355\074\364\107\070\020\053\060\016\006\003 -\125\035\017\001\001\377\004\004\003\002\001\206\060\015\006\011 -\052\206\110\206\367\015\001\001\005\005\000\003\202\002\001\000 -\146\301\306\043\363\331\340\056\156\137\350\317\256\260\260\045 -\115\053\370\073\130\233\100\044\067\132\313\253\026\111\377\263 -\165\171\063\241\057\155\160\027\064\221\376\147\176\217\354\233 -\345\136\202\251\125\037\057\334\324\121\007\022\376\254\026\076 -\054\065\306\143\374\334\020\353\015\243\252\320\174\314\321\320 -\057\121\056\304\024\132\336\350\031\341\076\306\314\244\051\347 -\056\204\252\006\060\170\166\124\163\050\230\131\070\340\000\015 -\142\323\102\175\041\237\256\075\072\214\325\372\167\015\030\053 -\026\016\137\066\341\374\052\265\060\044\317\340\143\014\173\130 -\032\376\231\272\102\022\261\221\364\174\150\342\310\350\257\054 -\352\311\176\256\273\052\075\015\025\334\064\225\266\030\164\250 -\152\017\307\264\364\023\304\344\133\355\012\322\244\227\114\052 -\355\057\154\022\211\075\361\047\160\252\152\003\122\041\237\100 -\250\147\120\362\363\132\037\337\337\043\366\334\170\116\346\230 -\117\125\072\123\343\357\362\364\237\307\174\330\130\257\051\042 -\227\270\340\275\221\056\260\166\354\127\021\317\357\051\104\363 -\351\205\172\140\143\344\135\063\211\027\331\061\252\332\326\363 -\030\065\162\317\207\053\057\143\043\204\135\204\214\077\127\240 -\210\374\231\221\050\046\151\231\324\217\227\104\276\216\325\110 -\261\244\050\051\361\025\264\341\345\236\335\370\217\246\157\046 -\327\011\074\072\034\021\016\246\154\067\367\255\104\207\054\050 -\307\330\164\202\263\320\157\112\127\273\065\051\047\240\213\350 -\041\247\207\144\066\135\314\330\026\254\307\262\047\100\222\125 -\070\050\215\121\156\335\024\147\123\154\161\134\046\204\115\165 -\132\266\176\140\126\251\115\255\373\233\036\227\363\015\331\322 -\227\124\167\332\075\022\267\340\036\357\010\006\254\371\205\207 -\351\242\334\257\176\030\022\203\375\126\027\101\056\325\051\202 -\175\231\364\061\366\161\251\317\054\001\047\245\005\271\252\262 -\110\116\052\357\237\223\122\121\225\074\122\163\216\126\114\027 -\100\300\011\050\344\213\152\110\123\333\354\315\125\125\361\306 -\370\351\242\054\114\246\321\046\137\176\257\132\114\332\037\246 -\362\034\054\176\256\002\026\322\126\320\057\127\123\107\350\222 -END - -# Trust for Certificate "GeoTrust Universal CA 2" -CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "GeoTrust Universal CA 2" -CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\067\232\031\173\101\205\105\065\014\246\003\151\363\074\056\257 -\107\117\040\171 -END -CKA_CERT_MD5_HASH MULTILINE_OCTAL -\064\374\270\320\066\333\236\024\263\302\362\333\217\344\224\307 -END -CKA_ISSUER MULTILINE_OCTAL -\060\107\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\107\145\157\124\162\165 -\163\164\040\111\156\143\056\061\040\060\036\006\003\125\004\003 -\023\027\107\145\157\124\162\165\163\164\040\125\156\151\166\145 -\162\163\141\154\040\103\101\040\062 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 -END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE - -# -# Certificate "UTN-USER First-Network Applications" -# -CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN-USER First-Network Applications" -CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -CKA_SUBJECT MULTILINE_OCTAL -\060\201\243\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\053\060\051\006\003\125 -\004\003\023\042\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\116\145\164\167\157\162\153\040\101\160\160\154\151\143 -\141\164\151\157\156\163 -END -CKA_ID UTF8 "0" -CKA_ISSUER MULTILINE_OCTAL -\060\201\243\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\053\060\051\006\003\125 -\004\003\023\042\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\116\145\164\167\157\162\153\040\101\160\160\154\151\143 -\141\164\151\157\156\163 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\060\113\300 -\063\167 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\004\144\060\202\003\114\240\003\002\001\002\002\020\104 -\276\014\213\120\000\044\264\021\323\066\060\113\300\063\167\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 -\243\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 -\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 -\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 -\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 -\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 -\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 -\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 -\165\163\164\056\143\157\155\061\053\060\051\006\003\125\004\003 -\023\042\125\124\116\055\125\123\105\122\106\151\162\163\164\055 -\116\145\164\167\157\162\153\040\101\160\160\154\151\143\141\164 -\151\157\156\163\060\036\027\015\071\071\060\067\060\071\061\070 -\064\070\063\071\132\027\015\061\071\060\067\060\071\061\070\065 -\067\064\071\132\060\201\243\061\013\060\011\006\003\125\004\006 -\023\002\125\123\061\013\060\011\006\003\125\004\010\023\002\125 -\124\061\027\060\025\006\003\125\004\007\023\016\123\141\154\164 -\040\114\141\153\145\040\103\151\164\171\061\036\060\034\006\003 -\125\004\012\023\025\124\150\145\040\125\123\105\122\124\122\125 -\123\124\040\116\145\164\167\157\162\153\061\041\060\037\006\003 -\125\004\013\023\030\150\164\164\160\072\057\057\167\167\167\056 -\165\163\145\162\164\162\165\163\164\056\143\157\155\061\053\060 -\051\006\003\125\004\003\023\042\125\124\116\055\125\123\105\122 -\106\151\162\163\164\055\116\145\164\167\157\162\153\040\101\160 -\160\154\151\143\141\164\151\157\156\163\060\202\001\042\060\015 -\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001 -\017\000\060\202\001\012\002\202\001\001\000\263\373\221\241\344 -\066\125\205\254\006\064\133\240\232\130\262\370\265\017\005\167 -\203\256\062\261\166\222\150\354\043\112\311\166\077\343\234\266 -\067\171\003\271\253\151\215\007\045\266\031\147\344\260\033\030 -\163\141\112\350\176\315\323\057\144\343\246\174\014\372\027\200 -\243\015\107\211\117\121\161\057\356\374\077\371\270\026\200\207 -\211\223\045\040\232\103\202\151\044\166\050\131\065\241\035\300 -\177\203\006\144\026\040\054\323\111\244\205\264\300\141\177\121 -\010\370\150\025\221\200\313\245\325\356\073\072\364\204\004\136 -\140\131\247\214\064\162\356\270\170\305\321\073\022\112\157\176 -\145\047\271\244\125\305\271\157\103\244\305\035\054\231\300\122 -\244\170\114\025\263\100\230\010\153\103\306\001\260\172\173\365 -\153\034\042\077\313\357\377\250\320\072\113\166\025\236\322\321 -\306\056\343\333\127\033\062\242\270\157\350\206\246\077\160\253 -\345\160\222\253\104\036\100\120\373\234\243\142\344\154\156\240 -\310\336\342\200\102\372\351\057\350\316\062\004\217\174\215\267 -\034\243\065\074\025\335\236\303\256\227\245\002\003\001\000\001 -\243\201\221\060\201\216\060\013\006\003\125\035\017\004\004\003 -\002\001\306\060\017\006\003\125\035\023\001\001\377\004\005\060 -\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\372 -\206\311\333\340\272\351\170\365\113\250\326\025\337\360\323\341 -\152\024\074\060\117\006\003\125\035\037\004\110\060\106\060\104 -\240\102\240\100\206\076\150\164\164\160\072\057\057\143\162\154 -\056\165\163\145\162\164\162\165\163\164\056\143\157\155\057\125 -\124\116\055\125\123\105\122\106\151\162\163\164\055\116\145\164 -\167\157\162\153\101\160\160\154\151\143\141\164\151\157\156\163 -\056\143\162\154\060\015\006\011\052\206\110\206\367\015\001\001 -\005\005\000\003\202\001\001\000\244\363\045\314\321\324\221\203 -\042\320\314\062\253\233\226\116\064\221\124\040\045\064\141\137 -\052\002\025\341\213\252\377\175\144\121\317\012\377\274\175\330 -\041\152\170\313\057\121\157\370\102\035\063\275\353\265\173\224 -\303\303\251\240\055\337\321\051\037\035\376\217\077\273\250\105 -\052\177\321\156\125\044\342\273\002\373\061\077\276\350\274\354 -\100\053\370\001\324\126\070\344\312\104\202\265\141\040\041\147 -\145\366\360\013\347\064\370\245\302\234\243\134\100\037\205\223 -\225\006\336\117\324\047\251\266\245\374\026\315\163\061\077\270 -\145\047\317\324\123\032\360\254\156\237\117\005\014\003\201\247 -\204\051\304\132\275\144\127\162\255\073\317\067\030\246\230\306 -\255\006\264\334\010\243\004\325\051\244\226\232\022\147\112\214 -\140\105\235\361\043\232\260\000\234\150\265\230\120\323\357\216 -\056\222\145\261\110\076\041\276\025\060\052\015\265\014\243\153 -\077\256\177\127\365\037\226\174\337\157\335\202\060\054\145\033 -\100\112\315\150\271\162\354\161\166\354\124\216\037\205\014\001 -\152\372\246\070\254\037\304\204 +\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061\034 +\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143\141 +\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060\064 +\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040\117 +\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\040\062\060\036\027\015\060\062\060\065\062\070\060\066 +\060\060\060\060\132\027\015\063\067\060\071\062\071\061\064\060 +\070\060\060\132\060\143\061\013\060\011\006\003\125\004\006\023 +\002\125\123\061\034\060\032\006\003\125\004\012\023\023\101\155 +\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156\143 +\056\061\066\060\064\006\003\125\004\003\023\055\101\155\145\162 +\151\143\141\040\117\156\154\151\156\145\040\122\157\157\164\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\040\062\060\202\002\042\060\015\006 +\011\052\206\110\206\367\015\001\001\001\005\000\003\202\002\017 +\000\060\202\002\012\002\202\002\001\000\314\101\105\035\351\075 +\115\020\366\214\261\101\311\340\136\313\015\267\277\107\163\323 +\360\125\115\335\306\014\372\261\146\005\152\315\170\264\334\002 +\333\116\201\363\327\247\174\161\274\165\143\240\135\343\007\014 +\110\354\045\304\003\040\364\377\016\073\022\377\233\215\341\306 +\325\033\264\155\042\343\261\333\177\041\144\257\206\274\127\042 +\052\326\107\201\127\104\202\126\123\275\206\024\001\013\374\177 +\164\244\132\256\361\272\021\265\233\130\132\200\264\067\170\011 +\063\174\062\107\003\134\304\245\203\110\364\127\126\156\201\066 +\047\030\117\354\233\050\302\324\264\327\174\014\076\014\053\337 +\312\004\327\306\216\352\130\116\250\244\245\030\034\154\105\230 +\243\101\321\055\322\307\155\215\031\361\255\171\267\201\077\275 +\006\202\047\055\020\130\005\265\170\005\271\057\333\014\153\220 +\220\176\024\131\070\273\224\044\023\345\321\235\024\337\323\202 +\115\106\360\200\071\122\062\017\343\204\262\172\103\362\136\336 +\137\077\035\335\343\262\033\240\241\052\043\003\156\056\001\025 +\207\134\246\165\165\307\227\141\276\336\206\334\324\110\333\275 +\052\277\112\125\332\350\175\120\373\264\200\027\270\224\277\001 +\075\352\332\272\174\340\130\147\027\271\130\340\210\206\106\147 +\154\235\020\107\130\062\320\065\174\171\052\220\242\132\020\021 +\043\065\255\057\314\344\112\133\247\310\047\362\203\336\136\273 +\136\167\347\350\245\156\143\302\015\135\141\320\214\322\154\132 +\041\016\312\050\243\316\052\351\225\307\110\317\226\157\035\222 +\045\310\306\306\301\301\014\005\254\046\304\322\165\322\341\052 +\147\300\075\133\245\232\353\317\173\032\250\235\024\105\345\017 +\240\232\145\336\057\050\275\316\157\224\146\203\110\051\330\352 +\145\214\257\223\331\144\237\125\127\046\277\157\313\067\061\231 +\243\140\273\034\255\211\064\062\142\270\103\041\006\162\014\241 +\134\155\106\305\372\051\317\060\336\211\334\161\133\335\266\067 +\076\337\120\365\270\007\045\046\345\274\265\376\074\002\263\267 +\370\276\103\301\207\021\224\236\043\154\027\212\270\212\047\014 +\124\107\360\251\263\300\200\214\240\047\353\035\031\343\007\216 +\167\160\312\053\364\175\166\340\170\147\002\003\001\000\001\243 +\143\060\141\060\017\006\003\125\035\023\001\001\377\004\005\060 +\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\115 +\105\301\150\070\273\163\251\151\241\040\347\355\365\042\241\043 +\024\327\236\060\037\006\003\125\035\043\004\030\060\026\200\024 +\115\105\301\150\070\273\163\251\151\241\040\347\355\365\042\241 +\043\024\327\236\060\016\006\003\125\035\017\001\001\377\004\004 +\003\002\001\206\060\015\006\011\052\206\110\206\367\015\001\001 +\005\005\000\003\202\002\001\000\147\153\006\271\137\105\073\052 +\113\063\263\346\033\153\131\116\042\314\271\267\244\045\311\247 +\304\360\124\226\013\144\363\261\130\117\136\121\374\262\227\173 +\047\145\302\345\312\347\015\014\045\173\142\343\372\237\264\207 +\267\105\106\257\203\245\227\110\214\245\275\361\026\053\233\166 +\054\172\065\140\154\021\200\227\314\251\222\122\346\053\346\151 +\355\251\370\066\055\054\167\277\141\110\321\143\013\271\133\122 +\355\030\260\103\102\042\246\261\167\256\336\151\305\315\307\034 +\241\261\245\034\020\373\030\276\032\160\335\301\222\113\276\051 +\132\235\077\065\276\345\175\121\370\125\340\045\165\043\207\036 +\134\334\272\235\260\254\263\151\333\027\203\311\367\336\014\274 +\010\334\221\236\250\320\327\025\067\163\245\065\270\374\176\305 +\104\100\006\303\353\370\042\200\134\107\316\002\343\021\237\104 +\377\375\232\062\314\175\144\121\016\353\127\046\166\072\343\036 +\042\074\302\246\066\335\031\357\247\374\022\363\046\300\131\061 +\205\114\234\330\317\337\244\314\314\051\223\377\224\155\166\134 +\023\010\227\362\355\245\013\115\335\350\311\150\016\146\323\000 +\016\063\022\133\274\225\345\062\220\250\263\306\154\203\255\167 +\356\213\176\176\261\251\253\323\341\361\266\300\261\352\210\300 +\347\323\220\351\050\222\224\173\150\173\227\052\012\147\055\205 +\002\070\020\344\003\141\324\332\045\066\307\010\130\055\241\247 +\121\257\060\012\111\365\246\151\207\007\055\104\106\166\216\052 +\345\232\073\327\030\242\374\234\070\020\314\306\073\322\265\027 +\072\157\375\256\045\275\365\162\131\144\261\164\052\070\137\030 +\114\337\317\161\004\132\066\324\277\057\231\234\350\331\272\261 +\225\346\002\113\041\241\133\325\301\117\217\256\151\155\123\333 +\001\223\265\134\036\030\335\144\132\312\030\050\076\143\004\021 +\375\034\215\000\017\270\067\337\147\212\235\146\251\002\152\221 +\377\023\312\057\135\203\274\207\223\154\334\044\121\026\004\045 +\146\372\263\331\302\272\051\276\232\110\070\202\231\364\277\073 +\112\061\031\371\277\216\041\063\024\312\117\124\137\373\316\373 +\217\161\177\375\136\031\240\017\113\221\270\304\124\274\006\260 +\105\217\046\221\242\216\376\251 END -# Trust for Certificate "UTN-USER First-Network Applications" +# Trust for Certificate "America Online Root Certification Authority 2" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN-USER First-Network Applications" +CKA_LABEL UTF8 "America Online Root Certification Authority 2" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\135\230\234\333\025\226\021\066\121\145\144\033\126\017\333\352 -\052\302\076\361 +\205\265\377\147\233\014\171\226\037\310\156\104\042\000\106\023 +\333\027\222\204 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\277\140\131\243\133\272\366\247\166\102\332\157\032\173\120\317 +\326\355\074\312\342\146\017\257\020\103\015\167\233\004\011\277 END CKA_ISSUER MULTILINE_OCTAL -\060\201\243\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\053\060\051\006\003\125 -\004\003\023\042\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\116\145\164\167\157\162\153\040\101\160\160\154\151\143 -\141\164\151\157\156\163 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 +\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 +\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 +\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\060\113\300 -\063\167 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -8155,122 +8037,124 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "America Online Root Certification Authority 1" +# Certificate "Visa eCommerce Root" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "America Online Root Certification Authority 1" +CKA_LABEL UTF8 "Visa eCommerce Root" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 -\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 -\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\061 +\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057 +\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156 +\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166 +\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061 +\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145 +\103\157\155\155\145\162\143\145\040\122\157\157\164 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 -\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 -\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\061 +\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057 +\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156 +\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166 +\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061 +\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145 +\103\157\155\155\145\162\143\145\040\122\157\157\164 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\020\023\206\065\115\035\077\006\362\301\371\145\005\325\220 +\034\142 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\244\060\202\002\214\240\003\002\001\002\002\001\001 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061\034 -\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143\141 -\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060\064 -\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040\117 -\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\040\061\060\036\027\015\060\062\060\065\062\070\060\066 -\060\060\060\060\132\027\015\063\067\061\061\061\071\062\060\064 -\063\060\060\132\060\143\061\013\060\011\006\003\125\004\006\023 -\002\125\123\061\034\060\032\006\003\125\004\012\023\023\101\155 -\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156\143 -\056\061\066\060\064\006\003\125\004\003\023\055\101\155\145\162 -\151\143\141\040\117\156\154\151\156\145\040\122\157\157\164\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\040\061\060\202\001\042\060\015\006 -\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017 -\000\060\202\001\012\002\202\001\001\000\250\057\350\244\151\006 -\003\107\303\351\052\230\377\031\242\160\232\306\120\262\176\245 -\337\150\115\033\174\017\266\227\150\175\055\246\213\227\351\144 -\206\311\243\357\240\206\277\140\145\234\113\124\210\302\110\305 -\112\071\277\024\343\131\125\345\031\264\164\310\264\005\071\134 -\026\245\342\225\005\340\022\256\131\213\242\063\150\130\034\246 -\324\025\267\330\237\327\334\161\253\176\232\277\233\216\063\017 -\042\375\037\056\347\007\066\357\142\071\305\335\313\272\045\024 -\043\336\014\306\075\074\316\202\010\346\146\076\332\121\073\026 -\072\243\005\177\240\334\207\325\234\374\162\251\240\175\170\344 -\267\061\125\036\145\273\324\141\260\041\140\355\020\062\162\305 -\222\045\036\370\220\112\030\170\107\337\176\060\067\076\120\033 -\333\034\323\153\232\206\123\007\260\357\254\006\170\370\204\231 -\376\041\215\114\200\266\014\202\366\146\160\171\032\323\117\243 -\317\361\317\106\260\113\017\076\335\210\142\270\214\251\011\050 -\073\172\307\227\341\036\345\364\237\300\300\256\044\240\310\241 -\331\017\326\173\046\202\151\062\075\247\002\003\001\000\001\243 -\143\060\141\060\017\006\003\125\035\023\001\001\377\004\005\060 -\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\000 -\255\331\243\366\171\366\156\164\251\177\063\075\201\027\327\114 -\317\063\336\060\037\006\003\125\035\043\004\030\060\026\200\024 -\000\255\331\243\366\171\366\156\164\251\177\063\075\201\027\327 -\114\317\063\336\060\016\006\003\125\035\017\001\001\377\004\004 -\003\002\001\206\060\015\006\011\052\206\110\206\367\015\001\001 -\005\005\000\003\202\001\001\000\174\212\321\037\030\067\202\340 -\270\260\243\355\126\225\310\142\141\234\005\242\315\302\142\046 -\141\315\020\026\327\314\264\145\064\320\021\212\255\250\251\005 -\146\357\164\363\155\137\235\231\257\366\213\373\353\122\262\005 -\230\242\157\052\305\124\275\045\275\137\256\310\206\352\106\054 -\301\263\275\301\351\111\160\030\026\227\010\023\214\040\340\033 -\056\072\107\313\036\344\000\060\225\133\364\105\243\300\032\260 -\001\116\253\275\300\043\156\143\077\200\112\305\007\355\334\342 -\157\307\301\142\361\343\162\326\004\310\164\147\013\372\210\253 -\241\001\310\157\360\024\257\322\231\315\121\223\176\355\056\070 -\307\275\316\106\120\075\162\343\171\045\235\233\210\053\020\040 -\335\245\270\062\237\215\340\051\337\041\164\206\202\333\057\202 -\060\306\307\065\206\263\371\226\137\106\333\014\105\375\363\120 -\303\157\306\303\110\255\106\246\341\047\107\012\035\016\233\266 -\302\167\177\143\362\340\175\032\276\374\340\337\327\307\247\154 -\260\371\256\272\074\375\164\264\021\350\130\015\200\274\323\250 -\200\072\231\355\165\314\106\173 +\060\202\003\242\060\202\002\212\240\003\002\001\002\002\020\023 +\206\065\115\035\077\006\362\301\371\145\005\325\220\034\142\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\153 +\061\013\060\011\006\003\125\004\006\023\002\125\123\061\015\060 +\013\006\003\125\004\012\023\004\126\111\123\101\061\057\060\055 +\006\003\125\004\013\023\046\126\151\163\141\040\111\156\164\145 +\162\156\141\164\151\157\156\141\154\040\123\145\162\166\151\143 +\145\040\101\163\163\157\143\151\141\164\151\157\156\061\034\060 +\032\006\003\125\004\003\023\023\126\151\163\141\040\145\103\157 +\155\155\145\162\143\145\040\122\157\157\164\060\036\027\015\060 +\062\060\066\062\066\060\062\061\070\063\066\132\027\015\062\062 +\060\066\062\064\060\060\061\066\061\062\132\060\153\061\013\060 +\011\006\003\125\004\006\023\002\125\123\061\015\060\013\006\003 +\125\004\012\023\004\126\111\123\101\061\057\060\055\006\003\125 +\004\013\023\046\126\151\163\141\040\111\156\164\145\162\156\141 +\164\151\157\156\141\154\040\123\145\162\166\151\143\145\040\101 +\163\163\157\143\151\141\164\151\157\156\061\034\060\032\006\003 +\125\004\003\023\023\126\151\163\141\040\145\103\157\155\155\145 +\162\143\145\040\122\157\157\164\060\202\001\042\060\015\006\011 +\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000 +\060\202\001\012\002\202\001\001\000\257\127\336\126\036\156\241 +\332\140\261\224\047\313\027\333\007\077\200\205\117\310\234\266 +\320\364\157\117\317\231\330\341\333\302\110\134\072\254\071\063 +\307\037\152\213\046\075\053\065\365\110\261\221\301\002\116\004 +\226\221\173\260\063\360\261\024\116\021\157\265\100\257\033\105 +\245\112\357\176\266\254\362\240\037\130\077\022\106\140\074\215 +\241\340\175\317\127\076\063\036\373\107\361\252\025\227\007\125 +\146\245\265\055\056\330\200\131\262\247\015\267\106\354\041\143 +\377\065\253\245\002\317\052\364\114\376\173\365\224\135\204\115 +\250\362\140\217\333\016\045\074\237\163\161\317\224\337\112\352 +\333\337\162\070\214\363\226\275\361\027\274\322\272\073\105\132 +\306\247\366\306\027\213\001\235\374\031\250\052\203\026\270\072 +\110\376\116\076\240\253\006\031\351\123\363\200\023\007\355\055 +\277\077\012\074\125\040\071\054\054\000\151\164\225\112\274\040 +\262\251\171\345\030\211\221\250\334\034\115\357\273\176\067\013 +\135\376\071\245\210\122\214\000\154\354\030\174\101\275\366\213 +\165\167\272\140\235\204\347\376\055\002\003\001\000\001\243\102 +\060\100\060\017\006\003\125\035\023\001\001\377\004\005\060\003 +\001\001\377\060\016\006\003\125\035\017\001\001\377\004\004\003 +\002\001\006\060\035\006\003\125\035\016\004\026\004\024\025\070 +\203\017\077\054\077\160\063\036\315\106\376\007\214\040\340\327 +\303\267\060\015\006\011\052\206\110\206\367\015\001\001\005\005 +\000\003\202\001\001\000\137\361\101\175\174\134\010\271\053\340 +\325\222\107\372\147\134\245\023\303\003\041\233\053\114\211\106 +\317\131\115\311\376\245\100\266\143\315\335\161\050\225\147\021 +\314\044\254\323\104\154\161\256\001\040\153\003\242\217\030\267 +\051\072\175\345\026\140\123\170\074\300\257\025\203\367\217\122 +\063\044\275\144\223\227\356\213\367\333\030\250\155\161\263\367 +\054\027\320\164\045\151\367\376\153\074\224\276\115\113\101\214 +\116\342\163\320\343\220\042\163\103\315\363\357\352\163\316\105 +\212\260\246\111\377\114\175\235\161\210\304\166\035\220\133\035 +\356\375\314\367\356\375\140\245\261\172\026\161\321\026\320\174 +\022\074\154\151\227\333\256\137\071\232\160\057\005\074\031\106 +\004\231\040\066\320\140\156\141\006\273\026\102\214\160\367\060 +\373\340\333\146\243\000\001\275\346\054\332\221\137\240\106\213 +\115\152\234\075\075\335\005\106\376\166\277\240\012\074\344\000 +\346\047\267\377\204\055\336\272\042\047\226\020\161\353\042\355 +\337\337\063\234\317\343\255\256\216\324\216\346\117\121\257\026 +\222\340\134\366\007\017 END -# Trust for Certificate "America Online Root Certification Authority 1" +# Trust for Certificate "Visa eCommerce Root" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "America Online Root Certification Authority 1" +CKA_LABEL UTF8 "Visa eCommerce Root" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\071\041\301\025\301\135\016\312\134\313\133\304\360\175\041\330 -\005\013\126\152 +\160\027\233\206\214\000\244\372\140\221\122\042\077\237\076\062 +\275\340\005\142 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\024\361\010\255\235\372\144\342\211\347\034\317\250\255\175\136 +\374\021\270\330\010\223\060\000\155\043\371\176\353\122\036\002 END CKA_ISSUER MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 -\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 -\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\061 +\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057 +\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156 +\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166 +\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061 +\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145 +\103\157\155\155\145\162\143\145\040\122\157\157\164 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\020\023\206\065\115\035\077\006\362\301\371\145\005\325\220 +\034\142 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -8278,325 +8162,45 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "America Online Root Certification Authority 2" +# Certificate "TC TrustCenter, Germany, Class 2 CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "America Online Root Certification Authority 2" +CKA_LABEL UTF8 "TC TrustCenter, Germany, Class 2 CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 -\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 -\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\062 +\060\201\274\061\013\060\011\006\003\125\004\006\023\002\104\105 +\061\020\060\016\006\003\125\004\010\023\007\110\141\155\142\165 +\162\147\061\020\060\016\006\003\125\004\007\023\007\110\141\155 +\142\165\162\147\061\072\060\070\006\003\125\004\012\023\061\124 +\103\040\124\162\165\163\164\103\145\156\164\145\162\040\146\157 +\162\040\123\145\143\165\162\151\164\171\040\151\156\040\104\141 +\164\141\040\116\145\164\167\157\162\153\163\040\107\155\142\110 +\061\042\060\040\006\003\125\004\013\023\031\124\103\040\124\162 +\165\163\164\103\145\156\164\145\162\040\103\154\141\163\163\040 +\062\040\103\101\061\051\060\047\006\011\052\206\110\206\367\015 +\001\011\001\026\032\143\145\162\164\151\146\151\143\141\164\145 +\100\164\162\165\163\164\143\145\156\164\145\162\056\144\145 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 -\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 -\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\062 +\060\201\274\061\013\060\011\006\003\125\004\006\023\002\104\105 +\061\020\060\016\006\003\125\004\010\023\007\110\141\155\142\165 +\162\147\061\020\060\016\006\003\125\004\007\023\007\110\141\155 +\142\165\162\147\061\072\060\070\006\003\125\004\012\023\061\124 +\103\040\124\162\165\163\164\103\145\156\164\145\162\040\146\157 +\162\040\123\145\143\165\162\151\164\171\040\151\156\040\104\141 +\164\141\040\116\145\164\167\157\162\153\163\040\107\155\142\110 +\061\042\060\040\006\003\125\004\013\023\031\124\103\040\124\162 +\165\163\164\103\145\156\164\145\162\040\103\154\141\163\163\040 +\062\040\103\101\061\051\060\047\006\011\052\206\110\206\367\015 +\001\011\001\026\032\143\145\162\164\151\146\151\143\141\164\145 +\100\164\162\165\163\164\143\145\156\164\145\162\056\144\145 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\005\244\060\202\003\214\240\003\002\001\002\002\001\001 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061\034 -\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143\141 -\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060\064 -\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040\117 -\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\040\062\060\036\027\015\060\062\060\065\062\070\060\066 -\060\060\060\060\132\027\015\063\067\060\071\062\071\061\064\060 -\070\060\060\132\060\143\061\013\060\011\006\003\125\004\006\023 -\002\125\123\061\034\060\032\006\003\125\004\012\023\023\101\155 -\145\162\151\143\141\040\117\156\154\151\156\145\040\111\156\143 -\056\061\066\060\064\006\003\125\004\003\023\055\101\155\145\162 -\151\143\141\040\117\156\154\151\156\145\040\122\157\157\164\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\040\062\060\202\002\042\060\015\006 -\011\052\206\110\206\367\015\001\001\001\005\000\003\202\002\017 -\000\060\202\002\012\002\202\002\001\000\314\101\105\035\351\075 -\115\020\366\214\261\101\311\340\136\313\015\267\277\107\163\323 -\360\125\115\335\306\014\372\261\146\005\152\315\170\264\334\002 -\333\116\201\363\327\247\174\161\274\165\143\240\135\343\007\014 -\110\354\045\304\003\040\364\377\016\073\022\377\233\215\341\306 -\325\033\264\155\042\343\261\333\177\041\144\257\206\274\127\042 -\052\326\107\201\127\104\202\126\123\275\206\024\001\013\374\177 -\164\244\132\256\361\272\021\265\233\130\132\200\264\067\170\011 -\063\174\062\107\003\134\304\245\203\110\364\127\126\156\201\066 -\047\030\117\354\233\050\302\324\264\327\174\014\076\014\053\337 -\312\004\327\306\216\352\130\116\250\244\245\030\034\154\105\230 -\243\101\321\055\322\307\155\215\031\361\255\171\267\201\077\275 -\006\202\047\055\020\130\005\265\170\005\271\057\333\014\153\220 -\220\176\024\131\070\273\224\044\023\345\321\235\024\337\323\202 -\115\106\360\200\071\122\062\017\343\204\262\172\103\362\136\336 -\137\077\035\335\343\262\033\240\241\052\043\003\156\056\001\025 -\207\134\246\165\165\307\227\141\276\336\206\334\324\110\333\275 -\052\277\112\125\332\350\175\120\373\264\200\027\270\224\277\001 -\075\352\332\272\174\340\130\147\027\271\130\340\210\206\106\147 -\154\235\020\107\130\062\320\065\174\171\052\220\242\132\020\021 -\043\065\255\057\314\344\112\133\247\310\047\362\203\336\136\273 -\136\167\347\350\245\156\143\302\015\135\141\320\214\322\154\132 -\041\016\312\050\243\316\052\351\225\307\110\317\226\157\035\222 -\045\310\306\306\301\301\014\005\254\046\304\322\165\322\341\052 -\147\300\075\133\245\232\353\317\173\032\250\235\024\105\345\017 -\240\232\145\336\057\050\275\316\157\224\146\203\110\051\330\352 -\145\214\257\223\331\144\237\125\127\046\277\157\313\067\061\231 -\243\140\273\034\255\211\064\062\142\270\103\041\006\162\014\241 -\134\155\106\305\372\051\317\060\336\211\334\161\133\335\266\067 -\076\337\120\365\270\007\045\046\345\274\265\376\074\002\263\267 -\370\276\103\301\207\021\224\236\043\154\027\212\270\212\047\014 -\124\107\360\251\263\300\200\214\240\047\353\035\031\343\007\216 -\167\160\312\053\364\175\166\340\170\147\002\003\001\000\001\243 -\143\060\141\060\017\006\003\125\035\023\001\001\377\004\005\060 -\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\115 -\105\301\150\070\273\163\251\151\241\040\347\355\365\042\241\043 -\024\327\236\060\037\006\003\125\035\043\004\030\060\026\200\024 -\115\105\301\150\070\273\163\251\151\241\040\347\355\365\042\241 -\043\024\327\236\060\016\006\003\125\035\017\001\001\377\004\004 -\003\002\001\206\060\015\006\011\052\206\110\206\367\015\001\001 -\005\005\000\003\202\002\001\000\147\153\006\271\137\105\073\052 -\113\063\263\346\033\153\131\116\042\314\271\267\244\045\311\247 -\304\360\124\226\013\144\363\261\130\117\136\121\374\262\227\173 -\047\145\302\345\312\347\015\014\045\173\142\343\372\237\264\207 -\267\105\106\257\203\245\227\110\214\245\275\361\026\053\233\166 -\054\172\065\140\154\021\200\227\314\251\222\122\346\053\346\151 -\355\251\370\066\055\054\167\277\141\110\321\143\013\271\133\122 -\355\030\260\103\102\042\246\261\167\256\336\151\305\315\307\034 -\241\261\245\034\020\373\030\276\032\160\335\301\222\113\276\051 -\132\235\077\065\276\345\175\121\370\125\340\045\165\043\207\036 -\134\334\272\235\260\254\263\151\333\027\203\311\367\336\014\274 -\010\334\221\236\250\320\327\025\067\163\245\065\270\374\176\305 -\104\100\006\303\353\370\042\200\134\107\316\002\343\021\237\104 -\377\375\232\062\314\175\144\121\016\353\127\046\166\072\343\036 -\042\074\302\246\066\335\031\357\247\374\022\363\046\300\131\061 -\205\114\234\330\317\337\244\314\314\051\223\377\224\155\166\134 -\023\010\227\362\355\245\013\115\335\350\311\150\016\146\323\000 -\016\063\022\133\274\225\345\062\220\250\263\306\154\203\255\167 -\356\213\176\176\261\251\253\323\341\361\266\300\261\352\210\300 -\347\323\220\351\050\222\224\173\150\173\227\052\012\147\055\205 -\002\070\020\344\003\141\324\332\045\066\307\010\130\055\241\247 -\121\257\060\012\111\365\246\151\207\007\055\104\106\166\216\052 -\345\232\073\327\030\242\374\234\070\020\314\306\073\322\265\027 -\072\157\375\256\045\275\365\162\131\144\261\164\052\070\137\030 -\114\337\317\161\004\132\066\324\277\057\231\234\350\331\272\261 -\225\346\002\113\041\241\133\325\301\117\217\256\151\155\123\333 -\001\223\265\134\036\030\335\144\132\312\030\050\076\143\004\021 -\375\034\215\000\017\270\067\337\147\212\235\146\251\002\152\221 -\377\023\312\057\135\203\274\207\223\154\334\044\121\026\004\045 -\146\372\263\331\302\272\051\276\232\110\070\202\231\364\277\073 -\112\061\031\371\277\216\041\063\024\312\117\124\137\373\316\373 -\217\161\177\375\136\031\240\017\113\221\270\304\124\274\006\260 -\105\217\046\221\242\216\376\251 -END - -# Trust for Certificate "America Online Root Certification Authority 2" -CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "America Online Root Certification Authority 2" -CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\205\265\377\147\233\014\171\226\037\310\156\104\042\000\106\023 -\333\027\222\204 -END -CKA_CERT_MD5_HASH MULTILINE_OCTAL -\326\355\074\312\342\146\017\257\020\103\015\167\233\004\011\277 -END -CKA_ISSUER MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\034\060\032\006\003\125\004\012\023\023\101\155\145\162\151\143 -\141\040\117\156\154\151\156\145\040\111\156\143\056\061\066\060 -\064\006\003\125\004\003\023\055\101\155\145\162\151\143\141\040 -\117\156\154\151\156\145\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\040\062 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 -END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE - -# -# Certificate "Visa eCommerce Root" -# -CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Visa eCommerce Root" -CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -CKA_SUBJECT MULTILINE_OCTAL -\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057 -\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156 -\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166 -\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061 -\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145 -\103\157\155\155\145\162\143\145\040\122\157\157\164 -END -CKA_ID UTF8 "0" -CKA_ISSUER MULTILINE_OCTAL -\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057 -\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156 -\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166 -\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061 -\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145 -\103\157\155\155\145\162\143\145\040\122\157\157\164 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\023\206\065\115\035\077\006\362\301\371\145\005\325\220 -\034\142 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\003\242\060\202\002\212\240\003\002\001\002\002\020\023 -\206\065\115\035\077\006\362\301\371\145\005\325\220\034\142\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\153 -\061\013\060\011\006\003\125\004\006\023\002\125\123\061\015\060 -\013\006\003\125\004\012\023\004\126\111\123\101\061\057\060\055 -\006\003\125\004\013\023\046\126\151\163\141\040\111\156\164\145 -\162\156\141\164\151\157\156\141\154\040\123\145\162\166\151\143 -\145\040\101\163\163\157\143\151\141\164\151\157\156\061\034\060 -\032\006\003\125\004\003\023\023\126\151\163\141\040\145\103\157 -\155\155\145\162\143\145\040\122\157\157\164\060\036\027\015\060 -\062\060\066\062\066\060\062\061\070\063\066\132\027\015\062\062 -\060\066\062\064\060\060\061\066\061\062\132\060\153\061\013\060 -\011\006\003\125\004\006\023\002\125\123\061\015\060\013\006\003 -\125\004\012\023\004\126\111\123\101\061\057\060\055\006\003\125 -\004\013\023\046\126\151\163\141\040\111\156\164\145\162\156\141 -\164\151\157\156\141\154\040\123\145\162\166\151\143\145\040\101 -\163\163\157\143\151\141\164\151\157\156\061\034\060\032\006\003 -\125\004\003\023\023\126\151\163\141\040\145\103\157\155\155\145 -\162\143\145\040\122\157\157\164\060\202\001\042\060\015\006\011 -\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000 -\060\202\001\012\002\202\001\001\000\257\127\336\126\036\156\241 -\332\140\261\224\047\313\027\333\007\077\200\205\117\310\234\266 -\320\364\157\117\317\231\330\341\333\302\110\134\072\254\071\063 -\307\037\152\213\046\075\053\065\365\110\261\221\301\002\116\004 -\226\221\173\260\063\360\261\024\116\021\157\265\100\257\033\105 -\245\112\357\176\266\254\362\240\037\130\077\022\106\140\074\215 -\241\340\175\317\127\076\063\036\373\107\361\252\025\227\007\125 -\146\245\265\055\056\330\200\131\262\247\015\267\106\354\041\143 -\377\065\253\245\002\317\052\364\114\376\173\365\224\135\204\115 -\250\362\140\217\333\016\045\074\237\163\161\317\224\337\112\352 -\333\337\162\070\214\363\226\275\361\027\274\322\272\073\105\132 -\306\247\366\306\027\213\001\235\374\031\250\052\203\026\270\072 -\110\376\116\076\240\253\006\031\351\123\363\200\023\007\355\055 -\277\077\012\074\125\040\071\054\054\000\151\164\225\112\274\040 -\262\251\171\345\030\211\221\250\334\034\115\357\273\176\067\013 -\135\376\071\245\210\122\214\000\154\354\030\174\101\275\366\213 -\165\167\272\140\235\204\347\376\055\002\003\001\000\001\243\102 -\060\100\060\017\006\003\125\035\023\001\001\377\004\005\060\003 -\001\001\377\060\016\006\003\125\035\017\001\001\377\004\004\003 -\002\001\006\060\035\006\003\125\035\016\004\026\004\024\025\070 -\203\017\077\054\077\160\063\036\315\106\376\007\214\040\340\327 -\303\267\060\015\006\011\052\206\110\206\367\015\001\001\005\005 -\000\003\202\001\001\000\137\361\101\175\174\134\010\271\053\340 -\325\222\107\372\147\134\245\023\303\003\041\233\053\114\211\106 -\317\131\115\311\376\245\100\266\143\315\335\161\050\225\147\021 -\314\044\254\323\104\154\161\256\001\040\153\003\242\217\030\267 -\051\072\175\345\026\140\123\170\074\300\257\025\203\367\217\122 -\063\044\275\144\223\227\356\213\367\333\030\250\155\161\263\367 -\054\027\320\164\045\151\367\376\153\074\224\276\115\113\101\214 -\116\342\163\320\343\220\042\163\103\315\363\357\352\163\316\105 -\212\260\246\111\377\114\175\235\161\210\304\166\035\220\133\035 -\356\375\314\367\356\375\140\245\261\172\026\161\321\026\320\174 -\022\074\154\151\227\333\256\137\071\232\160\057\005\074\031\106 -\004\231\040\066\320\140\156\141\006\273\026\102\214\160\367\060 -\373\340\333\146\243\000\001\275\346\054\332\221\137\240\106\213 -\115\152\234\075\075\335\005\106\376\166\277\240\012\074\344\000 -\346\047\267\377\204\055\336\272\042\047\226\020\161\353\042\355 -\337\337\063\234\317\343\255\256\216\324\216\346\117\121\257\026 -\222\340\134\366\007\017 -END - -# Trust for Certificate "Visa eCommerce Root" -CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Visa eCommerce Root" -CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\160\027\233\206\214\000\244\372\140\221\122\042\077\237\076\062 -\275\340\005\142 -END -CKA_CERT_MD5_HASH MULTILINE_OCTAL -\374\021\270\330\010\223\060\000\155\043\371\176\353\122\036\002 -END -CKA_ISSUER MULTILINE_OCTAL -\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057 -\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156 -\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166 -\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061 -\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145 -\103\157\155\155\145\162\143\145\040\122\157\157\164 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\023\206\065\115\035\077\006\362\301\371\145\005\325\220 -\034\142 -END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE - -# -# Certificate "TC TrustCenter, Germany, Class 2 CA" -# -CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "TC TrustCenter, Germany, Class 2 CA" -CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -CKA_SUBJECT MULTILINE_OCTAL -\060\201\274\061\013\060\011\006\003\125\004\006\023\002\104\105 -\061\020\060\016\006\003\125\004\010\023\007\110\141\155\142\165 -\162\147\061\020\060\016\006\003\125\004\007\023\007\110\141\155 -\142\165\162\147\061\072\060\070\006\003\125\004\012\023\061\124 -\103\040\124\162\165\163\164\103\145\156\164\145\162\040\146\157 -\162\040\123\145\143\165\162\151\164\171\040\151\156\040\104\141 -\164\141\040\116\145\164\167\157\162\153\163\040\107\155\142\110 -\061\042\060\040\006\003\125\004\013\023\031\124\103\040\124\162 -\165\163\164\103\145\156\164\145\162\040\103\154\141\163\163\040 -\062\040\103\101\061\051\060\047\006\011\052\206\110\206\367\015 -\001\011\001\026\032\143\145\162\164\151\146\151\143\141\164\145 -\100\164\162\165\163\164\143\145\156\164\145\162\056\144\145 -END -CKA_ID UTF8 "0" -CKA_ISSUER MULTILINE_OCTAL -\060\201\274\061\013\060\011\006\003\125\004\006\023\002\104\105 -\061\020\060\016\006\003\125\004\010\023\007\110\141\155\142\165 -\162\147\061\020\060\016\006\003\125\004\007\023\007\110\141\155 -\142\165\162\147\061\072\060\070\006\003\125\004\012\023\061\124 -\103\040\124\162\165\163\164\103\145\156\164\145\162\040\146\157 -\162\040\123\145\143\165\162\151\164\171\040\151\156\040\104\141 -\164\141\040\116\145\164\167\157\162\153\163\040\107\155\142\110 -\061\042\060\040\006\003\125\004\013\023\031\124\103\040\124\162 -\165\163\164\103\145\156\164\145\162\040\103\154\141\163\163\040 -\062\040\103\101\061\051\060\047\006\011\052\206\110\206\367\015 -\001\011\001\026\032\143\145\162\164\151\146\151\143\141\164\145 -\100\164\162\165\163\164\143\145\156\164\145\162\056\144\145 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\002\003\352 +\002\002\003\352 END CKA_VALUE MULTILINE_OCTAL \060\202\003\134\060\202\002\305\240\003\002\001\002\002\002\003 @@ -9745,41 +9349,1231 @@ CKA_VALUE MULTILINE_OCTAL \206\063\076\346\057\110\156\257\124\220\116\255\261\045 END -# Trust for Certificate "IPS CLASE1 root" +# Trust for Certificate "IPS CLASE1 root" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS CLASE1 root" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\103\236\122\137\132\152\107\303\054\353\304\134\143\355\071\061 +\174\345\364\337 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\204\220\035\225\060\111\126\374\101\201\360\105\327\166\304\153 +END +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\061\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\061\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "IPS CLASE3 root" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS CLASE3 root" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\007\352\060\202\007\123\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 +\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 +\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 +\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 +\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 +\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 +\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 +\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 +\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023\045 +\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023\045 +\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206\367 +\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056\151 +\160\163\056\145\163\060\036\027\015\060\061\061\062\062\071\060 +\061\060\061\064\064\132\027\015\062\065\061\062\062\067\060\061 +\060\061\064\064\132\060\202\001\022\061\013\060\011\006\003\125 +\004\006\023\002\105\123\061\022\060\020\006\003\125\004\010\023 +\011\102\141\162\143\145\154\157\156\141\061\022\060\020\006\003 +\125\004\007\023\011\102\141\162\143\145\154\157\156\141\061\056 +\060\054\006\003\125\004\012\023\045\111\120\123\040\111\156\164 +\145\162\156\145\164\040\160\165\142\154\151\163\150\151\156\147 +\040\123\145\162\166\151\143\145\163\040\163\056\154\056\061\053 +\060\051\006\003\125\004\012\024\042\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163\040\103\056\111\056\106\056\040 +\040\102\055\066\060\071\062\071\064\065\062\061\056\060\054\006 +\003\125\004\013\023\045\111\120\123\040\103\101\040\103\114\101 +\123\105\063\040\103\145\162\164\151\146\151\143\141\164\151\157 +\156\040\101\165\164\150\157\162\151\164\171\061\056\060\054\006 +\003\125\004\003\023\045\111\120\123\040\103\101\040\103\114\101 +\123\105\063\040\103\145\162\164\151\146\151\143\141\164\151\157 +\156\040\101\165\164\150\157\162\151\164\171\061\036\060\034\006 +\011\052\206\110\206\367\015\001\011\001\026\017\151\160\163\100 +\155\141\151\154\056\151\160\163\056\145\163\060\201\237\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215 +\000\060\201\211\002\201\201\000\253\027\376\016\260\306\150\033 +\123\360\122\276\237\372\332\372\213\023\004\273\001\217\062\331 +\037\217\115\316\066\230\332\344\000\104\214\050\330\023\104\052 +\244\153\116\027\044\102\234\323\210\244\101\202\326\043\373\213 +\311\206\345\271\251\202\005\334\361\336\037\340\014\231\125\230 +\362\070\354\154\235\040\003\300\357\252\243\306\144\004\121\055 +\170\015\243\322\250\072\326\044\114\351\226\172\030\254\023\043 +\042\033\174\350\061\021\263\137\011\252\060\160\161\106\045\153 +\111\161\200\053\225\001\262\037\002\003\001\000\001\243\202\004 +\112\060\202\004\106\060\035\006\003\125\035\016\004\026\004\024 +\270\223\377\056\313\334\054\216\242\347\172\376\066\121\041\243 +\230\133\014\064\060\202\001\104\006\003\125\035\043\004\202\001 +\073\060\202\001\067\200\024\270\223\377\056\313\334\054\216\242 +\347\172\376\066\121\041\243\230\133\014\064\241\202\001\032\244 +\202\001\026\060\202\001\022\061\013\060\011\006\003\125\004\006 +\023\002\105\123\061\022\060\020\006\003\125\004\010\023\011\102 +\141\162\143\145\154\157\156\141\061\022\060\020\006\003\125\004 +\007\023\011\102\141\162\143\145\154\157\156\141\061\056\060\054 +\006\003\125\004\012\023\045\111\120\123\040\111\156\164\145\162 +\156\145\164\040\160\165\142\154\151\163\150\151\156\147\040\123 +\145\162\166\151\143\145\163\040\163\056\154\056\061\053\060\051 +\006\003\125\004\012\024\042\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163\040\103\056\111\056\106\056\040\040\102 +\055\066\060\071\062\071\064\065\062\061\056\060\054\006\003\125 +\004\013\023\045\111\120\123\040\103\101\040\103\114\101\123\105 +\063\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\061\056\060\054\006\003\125 +\004\003\023\045\111\120\123\040\103\101\040\103\114\101\123\105 +\063\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052 +\206\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141 +\151\154\056\151\160\163\056\145\163\202\001\000\060\014\006\003 +\125\035\023\004\005\060\003\001\001\377\060\014\006\003\125\035 +\017\004\005\003\003\007\377\200\060\153\006\003\125\035\045\004 +\144\060\142\006\010\053\006\001\005\005\007\003\001\006\010\053 +\006\001\005\005\007\003\002\006\010\053\006\001\005\005\007\003 +\003\006\010\053\006\001\005\005\007\003\004\006\010\053\006\001 +\005\005\007\003\010\006\012\053\006\001\004\001\202\067\002\001 +\025\006\012\053\006\001\004\001\202\067\002\001\026\006\012\053 +\006\001\004\001\202\067\012\003\001\006\012\053\006\001\004\001 +\202\067\012\003\004\060\021\006\011\140\206\110\001\206\370\102 +\001\001\004\004\003\002\000\007\060\032\006\003\125\035\021\004 +\023\060\021\201\017\151\160\163\100\155\141\151\154\056\151\160 +\163\056\145\163\060\032\006\003\125\035\022\004\023\060\021\201 +\017\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163 +\060\101\006\011\140\206\110\001\206\370\102\001\015\004\064\026 +\062\103\114\101\123\105\063\040\103\101\040\103\145\162\164\151 +\146\151\143\141\164\145\040\151\163\163\165\145\144\040\142\171 +\040\150\164\164\160\072\057\057\167\167\167\056\151\160\163\056 +\145\163\057\060\051\006\011\140\206\110\001\206\370\102\001\002 +\004\034\026\032\150\164\164\160\072\057\057\167\167\167\056\151 +\160\163\056\145\163\057\151\160\163\062\060\060\062\057\060\072 +\006\011\140\206\110\001\206\370\102\001\004\004\055\026\053\150 +\164\164\160\072\057\057\167\167\167\056\151\160\163\056\145\163 +\057\151\160\163\062\060\060\062\057\151\160\163\062\060\060\062 +\103\114\101\123\105\063\056\143\162\154\060\077\006\011\140\206 +\110\001\206\370\102\001\003\004\062\026\060\150\164\164\160\072 +\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 +\062\060\060\062\057\162\145\166\157\143\141\164\151\157\156\103 +\114\101\123\105\063\056\150\164\155\154\077\060\074\006\011\140 +\206\110\001\206\370\102\001\007\004\057\026\055\150\164\164\160 +\072\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160 +\163\062\060\060\062\057\162\145\156\145\167\141\154\103\114\101 +\123\105\063\056\150\164\155\154\077\060\072\006\011\140\206\110 +\001\206\370\102\001\010\004\055\026\053\150\164\164\160\072\057 +\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163\062 +\060\060\062\057\160\157\154\151\143\171\103\114\101\123\105\063 +\056\150\164\155\154\060\163\006\003\125\035\037\004\154\060\152 +\060\061\240\057\240\055\206\053\150\164\164\160\072\057\057\167 +\167\167\056\151\160\163\056\145\163\057\151\160\163\062\060\060 +\062\057\151\160\163\062\060\060\062\103\114\101\123\105\063\056 +\143\162\154\060\065\240\063\240\061\206\057\150\164\164\160\072 +\057\057\167\167\167\142\141\143\153\056\151\160\163\056\145\163 +\057\151\160\163\062\060\060\062\057\151\160\163\062\060\060\062 +\103\114\101\123\105\063\056\143\162\154\060\057\006\010\053\006 +\001\005\005\007\001\001\004\043\060\041\060\037\006\010\053\006 +\001\005\005\007\060\001\206\023\150\164\164\160\072\057\057\157 +\143\163\160\056\151\160\163\056\145\163\057\060\015\006\011\052 +\206\110\206\367\015\001\001\005\005\000\003\201\201\000\027\145 +\134\231\225\103\003\047\257\046\345\353\320\263\027\043\367\103 +\252\307\360\175\354\017\306\251\256\256\226\017\166\051\034\342 +\006\055\176\046\305\074\372\241\301\201\316\123\260\102\321\227 +\127\032\027\176\244\121\141\306\356\351\136\357\005\272\353\275 +\017\247\222\157\330\243\006\150\051\216\171\365\377\277\371\247 +\257\344\261\316\302\321\200\102\047\005\004\064\370\303\177\026 +\170\043\014\007\044\362\106\107\255\073\124\320\257\325\061\262 +\257\175\310\352\351\324\126\331\016\023\262\305\105\120 +END + +# Trust for Certificate "IPS CLASE3 root" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS CLASE3 root" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\101\170\253\114\277\316\173\101\002\254\332\304\223\076\157\365 +\015\317\161\134 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\102\166\227\150\317\246\264\070\044\252\241\033\362\147\336\312 +END +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 +\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "IPS CLASEA1 root" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS CLASEA1 root" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 +\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 +\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 +\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 +\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 +\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 +\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\007\367\060\202\007\140\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 +\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 +\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 +\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 +\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 +\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 +\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 +\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 +\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023\046 +\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110 +\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154 +\056\151\160\163\056\145\163\060\036\027\015\060\061\061\062\062 +\071\060\061\060\065\063\062\132\027\015\062\065\061\062\062\067 +\060\061\060\065\063\062\132\060\202\001\024\061\013\060\011\006 +\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 +\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 +\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 +\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 +\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 +\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 +\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 +\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 +\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 +\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 +\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 +\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 +\103\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 +\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 +\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\060 +\201\237\060\015\006\011\052\206\110\206\367\015\001\001\001\005 +\000\003\201\215\000\060\201\211\002\201\201\000\273\060\327\334 +\320\124\275\065\116\237\305\114\202\352\321\120\074\107\230\374 +\233\151\235\167\315\156\340\077\356\353\062\137\137\237\322\320 +\171\345\225\163\104\041\062\340\012\333\235\327\316\215\253\122 +\213\053\170\340\233\133\175\364\375\155\011\345\256\341\154\035 +\007\043\240\027\321\371\175\250\106\106\221\042\250\262\151\306 +\255\367\365\365\224\241\060\224\275\000\314\104\177\356\304\236 +\311\301\346\217\012\066\301\375\044\075\001\240\365\173\342\174 +\170\146\103\213\117\131\362\233\331\372\111\263\002\003\001\000 +\001\243\202\004\123\060\202\004\117\060\035\006\003\125\035\016 +\004\026\004\024\147\046\226\347\241\277\330\265\003\235\376\073 +\334\376\362\212\346\025\335\060\060\202\001\106\006\003\125\035 +\043\004\202\001\075\060\202\001\071\200\024\147\046\226\347\241 +\277\330\265\003\235\376\073\334\376\362\212\346\025\335\060\241 +\202\001\034\244\202\001\030\060\202\001\024\061\013\060\011\006 +\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 +\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 +\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 +\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 +\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 +\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 +\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 +\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 +\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 +\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 +\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 +\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 +\103\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 +\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 +\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\202 +\001\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377 +\060\014\006\003\125\035\017\004\005\003\003\007\377\200\060\153 +\006\003\125\035\045\004\144\060\142\006\010\053\006\001\005\005 +\007\003\001\006\010\053\006\001\005\005\007\003\002\006\010\053 +\006\001\005\005\007\003\003\006\010\053\006\001\005\005\007\003 +\004\006\010\053\006\001\005\005\007\003\010\006\012\053\006\001 +\004\001\202\067\002\001\025\006\012\053\006\001\004\001\202\067 +\002\001\026\006\012\053\006\001\004\001\202\067\012\003\001\006 +\012\053\006\001\004\001\202\067\012\003\004\060\021\006\011\140 +\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060\032 +\006\003\125\035\021\004\023\060\021\201\017\151\160\163\100\155 +\141\151\154\056\151\160\163\056\145\163\060\032\006\003\125\035 +\022\004\023\060\021\201\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163\060\102\006\011\140\206\110\001\206\370 +\102\001\015\004\065\026\063\103\114\101\123\105\101\061\040\103 +\101\040\103\145\162\164\151\146\151\143\141\164\145\040\151\163 +\163\165\145\144\040\142\171\040\150\164\164\160\072\057\057\167 +\167\167\056\151\160\163\056\145\163\057\060\051\006\011\140\206 +\110\001\206\370\102\001\002\004\034\026\032\150\164\164\160\072 +\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 +\062\060\060\062\057\060\073\006\011\140\206\110\001\206\370\102 +\001\004\004\056\026\054\150\164\164\160\072\057\057\167\167\167 +\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057 +\151\160\163\062\060\060\062\103\114\101\123\105\101\061\056\143 +\162\154\060\100\006\011\140\206\110\001\206\370\102\001\003\004 +\063\026\061\150\164\164\160\072\057\057\167\167\167\056\151\160 +\163\056\145\163\057\151\160\163\062\060\060\062\057\162\145\166 +\157\143\141\164\151\157\156\103\114\101\123\105\101\061\056\150 +\164\155\154\077\060\075\006\011\140\206\110\001\206\370\102\001 +\007\004\060\026\056\150\164\164\160\072\057\057\167\167\167\056 +\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057\162 +\145\156\145\167\141\154\103\114\101\123\105\101\061\056\150\164 +\155\154\077\060\073\006\011\140\206\110\001\206\370\102\001\010 +\004\056\026\054\150\164\164\160\072\057\057\167\167\167\056\151 +\160\163\056\145\163\057\151\160\163\062\060\060\062\057\160\157 +\154\151\143\171\103\114\101\123\105\101\061\056\150\164\155\154 +\060\165\006\003\125\035\037\004\156\060\154\060\062\240\060\240 +\056\206\054\150\164\164\160\072\057\057\167\167\167\056\151\160 +\163\056\145\163\057\151\160\163\062\060\060\062\057\151\160\163 +\062\060\060\062\103\114\101\123\105\101\061\056\143\162\154\060 +\066\240\064\240\062\206\060\150\164\164\160\072\057\057\167\167 +\167\142\141\143\153\056\151\160\163\056\145\163\057\151\160\163 +\062\060\060\062\057\151\160\163\062\060\060\062\103\114\101\123 +\105\101\061\056\143\162\154\060\057\006\010\053\006\001\005\005 +\007\001\001\004\043\060\041\060\037\006\010\053\006\001\005\005 +\007\060\001\206\023\150\164\164\160\072\057\057\157\143\163\160 +\056\151\160\163\056\145\163\057\060\015\006\011\052\206\110\206 +\367\015\001\001\005\005\000\003\201\201\000\176\272\212\254\200 +\000\204\025\012\325\230\121\014\144\305\234\002\130\203\146\312 +\255\036\007\315\176\152\332\200\007\337\003\064\112\034\223\304 +\113\130\040\065\066\161\355\242\012\065\022\245\246\145\247\205 +\151\012\016\343\141\356\352\276\050\223\063\325\354\350\276\304 +\333\137\177\250\371\143\061\310\153\226\342\051\302\133\240\347 +\227\066\235\167\136\061\153\376\323\247\333\052\333\333\226\213 +\037\146\336\266\003\300\053\263\170\326\125\007\345\217\071\120 +\336\007\043\162\346\275\040\024\113\264\206 +END + +# Trust for Certificate "IPS CLASEA1 root" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS CLASEA1 root" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\063\243\065\302\074\350\003\113\004\341\075\345\304\216\171\032 +\353\214\062\004 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\014\370\236\027\374\324\003\275\346\215\233\074\005\207\376\204 +END +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 +\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 +\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 +\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "IPS CLASEA3 root" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS CLASEA3 root" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 +\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 +\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 +\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 +\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 +\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 +\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\007\367\060\202\007\140\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 +\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 +\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 +\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 +\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 +\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 +\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 +\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 +\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023\046 +\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110 +\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154 +\056\151\160\163\056\145\163\060\036\027\015\060\061\061\062\062 +\071\060\061\060\067\065\060\132\027\015\062\065\061\062\062\067 +\060\061\060\067\065\060\132\060\202\001\024\061\013\060\011\006 +\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 +\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 +\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 +\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 +\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 +\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 +\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 +\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 +\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 +\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 +\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 +\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 +\103\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 +\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 +\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\060 +\201\237\060\015\006\011\052\206\110\206\367\015\001\001\001\005 +\000\003\201\215\000\060\201\211\002\201\201\000\356\200\000\366 +\032\144\056\255\152\310\203\261\213\247\356\217\331\266\333\315 +\033\273\206\006\042\166\063\014\022\155\110\126\141\322\334\202 +\045\142\057\237\322\151\060\145\003\102\043\130\274\107\334\153 +\326\165\135\027\074\341\377\362\130\147\171\240\301\201\261\324 +\126\242\362\215\021\231\375\366\175\361\307\304\136\002\052\232 +\342\112\265\023\212\000\375\214\167\206\346\327\224\365\040\165 +\056\016\114\277\164\304\077\201\076\203\264\243\070\066\051\347 +\350\052\365\214\210\101\252\200\246\343\154\357\002\003\001\000 +\001\243\202\004\123\060\202\004\117\060\035\006\003\125\035\016 +\004\026\004\024\036\237\127\120\107\266\141\223\071\323\054\374 +\332\135\075\005\165\267\231\002\060\202\001\106\006\003\125\035 +\043\004\202\001\075\060\202\001\071\200\024\036\237\127\120\107 +\266\141\223\071\323\054\374\332\135\075\005\165\267\231\002\241 +\202\001\034\244\202\001\030\060\202\001\024\061\013\060\011\006 +\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 +\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 +\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 +\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 +\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 +\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 +\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 +\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 +\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 +\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 +\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 +\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 +\103\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 +\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 +\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\202 +\001\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377 +\060\014\006\003\125\035\017\004\005\003\003\007\377\200\060\153 +\006\003\125\035\045\004\144\060\142\006\010\053\006\001\005\005 +\007\003\001\006\010\053\006\001\005\005\007\003\002\006\010\053 +\006\001\005\005\007\003\003\006\010\053\006\001\005\005\007\003 +\004\006\010\053\006\001\005\005\007\003\010\006\012\053\006\001 +\004\001\202\067\002\001\025\006\012\053\006\001\004\001\202\067 +\002\001\026\006\012\053\006\001\004\001\202\067\012\003\001\006 +\012\053\006\001\004\001\202\067\012\003\004\060\021\006\011\140 +\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060\032 +\006\003\125\035\021\004\023\060\021\201\017\151\160\163\100\155 +\141\151\154\056\151\160\163\056\145\163\060\032\006\003\125\035 +\022\004\023\060\021\201\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163\060\102\006\011\140\206\110\001\206\370 +\102\001\015\004\065\026\063\103\114\101\123\105\101\063\040\103 +\101\040\103\145\162\164\151\146\151\143\141\164\145\040\151\163 +\163\165\145\144\040\142\171\040\150\164\164\160\072\057\057\167 +\167\167\056\151\160\163\056\145\163\057\060\051\006\011\140\206 +\110\001\206\370\102\001\002\004\034\026\032\150\164\164\160\072 +\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 +\062\060\060\062\057\060\073\006\011\140\206\110\001\206\370\102 +\001\004\004\056\026\054\150\164\164\160\072\057\057\167\167\167 +\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057 +\151\160\163\062\060\060\062\103\114\101\123\105\101\063\056\143 +\162\154\060\100\006\011\140\206\110\001\206\370\102\001\003\004 +\063\026\061\150\164\164\160\072\057\057\167\167\167\056\151\160 +\163\056\145\163\057\151\160\163\062\060\060\062\057\162\145\166 +\157\143\141\164\151\157\156\103\114\101\123\105\101\063\056\150 +\164\155\154\077\060\075\006\011\140\206\110\001\206\370\102\001 +\007\004\060\026\056\150\164\164\160\072\057\057\167\167\167\056 +\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057\162 +\145\156\145\167\141\154\103\114\101\123\105\101\063\056\150\164 +\155\154\077\060\073\006\011\140\206\110\001\206\370\102\001\010 +\004\056\026\054\150\164\164\160\072\057\057\167\167\167\056\151 +\160\163\056\145\163\057\151\160\163\062\060\060\062\057\160\157 +\154\151\143\171\103\114\101\123\105\101\063\056\150\164\155\154 +\060\165\006\003\125\035\037\004\156\060\154\060\062\240\060\240 +\056\206\054\150\164\164\160\072\057\057\167\167\167\056\151\160 +\163\056\145\163\057\151\160\163\062\060\060\062\057\151\160\163 +\062\060\060\062\103\114\101\123\105\101\063\056\143\162\154\060 +\066\240\064\240\062\206\060\150\164\164\160\072\057\057\167\167 +\167\142\141\143\153\056\151\160\163\056\145\163\057\151\160\163 +\062\060\060\062\057\151\160\163\062\060\060\062\103\114\101\123 +\105\101\063\056\143\162\154\060\057\006\010\053\006\001\005\005 +\007\001\001\004\043\060\041\060\037\006\010\053\006\001\005\005 +\007\060\001\206\023\150\164\164\160\072\057\057\157\143\163\160 +\056\151\160\163\056\145\163\057\060\015\006\011\052\206\110\206 +\367\015\001\001\005\005\000\003\201\201\000\112\075\040\107\032 +\332\211\364\172\053\061\171\354\001\300\314\001\365\326\301\374 +\310\303\363\120\002\121\220\130\052\237\347\065\011\133\060\012 +\201\000\045\107\257\324\017\016\236\140\046\250\225\247\203\010 +\337\055\254\351\016\367\234\310\237\313\223\105\361\272\152\306 +\147\121\112\151\117\153\376\175\013\057\122\051\302\120\255\044 +\104\355\043\263\110\313\104\100\301\003\225\014\012\170\006\022 +\001\365\221\061\055\111\215\273\077\105\116\054\340\350\315\265 +\311\024\025\014\343\007\203\233\046\165\357 +END + +# Trust for Certificate "IPS CLASEA3 root" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS CLASEA3 root" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\026\324\044\376\226\020\341\165\031\257\043\053\266\207\164\342 +\101\104\276\156 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\006\371\353\354\314\126\235\210\272\220\365\272\260\032\340\002 +END +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 +\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 +\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 +\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 +\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "IPS Servidores root" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS Servidores root" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 +\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 +\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 +\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 +\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 +\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 +\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 +\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 +\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 +\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 +\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 +\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 +\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 +\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 +\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\002\267\060\202\002\040\002\001\000\060\015\006\011\052 +\206\110\206\367\015\001\001\004\005\000\060\201\243\061\013\060 +\011\006\003\125\004\006\023\002\105\123\061\022\060\020\006\003 +\125\004\010\023\011\102\101\122\103\105\114\117\116\101\061\022 +\060\020\006\003\125\004\007\023\011\102\101\122\103\105\114\117 +\116\101\061\031\060\027\006\003\125\004\012\023\020\111\120\123 +\040\123\145\147\165\162\151\144\141\144\040\103\101\061\030\060 +\026\006\003\125\004\013\023\017\103\145\162\164\151\146\151\143 +\141\143\151\157\156\145\163\061\027\060\025\006\003\125\004\003 +\023\016\111\120\123\040\123\105\122\126\111\104\117\122\105\123 +\061\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026 +\017\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163 +\060\036\027\015\071\070\060\061\060\061\062\063\062\061\060\067 +\132\027\015\060\071\061\062\062\071\062\063\062\061\060\067\132 +\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 +\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 +\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 +\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 +\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 +\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 +\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 +\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163\060\201\237\060\015\006\011\052\206\110 +\206\367\015\001\001\001\005\000\003\201\215\000\060\201\211\002 +\201\201\000\254\117\122\164\237\071\352\216\334\045\304\274\230 +\135\230\144\044\011\074\041\263\314\031\265\216\224\216\207\321 +\370\067\076\241\310\055\130\244\200\065\133\241\165\154\035\105 +\014\037\141\143\152\136\157\233\012\114\301\310\270\141\043\065 +\201\377\376\254\170\160\055\150\341\072\007\230\225\002\124\335 +\315\043\267\200\123\327\310\067\105\162\006\044\022\272\023\141 +\041\212\156\165\050\340\305\017\064\375\066\330\105\177\341\270 +\066\357\263\341\306\040\216\350\264\070\274\341\076\366\021\336 +\214\235\001\002\003\001\000\001\060\015\006\011\052\206\110\206 +\367\015\001\001\004\005\000\003\201\201\000\054\363\303\171\130 +\044\336\306\073\321\340\102\151\270\356\144\263\075\142\001\271 +\263\204\337\043\175\335\230\317\020\251\376\000\330\042\226\005 +\023\007\124\127\305\247\336\313\331\270\210\102\366\231\333\024 +\167\037\266\376\045\075\341\242\076\003\251\201\322\055\154\107 +\365\226\106\214\042\253\310\314\015\016\227\136\213\101\264\073 +\304\012\006\100\035\335\106\364\001\335\272\202\056\074\075\170 +\160\236\174\030\320\253\370\270\167\007\106\161\361\312\013\143 +\134\152\371\162\224\325\001\117\240\333\102 +END + +# Trust for Certificate "IPS Servidores root" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS Servidores root" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\044\272\155\154\212\133\130\067\244\215\265\372\351\031\352\147 +\134\224\322\027 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\173\265\010\231\232\214\030\277\205\047\175\016\256\332\262\253 +END +CKA_ISSUER MULTILINE_OCTAL +\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 +\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 +\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 +\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 +\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 +\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 +\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 +\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 +\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 +\151\160\163\056\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "IPS Timestamping root" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS Timestamping root" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023 +\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155 +\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151 +\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062 +\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151 +\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011 +\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056 +\145\163 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023 +\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155 +\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151 +\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062 +\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151 +\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011 +\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056 +\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\010\070\060\202\007\241\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 +\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 +\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 +\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 +\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 +\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 +\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 +\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 +\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023\053 +\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155\160 +\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151\157 +\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062\006 +\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151\155 +\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011\001 +\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056\145 +\163\060\036\027\015\060\061\061\062\062\071\060\061\061\060\061 +\070\132\027\015\062\065\061\062\062\067\060\061\061\060\061\070 +\132\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002 +\105\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162 +\143\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023 +\011\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003 +\125\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145 +\164\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162 +\166\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003 +\125\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160 +\163\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066 +\060\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013 +\023\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141 +\155\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164 +\151\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060 +\062\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124 +\151\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001 +\011\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\060\201\237\060\015\006\011\052\206\110\206\367\015 +\001\001\001\005\000\003\201\215\000\060\201\211\002\201\201\000 +\274\270\356\126\245\232\214\346\066\311\302\142\240\146\201\215 +\032\325\172\322\163\237\016\204\144\272\225\264\220\247\170\257 +\312\376\124\141\133\316\262\040\127\001\256\104\222\103\020\070 +\021\367\150\374\027\100\245\150\047\062\073\304\247\346\102\161 +\305\231\357\166\377\053\225\044\365\111\222\030\150\312\000\265 +\244\132\057\156\313\326\033\054\015\124\147\153\172\051\241\130 +\253\242\132\000\326\133\273\030\302\337\366\036\023\126\166\233 +\245\150\342\230\316\306\003\212\064\333\114\203\101\246\251\243 +\002\003\001\000\001\243\202\004\200\060\202\004\174\060\035\006 +\003\125\035\016\004\026\004\024\213\320\020\120\011\201\362\235 +\011\325\016\140\170\003\042\242\077\310\312\146\060\202\001\120 +\006\003\125\035\043\004\202\001\107\060\202\001\103\200\024\213 +\320\020\120\011\201\362\235\011\325\016\140\170\003\042\242\077 +\310\312\146\241\202\001\046\244\202\001\042\060\202\001\036\061 +\013\060\011\006\003\125\004\006\023\002\105\123\061\022\060\020 +\006\003\125\004\010\023\011\102\141\162\143\145\154\157\156\141 +\061\022\060\020\006\003\125\004\007\023\011\102\141\162\143\145 +\154\157\156\141\061\056\060\054\006\003\125\004\012\023\045\111 +\120\123\040\111\156\164\145\162\156\145\164\040\160\165\142\154 +\151\163\150\151\156\147\040\123\145\162\166\151\143\145\163\040 +\163\056\154\056\061\053\060\051\006\003\125\004\012\024\042\151 +\160\163\100\155\141\151\154\056\151\160\163\056\145\163\040\103 +\056\111\056\106\056\040\040\102\055\066\060\071\062\071\064\065 +\062\061\064\060\062\006\003\125\004\013\023\053\111\120\123\040 +\103\101\040\124\151\155\145\163\164\141\155\160\151\156\147\040 +\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 +\164\150\157\162\151\164\171\061\064\060\062\006\003\125\004\003 +\023\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141 +\155\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164 +\151\157\156\040\101\165\164\150\157\162\151\164\171\061\036\060 +\034\006\011\052\206\110\206\367\015\001\011\001\026\017\151\160 +\163\100\155\141\151\154\056\151\160\163\056\145\163\202\001\000 +\060\014\006\003\125\035\023\004\005\060\003\001\001\377\060\014 +\006\003\125\035\017\004\005\003\003\007\377\200\060\153\006\003 +\125\035\045\004\144\060\142\006\010\053\006\001\005\005\007\003 +\001\006\010\053\006\001\005\005\007\003\002\006\010\053\006\001 +\005\005\007\003\003\006\010\053\006\001\005\005\007\003\004\006 +\010\053\006\001\005\005\007\003\010\006\012\053\006\001\004\001 +\202\067\002\001\025\006\012\053\006\001\004\001\202\067\002\001 +\026\006\012\053\006\001\004\001\202\067\012\003\001\006\012\053 +\006\001\004\001\202\067\012\003\004\060\021\006\011\140\206\110 +\001\206\370\102\001\001\004\004\003\002\000\007\060\032\006\003 +\125\035\021\004\023\060\021\201\017\151\160\163\100\155\141\151 +\154\056\151\160\163\056\145\163\060\032\006\003\125\035\022\004 +\023\060\021\201\017\151\160\163\100\155\141\151\154\056\151\160 +\163\056\145\163\060\107\006\011\140\206\110\001\206\370\102\001 +\015\004\072\026\070\124\151\155\145\163\164\141\155\160\151\156 +\147\040\103\101\040\103\145\162\164\151\146\151\143\141\164\145 +\040\151\163\163\165\145\144\040\142\171\040\150\164\164\160\072 +\057\057\167\167\167\056\151\160\163\056\145\163\057\060\051\006 +\011\140\206\110\001\206\370\102\001\002\004\034\026\032\150\164 +\164\160\072\057\057\167\167\167\056\151\160\163\056\145\163\057 +\151\160\163\062\060\060\062\057\060\100\006\011\140\206\110\001 +\206\370\102\001\004\004\063\026\061\150\164\164\160\072\057\057 +\167\167\167\056\151\160\163\056\145\163\057\151\160\163\062\060 +\060\062\057\151\160\163\062\060\060\062\124\151\155\145\163\164 +\141\155\160\151\156\147\056\143\162\154\060\105\006\011\140\206 +\110\001\206\370\102\001\003\004\070\026\066\150\164\164\160\072 +\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 +\062\060\060\062\057\162\145\166\157\143\141\164\151\157\156\124 +\151\155\145\163\164\141\155\160\151\156\147\056\150\164\155\154 +\077\060\102\006\011\140\206\110\001\206\370\102\001\007\004\065 +\026\063\150\164\164\160\072\057\057\167\167\167\056\151\160\163 +\056\145\163\057\151\160\163\062\060\060\062\057\162\145\156\145 +\167\141\154\124\151\155\145\163\164\141\155\160\151\156\147\056 +\150\164\155\154\077\060\100\006\011\140\206\110\001\206\370\102 +\001\010\004\063\026\061\150\164\164\160\072\057\057\167\167\167 +\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057 +\160\157\154\151\143\171\124\151\155\145\163\164\141\155\160\151 +\156\147\056\150\164\155\154\060\177\006\003\125\035\037\004\170 +\060\166\060\067\240\065\240\063\206\061\150\164\164\160\072\057 +\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163\062 +\060\060\062\057\151\160\163\062\060\060\062\124\151\155\145\163 +\164\141\155\160\151\156\147\056\143\162\154\060\073\240\071\240 +\067\206\065\150\164\164\160\072\057\057\167\167\167\142\141\143 +\153\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062 +\057\151\160\163\062\060\060\062\124\151\155\145\163\164\141\155 +\160\151\156\147\056\143\162\154\060\057\006\010\053\006\001\005 +\005\007\001\001\004\043\060\041\060\037\006\010\053\006\001\005 +\005\007\060\001\206\023\150\164\164\160\072\057\057\157\143\163 +\160\056\151\160\163\056\145\163\057\060\015\006\011\052\206\110 +\206\367\015\001\001\005\005\000\003\201\201\000\145\272\301\314 +\000\032\225\221\312\351\154\072\277\072\036\024\010\174\373\203 +\356\153\142\121\323\063\221\265\140\171\176\004\330\135\171\067 +\350\303\133\260\304\147\055\150\132\262\137\016\012\372\315\077 +\072\105\241\352\066\317\046\036\247\021\050\305\224\217\204\114 +\123\010\305\223\263\374\342\177\365\215\363\261\251\205\137\210 +\336\221\226\356\027\133\256\245\352\160\145\170\054\041\144\001 +\225\316\316\114\076\120\364\266\131\313\143\215\266\275\030\324 +\207\112\137\334\357\351\126\360\012\014\350\165 +END + +# Trust for Certificate "IPS Timestamping root" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "IPS Timestamping root" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\226\231\134\167\021\350\345\055\371\343\113\354\354\147\323\313 +\361\266\304\322 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\056\003\375\305\365\327\053\224\144\301\276\211\061\361\026\233 +END +CKA_ISSUER MULTILINE_OCTAL +\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105 +\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 +\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 +\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 +\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 +\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 +\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 +\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 +\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 +\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023 +\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155 +\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151 +\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062 +\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151 +\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011 +\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056 +\145\163 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "QuoVadis Root CA" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "QuoVadis Root CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\177\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\045\060\043\006\003 +\125\004\013\023\034\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171\061\056\060\054\006\003\125\004\003\023\045\121\165\157\126 +\141\144\151\163\040\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\177\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\045\060\043\006\003 +\125\004\013\023\034\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171\061\056\060\054\006\003\125\004\003\023\045\121\165\157\126 +\141\144\151\163\040\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\004\072\266\120\213 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\005\320\060\202\004\270\240\003\002\001\002\002\004\072 +\266\120\213\060\015\006\011\052\206\110\206\367\015\001\001\005 +\005\000\060\177\061\013\060\011\006\003\125\004\006\023\002\102 +\115\061\031\060\027\006\003\125\004\012\023\020\121\165\157\126 +\141\144\151\163\040\114\151\155\151\164\145\144\061\045\060\043 +\006\003\125\004\013\023\034\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\061\056\060\054\006\003\125\004\003\023\045\121\165 +\157\126\141\144\151\163\040\122\157\157\164\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\060\036\027\015\060\061\060\063\061\071\061\070\063 +\063\063\063\132\027\015\062\061\060\063\061\067\061\070\063\063 +\063\063\132\060\177\061\013\060\011\006\003\125\004\006\023\002 +\102\115\061\031\060\027\006\003\125\004\012\023\020\121\165\157 +\126\141\144\151\163\040\114\151\155\151\164\145\144\061\045\060 +\043\006\003\125\004\013\023\034\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\061\056\060\054\006\003\125\004\003\023\045\121 +\165\157\126\141\144\151\163\040\122\157\157\164\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\060\202\001\042\060\015\006\011\052\206\110\206 +\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012 +\002\202\001\001\000\277\141\265\225\123\272\127\374\372\362\147 +\013\072\032\337\021\200\144\225\264\321\274\315\172\317\366\051 +\226\056\044\124\100\044\070\367\032\205\334\130\114\313\244\047 +\102\227\320\237\203\212\303\344\006\003\133\000\245\121\036\160 +\004\164\342\301\324\072\253\327\255\073\007\030\005\216\375\203 +\254\352\146\331\030\033\150\212\365\127\032\230\272\365\355\166 +\075\174\331\336\224\152\073\113\027\301\325\217\275\145\070\072 +\225\320\075\125\066\116\337\171\127\061\052\036\330\131\145\111 +\130\040\230\176\253\137\176\237\351\326\115\354\203\164\251\307 +\154\330\356\051\112\205\052\006\024\371\124\346\323\332\145\007 +\213\143\067\022\327\320\354\303\173\040\101\104\243\355\313\240 +\027\341\161\145\316\035\146\061\367\166\001\031\310\175\003\130 +\266\225\111\035\246\022\046\350\306\014\166\340\343\146\313\352 +\135\246\046\356\345\314\137\275\147\247\001\047\016\242\312\124 +\305\261\172\225\035\161\036\112\051\212\003\334\152\105\301\244 +\031\136\157\066\315\303\242\260\267\376\134\070\342\122\274\370 +\104\103\346\220\273\002\003\001\000\001\243\202\002\122\060\202 +\002\116\060\075\006\010\053\006\001\005\005\007\001\001\004\061 +\060\057\060\055\006\010\053\006\001\005\005\007\060\001\206\041 +\150\164\164\160\163\072\057\057\157\143\163\160\056\161\165\157 +\166\141\144\151\163\157\146\146\163\150\157\162\145\056\143\157 +\155\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001 +\001\377\060\202\001\032\006\003\125\035\040\004\202\001\021\060 +\202\001\015\060\202\001\011\006\011\053\006\001\004\001\276\130 +\000\001\060\201\373\060\201\324\006\010\053\006\001\005\005\007 +\002\002\060\201\307\032\201\304\122\145\154\151\141\156\143\145 +\040\157\156\040\164\150\145\040\121\165\157\126\141\144\151\163 +\040\122\157\157\164\040\103\145\162\164\151\146\151\143\141\164 +\145\040\142\171\040\141\156\171\040\160\141\162\164\171\040\141 +\163\163\165\155\145\163\040\141\143\143\145\160\164\141\156\143 +\145\040\157\146\040\164\150\145\040\164\150\145\156\040\141\160 +\160\154\151\143\141\142\154\145\040\163\164\141\156\144\141\162 +\144\040\164\145\162\155\163\040\141\156\144\040\143\157\156\144 +\151\164\151\157\156\163\040\157\146\040\165\163\145\054\040\143 +\145\162\164\151\146\151\143\141\164\151\157\156\040\160\162\141 +\143\164\151\143\145\163\054\040\141\156\144\040\164\150\145\040 +\121\165\157\126\141\144\151\163\040\103\145\162\164\151\146\151 +\143\141\164\145\040\120\157\154\151\143\171\056\060\042\006\010 +\053\006\001\005\005\007\002\001\026\026\150\164\164\160\072\057 +\057\167\167\167\056\161\165\157\166\141\144\151\163\056\142\155 +\060\035\006\003\125\035\016\004\026\004\024\213\113\155\355\323 +\051\271\006\031\354\071\071\251\360\227\204\152\313\357\337\060 +\201\256\006\003\125\035\043\004\201\246\060\201\243\200\024\213 +\113\155\355\323\051\271\006\031\354\071\071\251\360\227\204\152 +\313\357\337\241\201\204\244\201\201\060\177\061\013\060\011\006 +\003\125\004\006\023\002\102\115\061\031\060\027\006\003\125\004 +\012\023\020\121\165\157\126\141\144\151\163\040\114\151\155\151 +\164\145\144\061\045\060\043\006\003\125\004\013\023\034\122\157 +\157\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156 +\040\101\165\164\150\157\162\151\164\171\061\056\060\054\006\003 +\125\004\003\023\045\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156 +\040\101\165\164\150\157\162\151\164\171\202\004\072\266\120\213 +\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001\006 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 +\202\001\001\000\212\324\024\265\376\364\232\222\247\031\324\244 +\176\162\030\217\331\150\174\122\044\335\147\157\071\172\304\252 +\136\075\342\130\260\115\160\230\204\141\350\033\343\151\030\016 +\316\373\107\120\240\116\377\360\044\037\275\262\316\365\047\374 +\354\057\123\252\163\173\003\075\164\156\346\026\236\353\245\056 +\304\277\126\047\120\053\142\272\276\113\034\074\125\134\101\035 +\044\276\202\040\107\135\325\104\176\172\026\150\337\175\115\121 +\160\170\127\035\063\036\375\002\231\234\014\315\012\005\117\307 +\273\216\244\165\372\112\155\261\200\216\011\126\271\234\032\140 +\376\135\301\327\172\334\021\170\320\326\135\301\267\325\255\062 +\231\003\072\212\314\124\045\071\061\201\173\023\042\121\272\106 +\154\241\273\236\372\004\154\111\046\164\217\322\163\353\314\060 +\242\346\352\131\042\207\370\227\365\016\375\352\314\222\244\026 +\304\122\030\352\041\316\261\361\346\204\201\345\272\251\206\050 +\362\103\132\135\022\235\254\036\331\250\345\012\152\247\177\240 +\207\051\317\362\211\115\324\354\305\342\346\172\320\066\043\212 +\112\164\066\371 +END + +# Trust for Certificate "QuoVadis Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS CLASE1 root" +CKA_LABEL UTF8 "QuoVadis Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\103\236\122\137\132\152\107\303\054\353\304\134\143\355\071\061 -\174\345\364\337 +\336\077\100\275\120\223\323\233\154\140\366\332\274\007\142\001 +\000\211\166\311 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\204\220\035\225\060\111\126\374\101\201\360\105\327\166\304\153 +\047\336\066\376\162\267\000\003\000\235\364\360\036\154\004\044 END CKA_ISSUER MULTILINE_OCTAL -\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\061\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\061\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163 +\060\177\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\045\060\043\006\003 +\125\004\013\023\034\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171\061\056\060\054\006\003\125\004\003\023\045\121\165\157\126 +\141\144\151\163\040\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\004\072\266\120\213 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -9787,223 +10581,314 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "IPS CLASE3 root" +# Certificate "QuoVadis Root CA 2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS CLASE3 root" +CKA_LABEL UTF8 "QuoVadis Root CA 2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163 +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\062 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163 +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\002\005\011 END CKA_VALUE MULTILINE_OCTAL -\060\202\007\352\060\202\007\123\240\003\002\001\002\002\001\000 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 -\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 -\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 -\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 -\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 -\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 -\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 -\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 -\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023\045 -\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023\045 -\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206\367 -\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056\151 -\160\163\056\145\163\060\036\027\015\060\061\061\062\062\071\060 -\061\060\061\064\064\132\027\015\062\065\061\062\062\067\060\061 -\060\061\064\064\132\060\202\001\022\061\013\060\011\006\003\125 -\004\006\023\002\105\123\061\022\060\020\006\003\125\004\010\023 -\011\102\141\162\143\145\154\157\156\141\061\022\060\020\006\003 -\125\004\007\023\011\102\141\162\143\145\154\157\156\141\061\056 -\060\054\006\003\125\004\012\023\045\111\120\123\040\111\156\164 -\145\162\156\145\164\040\160\165\142\154\151\163\150\151\156\147 -\040\123\145\162\166\151\143\145\163\040\163\056\154\056\061\053 -\060\051\006\003\125\004\012\024\042\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163\040\103\056\111\056\106\056\040 -\040\102\055\066\060\071\062\071\064\065\062\061\056\060\054\006 -\003\125\004\013\023\045\111\120\123\040\103\101\040\103\114\101 -\123\105\063\040\103\145\162\164\151\146\151\143\141\164\151\157 -\156\040\101\165\164\150\157\162\151\164\171\061\056\060\054\006 -\003\125\004\003\023\045\111\120\123\040\103\101\040\103\114\101 -\123\105\063\040\103\145\162\164\151\146\151\143\141\164\151\157 -\156\040\101\165\164\150\157\162\151\164\171\061\036\060\034\006 -\011\052\206\110\206\367\015\001\011\001\026\017\151\160\163\100 -\155\141\151\154\056\151\160\163\056\145\163\060\201\237\060\015 -\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215 -\000\060\201\211\002\201\201\000\253\027\376\016\260\306\150\033 -\123\360\122\276\237\372\332\372\213\023\004\273\001\217\062\331 -\037\217\115\316\066\230\332\344\000\104\214\050\330\023\104\052 -\244\153\116\027\044\102\234\323\210\244\101\202\326\043\373\213 -\311\206\345\271\251\202\005\334\361\336\037\340\014\231\125\230 -\362\070\354\154\235\040\003\300\357\252\243\306\144\004\121\055 -\170\015\243\322\250\072\326\044\114\351\226\172\030\254\023\043 -\042\033\174\350\061\021\263\137\011\252\060\160\161\106\045\153 -\111\161\200\053\225\001\262\037\002\003\001\000\001\243\202\004 -\112\060\202\004\106\060\035\006\003\125\035\016\004\026\004\024 -\270\223\377\056\313\334\054\216\242\347\172\376\066\121\041\243 -\230\133\014\064\060\202\001\104\006\003\125\035\043\004\202\001 -\073\060\202\001\067\200\024\270\223\377\056\313\334\054\216\242 -\347\172\376\066\121\041\243\230\133\014\064\241\202\001\032\244 -\202\001\026\060\202\001\022\061\013\060\011\006\003\125\004\006 -\023\002\105\123\061\022\060\020\006\003\125\004\010\023\011\102 -\141\162\143\145\154\157\156\141\061\022\060\020\006\003\125\004 -\007\023\011\102\141\162\143\145\154\157\156\141\061\056\060\054 -\006\003\125\004\012\023\045\111\120\123\040\111\156\164\145\162 -\156\145\164\040\160\165\142\154\151\163\150\151\156\147\040\123 -\145\162\166\151\143\145\163\040\163\056\154\056\061\053\060\051 -\006\003\125\004\012\024\042\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163\040\103\056\111\056\106\056\040\040\102 -\055\066\060\071\062\071\064\065\062\061\056\060\054\006\003\125 -\004\013\023\045\111\120\123\040\103\101\040\103\114\101\123\105 -\063\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\101\165\164\150\157\162\151\164\171\061\056\060\054\006\003\125 -\004\003\023\045\111\120\123\040\103\101\040\103\114\101\123\105 -\063\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\101\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052 -\206\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141 -\151\154\056\151\160\163\056\145\163\202\001\000\060\014\006\003 -\125\035\023\004\005\060\003\001\001\377\060\014\006\003\125\035 -\017\004\005\003\003\007\377\200\060\153\006\003\125\035\045\004 -\144\060\142\006\010\053\006\001\005\005\007\003\001\006\010\053 -\006\001\005\005\007\003\002\006\010\053\006\001\005\005\007\003 -\003\006\010\053\006\001\005\005\007\003\004\006\010\053\006\001 -\005\005\007\003\010\006\012\053\006\001\004\001\202\067\002\001 -\025\006\012\053\006\001\004\001\202\067\002\001\026\006\012\053 -\006\001\004\001\202\067\012\003\001\006\012\053\006\001\004\001 -\202\067\012\003\004\060\021\006\011\140\206\110\001\206\370\102 -\001\001\004\004\003\002\000\007\060\032\006\003\125\035\021\004 -\023\060\021\201\017\151\160\163\100\155\141\151\154\056\151\160 -\163\056\145\163\060\032\006\003\125\035\022\004\023\060\021\201 -\017\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163 -\060\101\006\011\140\206\110\001\206\370\102\001\015\004\064\026 -\062\103\114\101\123\105\063\040\103\101\040\103\145\162\164\151 -\146\151\143\141\164\145\040\151\163\163\165\145\144\040\142\171 -\040\150\164\164\160\072\057\057\167\167\167\056\151\160\163\056 -\145\163\057\060\051\006\011\140\206\110\001\206\370\102\001\002 -\004\034\026\032\150\164\164\160\072\057\057\167\167\167\056\151 -\160\163\056\145\163\057\151\160\163\062\060\060\062\057\060\072 -\006\011\140\206\110\001\206\370\102\001\004\004\055\026\053\150 -\164\164\160\072\057\057\167\167\167\056\151\160\163\056\145\163 -\057\151\160\163\062\060\060\062\057\151\160\163\062\060\060\062 -\103\114\101\123\105\063\056\143\162\154\060\077\006\011\140\206 -\110\001\206\370\102\001\003\004\062\026\060\150\164\164\160\072 -\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 -\062\060\060\062\057\162\145\166\157\143\141\164\151\157\156\103 -\114\101\123\105\063\056\150\164\155\154\077\060\074\006\011\140 -\206\110\001\206\370\102\001\007\004\057\026\055\150\164\164\160 -\072\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160 -\163\062\060\060\062\057\162\145\156\145\167\141\154\103\114\101 -\123\105\063\056\150\164\155\154\077\060\072\006\011\140\206\110 -\001\206\370\102\001\010\004\055\026\053\150\164\164\160\072\057 -\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163\062 -\060\060\062\057\160\157\154\151\143\171\103\114\101\123\105\063 -\056\150\164\155\154\060\163\006\003\125\035\037\004\154\060\152 -\060\061\240\057\240\055\206\053\150\164\164\160\072\057\057\167 -\167\167\056\151\160\163\056\145\163\057\151\160\163\062\060\060 -\062\057\151\160\163\062\060\060\062\103\114\101\123\105\063\056 -\143\162\154\060\065\240\063\240\061\206\057\150\164\164\160\072 -\057\057\167\167\167\142\141\143\153\056\151\160\163\056\145\163 -\057\151\160\163\062\060\060\062\057\151\160\163\062\060\060\062 -\103\114\101\123\105\063\056\143\162\154\060\057\006\010\053\006 -\001\005\005\007\001\001\004\043\060\041\060\037\006\010\053\006 -\001\005\005\007\060\001\206\023\150\164\164\160\072\057\057\157 -\143\163\160\056\151\160\163\056\145\163\057\060\015\006\011\052 -\206\110\206\367\015\001\001\005\005\000\003\201\201\000\027\145 -\134\231\225\103\003\047\257\046\345\353\320\263\027\043\367\103 -\252\307\360\175\354\017\306\251\256\256\226\017\166\051\034\342 -\006\055\176\046\305\074\372\241\301\201\316\123\260\102\321\227 -\127\032\027\176\244\121\141\306\356\351\136\357\005\272\353\275 -\017\247\222\157\330\243\006\150\051\216\171\365\377\277\371\247 -\257\344\261\316\302\321\200\102\047\005\004\064\370\303\177\026 -\170\043\014\007\044\362\106\107\255\073\124\320\257\325\061\262 -\257\175\310\352\351\324\126\331\016\023\262\305\105\120 +\060\202\005\267\060\202\003\237\240\003\002\001\002\002\002\005 +\011\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\062\060\036\027\015\060\066\061\061\062 +\064\061\070\062\067\060\060\132\027\015\063\061\061\061\062\064 +\061\070\062\063\063\063\132\060\105\061\013\060\011\006\003\125 +\004\006\023\002\102\115\061\031\060\027\006\003\125\004\012\023 +\020\121\165\157\126\141\144\151\163\040\114\151\155\151\164\145 +\144\061\033\060\031\006\003\125\004\003\023\022\121\165\157\126 +\141\144\151\163\040\122\157\157\164\040\103\101\040\062\060\202 +\002\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005 +\000\003\202\002\017\000\060\202\002\012\002\202\002\001\000\232 +\030\312\113\224\015\000\055\257\003\051\212\360\017\201\310\256 +\114\031\205\035\010\237\253\051\104\205\363\057\201\255\062\036 +\220\106\277\243\206\046\032\036\376\176\034\030\072\134\234\140 +\027\052\072\164\203\063\060\175\141\124\021\313\355\253\340\346 +\322\242\176\365\153\157\030\267\012\013\055\375\351\076\357\012 +\306\263\020\351\334\302\106\027\370\135\375\244\332\377\236\111 +\132\234\346\063\346\044\226\367\077\272\133\053\034\172\065\302 +\326\147\376\253\146\120\213\155\050\140\053\357\327\140\303\307 +\223\274\215\066\221\363\177\370\333\021\023\304\234\167\166\301 +\256\267\002\152\201\172\251\105\203\342\005\346\271\126\301\224 +\067\217\110\161\143\042\354\027\145\007\225\212\113\337\217\306 +\132\012\345\260\343\137\136\153\021\253\014\371\205\353\104\351 +\370\004\163\362\351\376\134\230\214\365\163\257\153\264\176\315 +\324\134\002\053\114\071\341\262\225\225\055\102\207\327\325\263 +\220\103\267\154\023\361\336\335\366\304\370\211\077\321\165\365 +\222\303\221\325\212\210\320\220\354\334\155\336\211\302\145\161 +\226\213\015\003\375\234\277\133\026\254\222\333\352\376\171\174 +\255\353\257\367\026\313\333\315\045\053\345\037\373\232\237\342 +\121\314\072\123\014\110\346\016\275\311\264\166\006\122\346\021 +\023\205\162\143\003\004\340\004\066\053\040\031\002\350\164\247 +\037\266\311\126\146\360\165\045\334\147\301\016\141\140\210\263 +\076\321\250\374\243\332\035\260\321\261\043\124\337\104\166\155 +\355\101\330\301\262\042\266\123\034\337\065\035\334\241\167\052 +\061\344\055\365\345\345\333\310\340\377\345\200\327\013\143\240 +\377\063\241\017\272\054\025\025\352\227\263\322\242\265\276\362 +\214\226\036\032\217\035\154\244\141\067\271\206\163\063\327\227 +\226\236\043\175\202\244\114\201\342\241\321\272\147\137\225\007 +\243\047\021\356\026\020\173\274\105\112\114\262\004\322\253\357 +\325\375\014\121\316\120\152\010\061\371\221\332\014\217\144\134 +\003\303\072\213\040\077\156\215\147\075\072\326\376\175\133\210 +\311\136\373\314\141\334\213\063\167\323\104\062\065\011\142\004 +\222\026\020\330\236\047\107\373\073\041\343\370\353\035\133\002 +\003\001\000\001\243\201\260\060\201\255\060\017\006\003\125\035 +\023\001\001\377\004\005\060\003\001\001\377\060\013\006\003\125 +\035\017\004\004\003\002\001\006\060\035\006\003\125\035\016\004 +\026\004\024\032\204\142\274\110\114\063\045\004\324\356\320\366 +\003\304\031\106\321\224\153\060\156\006\003\125\035\043\004\147 +\060\145\200\024\032\204\142\274\110\114\063\045\004\324\356\320 +\366\003\304\031\106\321\224\153\241\111\244\107\060\105\061\013 +\060\011\006\003\125\004\006\023\002\102\115\061\031\060\027\006 +\003\125\004\012\023\020\121\165\157\126\141\144\151\163\040\114 +\151\155\151\164\145\144\061\033\060\031\006\003\125\004\003\023 +\022\121\165\157\126\141\144\151\163\040\122\157\157\164\040\103 +\101\040\062\202\002\005\011\060\015\006\011\052\206\110\206\367 +\015\001\001\005\005\000\003\202\002\001\000\076\012\026\115\237 +\006\133\250\256\161\135\057\005\057\147\346\023\105\203\304\066 +\366\363\300\046\014\015\265\107\144\135\370\264\162\311\106\245 +\003\030\047\125\211\170\175\166\352\226\064\200\027\040\334\347 +\203\370\215\374\007\270\332\137\115\056\147\262\204\375\331\104 +\374\167\120\201\346\174\264\311\015\013\162\123\370\166\007\007 +\101\107\226\014\373\340\202\046\223\125\214\376\042\037\140\145 +\174\137\347\046\263\367\062\220\230\120\324\067\161\125\366\222 +\041\170\367\225\171\372\370\055\046\207\146\126\060\167\246\067 +\170\063\122\020\130\256\077\141\216\362\152\261\357\030\176\112 +\131\143\312\215\242\126\325\247\057\274\126\037\317\071\301\342 +\373\012\250\025\054\175\115\172\143\306\154\227\104\074\322\157 +\303\112\027\012\370\220\322\127\242\031\121\245\055\227\101\332 +\007\117\251\120\332\220\215\224\106\341\076\360\224\375\020\000 +\070\365\073\350\100\341\264\156\126\032\040\314\157\130\215\355 +\056\105\217\326\351\223\077\347\261\054\337\072\326\042\214\334 +\204\273\042\157\320\370\344\306\071\351\004\210\074\303\272\353 +\125\172\155\200\231\044\365\154\001\373\370\227\260\224\133\353 +\375\322\157\361\167\150\015\065\144\043\254\270\125\241\003\321 +\115\102\031\334\370\165\131\126\243\371\250\111\171\370\257\016 +\271\021\240\174\267\152\355\064\320\266\046\142\070\032\207\014 +\370\350\375\056\323\220\177\007\221\052\035\326\176\134\205\203 +\231\260\070\010\077\351\136\371\065\007\344\311\142\156\127\177 +\247\120\225\367\272\310\233\346\216\242\001\305\326\146\277\171 +\141\363\074\034\341\271\202\134\135\240\303\351\330\110\275\031 +\242\021\024\031\156\262\206\033\150\076\110\067\032\210\267\135 +\226\136\234\307\357\047\142\010\342\221\031\134\322\361\041\335 +\272\027\102\202\227\161\201\123\061\251\237\366\175\142\277\162 +\341\243\223\035\314\212\046\132\011\070\320\316\327\015\200\026 +\264\170\245\072\207\114\215\212\245\325\106\227\362\054\020\271 +\274\124\042\300\001\120\151\103\236\364\262\357\155\370\354\332 +\361\343\261\357\337\221\217\124\052\013\045\301\046\031\304\122 +\020\005\145\325\202\020\352\302\061\315\056 +END + +# Trust for Certificate "QuoVadis Root CA 2" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "QuoVadis Root CA 2" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\312\072\373\317\022\100\066\113\104\262\026\040\210\200\110\071 +\031\223\174\367 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\136\071\173\335\370\272\354\202\351\254\142\272\014\124\000\053 +END +CKA_ISSUER MULTILINE_OCTAL +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\062 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\002\005\011 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "QuoVadis Root CA 3" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "QuoVadis Root CA 3" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\063 END - -# Trust for Certificate "IPS CLASE3 root" +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\063 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\002\005\306 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\006\235\060\202\004\205\240\003\002\001\002\002\002\005 +\306\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\063\060\036\027\015\060\066\061\061\062 +\064\061\071\061\061\062\063\132\027\015\063\061\061\061\062\064 +\061\071\060\066\064\064\132\060\105\061\013\060\011\006\003\125 +\004\006\023\002\102\115\061\031\060\027\006\003\125\004\012\023 +\020\121\165\157\126\141\144\151\163\040\114\151\155\151\164\145 +\144\061\033\060\031\006\003\125\004\003\023\022\121\165\157\126 +\141\144\151\163\040\122\157\157\164\040\103\101\040\063\060\202 +\002\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005 +\000\003\202\002\017\000\060\202\002\012\002\202\002\001\000\314 +\127\102\026\124\234\346\230\323\323\115\356\376\355\307\237\103 +\071\112\145\263\350\026\210\064\333\015\131\221\164\317\222\270 +\004\100\255\002\113\061\253\274\215\221\150\330\040\016\032\001 +\342\032\173\116\027\135\342\212\267\077\231\032\315\353\141\253 +\302\145\246\037\267\267\275\267\217\374\375\160\217\013\240\147 +\276\001\242\131\317\161\346\017\051\166\377\261\126\171\105\053 +\037\236\172\124\350\243\051\065\150\244\001\117\017\244\056\067 +\357\033\277\343\217\020\250\162\253\130\127\347\124\206\310\311 +\363\133\332\054\332\135\216\156\074\243\076\332\373\202\345\335 +\362\134\262\005\063\157\212\066\316\320\023\116\377\277\112\014 +\064\114\246\303\041\275\120\004\125\353\261\273\235\373\105\036 +\144\025\336\125\001\214\002\166\265\313\241\077\102\151\274\057 +\275\150\103\026\126\211\052\067\141\221\375\246\256\116\300\313 +\024\145\224\067\113\222\006\357\004\320\310\234\210\333\013\173 +\201\257\261\075\052\304\145\072\170\266\356\334\200\261\322\323 +\231\234\072\356\153\132\153\263\215\267\325\316\234\302\276\245 +\113\057\026\261\236\150\073\006\157\256\175\237\370\336\354\314 +\051\247\230\243\045\103\057\357\361\137\046\341\210\115\370\136 +\156\327\331\024\156\031\063\151\247\073\204\211\223\304\123\125 +\023\241\121\170\100\370\270\311\242\356\173\272\122\102\203\236 +\024\355\005\122\132\131\126\247\227\374\235\077\012\051\330\334 +\117\221\016\023\274\336\225\244\337\213\231\276\254\233\063\210 +\357\265\201\257\033\306\042\123\310\366\307\356\227\024\260\305 +\174\170\122\310\360\316\156\167\140\204\246\351\052\166\040\355 +\130\001\027\060\223\351\032\213\340\163\143\331\152\222\224\111 +\116\264\255\112\205\304\243\042\060\374\011\355\150\042\163\246 +\210\014\125\041\130\305\341\072\237\052\335\312\341\220\340\331 +\163\253\154\200\270\350\013\144\223\240\234\214\031\377\263\322 +\014\354\221\046\207\212\263\242\341\160\217\054\012\345\315\155 +\150\121\353\332\077\005\177\213\062\346\023\134\153\376\137\100 +\342\042\310\264\264\144\117\326\272\175\110\076\250\151\014\327 +\273\206\161\311\163\270\077\073\235\045\113\332\377\100\353\002 +\003\001\000\001\243\202\001\225\060\202\001\221\060\017\006\003 +\125\035\023\001\001\377\004\005\060\003\001\001\377\060\201\341 +\006\003\125\035\040\004\201\331\060\201\326\060\201\323\006\011 +\053\006\001\004\001\276\130\000\003\060\201\305\060\201\223\006 +\010\053\006\001\005\005\007\002\002\060\201\206\032\201\203\101 +\156\171\040\165\163\145\040\157\146\040\164\150\151\163\040\103 +\145\162\164\151\146\151\143\141\164\145\040\143\157\156\163\164 +\151\164\165\164\145\163\040\141\143\143\145\160\164\141\156\143 +\145\040\157\146\040\164\150\145\040\121\165\157\126\141\144\151 +\163\040\122\157\157\164\040\103\101\040\063\040\103\145\162\164 +\151\146\151\143\141\164\145\040\120\157\154\151\143\171\040\057 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\120 +\162\141\143\164\151\143\145\040\123\164\141\164\145\155\145\156 +\164\056\060\055\006\010\053\006\001\005\005\007\002\001\026\041 +\150\164\164\160\072\057\057\167\167\167\056\161\165\157\166\141 +\144\151\163\147\154\157\142\141\154\056\143\157\155\057\143\160 +\163\060\013\006\003\125\035\017\004\004\003\002\001\006\060\035 +\006\003\125\035\016\004\026\004\024\362\300\023\340\202\103\076 +\373\356\057\147\062\226\065\134\333\270\313\002\320\060\156\006 +\003\125\035\043\004\147\060\145\200\024\362\300\023\340\202\103 +\076\373\356\057\147\062\226\065\134\333\270\313\002\320\241\111 +\244\107\060\105\061\013\060\011\006\003\125\004\006\023\002\102 +\115\061\031\060\027\006\003\125\004\012\023\020\121\165\157\126 +\141\144\151\163\040\114\151\155\151\164\145\144\061\033\060\031 +\006\003\125\004\003\023\022\121\165\157\126\141\144\151\163\040 +\122\157\157\164\040\103\101\040\063\202\002\005\306\060\015\006 +\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002\001 +\000\117\255\240\054\114\372\300\362\157\367\146\125\253\043\064 +\356\347\051\332\303\133\266\260\203\331\320\320\342\041\373\363 +\140\247\073\135\140\123\047\242\233\366\010\042\052\347\277\240 +\162\345\234\044\152\061\261\220\172\047\333\204\021\211\047\246 +\167\132\070\327\277\254\206\374\356\135\203\274\006\306\321\167 +\153\017\155\044\057\113\172\154\247\007\226\312\343\204\237\255 +\210\213\035\253\026\215\133\146\027\331\026\364\213\200\322\335 +\370\262\166\303\374\070\023\252\014\336\102\151\053\156\363\074 +\353\200\047\333\365\246\104\015\237\132\125\131\013\325\015\122 +\110\305\256\237\362\057\200\305\352\062\120\065\022\227\056\301 +\341\377\361\043\210\121\070\237\362\146\126\166\347\017\121\227 +\245\122\014\115\111\121\225\066\075\277\242\113\014\020\035\206 +\231\114\252\363\162\021\223\344\352\366\233\332\250\135\247\115 +\267\236\002\256\163\000\310\332\043\003\350\371\352\031\164\142 +\000\224\313\042\040\276\224\247\131\265\202\152\276\231\171\172 +\251\362\112\044\122\367\164\375\272\116\346\250\035\002\156\261 +\015\200\104\301\256\323\043\067\137\273\205\174\053\222\056\350 +\176\245\213\335\231\341\277\047\157\055\135\252\173\207\376\012 +\335\113\374\216\365\046\344\156\160\102\156\063\354\061\236\173 +\223\301\344\311\151\032\075\300\153\116\042\155\356\253\130\115 +\306\320\101\301\053\352\117\022\207\136\353\105\330\154\365\230 +\002\323\240\330\125\212\006\231\031\242\240\167\321\060\236\254 +\314\165\356\203\365\260\142\071\317\154\127\342\114\322\221\013 +\016\165\050\033\232\277\375\032\103\361\312\167\373\073\217\141 +\270\151\050\026\102\004\136\160\052\034\041\330\217\341\275\043 +\133\055\164\100\222\331\143\031\015\163\335\151\274\142\107\274 +\340\164\053\262\353\175\276\101\033\265\300\106\305\241\042\313 +\137\116\301\050\222\336\030\272\325\052\050\273\021\213\027\223 +\230\231\140\224\134\043\317\132\047\227\136\013\005\006\223\067 +\036\073\151\066\353\251\236\141\035\217\062\332\216\014\326\164 +\076\173\011\044\332\001\167\107\304\073\315\064\214\231\365\312 +\341\045\141\063\262\131\033\342\156\327\067\127\266\015\251\022 +\332 +END + +# Trust for Certificate "QuoVadis Root CA 3" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS CLASE3 root" +CKA_LABEL UTF8 "QuoVadis Root CA 3" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\101\170\253\114\277\316\173\101\002\254\332\304\223\076\157\365 -\015\317\161\134 +\037\111\024\367\330\164\225\035\335\256\002\300\276\375\072\055 +\202\165\121\205 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\102\166\227\150\317\246\264\070\044\252\241\033\362\147\336\312 +\061\205\074\142\224\227\143\271\252\375\211\116\257\157\340\317 END CKA_ISSUER MULTILINE_OCTAL -\060\202\001\022\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\056\060\054\006\003\125\004\013\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\056\060\054\006\003\125\004\003\023 -\045\111\120\123\040\103\101\040\103\114\101\123\105\063\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163 +\060\105\061\013\060\011\006\003\125\004\006\023\002\102\115\061 +\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 +\151\163\040\114\151\155\151\164\145\144\061\033\060\031\006\003 +\125\004\003\023\022\121\165\157\126\141\144\151\163\040\122\157 +\157\164\040\103\101\040\063 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\002\005\306 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -10011,221 +10896,111 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "IPS CLASEA1 root" +# Certificate "Security Communication Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS CLASEA1 root" +CKA_LABEL UTF8 "Security Communication Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 -\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 -\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 -\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163 +\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061 +\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040 +\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125 +\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155 +\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103 +\101\061 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 -\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 -\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 -\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163 +\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061 +\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040 +\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125 +\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155 +\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103 +\101\061 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\000 END CKA_VALUE MULTILINE_OCTAL -\060\202\007\367\060\202\007\140\240\003\002\001\002\002\001\000 +\060\202\003\132\060\202\002\102\240\003\002\001\002\002\001\000 \060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 -\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 -\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 -\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 -\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 -\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 -\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 -\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 -\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023\046 -\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110 -\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154 -\056\151\160\163\056\145\163\060\036\027\015\060\061\061\062\062 -\071\060\061\060\065\063\062\132\027\015\062\065\061\062\062\067 -\060\061\060\065\063\062\132\060\202\001\024\061\013\060\011\006 -\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 -\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 -\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 -\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 -\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 -\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 -\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 -\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 -\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 -\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 -\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143\141 -\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 -\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 -\103\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 -\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 -\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\060 -\201\237\060\015\006\011\052\206\110\206\367\015\001\001\001\005 -\000\003\201\215\000\060\201\211\002\201\201\000\273\060\327\334 -\320\124\275\065\116\237\305\114\202\352\321\120\074\107\230\374 -\233\151\235\167\315\156\340\077\356\353\062\137\137\237\322\320 -\171\345\225\163\104\041\062\340\012\333\235\327\316\215\253\122 -\213\053\170\340\233\133\175\364\375\155\011\345\256\341\154\035 -\007\043\240\027\321\371\175\250\106\106\221\042\250\262\151\306 -\255\367\365\365\224\241\060\224\275\000\314\104\177\356\304\236 -\311\301\346\217\012\066\301\375\044\075\001\240\365\173\342\174 -\170\146\103\213\117\131\362\233\331\372\111\263\002\003\001\000 -\001\243\202\004\123\060\202\004\117\060\035\006\003\125\035\016 -\004\026\004\024\147\046\226\347\241\277\330\265\003\235\376\073 -\334\376\362\212\346\025\335\060\060\202\001\106\006\003\125\035 -\043\004\202\001\075\060\202\001\071\200\024\147\046\226\347\241 -\277\330\265\003\235\376\073\334\376\362\212\346\025\335\060\241 -\202\001\034\244\202\001\030\060\202\001\024\061\013\060\011\006 -\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 -\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 -\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 -\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 -\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 -\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 -\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 -\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 -\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 -\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 -\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143\141 -\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 -\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 -\103\114\101\123\105\101\061\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 -\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 -\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\202 -\001\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377 -\060\014\006\003\125\035\017\004\005\003\003\007\377\200\060\153 -\006\003\125\035\045\004\144\060\142\006\010\053\006\001\005\005 -\007\003\001\006\010\053\006\001\005\005\007\003\002\006\010\053 -\006\001\005\005\007\003\003\006\010\053\006\001\005\005\007\003 -\004\006\010\053\006\001\005\005\007\003\010\006\012\053\006\001 -\004\001\202\067\002\001\025\006\012\053\006\001\004\001\202\067 -\002\001\026\006\012\053\006\001\004\001\202\067\012\003\001\006 -\012\053\006\001\004\001\202\067\012\003\004\060\021\006\011\140 -\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060\032 -\006\003\125\035\021\004\023\060\021\201\017\151\160\163\100\155 -\141\151\154\056\151\160\163\056\145\163\060\032\006\003\125\035 -\022\004\023\060\021\201\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163\060\102\006\011\140\206\110\001\206\370 -\102\001\015\004\065\026\063\103\114\101\123\105\101\061\040\103 -\101\040\103\145\162\164\151\146\151\143\141\164\145\040\151\163 -\163\165\145\144\040\142\171\040\150\164\164\160\072\057\057\167 -\167\167\056\151\160\163\056\145\163\057\060\051\006\011\140\206 -\110\001\206\370\102\001\002\004\034\026\032\150\164\164\160\072 -\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 -\062\060\060\062\057\060\073\006\011\140\206\110\001\206\370\102 -\001\004\004\056\026\054\150\164\164\160\072\057\057\167\167\167 -\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057 -\151\160\163\062\060\060\062\103\114\101\123\105\101\061\056\143 -\162\154\060\100\006\011\140\206\110\001\206\370\102\001\003\004 -\063\026\061\150\164\164\160\072\057\057\167\167\167\056\151\160 -\163\056\145\163\057\151\160\163\062\060\060\062\057\162\145\166 -\157\143\141\164\151\157\156\103\114\101\123\105\101\061\056\150 -\164\155\154\077\060\075\006\011\140\206\110\001\206\370\102\001 -\007\004\060\026\056\150\164\164\160\072\057\057\167\167\167\056 -\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057\162 -\145\156\145\167\141\154\103\114\101\123\105\101\061\056\150\164 -\155\154\077\060\073\006\011\140\206\110\001\206\370\102\001\010 -\004\056\026\054\150\164\164\160\072\057\057\167\167\167\056\151 -\160\163\056\145\163\057\151\160\163\062\060\060\062\057\160\157 -\154\151\143\171\103\114\101\123\105\101\061\056\150\164\155\154 -\060\165\006\003\125\035\037\004\156\060\154\060\062\240\060\240 -\056\206\054\150\164\164\160\072\057\057\167\167\167\056\151\160 -\163\056\145\163\057\151\160\163\062\060\060\062\057\151\160\163 -\062\060\060\062\103\114\101\123\105\101\061\056\143\162\154\060 -\066\240\064\240\062\206\060\150\164\164\160\072\057\057\167\167 -\167\142\141\143\153\056\151\160\163\056\145\163\057\151\160\163 -\062\060\060\062\057\151\160\163\062\060\060\062\103\114\101\123 -\105\101\061\056\143\162\154\060\057\006\010\053\006\001\005\005 -\007\001\001\004\043\060\041\060\037\006\010\053\006\001\005\005 -\007\060\001\206\023\150\164\164\160\072\057\057\157\143\163\160 -\056\151\160\163\056\145\163\057\060\015\006\011\052\206\110\206 -\367\015\001\001\005\005\000\003\201\201\000\176\272\212\254\200 -\000\204\025\012\325\230\121\014\144\305\234\002\130\203\146\312 -\255\036\007\315\176\152\332\200\007\337\003\064\112\034\223\304 -\113\130\040\065\066\161\355\242\012\065\022\245\246\145\247\205 -\151\012\016\343\141\356\352\276\050\223\063\325\354\350\276\304 -\333\137\177\250\371\143\061\310\153\226\342\051\302\133\240\347 -\227\066\235\167\136\061\153\376\323\247\333\052\333\333\226\213 -\037\146\336\266\003\300\053\263\170\326\125\007\345\217\071\120 -\336\007\043\162\346\275\040\024\113\264\206 +\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061\030 +\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040\124 +\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125\004 +\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155\155 +\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103\101 +\061\060\036\027\015\060\063\060\071\063\060\060\064\062\060\064 +\071\132\027\015\062\063\060\071\063\060\060\064\062\060\064\071 +\132\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120 +\061\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115 +\040\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003 +\125\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157 +\155\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164 +\103\101\061\060\202\001\042\060\015\006\011\052\206\110\206\367 +\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002 +\202\001\001\000\263\263\376\177\323\155\261\357\026\174\127\245 +\014\155\166\212\057\113\277\144\373\114\356\212\360\363\051\174 +\365\377\356\052\340\351\351\272\133\144\042\232\232\157\054\072 +\046\151\121\005\231\046\334\325\034\152\161\306\232\175\036\235 +\335\174\154\306\214\147\147\112\076\370\161\260\031\047\251\011 +\014\246\225\277\113\214\014\372\125\230\073\330\350\042\241\113 +\161\070\171\254\227\222\151\263\211\176\352\041\150\006\230\024 +\226\207\322\141\066\274\155\047\126\236\127\356\300\300\126\375 +\062\317\244\331\216\302\043\327\215\250\363\330\045\254\227\344 +\160\070\364\266\072\264\235\073\227\046\103\243\241\274\111\131 +\162\114\043\060\207\001\130\366\116\276\034\150\126\146\257\315 +\101\135\310\263\115\052\125\106\253\037\332\036\342\100\075\333 +\315\175\271\222\200\234\067\335\014\226\144\235\334\042\367\144 +\213\337\141\336\025\224\122\025\240\175\122\311\113\250\041\311 +\306\261\355\313\303\225\140\321\017\360\253\160\370\337\313\115 +\176\354\326\372\253\331\275\177\124\362\245\351\171\372\331\326 +\166\044\050\163\002\003\001\000\001\243\077\060\075\060\035\006 +\003\125\035\016\004\026\004\024\240\163\111\231\150\334\205\133 +\145\343\233\050\057\127\237\275\063\274\007\110\060\013\006\003 +\125\035\017\004\004\003\002\001\006\060\017\006\003\125\035\023 +\001\001\377\004\005\060\003\001\001\377\060\015\006\011\052\206 +\110\206\367\015\001\001\005\005\000\003\202\001\001\000\150\100 +\251\250\273\344\117\135\171\263\005\265\027\263\140\023\353\306 +\222\135\340\321\323\152\376\373\276\233\155\277\307\005\155\131 +\040\304\034\360\267\332\204\130\002\143\372\110\026\357\117\245 +\013\367\112\230\362\077\236\033\255\107\153\143\316\010\107\353 +\122\077\170\234\257\115\256\370\325\117\317\232\230\052\020\101 +\071\122\304\335\331\233\016\357\223\001\256\262\056\312\150\102 +\044\102\154\260\263\072\076\315\351\332\110\304\025\313\351\371 +\007\017\222\120\111\212\335\061\227\137\311\351\067\252\073\131 +\145\227\224\062\311\263\237\076\072\142\130\305\111\255\142\016 +\161\245\062\252\057\306\211\166\103\100\023\023\147\075\242\124 +\045\020\313\361\072\362\331\372\333\111\126\273\246\376\247\101 +\065\303\340\210\141\311\210\307\337\066\020\042\230\131\352\260 +\112\373\126\026\163\156\254\115\367\042\241\117\255\035\172\055 +\105\047\345\060\301\136\362\332\023\313\045\102\121\225\107\003 +\214\154\041\314\164\102\355\123\377\063\213\217\017\127\001\026 +\057\317\246\356\311\160\042\024\275\375\276\154\013\003 END -# Trust for Certificate "IPS CLASEA1 root" +# Trust for Certificate "Security Communication Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS CLASEA1 root" +CKA_LABEL UTF8 "Security Communication Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\063\243\065\302\074\350\003\113\004\341\075\345\304\216\171\032 -\353\214\062\004 +\066\261\053\111\371\201\236\327\114\236\274\070\017\306\126\217 +\135\254\262\367 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\014\370\236\027\374\324\003\275\346\215\233\074\005\207\376\204 +\361\274\143\152\124\340\265\047\365\315\347\032\343\115\156\112 END CKA_ISSUER MULTILINE_OCTAL -\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 -\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\061 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 -\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 -\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163 +\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061 +\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040 +\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125 +\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155 +\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103 +\101\061 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\000 @@ -10236,224 +11011,211 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "IPS CLASEA3 root" +# Certificate "Sonera Class 1 Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS CLASEA3 root" +CKA_LABEL UTF8 "Sonera Class 1 Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 -\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 -\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 -\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163 +\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 +\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 +\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 +\141\040\103\154\141\163\163\061\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 -\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 -\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 -\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163 +\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 +\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 +\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 +\141\040\103\154\141\163\163\061\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\001\044 END CKA_VALUE MULTILINE_OCTAL -\060\202\007\367\060\202\007\140\240\003\002\001\002\002\001\000 +\060\202\003\040\060\202\002\010\240\003\002\001\002\002\001\044 \060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 -\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 -\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 -\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 -\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 -\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 -\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 -\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 -\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023\046 -\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206\110 -\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154 -\056\151\160\163\056\145\163\060\036\027\015\060\061\061\062\062 -\071\060\061\060\067\065\060\132\027\015\062\065\061\062\062\067 -\060\061\060\067\065\060\132\060\202\001\024\061\013\060\011\006 -\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 -\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 -\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 -\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 -\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 -\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 -\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 -\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 -\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 -\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 -\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143\141 -\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 -\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 -\103\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 -\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 -\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\060 -\201\237\060\015\006\011\052\206\110\206\367\015\001\001\001\005 -\000\003\201\215\000\060\201\211\002\201\201\000\356\200\000\366 -\032\144\056\255\152\310\203\261\213\247\356\217\331\266\333\315 -\033\273\206\006\042\166\063\014\022\155\110\126\141\322\334\202 -\045\142\057\237\322\151\060\145\003\102\043\130\274\107\334\153 -\326\165\135\027\074\341\377\362\130\147\171\240\301\201\261\324 -\126\242\362\215\021\231\375\366\175\361\307\304\136\002\052\232 -\342\112\265\023\212\000\375\214\167\206\346\327\224\365\040\165 -\056\016\114\277\164\304\077\201\076\203\264\243\070\066\051\347 -\350\052\365\214\210\101\252\200\246\343\154\357\002\003\001\000 -\001\243\202\004\123\060\202\004\117\060\035\006\003\125\035\016 -\004\026\004\024\036\237\127\120\107\266\141\223\071\323\054\374 -\332\135\075\005\165\267\231\002\060\202\001\106\006\003\125\035 -\043\004\202\001\075\060\202\001\071\200\024\036\237\127\120\107 -\266\141\223\071\323\054\374\332\135\075\005\165\267\231\002\241 -\202\001\034\244\202\001\030\060\202\001\024\061\013\060\011\006 -\003\125\004\006\023\002\105\123\061\022\060\020\006\003\125\004 -\010\023\011\102\141\162\143\145\154\157\156\141\061\022\060\020 -\006\003\125\004\007\023\011\102\141\162\143\145\154\157\156\141 -\061\056\060\054\006\003\125\004\012\023\045\111\120\123\040\111 -\156\164\145\162\156\145\164\040\160\165\142\154\151\163\150\151 -\156\147\040\123\145\162\166\151\143\145\163\040\163\056\154\056 -\061\053\060\051\006\003\125\004\012\024\042\151\160\163\100\155 -\141\151\154\056\151\160\163\056\145\163\040\103\056\111\056\106 -\056\040\040\102\055\066\060\071\062\071\064\065\062\061\057\060 -\055\006\003\125\004\013\023\046\111\120\123\040\103\101\040\103 -\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143\141 -\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061\057 -\060\055\006\003\125\004\003\023\046\111\120\123\040\103\101\040 -\103\114\101\123\105\101\063\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 -\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026\017 -\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163\202 -\001\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377 -\060\014\006\003\125\035\017\004\005\003\003\007\377\200\060\153 -\006\003\125\035\045\004\144\060\142\006\010\053\006\001\005\005 -\007\003\001\006\010\053\006\001\005\005\007\003\002\006\010\053 -\006\001\005\005\007\003\003\006\010\053\006\001\005\005\007\003 -\004\006\010\053\006\001\005\005\007\003\010\006\012\053\006\001 -\004\001\202\067\002\001\025\006\012\053\006\001\004\001\202\067 -\002\001\026\006\012\053\006\001\004\001\202\067\012\003\001\006 -\012\053\006\001\004\001\202\067\012\003\004\060\021\006\011\140 -\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060\032 -\006\003\125\035\021\004\023\060\021\201\017\151\160\163\100\155 -\141\151\154\056\151\160\163\056\145\163\060\032\006\003\125\035 -\022\004\023\060\021\201\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163\060\102\006\011\140\206\110\001\206\370 -\102\001\015\004\065\026\063\103\114\101\123\105\101\063\040\103 -\101\040\103\145\162\164\151\146\151\143\141\164\145\040\151\163 -\163\165\145\144\040\142\171\040\150\164\164\160\072\057\057\167 -\167\167\056\151\160\163\056\145\163\057\060\051\006\011\140\206 -\110\001\206\370\102\001\002\004\034\026\032\150\164\164\160\072 -\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 -\062\060\060\062\057\060\073\006\011\140\206\110\001\206\370\102 -\001\004\004\056\026\054\150\164\164\160\072\057\057\167\167\167 -\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057 -\151\160\163\062\060\060\062\103\114\101\123\105\101\063\056\143 -\162\154\060\100\006\011\140\206\110\001\206\370\102\001\003\004 -\063\026\061\150\164\164\160\072\057\057\167\167\167\056\151\160 -\163\056\145\163\057\151\160\163\062\060\060\062\057\162\145\166 -\157\143\141\164\151\157\156\103\114\101\123\105\101\063\056\150 -\164\155\154\077\060\075\006\011\140\206\110\001\206\370\102\001 -\007\004\060\026\056\150\164\164\160\072\057\057\167\167\167\056 -\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057\162 -\145\156\145\167\141\154\103\114\101\123\105\101\063\056\150\164 -\155\154\077\060\073\006\011\140\206\110\001\206\370\102\001\010 -\004\056\026\054\150\164\164\160\072\057\057\167\167\167\056\151 -\160\163\056\145\163\057\151\160\163\062\060\060\062\057\160\157 -\154\151\143\171\103\114\101\123\105\101\063\056\150\164\155\154 -\060\165\006\003\125\035\037\004\156\060\154\060\062\240\060\240 -\056\206\054\150\164\164\160\072\057\057\167\167\167\056\151\160 -\163\056\145\163\057\151\160\163\062\060\060\062\057\151\160\163 -\062\060\060\062\103\114\101\123\105\101\063\056\143\162\154\060 -\066\240\064\240\062\206\060\150\164\164\160\072\057\057\167\167 -\167\142\141\143\153\056\151\160\163\056\145\163\057\151\160\163 -\062\060\060\062\057\151\160\163\062\060\060\062\103\114\101\123 -\105\101\063\056\143\162\154\060\057\006\010\053\006\001\005\005 -\007\001\001\004\043\060\041\060\037\006\010\053\006\001\005\005 -\007\060\001\206\023\150\164\164\160\072\057\057\157\143\163\160 -\056\151\160\163\056\145\163\057\060\015\006\011\052\206\110\206 -\367\015\001\001\005\005\000\003\201\201\000\112\075\040\107\032 -\332\211\364\172\053\061\171\354\001\300\314\001\365\326\301\374 -\310\303\363\120\002\121\220\130\052\237\347\065\011\133\060\012 -\201\000\045\107\257\324\017\016\236\140\046\250\225\247\203\010 -\337\055\254\351\016\367\234\310\237\313\223\105\361\272\152\306 -\147\121\112\151\117\153\376\175\013\057\122\051\302\120\255\044 -\104\355\043\263\110\313\104\100\301\003\225\014\012\170\006\022 -\001\365\221\061\055\111\215\273\077\105\116\054\340\350\315\265 -\311\024\025\014\343\007\203\233\046\165\357 +\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061\017 +\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141\061 +\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162\141 +\040\103\154\141\163\163\061\040\103\101\060\036\027\015\060\061 +\060\064\060\066\061\060\064\071\061\063\132\027\015\062\061\060 +\064\060\066\061\060\064\071\061\063\132\060\071\061\013\060\011 +\006\003\125\004\006\023\002\106\111\061\017\060\015\006\003\125 +\004\012\023\006\123\157\156\145\162\141\061\031\060\027\006\003 +\125\004\003\023\020\123\157\156\145\162\141\040\103\154\141\163 +\163\061\040\103\101\060\202\001\042\060\015\006\011\052\206\110 +\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001 +\012\002\202\001\001\000\265\211\037\053\117\147\012\171\377\305 +\036\370\177\074\355\321\176\332\260\315\155\057\066\254\064\306 +\333\331\144\027\010\143\060\063\042\212\114\356\216\273\017\015 +\102\125\311\235\056\245\357\367\247\214\303\253\271\227\313\216 +\357\077\025\147\250\202\162\143\123\017\101\214\175\020\225\044 +\241\132\245\006\372\222\127\235\372\245\001\362\165\351\037\274 +\126\046\122\116\170\031\145\130\125\003\130\300\024\256\214\174 +\125\137\160\133\167\043\006\066\227\363\044\265\232\106\225\344 +\337\015\013\005\105\345\321\362\035\202\273\306\023\340\376\252 +\172\375\151\060\224\363\322\105\205\374\362\062\133\062\336\350 +\154\135\037\313\244\042\164\260\200\216\135\224\367\006\000\113 +\251\324\136\056\065\120\011\363\200\227\364\014\027\256\071\330 +\137\315\063\301\034\312\211\302\042\367\105\022\355\136\022\223 +\235\143\253\202\056\271\353\102\101\104\313\112\032\000\202\015 +\236\371\213\127\076\114\307\027\355\054\213\162\063\137\162\172 +\070\126\325\346\331\256\005\032\035\165\105\261\313\245\045\034 +\022\127\066\375\042\067\002\003\001\000\001\243\063\060\061\060 +\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377 +\060\021\006\003\125\035\016\004\012\004\010\107\342\014\213\366 +\123\210\122\060\013\006\003\125\035\017\004\004\003\002\001\006 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 +\202\001\001\000\213\032\262\311\135\141\264\341\271\053\271\123 +\321\262\205\235\167\216\026\356\021\075\333\302\143\331\133\227 +\145\373\022\147\330\052\134\266\253\345\136\303\267\026\057\310 +\350\253\035\212\375\253\032\174\325\137\143\317\334\260\335\167 +\271\250\346\322\042\070\207\007\024\331\377\276\126\265\375\007 +\016\074\125\312\026\314\247\246\167\067\373\333\134\037\116\131 +\006\207\243\003\103\365\026\253\267\204\275\116\357\237\061\067 +\360\106\361\100\266\321\014\245\144\370\143\136\041\333\125\116 +\117\061\166\234\020\141\216\266\123\072\243\021\276\257\155\174 +\036\275\256\055\342\014\151\307\205\123\150\242\141\272\305\076 +\264\171\124\170\236\012\307\002\276\142\321\021\202\113\145\057 +\221\132\302\250\207\261\126\150\224\171\371\045\367\301\325\256 +\032\270\273\075\217\251\212\070\025\367\163\320\132\140\321\200 +\260\360\334\325\120\315\116\356\222\110\151\355\262\043\036\060 +\314\310\224\310\266\365\073\206\177\077\246\056\237\366\076\054 +\265\222\226\076\337\054\223\212\377\201\214\017\017\131\041\031 +\127\275\125\232 END -# Trust for Certificate "IPS CLASEA3 root" +# Trust for Certificate "Sonera Class 1 Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS CLASEA3 root" +CKA_LABEL UTF8 "Sonera Class 1 Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\026\324\044\376\226\020\341\165\031\257\043\053\266\207\164\342 -\101\104\276\156 +\007\107\042\001\231\316\164\271\174\260\075\171\262\144\242\310 +\125\351\063\377 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\006\371\353\354\314\126\235\210\272\220\365\272\260\032\340\002 +\063\267\204\365\137\047\327\150\047\336\024\336\022\052\355\157 END CKA_ISSUER MULTILINE_OCTAL -\060\202\001\024\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\057\060\055\006\003\125\004\013\023 -\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003 -\023\046\111\120\123\040\103\101\040\103\114\101\123\105\101\063 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 -\165\164\150\157\162\151\164\171\061\036\060\034\006\011\052\206 -\110\206\367\015\001\011\001\026\017\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163 +\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 +\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 +\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 +\141\040\103\154\141\163\163\061\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\001\044 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "Sonera Class 2 Root CA" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Sonera Class 2 Root CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 +\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 +\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 +\141\040\103\154\141\163\163\062\040\103\101 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 +\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 +\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 +\141\040\103\154\141\163\163\062\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\035 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\003\040\060\202\002\010\240\003\002\001\002\002\001\035 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061\017 +\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141\061 +\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162\141 +\040\103\154\141\163\163\062\040\103\101\060\036\027\015\060\061 +\060\064\060\066\060\067\062\071\064\060\132\027\015\062\061\060 +\064\060\066\060\067\062\071\064\060\132\060\071\061\013\060\011 +\006\003\125\004\006\023\002\106\111\061\017\060\015\006\003\125 +\004\012\023\006\123\157\156\145\162\141\061\031\060\027\006\003 +\125\004\003\023\020\123\157\156\145\162\141\040\103\154\141\163 +\163\062\040\103\101\060\202\001\042\060\015\006\011\052\206\110 +\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001 +\012\002\202\001\001\000\220\027\112\065\235\312\360\015\226\307 +\104\372\026\067\374\110\275\275\177\200\055\065\073\341\157\250 +\147\251\277\003\034\115\214\157\062\107\325\101\150\244\023\004 +\301\065\014\232\204\103\374\134\035\377\211\263\350\027\030\315 +\221\137\373\211\343\352\277\116\135\174\033\046\323\165\171\355 +\346\204\343\127\345\255\051\304\364\072\050\347\245\173\204\066 +\151\263\375\136\166\275\243\055\231\323\220\116\043\050\175\030 +\143\361\124\073\046\235\166\133\227\102\262\377\256\360\116\354 +\335\071\225\116\203\006\177\347\111\100\310\305\001\262\124\132 +\146\035\075\374\371\351\074\012\236\201\270\160\360\001\213\344 +\043\124\174\310\256\370\220\036\000\226\162\324\124\317\141\043 +\274\352\373\235\002\225\321\266\271\161\072\151\010\077\017\264 +\341\102\307\210\365\077\230\250\247\272\034\340\161\161\357\130 +\127\201\120\172\134\153\164\106\016\203\003\230\303\216\250\156 +\362\166\062\156\047\203\302\163\363\334\030\350\264\223\352\165 +\104\153\004\140\040\161\127\207\235\363\276\240\220\043\075\212 +\044\341\332\041\333\303\002\003\001\000\001\243\063\060\061\060 +\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377 +\060\021\006\003\125\035\016\004\012\004\010\112\240\252\130\204 +\323\136\074\060\013\006\003\125\035\017\004\004\003\002\001\006 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 +\202\001\001\000\132\316\207\371\026\162\025\127\113\035\331\233 +\347\242\046\060\354\223\147\337\326\055\322\064\257\367\070\245 +\316\253\026\271\253\057\174\065\313\254\320\017\264\114\053\374 +\200\357\153\214\221\137\066\166\367\333\263\033\031\352\364\262 +\021\375\141\161\104\277\050\263\072\035\277\263\103\350\237\277 +\334\061\010\161\260\235\215\326\064\107\062\220\306\145\044\367 +\240\112\174\004\163\217\071\157\027\214\162\265\275\113\310\172 +\370\173\203\303\050\116\234\011\352\147\077\262\147\004\033\303 +\024\332\370\347\111\044\221\320\035\152\372\141\071\357\153\347 +\041\165\006\007\330\022\264\041\040\160\102\161\201\332\074\232 +\066\276\246\133\015\152\154\232\037\221\173\371\371\357\102\272 +\116\116\236\314\014\215\224\334\331\105\234\136\354\102\120\143 +\256\364\135\304\261\022\334\312\073\250\056\235\024\132\005\165 +\267\354\327\143\342\272\065\266\004\010\221\350\332\235\234\366 +\146\265\030\254\012\246\124\046\064\063\322\033\301\324\177\032 +\072\216\013\252\062\156\333\374\117\045\237\331\062\307\226\132 +\160\254\337\114 +END + +# Trust for Certificate "Sonera Class 2 Root CA" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Sonera Class 2 Root CA" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\067\367\155\346\007\174\220\305\261\076\223\032\267\101\020\264 +\362\344\232\047 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\243\354\165\017\056\210\337\372\110\001\116\013\134\110\157\373 +END +CKA_ISSUER MULTILINE_OCTAL +\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 +\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 +\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 +\141\040\103\154\141\163\163\062\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\035 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -10461,119 +11223,120 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "IPS Servidores root" +# Certificate "Staat der Nederlanden Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS Servidores root" +CKA_LABEL UTF8 "Staat der Nederlanden Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 -\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 -\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 -\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 -\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 -\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 -\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 -\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163 +\060\125\061\013\060\011\006\003\125\004\006\023\002\116\114\061 +\036\060\034\006\003\125\004\012\023\025\123\164\141\141\164\040 +\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\061 +\046\060\044\006\003\125\004\003\023\035\123\164\141\141\164\040 +\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\040 +\122\157\157\164\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 -\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 -\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 -\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 -\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 -\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 -\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 -\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163 +\060\125\061\013\060\011\006\003\125\004\006\023\002\116\114\061 +\036\060\034\006\003\125\004\012\023\025\123\164\141\141\164\040 +\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\061 +\046\060\044\006\003\125\004\003\023\035\123\164\141\141\164\040 +\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\040 +\122\157\157\164\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\004\000\230\226\212 END CKA_VALUE MULTILINE_OCTAL -\060\202\002\267\060\202\002\040\002\001\000\060\015\006\011\052 -\206\110\206\367\015\001\001\004\005\000\060\201\243\061\013\060 -\011\006\003\125\004\006\023\002\105\123\061\022\060\020\006\003 -\125\004\010\023\011\102\101\122\103\105\114\117\116\101\061\022 -\060\020\006\003\125\004\007\023\011\102\101\122\103\105\114\117 -\116\101\061\031\060\027\006\003\125\004\012\023\020\111\120\123 -\040\123\145\147\165\162\151\144\141\144\040\103\101\061\030\060 -\026\006\003\125\004\013\023\017\103\145\162\164\151\146\151\143 -\141\143\151\157\156\145\163\061\027\060\025\006\003\125\004\003 -\023\016\111\120\123\040\123\105\122\126\111\104\117\122\105\123 -\061\036\060\034\006\011\052\206\110\206\367\015\001\011\001\026 -\017\151\160\163\100\155\141\151\154\056\151\160\163\056\145\163 -\060\036\027\015\071\070\060\061\060\061\062\063\062\061\060\067 -\132\027\015\060\071\061\062\062\071\062\063\062\061\060\067\132 -\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 -\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 -\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 -\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 -\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 -\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 -\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 -\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163\060\201\237\060\015\006\011\052\206\110 -\206\367\015\001\001\001\005\000\003\201\215\000\060\201\211\002 -\201\201\000\254\117\122\164\237\071\352\216\334\045\304\274\230 -\135\230\144\044\011\074\041\263\314\031\265\216\224\216\207\321 -\370\067\076\241\310\055\130\244\200\065\133\241\165\154\035\105 -\014\037\141\143\152\136\157\233\012\114\301\310\270\141\043\065 -\201\377\376\254\170\160\055\150\341\072\007\230\225\002\124\335 -\315\043\267\200\123\327\310\067\105\162\006\044\022\272\023\141 -\041\212\156\165\050\340\305\017\064\375\066\330\105\177\341\270 -\066\357\263\341\306\040\216\350\264\070\274\341\076\366\021\336 -\214\235\001\002\003\001\000\001\060\015\006\011\052\206\110\206 -\367\015\001\001\004\005\000\003\201\201\000\054\363\303\171\130 -\044\336\306\073\321\340\102\151\270\356\144\263\075\142\001\271 -\263\204\337\043\175\335\230\317\020\251\376\000\330\042\226\005 -\023\007\124\127\305\247\336\313\331\270\210\102\366\231\333\024 -\167\037\266\376\045\075\341\242\076\003\251\201\322\055\154\107 -\365\226\106\214\042\253\310\314\015\016\227\136\213\101\264\073 -\304\012\006\100\035\335\106\364\001\335\272\202\056\074\075\170 -\160\236\174\030\320\253\370\270\167\007\106\161\361\312\013\143 -\134\152\371\162\224\325\001\117\240\333\102 +\060\202\003\272\060\202\002\242\240\003\002\001\002\002\004\000 +\230\226\212\060\015\006\011\052\206\110\206\367\015\001\001\005 +\005\000\060\125\061\013\060\011\006\003\125\004\006\023\002\116 +\114\061\036\060\034\006\003\125\004\012\023\025\123\164\141\141 +\164\040\144\145\162\040\116\145\144\145\162\154\141\156\144\145 +\156\061\046\060\044\006\003\125\004\003\023\035\123\164\141\141 +\164\040\144\145\162\040\116\145\144\145\162\154\141\156\144\145 +\156\040\122\157\157\164\040\103\101\060\036\027\015\060\062\061 +\062\061\067\060\071\062\063\064\071\132\027\015\061\065\061\062 +\061\066\060\071\061\065\063\070\132\060\125\061\013\060\011\006 +\003\125\004\006\023\002\116\114\061\036\060\034\006\003\125\004 +\012\023\025\123\164\141\141\164\040\144\145\162\040\116\145\144 +\145\162\154\141\156\144\145\156\061\046\060\044\006\003\125\004 +\003\023\035\123\164\141\141\164\040\144\145\162\040\116\145\144 +\145\162\154\141\156\144\145\156\040\122\157\157\164\040\103\101 +\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001 +\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001 +\000\230\322\265\121\021\172\201\246\024\230\161\155\276\314\347 +\023\033\326\047\016\172\263\152\030\034\266\141\132\325\141\011 +\277\336\220\023\307\147\356\335\363\332\305\014\022\236\065\125 +\076\054\047\210\100\153\367\334\335\042\141\365\302\307\016\365 +\366\325\166\123\115\217\214\274\030\166\067\205\235\350\312\111 +\307\322\117\230\023\011\242\076\042\210\234\177\326\362\020\145 +\264\356\137\030\325\027\343\370\305\375\342\235\242\357\123\016 +\205\167\242\017\341\060\107\356\000\347\063\175\104\147\032\013 +\121\350\213\240\236\120\230\150\064\122\037\056\155\001\362\140 +\105\362\061\353\251\061\150\051\273\172\101\236\306\031\177\224 +\264\121\071\003\177\262\336\247\062\233\264\107\216\157\264\112 +\256\345\257\261\334\260\033\141\274\231\162\336\344\211\267\172 +\046\135\332\063\111\133\122\234\016\365\212\255\303\270\075\350 +\006\152\302\325\052\013\154\173\204\275\126\005\313\206\145\222 +\354\104\053\260\216\271\334\160\013\106\332\255\274\143\210\071 +\372\333\152\376\043\372\274\344\110\364\147\053\152\021\020\041 +\111\002\003\001\000\001\243\201\221\060\201\216\060\014\006\003 +\125\035\023\004\005\060\003\001\001\377\060\117\006\003\125\035 +\040\004\110\060\106\060\104\006\004\125\035\040\000\060\074\060 +\072\006\010\053\006\001\005\005\007\002\001\026\056\150\164\164 +\160\072\057\057\167\167\167\056\160\153\151\157\166\145\162\150 +\145\151\144\056\156\154\057\160\157\154\151\143\151\145\163\057 +\162\157\157\164\055\160\157\154\151\143\171\060\016\006\003\125 +\035\017\001\001\377\004\004\003\002\001\006\060\035\006\003\125 +\035\016\004\026\004\024\250\175\353\274\143\244\164\023\164\000 +\354\226\340\323\064\301\054\277\154\370\060\015\006\011\052\206 +\110\206\367\015\001\001\005\005\000\003\202\001\001\000\005\204 +\207\125\164\066\141\301\273\321\324\306\025\250\023\264\237\244 +\376\273\356\025\264\057\006\014\051\362\250\222\244\141\015\374 +\253\134\010\133\121\023\053\115\302\052\141\310\370\011\130\374 +\055\002\262\071\175\231\146\201\277\156\134\225\105\040\154\346 +\171\247\321\330\034\051\374\302\040\047\121\310\361\174\135\064 +\147\151\205\021\060\306\000\322\327\363\323\174\266\360\061\127 +\050\022\202\163\351\063\057\246\125\264\013\221\224\107\234\372 +\273\172\102\062\350\256\176\055\310\274\254\024\277\331\017\331 +\133\374\301\371\172\225\341\175\176\226\374\161\260\302\114\310 +\337\105\064\311\316\015\362\234\144\010\320\073\303\051\305\262 +\355\220\004\301\261\051\221\305\060\157\301\251\162\063\314\376 +\135\026\027\054\021\151\347\176\376\305\203\010\337\274\334\042 +\072\056\040\151\043\071\126\140\147\220\213\056\166\071\373\021 +\210\227\366\174\275\113\270\040\026\147\005\215\342\073\301\162 +\077\224\225\067\307\135\271\236\330\223\241\027\217\377\014\146 +\025\301\044\174\062\174\003\035\073\241\130\105\062\223 END -# Trust for Certificate "IPS Servidores root" +# Trust for Certificate "Staat der Nederlanden Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS Servidores root" +CKA_LABEL UTF8 "Staat der Nederlanden Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\044\272\155\154\212\133\130\067\244\215\265\372\351\031\352\147 -\134\224\322\027 +\020\035\372\077\325\013\313\273\233\265\140\014\031\125\244\032 +\364\163\072\004 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\173\265\010\231\232\214\030\277\205\047\175\016\256\332\262\253 +\140\204\174\132\316\333\014\324\313\247\351\376\002\306\251\300 END CKA_ISSUER MULTILINE_OCTAL -\060\201\243\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\101\122\103\105 -\114\117\116\101\061\022\060\020\006\003\125\004\007\023\011\102 -\101\122\103\105\114\117\116\101\061\031\060\027\006\003\125\004 -\012\023\020\111\120\123\040\123\145\147\165\162\151\144\141\144 -\040\103\101\061\030\060\026\006\003\125\004\013\023\017\103\145 -\162\164\151\146\151\143\141\143\151\157\156\145\163\061\027\060 -\025\006\003\125\004\003\023\016\111\120\123\040\123\105\122\126 -\111\104\117\122\105\123\061\036\060\034\006\011\052\206\110\206 -\367\015\001\011\001\026\017\151\160\163\100\155\141\151\154\056 -\151\160\163\056\145\163 +\060\125\061\013\060\011\006\003\125\004\006\023\002\116\114\061 +\036\060\034\006\003\125\004\012\023\025\123\164\141\141\164\040 +\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\061 +\046\060\044\006\003\125\004\003\023\035\123\164\141\141\164\040 +\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\040 +\122\157\157\164\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\004\000\230\226\212 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -10581,231 +11344,124 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "IPS Timestamping root" +# Certificate "TDC Internet Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS Timestamping root" +CKA_LABEL UTF8 "TDC Internet Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023 -\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155 -\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062 -\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151 -\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011 -\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056 -\145\163 -END -CKA_ID UTF8 "0" -CKA_ISSUER MULTILINE_OCTAL -\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023 -\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155 -\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062 -\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151 -\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011 -\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056 -\145\163 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\010\070\060\202\007\241\240\003\002\001\002\002\001\000 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143\145 -\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011\102 -\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125\004 -\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164\040 -\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166\151 -\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125\004 -\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163\056 -\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060\071 -\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023\053 -\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155\160 -\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151\157 -\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062\006 -\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151\155 -\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011\001 -\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056\145 -\163\060\036\027\015\060\061\061\062\062\071\060\061\061\060\061 -\070\132\027\015\062\065\061\062\062\067\060\061\061\060\061\070 -\132\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002 -\105\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162 -\143\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023 -\011\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003 -\125\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145 -\164\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162 -\166\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003 -\125\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160 -\163\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066 -\060\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013 -\023\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141 -\155\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164 -\151\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060 -\062\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124 -\151\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001 -\011\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\060\201\237\060\015\006\011\052\206\110\206\367\015 -\001\001\001\005\000\003\201\215\000\060\201\211\002\201\201\000 -\274\270\356\126\245\232\214\346\066\311\302\142\240\146\201\215 -\032\325\172\322\163\237\016\204\144\272\225\264\220\247\170\257 -\312\376\124\141\133\316\262\040\127\001\256\104\222\103\020\070 -\021\367\150\374\027\100\245\150\047\062\073\304\247\346\102\161 -\305\231\357\166\377\053\225\044\365\111\222\030\150\312\000\265 -\244\132\057\156\313\326\033\054\015\124\147\153\172\051\241\130 -\253\242\132\000\326\133\273\030\302\337\366\036\023\126\166\233 -\245\150\342\230\316\306\003\212\064\333\114\203\101\246\251\243 -\002\003\001\000\001\243\202\004\200\060\202\004\174\060\035\006 -\003\125\035\016\004\026\004\024\213\320\020\120\011\201\362\235 -\011\325\016\140\170\003\042\242\077\310\312\146\060\202\001\120 -\006\003\125\035\043\004\202\001\107\060\202\001\103\200\024\213 -\320\020\120\011\201\362\235\011\325\016\140\170\003\042\242\077 -\310\312\146\241\202\001\046\244\202\001\042\060\202\001\036\061 -\013\060\011\006\003\125\004\006\023\002\105\123\061\022\060\020 -\006\003\125\004\010\023\011\102\141\162\143\145\154\157\156\141 -\061\022\060\020\006\003\125\004\007\023\011\102\141\162\143\145 -\154\157\156\141\061\056\060\054\006\003\125\004\012\023\045\111 -\120\123\040\111\156\164\145\162\156\145\164\040\160\165\142\154 -\151\163\150\151\156\147\040\123\145\162\166\151\143\145\163\040 -\163\056\154\056\061\053\060\051\006\003\125\004\012\024\042\151 -\160\163\100\155\141\151\154\056\151\160\163\056\145\163\040\103 -\056\111\056\106\056\040\040\102\055\066\060\071\062\071\064\065 -\062\061\064\060\062\006\003\125\004\013\023\053\111\120\123\040 -\103\101\040\124\151\155\145\163\164\141\155\160\151\156\147\040 -\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165 -\164\150\157\162\151\164\171\061\064\060\062\006\003\125\004\003 -\023\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141 -\155\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164 -\151\157\156\040\101\165\164\150\157\162\151\164\171\061\036\060 -\034\006\011\052\206\110\206\367\015\001\011\001\026\017\151\160 -\163\100\155\141\151\154\056\151\160\163\056\145\163\202\001\000 -\060\014\006\003\125\035\023\004\005\060\003\001\001\377\060\014 -\006\003\125\035\017\004\005\003\003\007\377\200\060\153\006\003 -\125\035\045\004\144\060\142\006\010\053\006\001\005\005\007\003 -\001\006\010\053\006\001\005\005\007\003\002\006\010\053\006\001 -\005\005\007\003\003\006\010\053\006\001\005\005\007\003\004\006 -\010\053\006\001\005\005\007\003\010\006\012\053\006\001\004\001 -\202\067\002\001\025\006\012\053\006\001\004\001\202\067\002\001 -\026\006\012\053\006\001\004\001\202\067\012\003\001\006\012\053 -\006\001\004\001\202\067\012\003\004\060\021\006\011\140\206\110 -\001\206\370\102\001\001\004\004\003\002\000\007\060\032\006\003 -\125\035\021\004\023\060\021\201\017\151\160\163\100\155\141\151 -\154\056\151\160\163\056\145\163\060\032\006\003\125\035\022\004 -\023\060\021\201\017\151\160\163\100\155\141\151\154\056\151\160 -\163\056\145\163\060\107\006\011\140\206\110\001\206\370\102\001 -\015\004\072\026\070\124\151\155\145\163\164\141\155\160\151\156 -\147\040\103\101\040\103\145\162\164\151\146\151\143\141\164\145 -\040\151\163\163\165\145\144\040\142\171\040\150\164\164\160\072 -\057\057\167\167\167\056\151\160\163\056\145\163\057\060\051\006 -\011\140\206\110\001\206\370\102\001\002\004\034\026\032\150\164 -\164\160\072\057\057\167\167\167\056\151\160\163\056\145\163\057 -\151\160\163\062\060\060\062\057\060\100\006\011\140\206\110\001 -\206\370\102\001\004\004\063\026\061\150\164\164\160\072\057\057 -\167\167\167\056\151\160\163\056\145\163\057\151\160\163\062\060 -\060\062\057\151\160\163\062\060\060\062\124\151\155\145\163\164 -\141\155\160\151\156\147\056\143\162\154\060\105\006\011\140\206 -\110\001\206\370\102\001\003\004\070\026\066\150\164\164\160\072 -\057\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163 -\062\060\060\062\057\162\145\166\157\143\141\164\151\157\156\124 -\151\155\145\163\164\141\155\160\151\156\147\056\150\164\155\154 -\077\060\102\006\011\140\206\110\001\206\370\102\001\007\004\065 -\026\063\150\164\164\160\072\057\057\167\167\167\056\151\160\163 -\056\145\163\057\151\160\163\062\060\060\062\057\162\145\156\145 -\167\141\154\124\151\155\145\163\164\141\155\160\151\156\147\056 -\150\164\155\154\077\060\100\006\011\140\206\110\001\206\370\102 -\001\010\004\063\026\061\150\164\164\160\072\057\057\167\167\167 -\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062\057 -\160\157\154\151\143\171\124\151\155\145\163\164\141\155\160\151 -\156\147\056\150\164\155\154\060\177\006\003\125\035\037\004\170 -\060\166\060\067\240\065\240\063\206\061\150\164\164\160\072\057 -\057\167\167\167\056\151\160\163\056\145\163\057\151\160\163\062 -\060\060\062\057\151\160\163\062\060\060\062\124\151\155\145\163 -\164\141\155\160\151\156\147\056\143\162\154\060\073\240\071\240 -\067\206\065\150\164\164\160\072\057\057\167\167\167\142\141\143 -\153\056\151\160\163\056\145\163\057\151\160\163\062\060\060\062 -\057\151\160\163\062\060\060\062\124\151\155\145\163\164\141\155 -\160\151\156\147\056\143\162\154\060\057\006\010\053\006\001\005 -\005\007\001\001\004\043\060\041\060\037\006\010\053\006\001\005 -\005\007\060\001\206\023\150\164\164\160\072\057\057\157\143\163 -\160\056\151\160\163\056\145\163\057\060\015\006\011\052\206\110 -\206\367\015\001\001\005\005\000\003\201\201\000\145\272\301\314 -\000\032\225\221\312\351\154\072\277\072\036\024\010\174\373\203 -\356\153\142\121\323\063\221\265\140\171\176\004\330\135\171\067 -\350\303\133\260\304\147\055\150\132\262\137\016\012\372\315\077 -\072\105\241\352\066\317\046\036\247\021\050\305\224\217\204\114 -\123\010\305\223\263\374\342\177\365\215\363\261\251\205\137\210 -\336\221\226\356\027\133\256\245\352\160\145\170\054\041\144\001 -\225\316\316\114\076\120\364\266\131\313\143\215\266\275\030\324 -\207\112\137\334\357\351\126\360\012\014\350\165 +\060\103\061\013\060\011\006\003\125\004\006\023\002\104\113\061 +\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 +\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 +\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 +\157\164\040\103\101 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\103\061\013\060\011\006\003\125\004\006\023\002\104\113\061 +\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 +\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 +\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 +\157\164\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\004\072\314\245\114 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\004\053\060\202\003\023\240\003\002\001\002\002\004\072 +\314\245\114\060\015\006\011\052\206\110\206\367\015\001\001\005 +\005\000\060\103\061\013\060\011\006\003\125\004\006\023\002\104 +\113\061\025\060\023\006\003\125\004\012\023\014\124\104\103\040 +\111\156\164\145\162\156\145\164\061\035\060\033\006\003\125\004 +\013\023\024\124\104\103\040\111\156\164\145\162\156\145\164\040 +\122\157\157\164\040\103\101\060\036\027\015\060\061\060\064\060 +\065\061\066\063\063\061\067\132\027\015\062\061\060\064\060\065 +\061\067\060\063\061\067\132\060\103\061\013\060\011\006\003\125 +\004\006\023\002\104\113\061\025\060\023\006\003\125\004\012\023 +\014\124\104\103\040\111\156\164\145\162\156\145\164\061\035\060 +\033\006\003\125\004\013\023\024\124\104\103\040\111\156\164\145 +\162\156\145\164\040\122\157\157\164\040\103\101\060\202\001\042 +\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003 +\202\001\017\000\060\202\001\012\002\202\001\001\000\304\270\100 +\274\221\325\143\037\327\231\240\213\014\100\036\164\267\110\235 +\106\214\002\262\340\044\137\360\031\023\247\067\203\153\135\307 +\216\371\204\060\316\032\073\372\373\316\213\155\043\306\303\156 +\146\237\211\245\337\340\102\120\147\372\037\154\036\364\320\005 +\326\277\312\326\116\344\150\140\154\106\252\034\135\143\341\007 +\206\016\145\000\247\056\246\161\306\274\271\201\250\072\175\032 +\322\371\321\254\113\313\316\165\257\334\173\372\201\163\324\374 +\272\275\101\210\324\164\263\371\136\070\072\074\103\250\322\225 +\116\167\155\023\014\235\217\170\001\267\132\040\037\003\067\065 +\342\054\333\113\053\054\170\271\111\333\304\320\307\234\234\344 +\212\040\011\041\026\126\146\377\005\354\133\343\360\317\253\044 +\044\136\303\177\160\172\022\304\322\265\020\240\266\041\341\215 +\170\151\125\104\151\365\312\226\034\064\205\027\045\167\342\366 +\057\047\230\170\375\171\006\072\242\326\132\103\301\377\354\004 +\073\356\023\357\323\130\132\377\222\353\354\256\332\362\067\003 +\107\101\266\227\311\055\012\101\042\273\273\346\247\002\003\001 +\000\001\243\202\001\045\060\202\001\041\060\021\006\011\140\206 +\110\001\206\370\102\001\001\004\004\003\002\000\007\060\145\006 +\003\125\035\037\004\136\060\134\060\132\240\130\240\126\244\124 +\060\122\061\013\060\011\006\003\125\004\006\023\002\104\113\061 +\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 +\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 +\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 +\157\164\040\103\101\061\015\060\013\006\003\125\004\003\023\004 +\103\122\114\061\060\053\006\003\125\035\020\004\044\060\042\200 +\017\062\060\060\061\060\064\060\065\061\066\063\063\061\067\132 +\201\017\062\060\062\061\060\064\060\065\061\067\060\063\061\067 +\132\060\013\006\003\125\035\017\004\004\003\002\001\006\060\037 +\006\003\125\035\043\004\030\060\026\200\024\154\144\001\307\375 +\205\155\254\310\332\236\120\010\205\010\265\074\126\250\120\060 +\035\006\003\125\035\016\004\026\004\024\154\144\001\307\375\205 +\155\254\310\332\236\120\010\205\010\265\074\126\250\120\060\014 +\006\003\125\035\023\004\005\060\003\001\001\377\060\035\006\011 +\052\206\110\206\366\175\007\101\000\004\020\060\016\033\010\126 +\065\056\060\072\064\056\060\003\002\004\220\060\015\006\011\052 +\206\110\206\367\015\001\001\005\005\000\003\202\001\001\000\116 +\103\314\321\335\035\020\033\006\177\267\244\372\323\331\115\373 +\043\237\043\124\133\346\213\057\004\050\213\265\047\155\211\241 +\354\230\151\334\347\215\046\203\005\171\164\354\264\271\243\227 +\301\065\000\375\025\332\071\201\072\225\061\220\336\227\351\206 +\250\231\167\014\345\132\240\204\377\022\026\254\156\270\215\303 +\173\222\302\254\056\320\175\050\354\266\363\140\070\151\157\076 +\330\004\125\076\236\314\125\322\272\376\273\107\004\327\012\331 +\026\012\064\051\365\130\023\325\117\317\217\126\113\263\036\356 +\323\230\171\332\010\036\014\157\270\370\026\047\357\302\157\075 +\366\243\113\076\016\344\155\154\333\073\101\022\233\275\015\107 +\043\177\074\112\320\257\300\257\366\357\033\265\025\304\353\203 +\304\011\137\164\213\331\021\373\302\126\261\074\370\160\312\064 +\215\103\100\023\214\375\231\003\124\171\306\056\352\206\241\366 +\072\324\011\274\364\274\146\314\075\130\320\127\111\012\356\045 +\342\101\356\023\371\233\070\064\321\000\365\176\347\224\035\374 +\151\003\142\270\231\005\005\075\153\170\022\275\260\157\145 END -# Trust for Certificate "IPS Timestamping root" +# Trust for Certificate "TDC Internet Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "IPS Timestamping root" +CKA_LABEL UTF8 "TDC Internet Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\226\231\134\167\021\350\345\055\371\343\113\354\354\147\323\313 -\361\266\304\322 +\041\374\275\216\177\154\257\005\033\321\263\103\354\250\347\141 +\107\362\017\212 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\056\003\375\305\365\327\053\224\144\301\276\211\061\361\026\233 +\221\364\003\125\040\241\370\143\054\142\336\254\373\141\034\216 END CKA_ISSUER MULTILINE_OCTAL -\060\202\001\036\061\013\060\011\006\003\125\004\006\023\002\105 -\123\061\022\060\020\006\003\125\004\010\023\011\102\141\162\143 -\145\154\157\156\141\061\022\060\020\006\003\125\004\007\023\011 -\102\141\162\143\145\154\157\156\141\061\056\060\054\006\003\125 -\004\012\023\045\111\120\123\040\111\156\164\145\162\156\145\164 -\040\160\165\142\154\151\163\150\151\156\147\040\123\145\162\166 -\151\143\145\163\040\163\056\154\056\061\053\060\051\006\003\125 -\004\012\024\042\151\160\163\100\155\141\151\154\056\151\160\163 -\056\145\163\040\103\056\111\056\106\056\040\040\102\055\066\060 -\071\062\071\064\065\062\061\064\060\062\006\003\125\004\013\023 -\053\111\120\123\040\103\101\040\124\151\155\145\163\164\141\155 -\160\151\156\147\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\061\064\060\062 -\006\003\125\004\003\023\053\111\120\123\040\103\101\040\124\151 -\155\145\163\164\141\155\160\151\156\147\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\061\036\060\034\006\011\052\206\110\206\367\015\001\011 -\001\026\017\151\160\163\100\155\141\151\154\056\151\160\163\056 -\145\163 +\060\103\061\013\060\011\006\003\125\004\006\023\002\104\113\061 +\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 +\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 +\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 +\157\164\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\004\072\314\245\114 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -10813,163 +11469,136 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "QuoVadis Root CA" +# Certificate "TDC OCES Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "QuoVadis Root CA" +CKA_LABEL UTF8 "TDC OCES Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\177\061\013\060\011\006\003\125\004\006\023\002\102\115\061 -\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 -\151\163\040\114\151\155\151\164\145\144\061\045\060\043\006\003 -\125\004\013\023\034\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171\061\056\060\054\006\003\125\004\003\023\045\121\165\157\126 -\141\144\151\163\040\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\061\061\013\060\011\006\003\125\004\006\023\002\104\113\061 +\014\060\012\006\003\125\004\012\023\003\124\104\103\061\024\060 +\022\006\003\125\004\003\023\013\124\104\103\040\117\103\105\123 +\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\177\061\013\060\011\006\003\125\004\006\023\002\102\115\061 -\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 -\151\163\040\114\151\155\151\164\145\144\061\045\060\043\006\003 -\125\004\013\023\034\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171\061\056\060\054\006\003\125\004\003\023\045\121\165\157\126 -\141\144\151\163\040\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\061\061\013\060\011\006\003\125\004\006\023\002\104\113\061 +\014\060\012\006\003\125\004\012\023\003\124\104\103\061\024\060 +\022\006\003\125\004\003\023\013\124\104\103\040\117\103\105\123 +\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\072\266\120\213 +\002\004\076\110\275\304 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\320\060\202\004\270\240\003\002\001\002\002\004\072 -\266\120\213\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\060\177\061\013\060\011\006\003\125\004\006\023\002\102 -\115\061\031\060\027\006\003\125\004\012\023\020\121\165\157\126 -\141\144\151\163\040\114\151\155\151\164\145\144\061\045\060\043 -\006\003\125\004\013\023\034\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\061\056\060\054\006\003\125\004\003\023\045\121\165 -\157\126\141\144\151\163\040\122\157\157\164\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\060\036\027\015\060\061\060\063\061\071\061\070\063 -\063\063\063\132\027\015\062\061\060\063\061\067\061\070\063\063 -\063\063\132\060\177\061\013\060\011\006\003\125\004\006\023\002 -\102\115\061\031\060\027\006\003\125\004\012\023\020\121\165\157 -\126\141\144\151\163\040\114\151\155\151\164\145\144\061\045\060 -\043\006\003\125\004\013\023\034\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\061\056\060\054\006\003\125\004\003\023\045\121 -\165\157\126\141\144\151\163\040\122\157\157\164\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\060\202\001\042\060\015\006\011\052\206\110\206 -\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012 -\002\202\001\001\000\277\141\265\225\123\272\127\374\372\362\147 -\013\072\032\337\021\200\144\225\264\321\274\315\172\317\366\051 -\226\056\044\124\100\044\070\367\032\205\334\130\114\313\244\047 -\102\227\320\237\203\212\303\344\006\003\133\000\245\121\036\160 -\004\164\342\301\324\072\253\327\255\073\007\030\005\216\375\203 -\254\352\146\331\030\033\150\212\365\127\032\230\272\365\355\166 -\075\174\331\336\224\152\073\113\027\301\325\217\275\145\070\072 -\225\320\075\125\066\116\337\171\127\061\052\036\330\131\145\111 -\130\040\230\176\253\137\176\237\351\326\115\354\203\164\251\307 -\154\330\356\051\112\205\052\006\024\371\124\346\323\332\145\007 -\213\143\067\022\327\320\354\303\173\040\101\104\243\355\313\240 -\027\341\161\145\316\035\146\061\367\166\001\031\310\175\003\130 -\266\225\111\035\246\022\046\350\306\014\166\340\343\146\313\352 -\135\246\046\356\345\314\137\275\147\247\001\047\016\242\312\124 -\305\261\172\225\035\161\036\112\051\212\003\334\152\105\301\244 -\031\136\157\066\315\303\242\260\267\376\134\070\342\122\274\370 -\104\103\346\220\273\002\003\001\000\001\243\202\002\122\060\202 -\002\116\060\075\006\010\053\006\001\005\005\007\001\001\004\061 -\060\057\060\055\006\010\053\006\001\005\005\007\060\001\206\041 -\150\164\164\160\163\072\057\057\157\143\163\160\056\161\165\157 -\166\141\144\151\163\157\146\146\163\150\157\162\145\056\143\157 -\155\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001 -\001\377\060\202\001\032\006\003\125\035\040\004\202\001\021\060 -\202\001\015\060\202\001\011\006\011\053\006\001\004\001\276\130 -\000\001\060\201\373\060\201\324\006\010\053\006\001\005\005\007 -\002\002\060\201\307\032\201\304\122\145\154\151\141\156\143\145 -\040\157\156\040\164\150\145\040\121\165\157\126\141\144\151\163 -\040\122\157\157\164\040\103\145\162\164\151\146\151\143\141\164 -\145\040\142\171\040\141\156\171\040\160\141\162\164\171\040\141 -\163\163\165\155\145\163\040\141\143\143\145\160\164\141\156\143 -\145\040\157\146\040\164\150\145\040\164\150\145\156\040\141\160 -\160\154\151\143\141\142\154\145\040\163\164\141\156\144\141\162 -\144\040\164\145\162\155\163\040\141\156\144\040\143\157\156\144 -\151\164\151\157\156\163\040\157\146\040\165\163\145\054\040\143 -\145\162\164\151\146\151\143\141\164\151\157\156\040\160\162\141 -\143\164\151\143\145\163\054\040\141\156\144\040\164\150\145\040 -\121\165\157\126\141\144\151\163\040\103\145\162\164\151\146\151 -\143\141\164\145\040\120\157\154\151\143\171\056\060\042\006\010 -\053\006\001\005\005\007\002\001\026\026\150\164\164\160\072\057 -\057\167\167\167\056\161\165\157\166\141\144\151\163\056\142\155 -\060\035\006\003\125\035\016\004\026\004\024\213\113\155\355\323 -\051\271\006\031\354\071\071\251\360\227\204\152\313\357\337\060 -\201\256\006\003\125\035\043\004\201\246\060\201\243\200\024\213 -\113\155\355\323\051\271\006\031\354\071\071\251\360\227\204\152 -\313\357\337\241\201\204\244\201\201\060\177\061\013\060\011\006 -\003\125\004\006\023\002\102\115\061\031\060\027\006\003\125\004 -\012\023\020\121\165\157\126\141\144\151\163\040\114\151\155\151 -\164\145\144\061\045\060\043\006\003\125\004\013\023\034\122\157 -\157\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156 -\040\101\165\164\150\157\162\151\164\171\061\056\060\054\006\003 -\125\004\003\023\045\121\165\157\126\141\144\151\163\040\122\157 -\157\164\040\103\145\162\164\151\146\151\143\141\164\151\157\156 -\040\101\165\164\150\157\162\151\164\171\202\004\072\266\120\213 -\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001\006 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 -\202\001\001\000\212\324\024\265\376\364\232\222\247\031\324\244 -\176\162\030\217\331\150\174\122\044\335\147\157\071\172\304\252 -\136\075\342\130\260\115\160\230\204\141\350\033\343\151\030\016 -\316\373\107\120\240\116\377\360\044\037\275\262\316\365\047\374 -\354\057\123\252\163\173\003\075\164\156\346\026\236\353\245\056 -\304\277\126\047\120\053\142\272\276\113\034\074\125\134\101\035 -\044\276\202\040\107\135\325\104\176\172\026\150\337\175\115\121 -\160\170\127\035\063\036\375\002\231\234\014\315\012\005\117\307 -\273\216\244\165\372\112\155\261\200\216\011\126\271\234\032\140 -\376\135\301\327\172\334\021\170\320\326\135\301\267\325\255\062 -\231\003\072\212\314\124\045\071\061\201\173\023\042\121\272\106 -\154\241\273\236\372\004\154\111\046\164\217\322\163\353\314\060 -\242\346\352\131\042\207\370\227\365\016\375\352\314\222\244\026 -\304\122\030\352\041\316\261\361\346\204\201\345\272\251\206\050 -\362\103\132\135\022\235\254\036\331\250\345\012\152\247\177\240 -\207\051\317\362\211\115\324\354\305\342\346\172\320\066\043\212 -\112\164\066\371 +\060\202\005\031\060\202\004\001\240\003\002\001\002\002\004\076 +\110\275\304\060\015\006\011\052\206\110\206\367\015\001\001\005 +\005\000\060\061\061\013\060\011\006\003\125\004\006\023\002\104 +\113\061\014\060\012\006\003\125\004\012\023\003\124\104\103\061 +\024\060\022\006\003\125\004\003\023\013\124\104\103\040\117\103 +\105\123\040\103\101\060\036\027\015\060\063\060\062\061\061\060 +\070\063\071\063\060\132\027\015\063\067\060\062\061\061\060\071 +\060\071\063\060\132\060\061\061\013\060\011\006\003\125\004\006 +\023\002\104\113\061\014\060\012\006\003\125\004\012\023\003\124 +\104\103\061\024\060\022\006\003\125\004\003\023\013\124\104\103 +\040\117\103\105\123\040\103\101\060\202\001\042\060\015\006\011 +\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000 +\060\202\001\012\002\202\001\001\000\254\142\366\141\040\262\317 +\300\306\205\327\343\171\346\314\355\362\071\222\244\227\056\144 +\243\204\133\207\234\114\375\244\363\304\137\041\275\126\020\353 +\333\056\141\354\223\151\343\243\314\275\231\303\005\374\006\270 +\312\066\034\376\220\216\111\114\304\126\232\057\126\274\317\173 +\014\361\157\107\246\015\103\115\342\351\035\071\064\315\215\054 +\331\022\230\371\343\341\301\112\174\206\070\304\251\304\141\210 +\322\136\257\032\046\115\325\344\240\042\107\204\331\144\267\031 +\226\374\354\031\344\262\227\046\116\112\114\313\217\044\213\124 +\030\034\110\141\173\325\210\150\332\135\265\352\315\032\060\301 +\200\203\166\120\252\117\321\324\335\070\360\357\026\364\341\014 +\120\006\277\352\373\172\111\241\050\053\034\366\374\025\062\243 +\164\152\217\251\303\142\051\161\061\345\073\244\140\027\136\164 +\346\332\023\355\351\037\037\033\321\262\150\163\306\020\064\165 +\106\020\020\343\220\000\166\100\313\213\267\103\011\041\377\253 +\116\223\306\130\351\245\202\333\167\304\072\231\261\162\225\111 +\004\360\267\053\372\173\131\216\335\002\003\001\000\001\243\202 +\002\067\060\202\002\063\060\017\006\003\125\035\023\001\001\377 +\004\005\060\003\001\001\377\060\016\006\003\125\035\017\001\001 +\377\004\004\003\002\001\006\060\201\354\006\003\125\035\040\004 +\201\344\060\201\341\060\201\336\006\010\052\201\120\201\051\001 +\001\001\060\201\321\060\057\006\010\053\006\001\005\005\007\002 +\001\026\043\150\164\164\160\072\057\057\167\167\167\056\143\145 +\162\164\151\146\151\153\141\164\056\144\153\057\162\145\160\157 +\163\151\164\157\162\171\060\201\235\006\010\053\006\001\005\005 +\007\002\002\060\201\220\060\012\026\003\124\104\103\060\003\002 +\001\001\032\201\201\103\145\162\164\151\146\151\153\141\164\145 +\162\040\146\162\141\040\144\145\156\156\145\040\103\101\040\165 +\144\163\164\145\144\145\163\040\165\156\144\145\162\040\117\111 +\104\040\061\056\062\056\062\060\070\056\061\066\071\056\061\056 +\061\056\061\056\040\103\145\162\164\151\146\151\143\141\164\145 +\163\040\146\162\157\155\040\164\150\151\163\040\103\101\040\141 +\162\145\040\151\163\163\165\145\144\040\165\156\144\145\162\040 +\117\111\104\040\061\056\062\056\062\060\070\056\061\066\071\056 +\061\056\061\056\061\056\060\021\006\011\140\206\110\001\206\370 +\102\001\001\004\004\003\002\000\007\060\201\201\006\003\125\035 +\037\004\172\060\170\060\110\240\106\240\104\244\102\060\100\061 +\013\060\011\006\003\125\004\006\023\002\104\113\061\014\060\012 +\006\003\125\004\012\023\003\124\104\103\061\024\060\022\006\003 +\125\004\003\023\013\124\104\103\040\117\103\105\123\040\103\101 +\061\015\060\013\006\003\125\004\003\023\004\103\122\114\061\060 +\054\240\052\240\050\206\046\150\164\164\160\072\057\057\143\162 +\154\056\157\143\145\163\056\143\145\162\164\151\146\151\153\141 +\164\056\144\153\057\157\143\145\163\056\143\162\154\060\053\006 +\003\125\035\020\004\044\060\042\200\017\062\060\060\063\060\062 +\061\061\060\070\063\071\063\060\132\201\017\062\060\063\067\060 +\062\061\061\060\071\060\071\063\060\132\060\037\006\003\125\035 +\043\004\030\060\026\200\024\140\265\205\354\126\144\176\022\031 +\047\147\035\120\025\113\163\256\073\371\022\060\035\006\003\125 +\035\016\004\026\004\024\140\265\205\354\126\144\176\022\031\047 +\147\035\120\025\113\163\256\073\371\022\060\035\006\011\052\206 +\110\206\366\175\007\101\000\004\020\060\016\033\010\126\066\056 +\060\072\064\056\060\003\002\004\220\060\015\006\011\052\206\110 +\206\367\015\001\001\005\005\000\003\202\001\001\000\012\272\046 +\046\106\323\163\250\011\363\153\013\060\231\375\212\341\127\172 +\021\323\270\224\327\011\020\156\243\261\070\003\321\266\362\103 +\101\051\142\247\162\330\373\174\005\346\061\160\047\124\030\116 +\212\174\116\345\321\312\214\170\210\317\033\323\220\213\346\043 +\370\013\016\063\103\175\234\342\012\031\217\311\001\076\164\135 +\164\311\213\034\003\345\030\310\001\114\077\313\227\005\135\230 +\161\246\230\157\266\174\275\067\177\276\341\223\045\155\157\360 +\012\255\027\030\341\003\274\007\051\310\255\046\350\370\141\360 +\375\041\011\176\232\216\251\150\175\110\142\162\275\000\352\001 +\231\270\006\202\121\201\116\361\365\264\221\124\271\043\172\000 +\232\237\135\215\340\074\144\271\032\022\222\052\307\202\104\162 +\071\334\342\074\306\330\125\365\025\116\310\005\016\333\306\320 +\142\246\354\025\264\265\002\202\333\254\214\242\201\360\233\231 +\061\365\040\040\250\210\141\012\007\237\224\374\320\327\033\314 +\056\027\363\004\047\166\147\353\124\203\375\244\220\176\006\075 +\004\243\103\055\332\374\013\142\352\057\137\142\123 END -# Trust for Certificate "QuoVadis Root CA" +# Trust for Certificate "TDC OCES Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "QuoVadis Root CA" +CKA_LABEL UTF8 "TDC OCES Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\336\077\100\275\120\223\323\233\154\140\366\332\274\007\142\001 -\000\211\166\311 +\207\201\302\132\226\275\302\373\114\145\006\117\371\071\013\046 +\004\212\016\001 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\047\336\066\376\162\267\000\003\000\235\364\360\036\154\004\044 +\223\177\220\034\355\204\147\027\244\145\137\233\313\060\002\227 END CKA_ISSUER MULTILINE_OCTAL -\060\177\061\013\060\011\006\003\125\004\006\023\002\102\115\061 -\031\060\027\006\003\125\004\012\023\020\121\165\157\126\141\144 -\151\163\040\114\151\155\151\164\145\144\061\045\060\043\006\003 -\125\004\013\023\034\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171\061\056\060\054\006\003\125\004\003\023\045\121\165\157\126 -\141\144\151\163\040\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\061\061\013\060\011\006\003\125\004\006\023\002\104\113\061 +\014\060\012\006\003\125\004\012\023\003\124\104\103\061\024\060 +\022\006\003\125\004\003\023\013\124\104\103\040\117\103\105\123 +\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\072\266\120\213 +\002\004\076\110\275\304 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -10977,447 +11606,885 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Security Communication Root CA" +# Certificate "UTN DATACorp SGC Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Security Communication Root CA" +CKA_LABEL UTF8 "UTN DATACorp SGC Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061 -\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040 -\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125 -\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155 -\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103 -\101\061 +\060\201\223\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\033\060\031\006\003\125 +\004\003\023\022\125\124\116\040\055\040\104\101\124\101\103\157 +\162\160\040\123\107\103 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061 -\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040 -\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125 -\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155 -\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103 -\101\061 +\060\201\223\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\033\060\031\006\003\125 +\004\003\023\022\125\124\116\040\055\040\104\101\124\101\103\157 +\162\160\040\123\107\103 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\020\104\276\014\213\120\000\041\264\021\323\052\150\006\251 +\255\151 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\132\060\202\002\102\240\003\002\001\002\002\001\000 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061\030 -\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040\124 -\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125\004 -\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155\155 -\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103\101 -\061\060\036\027\015\060\063\060\071\063\060\060\064\062\060\064 -\071\132\027\015\062\063\060\071\063\060\060\064\062\060\064\071 -\132\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120 -\061\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115 -\040\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003 -\125\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157 -\155\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164 -\103\101\061\060\202\001\042\060\015\006\011\052\206\110\206\367 -\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002 -\202\001\001\000\263\263\376\177\323\155\261\357\026\174\127\245 -\014\155\166\212\057\113\277\144\373\114\356\212\360\363\051\174 -\365\377\356\052\340\351\351\272\133\144\042\232\232\157\054\072 -\046\151\121\005\231\046\334\325\034\152\161\306\232\175\036\235 -\335\174\154\306\214\147\147\112\076\370\161\260\031\047\251\011 -\014\246\225\277\113\214\014\372\125\230\073\330\350\042\241\113 -\161\070\171\254\227\222\151\263\211\176\352\041\150\006\230\024 -\226\207\322\141\066\274\155\047\126\236\127\356\300\300\126\375 -\062\317\244\331\216\302\043\327\215\250\363\330\045\254\227\344 -\160\070\364\266\072\264\235\073\227\046\103\243\241\274\111\131 -\162\114\043\060\207\001\130\366\116\276\034\150\126\146\257\315 -\101\135\310\263\115\052\125\106\253\037\332\036\342\100\075\333 -\315\175\271\222\200\234\067\335\014\226\144\235\334\042\367\144 -\213\337\141\336\025\224\122\025\240\175\122\311\113\250\041\311 -\306\261\355\313\303\225\140\321\017\360\253\160\370\337\313\115 -\176\354\326\372\253\331\275\177\124\362\245\351\171\372\331\326 -\166\044\050\163\002\003\001\000\001\243\077\060\075\060\035\006 -\003\125\035\016\004\026\004\024\240\163\111\231\150\334\205\133 -\145\343\233\050\057\127\237\275\063\274\007\110\060\013\006\003 -\125\035\017\004\004\003\002\001\006\060\017\006\003\125\035\023 -\001\001\377\004\005\060\003\001\001\377\060\015\006\011\052\206 -\110\206\367\015\001\001\005\005\000\003\202\001\001\000\150\100 -\251\250\273\344\117\135\171\263\005\265\027\263\140\023\353\306 -\222\135\340\321\323\152\376\373\276\233\155\277\307\005\155\131 -\040\304\034\360\267\332\204\130\002\143\372\110\026\357\117\245 -\013\367\112\230\362\077\236\033\255\107\153\143\316\010\107\353 -\122\077\170\234\257\115\256\370\325\117\317\232\230\052\020\101 -\071\122\304\335\331\233\016\357\223\001\256\262\056\312\150\102 -\044\102\154\260\263\072\076\315\351\332\110\304\025\313\351\371 -\007\017\222\120\111\212\335\061\227\137\311\351\067\252\073\131 -\145\227\224\062\311\263\237\076\072\142\130\305\111\255\142\016 -\161\245\062\252\057\306\211\166\103\100\023\023\147\075\242\124 -\045\020\313\361\072\362\331\372\333\111\126\273\246\376\247\101 -\065\303\340\210\141\311\210\307\337\066\020\042\230\131\352\260 -\112\373\126\026\163\156\254\115\367\042\241\117\255\035\172\055 -\105\047\345\060\301\136\362\332\023\313\045\102\121\225\107\003 -\214\154\041\314\164\102\355\123\377\063\213\217\017\127\001\026 -\057\317\246\356\311\160\042\024\275\375\276\154\013\003 +\060\202\004\136\060\202\003\106\240\003\002\001\002\002\020\104 +\276\014\213\120\000\041\264\021\323\052\150\006\251\255\151\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 +\223\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 +\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 +\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 +\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 +\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 +\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 +\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 +\165\163\164\056\143\157\155\061\033\060\031\006\003\125\004\003 +\023\022\125\124\116\040\055\040\104\101\124\101\103\157\162\160 +\040\123\107\103\060\036\027\015\071\071\060\066\062\064\061\070 +\065\067\062\061\132\027\015\061\071\060\066\062\064\061\071\060 +\066\063\060\132\060\201\223\061\013\060\011\006\003\125\004\006 +\023\002\125\123\061\013\060\011\006\003\125\004\010\023\002\125 +\124\061\027\060\025\006\003\125\004\007\023\016\123\141\154\164 +\040\114\141\153\145\040\103\151\164\171\061\036\060\034\006\003 +\125\004\012\023\025\124\150\145\040\125\123\105\122\124\122\125 +\123\124\040\116\145\164\167\157\162\153\061\041\060\037\006\003 +\125\004\013\023\030\150\164\164\160\072\057\057\167\167\167\056 +\165\163\145\162\164\162\165\163\164\056\143\157\155\061\033\060 +\031\006\003\125\004\003\023\022\125\124\116\040\055\040\104\101 +\124\101\103\157\162\160\040\123\107\103\060\202\001\042\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001 +\017\000\060\202\001\012\002\202\001\001\000\337\356\130\020\242 +\053\156\125\304\216\277\056\106\011\347\340\010\017\056\053\172 +\023\224\033\275\366\266\200\216\145\005\223\000\036\274\257\342 +\017\216\031\015\022\107\354\254\255\243\372\056\160\370\336\156 +\373\126\102\025\236\056\134\357\043\336\041\271\005\166\047\031 +\017\117\326\303\234\264\276\224\031\143\362\246\021\012\353\123 +\110\234\276\362\051\073\026\350\032\240\114\246\311\364\030\131 +\150\300\160\362\123\000\300\136\120\202\245\126\157\066\371\112 +\340\104\206\240\115\116\326\107\156\111\112\313\147\327\246\304 +\005\271\216\036\364\374\377\315\347\066\340\234\005\154\262\063 +\042\025\320\264\340\314\027\300\262\300\364\376\062\077\051\052 +\225\173\330\362\247\116\017\124\174\241\015\200\263\011\003\301 +\377\134\335\136\232\076\274\256\274\107\212\152\256\161\312\037 +\261\052\270\137\102\005\013\354\106\060\321\162\013\312\351\126 +\155\365\357\337\170\276\141\272\262\245\256\004\114\274\250\254 +\151\025\227\275\357\353\264\214\277\065\370\324\303\321\050\016 +\134\072\237\160\030\063\040\167\304\242\257\002\003\001\000\001 +\243\201\253\060\201\250\060\013\006\003\125\035\017\004\004\003 +\002\001\306\060\017\006\003\125\035\023\001\001\377\004\005\060 +\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\123 +\062\321\263\317\177\372\340\361\240\135\205\116\222\322\236\105 +\035\264\117\060\075\006\003\125\035\037\004\066\060\064\060\062 +\240\060\240\056\206\054\150\164\164\160\072\057\057\143\162\154 +\056\165\163\145\162\164\162\165\163\164\056\143\157\155\057\125 +\124\116\055\104\101\124\101\103\157\162\160\123\107\103\056\143 +\162\154\060\052\006\003\125\035\045\004\043\060\041\006\010\053 +\006\001\005\005\007\003\001\006\012\053\006\001\004\001\202\067 +\012\003\003\006\011\140\206\110\001\206\370\102\004\001\060\015 +\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202\001 +\001\000\047\065\227\000\212\213\050\275\306\063\060\036\051\374 +\342\367\325\230\324\100\273\140\312\277\253\027\054\011\066\177 +\120\372\101\334\256\226\072\012\043\076\211\131\311\243\007\355 +\033\067\255\374\174\276\121\111\132\336\072\012\124\010\026\105 +\302\231\261\207\315\214\150\340\151\003\351\304\116\230\262\073 +\214\026\263\016\240\014\230\120\233\223\251\160\011\310\054\243 +\217\337\002\344\340\161\072\361\264\043\162\240\252\001\337\337 +\230\076\024\120\240\061\046\275\050\351\132\060\046\165\371\173 +\140\034\215\363\315\120\046\155\004\047\232\337\325\015\105\107 +\051\153\054\346\166\331\251\051\175\062\335\311\066\074\275\256 +\065\361\021\236\035\273\220\077\022\107\116\216\327\176\017\142 +\163\035\122\046\070\034\030\111\375\060\164\232\304\345\042\057 +\330\300\215\355\221\172\114\000\217\162\177\135\332\335\033\213 +\105\153\347\335\151\227\250\305\126\114\017\014\366\237\172\221 +\067\366\227\202\340\335\161\151\377\166\077\140\115\074\317\367 +\231\371\306\127\364\311\125\071\170\272\054\171\311\246\210\053 +\364\010 END -# Trust for Certificate "Security Communication Root CA" +# Trust for Certificate "UTN DATACorp SGC Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Security Communication Root CA" +CKA_LABEL UTF8 "UTN DATACorp SGC Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\066\261\053\111\371\201\236\327\114\236\274\070\017\306\126\217 -\135\254\262\367 +\130\021\237\016\022\202\207\352\120\375\331\207\105\157\117\170 +\334\372\326\324 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\361\274\143\152\124\340\265\047\365\315\347\032\343\115\156\112 +\263\245\076\167\041\155\254\112\300\311\373\325\101\075\312\006 END CKA_ISSUER MULTILINE_OCTAL -\060\120\061\013\060\011\006\003\125\004\006\023\002\112\120\061 -\030\060\026\006\003\125\004\012\023\017\123\105\103\117\115\040 -\124\162\165\163\164\056\156\145\164\061\047\060\045\006\003\125 -\004\013\023\036\123\145\143\165\162\151\164\171\040\103\157\155 -\155\165\156\151\143\141\164\151\157\156\040\122\157\157\164\103 -\101\061 +\060\201\223\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\033\060\031\006\003\125 +\004\003\023\022\125\124\116\040\055\040\104\101\124\101\103\157 +\162\160\040\123\107\103 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\020\104\276\014\213\120\000\041\264\021\323\052\150\006\251 +\255\151 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Sonera Class 1 Root CA" +# Certificate "UTN USERFirst Email Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Sonera Class 1 Root CA" +CKA_LABEL UTF8 "UTN USERFirst Email Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 -\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 -\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 -\141\040\103\154\141\163\163\061\040\103\101 +\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 +\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 +\154 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 -\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 -\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 -\141\040\103\154\141\163\163\061\040\103\101 +\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 +\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 +\154 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\044 +\002\020\104\276\014\213\120\000\044\264\021\323\066\045\045\147 +\311\211 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\040\060\202\002\010\240\003\002\001\002\002\001\044 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061\017 -\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141\061 -\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162\141 -\040\103\154\141\163\163\061\040\103\101\060\036\027\015\060\061 -\060\064\060\066\061\060\064\071\061\063\132\027\015\062\061\060 -\064\060\066\061\060\064\071\061\063\132\060\071\061\013\060\011 -\006\003\125\004\006\023\002\106\111\061\017\060\015\006\003\125 -\004\012\023\006\123\157\156\145\162\141\061\031\060\027\006\003 -\125\004\003\023\020\123\157\156\145\162\141\040\103\154\141\163 -\163\061\040\103\101\060\202\001\042\060\015\006\011\052\206\110 -\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001 -\012\002\202\001\001\000\265\211\037\053\117\147\012\171\377\305 -\036\370\177\074\355\321\176\332\260\315\155\057\066\254\064\306 -\333\331\144\027\010\143\060\063\042\212\114\356\216\273\017\015 -\102\125\311\235\056\245\357\367\247\214\303\253\271\227\313\216 -\357\077\025\147\250\202\162\143\123\017\101\214\175\020\225\044 -\241\132\245\006\372\222\127\235\372\245\001\362\165\351\037\274 -\126\046\122\116\170\031\145\130\125\003\130\300\024\256\214\174 -\125\137\160\133\167\043\006\066\227\363\044\265\232\106\225\344 -\337\015\013\005\105\345\321\362\035\202\273\306\023\340\376\252 -\172\375\151\060\224\363\322\105\205\374\362\062\133\062\336\350 -\154\135\037\313\244\042\164\260\200\216\135\224\367\006\000\113 -\251\324\136\056\065\120\011\363\200\227\364\014\027\256\071\330 -\137\315\063\301\034\312\211\302\042\367\105\022\355\136\022\223 -\235\143\253\202\056\271\353\102\101\104\313\112\032\000\202\015 -\236\371\213\127\076\114\307\027\355\054\213\162\063\137\162\172 -\070\126\325\346\331\256\005\032\035\165\105\261\313\245\045\034 -\022\127\066\375\042\067\002\003\001\000\001\243\063\060\061\060 -\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377 -\060\021\006\003\125\035\016\004\012\004\010\107\342\014\213\366 -\123\210\122\060\013\006\003\125\035\017\004\004\003\002\001\006 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 -\202\001\001\000\213\032\262\311\135\141\264\341\271\053\271\123 -\321\262\205\235\167\216\026\356\021\075\333\302\143\331\133\227 -\145\373\022\147\330\052\134\266\253\345\136\303\267\026\057\310 -\350\253\035\212\375\253\032\174\325\137\143\317\334\260\335\167 -\271\250\346\322\042\070\207\007\024\331\377\276\126\265\375\007 -\016\074\125\312\026\314\247\246\167\067\373\333\134\037\116\131 -\006\207\243\003\103\365\026\253\267\204\275\116\357\237\061\067 -\360\106\361\100\266\321\014\245\144\370\143\136\041\333\125\116 -\117\061\166\234\020\141\216\266\123\072\243\021\276\257\155\174 -\036\275\256\055\342\014\151\307\205\123\150\242\141\272\305\076 -\264\171\124\170\236\012\307\002\276\142\321\021\202\113\145\057 -\221\132\302\250\207\261\126\150\224\171\371\045\367\301\325\256 -\032\270\273\075\217\251\212\070\025\367\163\320\132\140\321\200 -\260\360\334\325\120\315\116\356\222\110\151\355\262\043\036\060 -\314\310\224\310\266\365\073\206\177\077\246\056\237\366\076\054 -\265\222\226\076\337\054\223\212\377\201\214\017\017\131\041\031 -\127\275\125\232 +\060\202\004\242\060\202\003\212\240\003\002\001\002\002\020\104 +\276\014\213\120\000\044\264\021\323\066\045\045\147\311\211\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 +\256\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 +\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 +\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 +\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 +\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 +\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 +\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 +\165\163\164\056\143\157\155\061\066\060\064\006\003\125\004\003 +\023\055\125\124\116\055\125\123\105\122\106\151\162\163\164\055 +\103\154\151\145\156\164\040\101\165\164\150\145\156\164\151\143 +\141\164\151\157\156\040\141\156\144\040\105\155\141\151\154\060 +\036\027\015\071\071\060\067\060\071\061\067\062\070\065\060\132 +\027\015\061\071\060\067\060\071\061\067\063\066\065\070\132\060 +\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025 +\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145 +\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025 +\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145 +\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030 +\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164 +\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125\004 +\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163\164 +\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164\151 +\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151\154 +\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001 +\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001 +\000\262\071\205\244\362\175\253\101\073\142\106\067\256\315\301 +\140\165\274\071\145\371\112\032\107\242\271\314\110\314\152\230 +\325\115\065\031\271\244\102\345\316\111\342\212\057\036\174\322 +\061\007\307\116\264\203\144\235\056\051\325\242\144\304\205\275 +\205\121\065\171\244\116\150\220\173\034\172\244\222\250\027\362 +\230\025\362\223\314\311\244\062\225\273\014\117\060\275\230\240 +\013\213\345\156\033\242\106\372\170\274\242\157\253\131\136\245 +\057\317\312\332\155\252\057\353\254\241\263\152\252\267\056\147 +\065\213\171\341\036\151\210\342\346\106\315\240\245\352\276\013 +\316\166\072\172\016\233\352\374\332\047\133\075\163\037\042\346 +\110\141\306\114\363\151\261\250\056\033\266\324\061\040\054\274 +\202\212\216\244\016\245\327\211\103\374\026\132\257\035\161\327 +\021\131\332\272\207\015\257\372\363\341\302\360\244\305\147\214 +\326\326\124\072\336\012\244\272\003\167\263\145\310\375\036\323 +\164\142\252\030\312\150\223\036\241\205\176\365\107\145\313\370 +\115\127\050\164\322\064\377\060\266\356\366\142\060\024\214\054 +\353\002\003\001\000\001\243\201\271\060\201\266\060\013\006\003 +\125\035\017\004\004\003\002\001\306\060\017\006\003\125\035\023 +\001\001\377\004\005\060\003\001\001\377\060\035\006\003\125\035 +\016\004\026\004\024\211\202\147\175\304\235\046\160\000\113\264 +\120\110\174\336\075\256\004\156\175\060\130\006\003\125\035\037 +\004\121\060\117\060\115\240\113\240\111\206\107\150\164\164\160 +\072\057\057\143\162\154\056\165\163\145\162\164\162\165\163\164 +\056\143\157\155\057\125\124\116\055\125\123\105\122\106\151\162 +\163\164\055\103\154\151\145\156\164\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\141\156\144\105\155\141\151\154\056 +\143\162\154\060\035\006\003\125\035\045\004\026\060\024\006\010 +\053\006\001\005\005\007\003\002\006\010\053\006\001\005\005\007 +\003\004\060\015\006\011\052\206\110\206\367\015\001\001\005\005 +\000\003\202\001\001\000\261\155\141\135\246\032\177\174\253\112 +\344\060\374\123\157\045\044\306\312\355\342\061\134\053\016\356 +\356\141\125\157\004\076\317\071\336\305\033\111\224\344\353\040 +\114\264\346\236\120\056\162\331\215\365\252\243\263\112\332\126 +\034\140\227\200\334\202\242\255\112\275\212\053\377\013\011\264 +\306\327\040\004\105\344\315\200\001\272\272\053\156\316\252\327 +\222\376\344\257\353\364\046\035\026\052\177\154\060\225\067\057 +\063\022\254\177\335\307\321\021\214\121\230\262\320\243\221\320 +\255\366\237\236\203\223\036\035\102\270\106\257\153\146\360\233 +\177\352\343\003\002\345\002\121\301\252\325\065\235\162\100\003 +\211\272\061\035\305\020\150\122\236\337\242\205\305\134\010\246 +\170\346\123\117\261\350\267\323\024\236\223\246\303\144\343\254 +\176\161\315\274\237\351\003\033\314\373\351\254\061\301\257\174 +\025\164\002\231\303\262\107\246\302\062\141\327\307\157\110\044 +\121\047\241\325\207\125\362\173\217\230\075\026\236\356\165\266 +\370\320\216\362\363\306\256\050\133\247\360\363\066\027\374\303 +\005\323\312\003\112\124 +END + +# Trust for Certificate "UTN USERFirst Email Root CA" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "UTN USERFirst Email Root CA" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\261\162\261\245\155\225\371\037\345\002\207\341\115\067\352\152 +\104\143\166\212 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\327\064\075\357\035\047\011\050\341\061\002\133\023\053\335\367 +END +CKA_ISSUER MULTILINE_OCTAL +\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 +\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 +\154 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\104\276\014\213\120\000\044\264\021\323\066\045\045\147 +\311\211 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "UTN USERFirst Hardware Root CA" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "UTN USERFirst Hardware Root CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\201\227\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\037\060\035\006\003\125 +\004\003\023\026\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\110\141\162\144\167\141\162\145 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\201\227\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\037\060\035\006\003\125 +\004\003\023\026\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\110\141\162\144\167\141\162\145 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\104\276\014\213\120\000\044\264\021\323\066\052\376\145 +\012\375 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\004\164\060\202\003\134\240\003\002\001\002\002\020\104 +\276\014\213\120\000\044\264\021\323\066\052\376\145\012\375\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 +\227\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 +\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 +\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 +\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 +\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 +\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 +\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 +\165\163\164\056\143\157\155\061\037\060\035\006\003\125\004\003 +\023\026\125\124\116\055\125\123\105\122\106\151\162\163\164\055 +\110\141\162\144\167\141\162\145\060\036\027\015\071\071\060\067 +\060\071\061\070\061\060\064\062\132\027\015\061\071\060\067\060 +\071\061\070\061\071\062\062\132\060\201\227\061\013\060\011\006 +\003\125\004\006\023\002\125\123\061\013\060\011\006\003\125\004 +\010\023\002\125\124\061\027\060\025\006\003\125\004\007\023\016 +\123\141\154\164\040\114\141\153\145\040\103\151\164\171\061\036 +\060\034\006\003\125\004\012\023\025\124\150\145\040\125\123\105 +\122\124\122\125\123\124\040\116\145\164\167\157\162\153\061\041 +\060\037\006\003\125\004\013\023\030\150\164\164\160\072\057\057 +\167\167\167\056\165\163\145\162\164\162\165\163\164\056\143\157 +\155\061\037\060\035\006\003\125\004\003\023\026\125\124\116\055 +\125\123\105\122\106\151\162\163\164\055\110\141\162\144\167\141 +\162\145\060\202\001\042\060\015\006\011\052\206\110\206\367\015 +\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202 +\001\001\000\261\367\303\070\077\264\250\177\317\071\202\121\147 +\320\155\237\322\377\130\363\347\237\053\354\015\211\124\231\271 +\070\231\026\367\340\041\171\110\302\273\141\164\022\226\035\074 +\152\162\325\074\020\147\072\071\355\053\023\315\146\353\225\011 +\063\244\154\227\261\350\306\354\301\165\171\234\106\136\215\253 +\320\152\375\271\052\125\027\020\124\263\031\360\232\366\361\261 +\135\266\247\155\373\340\161\027\153\242\210\373\000\337\376\032 +\061\167\014\232\001\172\261\062\343\053\001\007\070\156\303\245 +\136\043\274\105\233\173\120\301\311\060\217\333\345\053\172\323 +\133\373\063\100\036\240\325\230\027\274\213\207\303\211\323\135 +\240\216\262\252\252\366\216\151\210\006\305\372\211\041\363\010 +\235\151\056\011\063\233\051\015\106\017\214\314\111\064\260\151 +\121\275\371\006\315\150\255\146\114\274\076\254\141\275\012\210 +\016\310\337\075\356\174\004\114\235\012\136\153\221\326\356\307 +\355\050\215\253\115\207\211\163\320\156\244\320\036\026\213\024 +\341\166\104\003\177\143\254\344\315\111\234\305\222\364\253\062 +\241\110\133\002\003\001\000\001\243\201\271\060\201\266\060\013 +\006\003\125\035\017\004\004\003\002\001\306\060\017\006\003\125 +\035\023\001\001\377\004\005\060\003\001\001\377\060\035\006\003 +\125\035\016\004\026\004\024\241\162\137\046\033\050\230\103\225 +\135\007\067\325\205\226\235\113\322\303\105\060\104\006\003\125 +\035\037\004\075\060\073\060\071\240\067\240\065\206\063\150\164 +\164\160\072\057\057\143\162\154\056\165\163\145\162\164\162\165 +\163\164\056\143\157\155\057\125\124\116\055\125\123\105\122\106 +\151\162\163\164\055\110\141\162\144\167\141\162\145\056\143\162 +\154\060\061\006\003\125\035\045\004\052\060\050\006\010\053\006 +\001\005\005\007\003\001\006\010\053\006\001\005\005\007\003\005 +\006\010\053\006\001\005\005\007\003\006\006\010\053\006\001\005 +\005\007\003\007\060\015\006\011\052\206\110\206\367\015\001\001 +\005\005\000\003\202\001\001\000\107\031\017\336\164\306\231\227 +\257\374\255\050\136\165\216\353\055\147\356\116\173\053\327\014 +\377\366\336\313\125\242\012\341\114\124\145\223\140\153\237\022 +\234\255\136\203\054\353\132\256\300\344\055\364\000\143\035\270 +\300\154\362\317\111\273\115\223\157\006\246\012\042\262\111\142 +\010\116\377\310\310\024\262\210\026\135\347\001\344\022\225\345 +\105\064\263\213\151\275\317\264\205\217\165\121\236\175\072\070 +\072\024\110\022\306\373\247\073\032\215\015\202\100\007\350\004 +\010\220\241\211\313\031\120\337\312\034\001\274\035\004\031\173 +\020\166\227\073\356\220\220\312\304\016\037\026\156\165\357\063 +\370\323\157\133\036\226\343\340\164\167\164\173\212\242\156\055 +\335\166\326\071\060\202\360\253\234\122\362\052\307\257\111\136 +\176\307\150\345\202\201\310\152\047\371\047\210\052\325\130\120 +\225\037\360\073\034\127\273\175\024\071\142\053\232\311\224\222 +\052\243\042\014\377\211\046\175\137\043\053\107\327\025\035\251 +\152\236\121\015\052\121\236\201\371\324\073\136\160\022\177\020 +\062\234\036\273\235\370\146\250 END -# Trust for Certificate "Sonera Class 1 Root CA" +# Trust for Certificate "UTN USERFirst Hardware Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Sonera Class 1 Root CA" +CKA_LABEL UTF8 "UTN USERFirst Hardware Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\007\107\042\001\231\316\164\271\174\260\075\171\262\144\242\310 -\125\351\063\377 +\004\203\355\063\231\254\066\010\005\207\042\355\274\136\106\000 +\343\276\371\327 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\063\267\204\365\137\047\327\150\047\336\024\336\022\052\355\157 +\114\126\101\345\015\273\053\350\312\243\355\030\010\255\103\071 END CKA_ISSUER MULTILINE_OCTAL -\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 -\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 -\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 -\141\040\103\154\141\163\163\061\040\103\101 +\060\201\227\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\037\060\035\006\003\125 +\004\003\023\026\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\110\141\162\144\167\141\162\145 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\044 +\002\020\104\276\014\213\120\000\044\264\021\323\066\052\376\145 +\012\375 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Sonera Class 2 Root CA" +# Certificate "UTN USERFirst Object Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Sonera Class 2 Root CA" +CKA_LABEL UTF8 "UTN USERFirst Object Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 -\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 -\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 -\141\040\103\154\141\163\163\062\040\103\101 +\060\201\225\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\035\060\033\006\003\125 +\004\003\023\024\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\117\142\152\145\143\164 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 -\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 -\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 -\141\040\103\154\141\163\163\062\040\103\101 +\060\201\225\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\035\060\033\006\003\125 +\004\003\023\024\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\117\142\152\145\143\164 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\035 +\002\020\104\276\014\213\120\000\044\264\021\323\066\055\340\263 +\137\033 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\040\060\202\002\010\240\003\002\001\002\002\001\035 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061\017 -\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141\061 -\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162\141 -\040\103\154\141\163\163\062\040\103\101\060\036\027\015\060\061 -\060\064\060\066\060\067\062\071\064\060\132\027\015\062\061\060 -\064\060\066\060\067\062\071\064\060\132\060\071\061\013\060\011 -\006\003\125\004\006\023\002\106\111\061\017\060\015\006\003\125 -\004\012\023\006\123\157\156\145\162\141\061\031\060\027\006\003 -\125\004\003\023\020\123\157\156\145\162\141\040\103\154\141\163 -\163\062\040\103\101\060\202\001\042\060\015\006\011\052\206\110 -\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001 -\012\002\202\001\001\000\220\027\112\065\235\312\360\015\226\307 -\104\372\026\067\374\110\275\275\177\200\055\065\073\341\157\250 -\147\251\277\003\034\115\214\157\062\107\325\101\150\244\023\004 -\301\065\014\232\204\103\374\134\035\377\211\263\350\027\030\315 -\221\137\373\211\343\352\277\116\135\174\033\046\323\165\171\355 -\346\204\343\127\345\255\051\304\364\072\050\347\245\173\204\066 -\151\263\375\136\166\275\243\055\231\323\220\116\043\050\175\030 -\143\361\124\073\046\235\166\133\227\102\262\377\256\360\116\354 -\335\071\225\116\203\006\177\347\111\100\310\305\001\262\124\132 -\146\035\075\374\371\351\074\012\236\201\270\160\360\001\213\344 -\043\124\174\310\256\370\220\036\000\226\162\324\124\317\141\043 -\274\352\373\235\002\225\321\266\271\161\072\151\010\077\017\264 -\341\102\307\210\365\077\230\250\247\272\034\340\161\161\357\130 -\127\201\120\172\134\153\164\106\016\203\003\230\303\216\250\156 -\362\166\062\156\047\203\302\163\363\334\030\350\264\223\352\165 -\104\153\004\140\040\161\127\207\235\363\276\240\220\043\075\212 -\044\341\332\041\333\303\002\003\001\000\001\243\063\060\061\060 -\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377 -\060\021\006\003\125\035\016\004\012\004\010\112\240\252\130\204 -\323\136\074\060\013\006\003\125\035\017\004\004\003\002\001\006 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 -\202\001\001\000\132\316\207\371\026\162\025\127\113\035\331\233 -\347\242\046\060\354\223\147\337\326\055\322\064\257\367\070\245 -\316\253\026\271\253\057\174\065\313\254\320\017\264\114\053\374 -\200\357\153\214\221\137\066\166\367\333\263\033\031\352\364\262 -\021\375\141\161\104\277\050\263\072\035\277\263\103\350\237\277 -\334\061\010\161\260\235\215\326\064\107\062\220\306\145\044\367 -\240\112\174\004\163\217\071\157\027\214\162\265\275\113\310\172 -\370\173\203\303\050\116\234\011\352\147\077\262\147\004\033\303 -\024\332\370\347\111\044\221\320\035\152\372\141\071\357\153\347 -\041\165\006\007\330\022\264\041\040\160\102\161\201\332\074\232 -\066\276\246\133\015\152\154\232\037\221\173\371\371\357\102\272 -\116\116\236\314\014\215\224\334\331\105\234\136\354\102\120\143 -\256\364\135\304\261\022\334\312\073\250\056\235\024\132\005\165 -\267\354\327\143\342\272\065\266\004\010\221\350\332\235\234\366 -\146\265\030\254\012\246\124\046\064\063\322\033\301\324\177\032 -\072\216\013\252\062\156\333\374\117\045\237\331\062\307\226\132 -\160\254\337\114 +\060\202\004\146\060\202\003\116\240\003\002\001\002\002\020\104 +\276\014\213\120\000\044\264\021\323\066\055\340\263\137\033\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 +\225\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 +\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 +\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 +\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 +\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 +\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 +\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 +\165\163\164\056\143\157\155\061\035\060\033\006\003\125\004\003 +\023\024\125\124\116\055\125\123\105\122\106\151\162\163\164\055 +\117\142\152\145\143\164\060\036\027\015\071\071\060\067\060\071 +\061\070\063\061\062\060\132\027\015\061\071\060\067\060\071\061 +\070\064\060\063\066\132\060\201\225\061\013\060\011\006\003\125 +\004\006\023\002\125\123\061\013\060\011\006\003\125\004\010\023 +\002\125\124\061\027\060\025\006\003\125\004\007\023\016\123\141 +\154\164\040\114\141\153\145\040\103\151\164\171\061\036\060\034 +\006\003\125\004\012\023\025\124\150\145\040\125\123\105\122\124 +\122\125\123\124\040\116\145\164\167\157\162\153\061\041\060\037 +\006\003\125\004\013\023\030\150\164\164\160\072\057\057\167\167 +\167\056\165\163\145\162\164\162\165\163\164\056\143\157\155\061 +\035\060\033\006\003\125\004\003\023\024\125\124\116\055\125\123 +\105\122\106\151\162\163\164\055\117\142\152\145\143\164\060\202 +\001\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005 +\000\003\202\001\017\000\060\202\001\012\002\202\001\001\000\316 +\252\201\077\243\243\141\170\252\061\000\125\225\021\236\047\017 +\037\034\337\072\233\202\150\060\300\112\141\035\361\057\016\372 +\276\171\367\245\043\357\125\121\226\204\315\333\343\271\156\076 +\061\330\012\040\147\307\364\331\277\224\353\107\004\076\002\316 +\052\242\135\207\004\011\366\060\235\030\212\227\262\252\034\374 +\101\322\241\066\313\373\075\221\272\347\331\160\065\372\344\347 +\220\303\233\243\233\323\074\365\022\231\167\261\267\011\340\150 +\346\034\270\363\224\143\210\152\152\376\013\166\311\276\364\042 +\344\147\271\253\032\136\167\301\205\007\335\015\154\277\356\006 +\307\167\152\101\236\247\017\327\373\356\224\027\267\374\205\276 +\244\253\304\034\061\335\327\266\321\344\360\357\337\026\217\262 +\122\223\327\241\324\211\241\007\056\277\341\001\022\102\036\032 +\341\330\225\064\333\144\171\050\377\272\056\021\302\345\350\133 +\222\110\373\107\013\302\154\332\255\062\203\101\363\245\345\101 +\160\375\145\220\155\372\372\121\304\371\275\226\053\031\004\054 +\323\155\247\334\360\177\157\203\145\342\152\253\207\206\165\002 +\003\001\000\001\243\201\257\060\201\254\060\013\006\003\125\035 +\017\004\004\003\002\001\306\060\017\006\003\125\035\023\001\001 +\377\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004 +\026\004\024\332\355\144\164\024\234\024\074\253\335\231\251\275 +\133\050\115\213\074\311\330\060\102\006\003\125\035\037\004\073 +\060\071\060\067\240\065\240\063\206\061\150\164\164\160\072\057 +\057\143\162\154\056\165\163\145\162\164\162\165\163\164\056\143 +\157\155\057\125\124\116\055\125\123\105\122\106\151\162\163\164 +\055\117\142\152\145\143\164\056\143\162\154\060\051\006\003\125 +\035\045\004\042\060\040\006\010\053\006\001\005\005\007\003\003 +\006\010\053\006\001\005\005\007\003\010\006\012\053\006\001\004 +\001\202\067\012\003\004\060\015\006\011\052\206\110\206\367\015 +\001\001\005\005\000\003\202\001\001\000\010\037\122\261\067\104 +\170\333\375\316\271\332\225\226\230\252\125\144\200\265\132\100 +\335\041\245\305\301\363\137\054\114\310\107\132\151\352\350\360 +\065\065\364\320\045\363\310\246\244\207\112\275\033\261\163\010 +\275\324\303\312\266\065\273\131\206\167\061\315\247\200\024\256 +\023\357\374\261\110\371\153\045\045\055\121\266\054\155\105\301 +\230\310\212\126\135\076\356\103\116\076\153\047\216\320\072\113 +\205\013\137\323\355\152\247\165\313\321\132\207\057\071\165\023 +\132\162\260\002\201\237\276\360\017\204\124\040\142\154\151\324 +\341\115\306\015\231\103\001\015\022\226\214\170\235\277\120\242 +\261\104\252\152\317\027\172\317\157\017\324\370\044\125\137\360 +\064\026\111\146\076\120\106\311\143\161\070\061\142\270\142\271 +\363\123\255\154\265\053\242\022\252\031\117\011\332\136\347\223 +\306\216\024\010\376\360\060\200\030\240\206\205\115\310\175\327 +\213\003\376\156\325\367\235\026\254\222\054\240\043\345\234\221 +\122\037\224\337\027\224\163\303\263\301\301\161\005\040\000\170 +\275\023\122\035\250\076\315\000\037\310 END -# Trust for Certificate "Sonera Class 2 Root CA" +# Trust for Certificate "UTN USERFirst Object Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Sonera Class 2 Root CA" +CKA_LABEL UTF8 "UTN USERFirst Object Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\067\367\155\346\007\174\220\305\261\076\223\032\267\101\020\264 -\362\344\232\047 +\341\055\373\113\101\327\331\303\053\060\121\113\254\035\201\330 +\070\136\055\106 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\243\354\165\017\056\210\337\372\110\001\116\013\134\110\157\373 +\247\362\344\026\006\101\021\120\060\153\234\343\264\234\260\311 END CKA_ISSUER MULTILINE_OCTAL -\060\071\061\013\060\011\006\003\125\004\006\023\002\106\111\061 -\017\060\015\006\003\125\004\012\023\006\123\157\156\145\162\141 -\061\031\060\027\006\003\125\004\003\023\020\123\157\156\145\162 -\141\040\103\154\141\163\163\062\040\103\101 +\060\201\225\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\035\060\033\006\003\125 +\004\003\023\024\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\117\142\152\145\143\164 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\035 +\002\020\104\276\014\213\120\000\044\264\021\323\066\055\340\263 +\137\033 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Staat der Nederlanden Root CA" +# Certificate "Camerfirma Chambers of Commerce Root" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Staat der Nederlanden Root CA" +CKA_LABEL UTF8 "Camerfirma Chambers of Commerce Root" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\125\061\013\060\011\006\003\125\004\006\023\002\116\114\061 -\036\060\034\006\003\125\004\012\023\025\123\164\141\141\164\040 -\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\061 -\046\060\044\006\003\125\004\003\023\035\123\164\141\141\164\040 -\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\040 -\122\157\157\164\040\103\101 +\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 +\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 +\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 +\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 +\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 +\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 +\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 +\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 +\164 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\125\061\013\060\011\006\003\125\004\006\023\002\116\114\061 -\036\060\034\006\003\125\004\012\023\025\123\164\141\141\164\040 -\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\061 -\046\060\044\006\003\125\004\003\023\035\123\164\141\141\164\040 -\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\040 -\122\157\157\164\040\103\101 +\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 +\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 +\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 +\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 +\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 +\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 +\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 +\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 +\164 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\000\230\226\212 +\002\001\000 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\272\060\202\002\242\240\003\002\001\002\002\004\000 -\230\226\212\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\060\125\061\013\060\011\006\003\125\004\006\023\002\116 -\114\061\036\060\034\006\003\125\004\012\023\025\123\164\141\141 -\164\040\144\145\162\040\116\145\144\145\162\154\141\156\144\145 -\156\061\046\060\044\006\003\125\004\003\023\035\123\164\141\141 -\164\040\144\145\162\040\116\145\144\145\162\154\141\156\144\145 -\156\040\122\157\157\164\040\103\101\060\036\027\015\060\062\061 -\062\061\067\060\071\062\063\064\071\132\027\015\061\065\061\062 -\061\066\060\071\061\065\063\070\132\060\125\061\013\060\011\006 -\003\125\004\006\023\002\116\114\061\036\060\034\006\003\125\004 -\012\023\025\123\164\141\141\164\040\144\145\162\040\116\145\144 -\145\162\154\141\156\144\145\156\061\046\060\044\006\003\125\004 -\003\023\035\123\164\141\141\164\040\144\145\162\040\116\145\144 -\145\162\154\141\156\144\145\156\040\122\157\157\164\040\103\101 -\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001 -\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001 -\000\230\322\265\121\021\172\201\246\024\230\161\155\276\314\347 -\023\033\326\047\016\172\263\152\030\034\266\141\132\325\141\011 -\277\336\220\023\307\147\356\335\363\332\305\014\022\236\065\125 -\076\054\047\210\100\153\367\334\335\042\141\365\302\307\016\365 -\366\325\166\123\115\217\214\274\030\166\067\205\235\350\312\111 -\307\322\117\230\023\011\242\076\042\210\234\177\326\362\020\145 -\264\356\137\030\325\027\343\370\305\375\342\235\242\357\123\016 -\205\167\242\017\341\060\107\356\000\347\063\175\104\147\032\013 -\121\350\213\240\236\120\230\150\064\122\037\056\155\001\362\140 -\105\362\061\353\251\061\150\051\273\172\101\236\306\031\177\224 -\264\121\071\003\177\262\336\247\062\233\264\107\216\157\264\112 -\256\345\257\261\334\260\033\141\274\231\162\336\344\211\267\172 -\046\135\332\063\111\133\122\234\016\365\212\255\303\270\075\350 -\006\152\302\325\052\013\154\173\204\275\126\005\313\206\145\222 -\354\104\053\260\216\271\334\160\013\106\332\255\274\143\210\071 -\372\333\152\376\043\372\274\344\110\364\147\053\152\021\020\041 -\111\002\003\001\000\001\243\201\221\060\201\216\060\014\006\003 -\125\035\023\004\005\060\003\001\001\377\060\117\006\003\125\035 -\040\004\110\060\106\060\104\006\004\125\035\040\000\060\074\060 -\072\006\010\053\006\001\005\005\007\002\001\026\056\150\164\164 -\160\072\057\057\167\167\167\056\160\153\151\157\166\145\162\150 -\145\151\144\056\156\154\057\160\157\154\151\143\151\145\163\057 -\162\157\157\164\055\160\157\154\151\143\171\060\016\006\003\125 -\035\017\001\001\377\004\004\003\002\001\006\060\035\006\003\125 -\035\016\004\026\004\024\250\175\353\274\143\244\164\023\164\000 -\354\226\340\323\064\301\054\277\154\370\060\015\006\011\052\206 -\110\206\367\015\001\001\005\005\000\003\202\001\001\000\005\204 -\207\125\164\066\141\301\273\321\324\306\025\250\023\264\237\244 -\376\273\356\025\264\057\006\014\051\362\250\222\244\141\015\374 -\253\134\010\133\121\023\053\115\302\052\141\310\370\011\130\374 -\055\002\262\071\175\231\146\201\277\156\134\225\105\040\154\346 -\171\247\321\330\034\051\374\302\040\047\121\310\361\174\135\064 -\147\151\205\021\060\306\000\322\327\363\323\174\266\360\061\127 -\050\022\202\163\351\063\057\246\125\264\013\221\224\107\234\372 -\273\172\102\062\350\256\176\055\310\274\254\024\277\331\017\331 -\133\374\301\371\172\225\341\175\176\226\374\161\260\302\114\310 -\337\105\064\311\316\015\362\234\144\010\320\073\303\051\305\262 -\355\220\004\301\261\051\221\305\060\157\301\251\162\063\314\376 -\135\026\027\054\021\151\347\176\376\305\203\010\337\274\334\042 -\072\056\040\151\043\071\126\140\147\220\213\056\166\071\373\021 -\210\227\366\174\275\113\270\040\026\147\005\215\342\073\301\162 -\077\224\225\067\307\135\271\236\330\223\241\027\217\377\014\146 -\025\301\044\174\062\174\003\035\073\241\130\105\062\223 +\060\202\004\275\060\202\003\245\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061\047 +\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155\145 +\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101\070 +\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004\013 +\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150\141 +\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060\040 +\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163\040 +\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157\164 +\060\036\027\015\060\063\060\071\063\060\061\066\061\063\064\063 +\132\027\015\063\067\060\071\063\060\061\066\061\063\064\064\132 +\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 +\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 +\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 +\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 +\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 +\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 +\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 +\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 +\164\060\202\001\040\060\015\006\011\052\206\110\206\367\015\001 +\001\001\005\000\003\202\001\015\000\060\202\001\010\002\202\001 +\001\000\267\066\125\345\245\135\030\060\340\332\211\124\221\374 +\310\307\122\370\057\120\331\357\261\165\163\145\107\175\033\133 +\272\165\305\374\241\210\044\372\057\355\312\010\112\071\124\304 +\121\172\265\332\140\352\070\074\201\262\313\361\273\331\221\043 +\077\110\001\160\165\251\005\052\255\037\161\363\311\124\075\035 +\006\152\100\076\263\014\205\356\134\033\171\302\142\304\270\066 +\216\065\135\001\014\043\004\107\065\252\233\140\116\240\146\075 +\313\046\012\234\100\241\364\135\230\277\161\253\245\000\150\052 +\355\203\172\017\242\024\265\324\042\263\200\260\074\014\132\121 +\151\055\130\030\217\355\231\236\361\256\342\225\346\366\107\250 +\326\014\017\260\130\130\333\303\146\067\236\233\221\124\063\067 +\322\224\034\152\110\311\311\362\245\332\245\014\043\367\043\016 +\234\062\125\136\161\234\204\005\121\232\055\375\346\116\052\064 +\132\336\312\100\067\147\014\124\041\125\167\332\012\014\314\227 +\256\200\334\224\066\112\364\076\316\066\023\036\123\344\254\116 +\072\005\354\333\256\162\234\070\213\320\071\073\211\012\076\167 +\376\165\002\001\003\243\202\001\104\060\202\001\100\060\022\006 +\003\125\035\023\001\001\377\004\010\060\006\001\001\377\002\001 +\014\060\074\006\003\125\035\037\004\065\060\063\060\061\240\057 +\240\055\206\053\150\164\164\160\072\057\057\143\162\154\056\143 +\150\141\155\142\145\162\163\151\147\156\056\157\162\147\057\143 +\150\141\155\142\145\162\163\162\157\157\164\056\143\162\154\060 +\035\006\003\125\035\016\004\026\004\024\343\224\365\261\115\351 +\333\241\051\133\127\213\115\166\006\166\341\321\242\212\060\016 +\006\003\125\035\017\001\001\377\004\004\003\002\001\006\060\021 +\006\011\140\206\110\001\206\370\102\001\001\004\004\003\002\000 +\007\060\047\006\003\125\035\021\004\040\060\036\201\034\143\150 +\141\155\142\145\162\163\162\157\157\164\100\143\150\141\155\142 +\145\162\163\151\147\156\056\157\162\147\060\047\006\003\125\035 +\022\004\040\060\036\201\034\143\150\141\155\142\145\162\163\162 +\157\157\164\100\143\150\141\155\142\145\162\163\151\147\156\056 +\157\162\147\060\130\006\003\125\035\040\004\121\060\117\060\115 +\006\013\053\006\001\004\001\201\207\056\012\003\001\060\076\060 +\074\006\010\053\006\001\005\005\007\002\001\026\060\150\164\164 +\160\072\057\057\143\160\163\056\143\150\141\155\142\145\162\163 +\151\147\156\056\157\162\147\057\143\160\163\057\143\150\141\155 +\142\145\162\163\162\157\157\164\056\150\164\155\154\060\015\006 +\011\052\206\110\206\367\015\001\001\005\005\000\003\202\001\001 +\000\014\101\227\302\032\206\300\042\174\237\373\220\363\032\321 +\003\261\357\023\371\041\137\004\234\332\311\245\215\047\154\226 +\207\221\276\101\220\001\162\223\347\036\175\137\366\211\306\135 +\247\100\011\075\254\111\105\105\334\056\215\060\150\262\011\272 +\373\303\057\314\272\013\337\077\167\173\106\175\072\022\044\216 +\226\217\074\005\012\157\322\224\050\035\155\014\300\056\210\042 +\325\330\317\035\023\307\360\110\327\327\005\247\317\307\107\236 +\073\074\064\310\200\117\324\024\273\374\015\120\367\372\263\354 +\102\137\251\335\155\310\364\165\317\173\301\162\046\261\001\034 +\134\054\375\172\116\264\001\305\005\127\271\347\074\252\005\331 +\210\351\007\106\101\316\357\101\201\256\130\337\203\242\256\312 +\327\167\037\347\000\074\235\157\216\344\062\011\035\115\170\064 +\170\064\074\224\233\046\355\117\161\306\031\172\275\040\042\110 +\132\376\113\175\003\267\347\130\276\306\062\116\164\036\150\335 +\250\150\133\263\076\356\142\175\331\200\350\012\165\172\267\356 +\264\145\232\041\220\340\252\320\230\274\070\265\163\074\213\370 +\334 +END + +# Trust for Certificate "Camerfirma Chambers of Commerce Root" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Camerfirma Chambers of Commerce Root" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\156\072\125\244\031\014\031\134\223\204\074\300\333\162\056\061 +\060\141\360\261 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\260\001\356\024\331\257\051\030\224\166\216\361\151\063\052\204 +END +CKA_ISSUER MULTILINE_OCTAL +\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 +\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 +\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 +\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 +\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 +\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 +\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 +\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 +\164 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "Camerfirma Global Chambersign Root" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Camerfirma Global Chambersign Root" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061 +\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 +\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 +\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 +\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 +\141\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060 +\036\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103 +\150\141\155\142\145\162\163\151\147\156\040\122\157\157\164 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061 +\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 +\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 +\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 +\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 +\141\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060 +\036\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103 +\150\141\155\142\145\162\163\151\147\156\040\122\157\157\164 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\004\305\060\202\003\255\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061\047 +\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155\145 +\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101\070 +\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004\013 +\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150\141 +\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060\036 +\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103\150 +\141\155\142\145\162\163\151\147\156\040\122\157\157\164\060\036 +\027\015\060\063\060\071\063\060\061\066\061\064\061\070\132\027 +\015\063\067\060\071\063\060\061\066\061\064\061\070\132\060\175 +\061\013\060\011\006\003\125\004\006\023\002\105\125\061\047\060 +\045\006\003\125\004\012\023\036\101\103\040\103\141\155\145\162 +\146\151\162\155\141\040\123\101\040\103\111\106\040\101\070\062 +\067\064\063\062\070\067\061\043\060\041\006\003\125\004\013\023 +\032\150\164\164\160\072\057\057\167\167\167\056\143\150\141\155 +\142\145\162\163\151\147\156\056\157\162\147\061\040\060\036\006 +\003\125\004\003\023\027\107\154\157\142\141\154\040\103\150\141 +\155\142\145\162\163\151\147\156\040\122\157\157\164\060\202\001 +\040\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000 +\003\202\001\015\000\060\202\001\010\002\202\001\001\000\242\160 +\242\320\237\102\256\133\027\307\330\175\317\024\203\374\117\311 +\241\267\023\257\212\327\236\076\004\012\222\213\140\126\372\264 +\062\057\210\115\241\140\010\364\267\011\116\240\111\057\111\326 +\323\337\235\227\132\237\224\004\160\354\077\131\331\267\314\146 +\213\230\122\050\011\002\337\305\057\204\215\172\227\167\277\354 +\100\235\045\162\253\265\077\062\230\373\267\267\374\162\204\345 +\065\207\371\125\372\243\037\016\157\056\050\335\151\240\331\102 +\020\306\370\265\104\302\320\103\177\333\274\344\242\074\152\125 +\170\012\167\251\330\352\031\062\267\057\376\134\077\033\356\261 +\230\354\312\255\172\151\105\343\226\017\125\366\346\355\165\352 +\145\350\062\126\223\106\211\250\045\212\145\006\356\153\277\171 +\007\320\361\267\257\355\054\115\222\273\300\250\137\247\147\175 +\004\362\025\010\160\254\222\326\175\004\322\063\373\114\266\013 +\013\373\032\311\304\215\003\251\176\134\362\120\253\022\245\241 +\317\110\120\245\357\322\310\032\023\372\260\177\261\202\034\167 +\152\017\137\334\013\225\217\357\103\176\346\105\011\045\002\001 +\003\243\202\001\120\060\202\001\114\060\022\006\003\125\035\023 +\001\001\377\004\010\060\006\001\001\377\002\001\014\060\077\006 +\003\125\035\037\004\070\060\066\060\064\240\062\240\060\206\056 +\150\164\164\160\072\057\057\143\162\154\056\143\150\141\155\142 +\145\162\163\151\147\156\056\157\162\147\057\143\150\141\155\142 +\145\162\163\151\147\156\162\157\157\164\056\143\162\154\060\035 +\006\003\125\035\016\004\026\004\024\103\234\066\237\260\236\060 +\115\306\316\137\255\020\253\345\003\245\372\251\024\060\016\006 +\003\125\035\017\001\001\377\004\004\003\002\001\006\060\021\006 +\011\140\206\110\001\206\370\102\001\001\004\004\003\002\000\007 +\060\052\006\003\125\035\021\004\043\060\041\201\037\143\150\141 +\155\142\145\162\163\151\147\156\162\157\157\164\100\143\150\141 +\155\142\145\162\163\151\147\156\056\157\162\147\060\052\006\003 +\125\035\022\004\043\060\041\201\037\143\150\141\155\142\145\162 +\163\151\147\156\162\157\157\164\100\143\150\141\155\142\145\162 +\163\151\147\156\056\157\162\147\060\133\006\003\125\035\040\004 +\124\060\122\060\120\006\013\053\006\001\004\001\201\207\056\012 +\001\001\060\101\060\077\006\010\053\006\001\005\005\007\002\001 +\026\063\150\164\164\160\072\057\057\143\160\163\056\143\150\141 +\155\142\145\162\163\151\147\156\056\157\162\147\057\143\160\163 +\057\143\150\141\155\142\145\162\163\151\147\156\162\157\157\164 +\056\150\164\155\154\060\015\006\011\052\206\110\206\367\015\001 +\001\005\005\000\003\202\001\001\000\074\073\160\221\371\004\124 +\047\221\341\355\355\376\150\177\141\135\345\101\145\117\062\361 +\030\005\224\152\034\336\037\160\333\076\173\062\002\064\265\014 +\154\241\212\174\245\364\217\377\324\330\255\027\325\055\004\321 +\077\130\200\342\201\131\210\276\300\343\106\223\044\376\220\275 +\046\242\060\055\350\227\046\127\065\211\164\226\030\366\025\342 +\257\044\031\126\002\002\262\272\017\024\352\306\212\146\301\206 +\105\125\213\276\222\276\234\244\004\307\111\074\236\350\051\172 +\211\327\376\257\377\150\365\245\027\220\275\254\231\314\245\206 +\127\011\147\106\333\326\026\302\106\361\344\251\120\365\217\321 +\222\025\323\137\076\306\000\111\072\156\130\262\321\321\047\015 +\045\310\062\370\040\021\315\175\062\063\110\224\124\114\335\334 +\171\304\060\237\353\216\270\125\265\327\210\134\305\152\044\075 +\262\323\005\003\121\306\007\357\314\024\162\164\075\156\162\316 +\030\050\214\112\240\167\345\011\053\105\104\107\254\267\147\177 +\001\212\005\132\223\276\241\301\377\370\347\016\147\244\107\111 +\166\135\165\220\032\365\046\217\360 END -# Trust for Certificate "Staat der Nederlanden Root CA" +# Trust for Certificate "Camerfirma Global Chambersign Root" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Staat der Nederlanden Root CA" +CKA_LABEL UTF8 "Camerfirma Global Chambersign Root" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\020\035\372\077\325\013\313\273\233\265\140\014\031\125\244\032 -\364\163\072\004 +\063\233\153\024\120\044\233\125\172\001\207\162\204\331\340\057 +\303\322\330\351 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\140\204\174\132\316\333\014\324\313\247\351\376\002\306\251\300 +\305\346\173\277\006\320\117\103\355\304\172\145\212\373\153\031 END CKA_ISSUER MULTILINE_OCTAL -\060\125\061\013\060\011\006\003\125\004\006\023\002\116\114\061 -\036\060\034\006\003\125\004\012\023\025\123\164\141\141\164\040 -\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\061 -\046\060\044\006\003\125\004\003\023\035\123\164\141\141\164\040 -\144\145\162\040\116\145\144\145\162\154\141\156\144\145\156\040 -\122\157\157\164\040\103\101 +\060\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061 +\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 +\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 +\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 +\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 +\141\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060 +\036\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103 +\150\141\155\142\145\162\163\151\147\156\040\122\157\157\164 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\000\230\226\212 +\002\001\000 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -11425,261 +12492,375 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "TDC Internet Root CA" +# Certificate "NetLock Qualified (Class QA) Root" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "TDC Internet Root CA" +CKA_LABEL UTF8 "NetLock Qualified (Class QA) Root" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\103\061\013\060\011\006\003\125\004\006\023\002\104\113\061 -\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 -\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 -\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 -\157\164\040\103\101 +\060\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004 +\003\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163 +\151\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151 +\040\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165 +\163\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034 +\006\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146 +\157\100\156\145\164\154\157\143\153\056\150\165 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\103\061\013\060\011\006\003\125\004\006\023\002\104\113\061 -\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 -\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 -\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 -\157\164\040\103\101 +\060\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004 +\003\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163 +\151\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151 +\040\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165 +\163\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034 +\006\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146 +\157\100\156\145\164\154\157\143\153\056\150\165 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\072\314\245\114 +\002\001\173 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\053\060\202\003\023\240\003\002\001\002\002\004\072 -\314\245\114\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\060\103\061\013\060\011\006\003\125\004\006\023\002\104 -\113\061\025\060\023\006\003\125\004\012\023\014\124\104\103\040 -\111\156\164\145\162\156\145\164\061\035\060\033\006\003\125\004 -\013\023\024\124\104\103\040\111\156\164\145\162\156\145\164\040 -\122\157\157\164\040\103\101\060\036\027\015\060\061\060\064\060 -\065\061\066\063\063\061\067\132\027\015\062\061\060\064\060\065 -\061\067\060\063\061\067\132\060\103\061\013\060\011\006\003\125 -\004\006\023\002\104\113\061\025\060\023\006\003\125\004\012\023 -\014\124\104\103\040\111\156\164\145\162\156\145\164\061\035\060 -\033\006\003\125\004\013\023\024\124\104\103\040\111\156\164\145 -\162\156\145\164\040\122\157\157\164\040\103\101\060\202\001\042 -\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003 -\202\001\017\000\060\202\001\012\002\202\001\001\000\304\270\100 -\274\221\325\143\037\327\231\240\213\014\100\036\164\267\110\235 -\106\214\002\262\340\044\137\360\031\023\247\067\203\153\135\307 -\216\371\204\060\316\032\073\372\373\316\213\155\043\306\303\156 -\146\237\211\245\337\340\102\120\147\372\037\154\036\364\320\005 -\326\277\312\326\116\344\150\140\154\106\252\034\135\143\341\007 -\206\016\145\000\247\056\246\161\306\274\271\201\250\072\175\032 -\322\371\321\254\113\313\316\165\257\334\173\372\201\163\324\374 -\272\275\101\210\324\164\263\371\136\070\072\074\103\250\322\225 -\116\167\155\023\014\235\217\170\001\267\132\040\037\003\067\065 -\342\054\333\113\053\054\170\271\111\333\304\320\307\234\234\344 -\212\040\011\041\026\126\146\377\005\354\133\343\360\317\253\044 -\044\136\303\177\160\172\022\304\322\265\020\240\266\041\341\215 -\170\151\125\104\151\365\312\226\034\064\205\027\045\167\342\366 -\057\047\230\170\375\171\006\072\242\326\132\103\301\377\354\004 -\073\356\023\357\323\130\132\377\222\353\354\256\332\362\067\003 -\107\101\266\227\311\055\012\101\042\273\273\346\247\002\003\001 -\000\001\243\202\001\045\060\202\001\041\060\021\006\011\140\206 -\110\001\206\370\102\001\001\004\004\003\002\000\007\060\145\006 -\003\125\035\037\004\136\060\134\060\132\240\130\240\126\244\124 -\060\122\061\013\060\011\006\003\125\004\006\023\002\104\113\061 -\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 -\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 -\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 -\157\164\040\103\101\061\015\060\013\006\003\125\004\003\023\004 -\103\122\114\061\060\053\006\003\125\035\020\004\044\060\042\200 -\017\062\060\060\061\060\064\060\065\061\066\063\063\061\067\132 -\201\017\062\060\062\061\060\064\060\065\061\067\060\063\061\067 -\132\060\013\006\003\125\035\017\004\004\003\002\001\006\060\037 -\006\003\125\035\043\004\030\060\026\200\024\154\144\001\307\375 -\205\155\254\310\332\236\120\010\205\010\265\074\126\250\120\060 -\035\006\003\125\035\016\004\026\004\024\154\144\001\307\375\205 -\155\254\310\332\236\120\010\205\010\265\074\126\250\120\060\014 -\006\003\125\035\023\004\005\060\003\001\001\377\060\035\006\011 -\052\206\110\206\366\175\007\101\000\004\020\060\016\033\010\126 -\065\056\060\072\064\056\060\003\002\004\220\060\015\006\011\052 -\206\110\206\367\015\001\001\005\005\000\003\202\001\001\000\116 -\103\314\321\335\035\020\033\006\177\267\244\372\323\331\115\373 -\043\237\043\124\133\346\213\057\004\050\213\265\047\155\211\241 -\354\230\151\334\347\215\046\203\005\171\164\354\264\271\243\227 -\301\065\000\375\025\332\071\201\072\225\061\220\336\227\351\206 -\250\231\167\014\345\132\240\204\377\022\026\254\156\270\215\303 -\173\222\302\254\056\320\175\050\354\266\363\140\070\151\157\076 -\330\004\125\076\236\314\125\322\272\376\273\107\004\327\012\331 -\026\012\064\051\365\130\023\325\117\317\217\126\113\263\036\356 -\323\230\171\332\010\036\014\157\270\370\026\047\357\302\157\075 -\366\243\113\076\016\344\155\154\333\073\101\022\233\275\015\107 -\043\177\074\112\320\257\300\257\366\357\033\265\025\304\353\203 -\304\011\137\164\213\331\021\373\302\126\261\074\370\160\312\064 -\215\103\100\023\214\375\231\003\124\171\306\056\352\206\241\366 -\072\324\011\274\364\274\146\314\075\130\320\127\111\012\356\045 -\342\101\356\023\371\233\070\064\321\000\365\176\347\224\035\374 -\151\003\142\270\231\005\005\075\153\170\022\275\260\157\145 +\060\202\006\321\060\202\005\271\240\003\002\001\002\002\001\173 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125\061 +\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160\145 +\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145\164 +\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172\164 +\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030\006 +\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141\156 +\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004\003 +\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163\151 +\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151\040 +\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165\163 +\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034\006 +\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146\157 +\100\156\145\164\154\157\143\153\056\150\165\060\036\027\015\060 +\063\060\063\063\060\060\061\064\067\061\061\132\027\015\062\062 +\061\062\061\065\060\061\064\067\061\061\132\060\201\311\061\013 +\060\011\006\003\125\004\006\023\002\110\125\061\021\060\017\006 +\003\125\004\007\023\010\102\165\144\141\160\145\163\164\061\047 +\060\045\006\003\125\004\012\023\036\116\145\164\114\157\143\153 +\040\110\141\154\157\172\141\164\142\151\172\164\157\156\163\141 +\147\151\040\113\146\164\056\061\032\060\030\006\003\125\004\013 +\023\021\124\141\156\165\163\151\164\166\141\156\171\153\151\141 +\144\157\153\061\102\060\100\006\003\125\004\003\023\071\116\145 +\164\114\157\143\153\040\115\151\156\157\163\151\164\145\164\164 +\040\113\157\172\152\145\147\171\172\157\151\040\050\103\154\141 +\163\163\040\121\101\051\040\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\061\036\060\034\006\011\052\206\110 +\206\367\015\001\011\001\026\017\151\156\146\157\100\156\145\164 +\154\157\143\153\056\150\165\060\202\001\042\060\015\006\011\052 +\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000\060 +\202\001\012\002\202\001\001\000\307\122\045\262\330\075\324\204 +\125\011\247\033\275\154\271\024\364\212\002\333\166\374\152\052 +\170\253\345\167\360\156\340\214\043\147\333\245\144\231\271\335 +\001\076\157\357\055\232\074\042\360\135\311\127\240\125\101\177 +\362\103\136\130\202\123\061\145\316\036\362\046\272\000\124\036 +\257\260\274\034\344\122\214\240\062\257\267\067\261\123\147\150 +\164\147\120\366\055\056\144\336\256\046\171\337\337\231\206\253 +\253\177\205\354\240\373\200\314\364\270\014\036\223\105\143\271 +\334\270\133\233\355\133\071\324\137\142\260\247\216\174\146\070 +\054\252\261\010\143\027\147\175\314\275\263\361\303\077\317\120 +\071\355\321\031\203\025\333\207\022\047\226\267\332\352\345\235 +\274\272\352\071\117\213\357\164\232\347\305\320\322\352\206\121 +\034\344\376\144\010\050\004\171\005\353\312\305\161\016\013\357 +\253\352\354\022\021\241\030\005\062\151\321\014\054\032\075\045 +\231\077\265\174\312\155\260\256\231\231\372\010\140\347\031\302 +\362\275\121\323\314\323\002\254\301\021\014\200\316\253\334\224 +\235\153\243\071\123\072\326\205\002\003\000\305\175\243\202\002 +\300\060\202\002\274\060\022\006\003\125\035\023\001\001\377\004 +\010\060\006\001\001\377\002\001\004\060\016\006\003\125\035\017 +\001\001\377\004\004\003\002\001\006\060\202\002\165\006\011\140 +\206\110\001\206\370\102\001\015\004\202\002\146\026\202\002\142 +\106\111\107\131\105\114\105\115\041\040\105\172\145\156\040\164 +\141\156\165\163\151\164\166\141\156\171\040\141\040\116\145\164 +\114\157\143\153\040\113\146\164\056\040\115\151\156\157\163\151 +\164\145\164\164\040\123\172\157\154\147\141\154\164\141\164\141 +\163\151\040\123\172\141\142\141\154\171\172\141\164\141\142\141 +\156\040\154\145\151\162\164\040\145\154\152\141\162\141\163\157 +\153\040\141\154\141\160\152\141\156\040\153\145\163\172\165\154 +\164\056\040\101\040\155\151\156\157\163\151\164\145\164\164\040 +\145\154\145\153\164\162\157\156\151\153\165\163\040\141\154\141 +\151\162\141\163\040\152\157\147\150\141\164\141\163\040\145\162 +\166\145\156\171\145\163\165\154\145\163\145\156\145\153\054\040 +\166\141\154\141\155\151\156\164\040\145\154\146\157\147\141\144 +\141\163\141\156\141\153\040\146\145\154\164\145\164\145\154\145 +\040\141\040\115\151\156\157\163\151\164\145\164\164\040\123\172 +\157\154\147\141\154\164\141\164\141\163\151\040\123\172\141\142 +\141\154\171\172\141\164\142\141\156\054\040\141\172\040\101\154 +\164\141\154\141\156\157\163\040\123\172\145\162\172\157\144\145 +\163\151\040\106\145\154\164\145\164\145\154\145\153\142\145\156 +\040\145\154\157\151\162\164\040\145\154\154\145\156\157\162\172 +\145\163\151\040\145\154\152\141\162\141\163\040\155\145\147\164 +\145\164\145\154\145\056\040\101\040\144\157\153\165\155\145\156 +\164\165\155\157\153\040\155\145\147\164\141\154\141\154\150\141 +\164\157\153\040\141\040\150\164\164\160\163\072\057\057\167\167 +\167\056\156\145\164\154\157\143\153\056\150\165\057\144\157\143 +\163\057\040\143\151\155\145\156\040\166\141\147\171\040\153\145 +\162\150\145\164\157\153\040\141\172\040\151\156\146\157\100\156 +\145\164\154\157\143\153\056\156\145\164\040\145\055\155\141\151 +\154\040\143\151\155\145\156\056\040\127\101\122\116\111\116\107 +\041\040\124\150\145\040\151\163\163\165\141\156\143\145\040\141 +\156\144\040\164\150\145\040\165\163\145\040\157\146\040\164\150 +\151\163\040\143\145\162\164\151\146\151\143\141\164\145\040\141 +\162\145\040\163\165\142\152\145\143\164\040\164\157\040\164\150 +\145\040\116\145\164\114\157\143\153\040\121\165\141\154\151\146 +\151\145\144\040\103\120\123\040\141\166\141\151\154\141\142\154 +\145\040\141\164\040\150\164\164\160\163\072\057\057\167\167\167 +\056\156\145\164\154\157\143\153\056\150\165\057\144\157\143\163 +\057\040\157\162\040\142\171\040\145\055\155\141\151\154\040\141 +\164\040\151\156\146\157\100\156\145\164\154\157\143\153\056\156 +\145\164\060\035\006\003\125\035\016\004\026\004\024\011\152\142 +\026\222\260\132\273\125\016\313\165\062\072\062\345\262\041\311 +\050\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 +\003\202\001\001\000\221\152\120\234\333\170\201\233\077\213\102 +\343\073\374\246\303\356\103\340\317\363\342\200\065\111\105\166 +\002\342\343\057\005\305\361\052\347\300\101\063\306\266\233\320 +\063\071\315\300\333\241\255\154\067\002\114\130\101\073\362\227 +\222\306\110\250\315\345\212\071\211\141\371\122\227\351\275\366 +\371\224\164\350\161\016\274\167\206\303\006\314\132\174\112\176 +\064\120\060\056\373\177\062\232\215\075\363\040\133\370\152\312 +\206\363\061\114\054\131\200\002\175\376\070\311\060\165\034\267 +\125\343\274\237\272\250\155\204\050\005\165\263\213\015\300\221 +\124\041\347\246\013\264\231\365\121\101\334\315\243\107\042\331 +\307\001\201\304\334\107\117\046\352\037\355\333\315\015\230\364 +\243\234\264\163\062\112\226\231\376\274\177\310\045\130\370\130 +\363\166\146\211\124\244\246\076\304\120\134\272\211\030\202\165 +\110\041\322\117\023\350\140\176\007\166\333\020\265\121\346\252 +\271\150\252\315\366\235\220\165\022\352\070\032\312\104\350\267 +\231\247\052\150\225\146\225\253\255\357\211\313\140\251\006\022 +\306\224\107\351\050 END -# Trust for Certificate "TDC Internet Root CA" +# Trust for Certificate "NetLock Qualified (Class QA) Root" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "TDC Internet Root CA" +CKA_LABEL UTF8 "NetLock Qualified (Class QA) Root" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\041\374\275\216\177\154\257\005\033\321\263\103\354\250\347\141 -\107\362\017\212 +\001\150\227\341\240\270\362\303\261\064\146\134\040\247\047\267 +\241\130\342\217 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\221\364\003\125\040\241\370\143\054\142\336\254\373\141\034\216 +\324\200\145\150\044\371\211\042\050\333\365\244\232\027\217\024 END CKA_ISSUER MULTILINE_OCTAL -\060\103\061\013\060\011\006\003\125\004\006\023\002\104\113\061 -\025\060\023\006\003\125\004\012\023\014\124\104\103\040\111\156 -\164\145\162\156\145\164\061\035\060\033\006\003\125\004\013\023 -\024\124\104\103\040\111\156\164\145\162\156\145\164\040\122\157 -\157\164\040\103\101 +\060\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004 +\003\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163 +\151\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151 +\040\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165 +\163\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034 +\006\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146 +\157\100\156\145\164\154\157\143\153\056\150\165 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\072\314\245\114 +\002\001\173 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "TDC OCES Root CA" +# Certificate "NetLock Notary (Class A) Root" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "TDC OCES Root CA" +CKA_LABEL UTF8 "NetLock Notary (Class A) Root" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\061\061\013\060\011\006\003\125\004\006\023\002\104\113\061 -\014\060\012\006\003\125\004\012\023\003\124\104\103\061\024\060 -\022\006\003\125\004\003\023\013\124\104\103\040\117\103\105\123 -\040\103\101 +\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 +\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 +\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 +\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 +\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 +\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 +\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 +\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 +\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 +\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 +\144\157 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\061\061\013\060\011\006\003\125\004\006\023\002\104\113\061 -\014\060\012\006\003\125\004\012\023\003\124\104\103\061\024\060 -\022\006\003\125\004\003\023\013\124\104\103\040\117\103\105\123 -\040\103\101 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\076\110\275\304 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\005\031\060\202\004\001\240\003\002\001\002\002\004\076 -\110\275\304\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\060\061\061\013\060\011\006\003\125\004\006\023\002\104 -\113\061\014\060\012\006\003\125\004\012\023\003\124\104\103\061 -\024\060\022\006\003\125\004\003\023\013\124\104\103\040\117\103 -\105\123\040\103\101\060\036\027\015\060\063\060\062\061\061\060 -\070\063\071\063\060\132\027\015\063\067\060\062\061\061\060\071 -\060\071\063\060\132\060\061\061\013\060\011\006\003\125\004\006 -\023\002\104\113\061\014\060\012\006\003\125\004\012\023\003\124 -\104\103\061\024\060\022\006\003\125\004\003\023\013\124\104\103 -\040\117\103\105\123\040\103\101\060\202\001\042\060\015\006\011 -\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000 -\060\202\001\012\002\202\001\001\000\254\142\366\141\040\262\317 -\300\306\205\327\343\171\346\314\355\362\071\222\244\227\056\144 -\243\204\133\207\234\114\375\244\363\304\137\041\275\126\020\353 -\333\056\141\354\223\151\343\243\314\275\231\303\005\374\006\270 -\312\066\034\376\220\216\111\114\304\126\232\057\126\274\317\173 -\014\361\157\107\246\015\103\115\342\351\035\071\064\315\215\054 -\331\022\230\371\343\341\301\112\174\206\070\304\251\304\141\210 -\322\136\257\032\046\115\325\344\240\042\107\204\331\144\267\031 -\226\374\354\031\344\262\227\046\116\112\114\313\217\044\213\124 -\030\034\110\141\173\325\210\150\332\135\265\352\315\032\060\301 -\200\203\166\120\252\117\321\324\335\070\360\357\026\364\341\014 -\120\006\277\352\373\172\111\241\050\053\034\366\374\025\062\243 -\164\152\217\251\303\142\051\161\061\345\073\244\140\027\136\164 -\346\332\023\355\351\037\037\033\321\262\150\163\306\020\064\165 -\106\020\020\343\220\000\166\100\313\213\267\103\011\041\377\253 -\116\223\306\130\351\245\202\333\167\304\072\231\261\162\225\111 -\004\360\267\053\372\173\131\216\335\002\003\001\000\001\243\202 -\002\067\060\202\002\063\060\017\006\003\125\035\023\001\001\377 -\004\005\060\003\001\001\377\060\016\006\003\125\035\017\001\001 -\377\004\004\003\002\001\006\060\201\354\006\003\125\035\040\004 -\201\344\060\201\341\060\201\336\006\010\052\201\120\201\051\001 -\001\001\060\201\321\060\057\006\010\053\006\001\005\005\007\002 -\001\026\043\150\164\164\160\072\057\057\167\167\167\056\143\145 -\162\164\151\146\151\153\141\164\056\144\153\057\162\145\160\157 -\163\151\164\157\162\171\060\201\235\006\010\053\006\001\005\005 -\007\002\002\060\201\220\060\012\026\003\124\104\103\060\003\002 -\001\001\032\201\201\103\145\162\164\151\146\151\153\141\164\145 -\162\040\146\162\141\040\144\145\156\156\145\040\103\101\040\165 -\144\163\164\145\144\145\163\040\165\156\144\145\162\040\117\111 -\104\040\061\056\062\056\062\060\070\056\061\066\071\056\061\056 -\061\056\061\056\040\103\145\162\164\151\146\151\143\141\164\145 -\163\040\146\162\157\155\040\164\150\151\163\040\103\101\040\141 -\162\145\040\151\163\163\165\145\144\040\165\156\144\145\162\040 -\117\111\104\040\061\056\062\056\062\060\070\056\061\066\071\056 -\061\056\061\056\061\056\060\021\006\011\140\206\110\001\206\370 -\102\001\001\004\004\003\002\000\007\060\201\201\006\003\125\035 -\037\004\172\060\170\060\110\240\106\240\104\244\102\060\100\061 -\013\060\011\006\003\125\004\006\023\002\104\113\061\014\060\012 -\006\003\125\004\012\023\003\124\104\103\061\024\060\022\006\003 -\125\004\003\023\013\124\104\103\040\117\103\105\123\040\103\101 -\061\015\060\013\006\003\125\004\003\023\004\103\122\114\061\060 -\054\240\052\240\050\206\046\150\164\164\160\072\057\057\143\162 -\154\056\157\143\145\163\056\143\145\162\164\151\146\151\153\141 -\164\056\144\153\057\157\143\145\163\056\143\162\154\060\053\006 -\003\125\035\020\004\044\060\042\200\017\062\060\060\063\060\062 -\061\061\060\070\063\071\063\060\132\201\017\062\060\063\067\060 -\062\061\061\060\071\060\071\063\060\132\060\037\006\003\125\035 -\043\004\030\060\026\200\024\140\265\205\354\126\144\176\022\031 -\047\147\035\120\025\113\163\256\073\371\022\060\035\006\003\125 -\035\016\004\026\004\024\140\265\205\354\126\144\176\022\031\047 -\147\035\120\025\113\163\256\073\371\022\060\035\006\011\052\206 -\110\206\366\175\007\101\000\004\020\060\016\033\010\126\066\056 -\060\072\064\056\060\003\002\004\220\060\015\006\011\052\206\110 -\206\367\015\001\001\005\005\000\003\202\001\001\000\012\272\046 -\046\106\323\163\250\011\363\153\013\060\231\375\212\341\127\172 -\021\323\270\224\327\011\020\156\243\261\070\003\321\266\362\103 -\101\051\142\247\162\330\373\174\005\346\061\160\047\124\030\116 -\212\174\116\345\321\312\214\170\210\317\033\323\220\213\346\043 -\370\013\016\063\103\175\234\342\012\031\217\311\001\076\164\135 -\164\311\213\034\003\345\030\310\001\114\077\313\227\005\135\230 -\161\246\230\157\266\174\275\067\177\276\341\223\045\155\157\360 -\012\255\027\030\341\003\274\007\051\310\255\046\350\370\141\360 -\375\041\011\176\232\216\251\150\175\110\142\162\275\000\352\001 -\231\270\006\202\121\201\116\361\365\264\221\124\271\043\172\000 -\232\237\135\215\340\074\144\271\032\022\222\052\307\202\104\162 -\071\334\342\074\306\330\125\365\025\116\310\005\016\333\306\320 -\142\246\354\025\264\265\002\202\333\254\214\242\201\360\233\231 -\061\365\040\040\250\210\141\012\007\237\224\374\320\327\033\314 -\056\027\363\004\047\166\147\353\124\203\375\244\220\176\006\075 -\004\243\103\055\332\374\013\142\352\057\137\142\123 +\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 +\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 +\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 +\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 +\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 +\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 +\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 +\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 +\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 +\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 +\144\157 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\002\001\003 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\006\175\060\202\005\145\240\003\002\001\002\002\002\001 +\003\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000 +\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 +\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 +\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 +\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 +\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 +\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 +\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 +\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 +\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 +\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 +\144\157\060\036\027\015\071\071\060\062\062\064\062\063\061\064 +\064\067\132\027\015\061\071\060\062\061\071\062\063\061\064\064 +\067\132\060\201\257\061\013\060\011\006\003\125\004\006\023\002 +\110\125\061\020\060\016\006\003\125\004\010\023\007\110\165\156 +\147\141\162\171\061\021\060\017\006\003\125\004\007\023\010\102 +\165\144\141\160\145\163\164\061\047\060\045\006\003\125\004\012 +\023\036\116\145\164\114\157\143\153\040\110\141\154\157\172\141 +\164\142\151\172\164\157\156\163\141\147\151\040\113\146\164\056 +\061\032\060\030\006\003\125\004\013\023\021\124\141\156\165\163 +\151\164\166\141\156\171\153\151\141\144\157\153\061\066\060\064 +\006\003\125\004\003\023\055\116\145\164\114\157\143\153\040\113 +\157\172\152\145\147\171\172\157\151\040\050\103\154\141\163\163 +\040\101\051\040\124\141\156\165\163\151\164\166\141\156\171\153 +\151\141\144\157\060\202\001\042\060\015\006\011\052\206\110\206 +\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012 +\002\202\001\001\000\274\164\214\017\273\114\364\067\036\251\005 +\202\330\346\341\154\160\352\170\265\156\321\070\104\015\250\203 +\316\135\322\326\325\201\305\324\113\347\133\224\160\046\333\073 +\235\152\114\142\367\161\363\144\326\141\073\075\353\163\243\067 +\331\317\352\214\222\073\315\367\007\334\146\164\227\364\105\042 +\335\364\134\340\277\155\363\276\145\063\344\025\072\277\333\230 +\220\125\070\304\355\246\125\143\013\260\170\004\364\343\156\301 +\077\216\374\121\170\037\222\236\203\302\376\331\260\251\311\274 +\132\000\377\251\250\230\164\373\366\054\076\025\071\015\266\004 +\125\250\016\230\040\102\263\261\045\255\176\232\157\135\123\261 +\253\014\374\353\340\363\172\263\250\263\377\106\366\143\242\330 +\072\230\173\266\254\205\377\260\045\117\164\143\347\023\007\245 +\012\217\005\367\300\144\157\176\247\047\200\226\336\324\056\206 +\140\307\153\053\136\163\173\027\347\221\077\144\014\330\113\042 +\064\053\233\062\362\110\037\237\241\012\204\172\342\302\255\227 +\075\216\325\301\371\126\243\120\351\306\264\372\230\242\356\225 +\346\052\003\214\337\002\003\001\000\001\243\202\002\237\060\202 +\002\233\060\016\006\003\125\035\017\001\001\377\004\004\003\002 +\000\006\060\022\006\003\125\035\023\001\001\377\004\010\060\006 +\001\001\377\002\001\004\060\021\006\011\140\206\110\001\206\370 +\102\001\001\004\004\003\002\000\007\060\202\002\140\006\011\140 +\206\110\001\206\370\102\001\015\004\202\002\121\026\202\002\115 +\106\111\107\131\105\114\105\115\041\040\105\172\145\156\040\164 +\141\156\165\163\151\164\166\141\156\171\040\141\040\116\145\164 +\114\157\143\153\040\113\146\164\056\040\101\154\164\141\154\141 +\156\157\163\040\123\172\157\154\147\141\154\164\141\164\141\163 +\151\040\106\145\154\164\145\164\145\154\145\151\142\145\156\040 +\154\145\151\162\164\040\145\154\152\141\162\141\163\157\153\040 +\141\154\141\160\152\141\156\040\153\145\163\172\165\154\164\056 +\040\101\040\150\151\164\145\154\145\163\151\164\145\163\040\146 +\157\154\171\141\155\141\164\141\164\040\141\040\116\145\164\114 +\157\143\153\040\113\146\164\056\040\164\145\162\155\145\153\146 +\145\154\145\154\157\163\163\145\147\055\142\151\172\164\157\163 +\151\164\141\163\141\040\166\145\144\151\056\040\101\040\144\151 +\147\151\164\141\154\151\163\040\141\154\141\151\162\141\163\040 +\145\154\146\157\147\141\144\141\163\141\156\141\153\040\146\145 +\154\164\145\164\145\154\145\040\141\172\040\145\154\157\151\162 +\164\040\145\154\154\145\156\157\162\172\145\163\151\040\145\154 +\152\141\162\141\163\040\155\145\147\164\145\164\145\154\145\056 +\040\101\172\040\145\154\152\141\162\141\163\040\154\145\151\162 +\141\163\141\040\155\145\147\164\141\154\141\154\150\141\164\157 +\040\141\040\116\145\164\114\157\143\153\040\113\146\164\056\040 +\111\156\164\145\162\156\145\164\040\150\157\156\154\141\160\152 +\141\156\040\141\040\150\164\164\160\163\072\057\057\167\167\167 +\056\156\145\164\154\157\143\153\056\156\145\164\057\144\157\143 +\163\040\143\151\155\145\156\040\166\141\147\171\040\153\145\162 +\150\145\164\157\040\141\172\040\145\154\154\145\156\157\162\172 +\145\163\100\156\145\164\154\157\143\153\056\156\145\164\040\145 +\055\155\141\151\154\040\143\151\155\145\156\056\040\111\115\120 +\117\122\124\101\116\124\041\040\124\150\145\040\151\163\163\165 +\141\156\143\145\040\141\156\144\040\164\150\145\040\165\163\145 +\040\157\146\040\164\150\151\163\040\143\145\162\164\151\146\151 +\143\141\164\145\040\151\163\040\163\165\142\152\145\143\164\040 +\164\157\040\164\150\145\040\116\145\164\114\157\143\153\040\103 +\120\123\040\141\166\141\151\154\141\142\154\145\040\141\164\040 +\150\164\164\160\163\072\057\057\167\167\167\056\156\145\164\154 +\157\143\153\056\156\145\164\057\144\157\143\163\040\157\162\040 +\142\171\040\145\055\155\141\151\154\040\141\164\040\143\160\163 +\100\156\145\164\154\157\143\153\056\156\145\164\056\060\015\006 +\011\052\206\110\206\367\015\001\001\004\005\000\003\202\001\001 +\000\110\044\106\367\272\126\157\372\310\050\003\100\116\345\061 +\071\153\046\153\123\177\333\337\337\363\161\075\046\300\024\016 +\306\147\173\043\250\014\163\335\001\273\306\312\156\067\071\125 +\325\307\214\126\040\016\050\012\016\322\052\244\260\111\122\306 +\070\007\376\276\012\011\214\321\230\317\312\332\024\061\241\117 +\322\071\374\017\021\054\103\303\335\253\223\307\125\076\107\174 +\030\032\000\334\363\173\330\362\177\122\154\040\364\013\137\151 +\122\364\356\370\262\051\140\353\343\111\061\041\015\326\265\020 +\101\342\101\011\154\342\032\232\126\113\167\002\366\240\233\232 +\047\207\350\125\051\161\302\220\237\105\170\032\341\025\144\075 +\320\016\330\240\166\237\256\305\320\056\352\326\017\126\354\144 +\177\132\233\024\130\001\047\176\023\120\307\153\052\346\150\074 +\277\134\240\012\033\341\016\172\351\342\200\303\351\351\366\375 +\154\021\236\320\345\050\047\053\124\062\102\024\202\165\346\112 +\360\053\146\165\143\214\242\373\004\076\203\016\233\066\360\030 +\344\046\040\303\214\360\050\007\255\074\027\146\210\265\375\266 +\210 END -# Trust for Certificate "TDC OCES Root CA" +# Trust for Certificate "NetLock Notary (Class A) Root" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "TDC OCES Root CA" +CKA_LABEL UTF8 "NetLock Notary (Class A) Root" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\207\201\302\132\226\275\302\373\114\145\006\117\371\071\013\046 -\004\212\016\001 +\254\355\137\145\123\375\045\316\001\137\037\172\110\073\152\164 +\237\141\170\306 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\223\177\220\034\355\204\147\027\244\145\137\233\313\060\002\227 +\206\070\155\136\111\143\154\205\134\333\155\334\224\267\320\367 END CKA_ISSUER MULTILINE_OCTAL -\060\061\061\013\060\011\006\003\125\004\006\023\002\104\113\061 -\014\060\012\006\003\125\004\012\023\003\124\104\103\061\024\060 -\022\006\003\125\004\003\023\013\124\104\103\040\117\103\105\123 -\040\103\101 +\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 +\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 +\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 +\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 +\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 +\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 +\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 +\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 +\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 +\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 +\144\157 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\076\110\275\304 +\002\002\001\003 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -11687,1419 +12868,1492 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "UTN DATACorp SGC Root CA" +# Certificate "NetLock Business (Class B) Root" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN DATACorp SGC Root CA" +CKA_LABEL UTF8 "NetLock Business (Class B) Root" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\223\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\033\060\031\006\003\125 -\004\003\023\022\125\124\116\040\055\040\104\101\124\101\103\157 -\162\160\040\123\107\103 +\060\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004 +\003\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164 +\151\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165 +\163\151\164\166\141\156\171\153\151\141\144\157 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\223\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\033\060\031\006\003\125 -\004\003\023\022\125\124\116\040\055\040\104\101\124\101\103\157 -\162\160\040\123\107\103 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\041\264\021\323\052\150\006\251 -\255\151 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\004\136\060\202\003\106\240\003\002\001\002\002\020\104 -\276\014\213\120\000\041\264\021\323\052\150\006\251\255\151\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 -\223\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 -\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 -\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 -\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 -\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 -\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 -\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 -\165\163\164\056\143\157\155\061\033\060\031\006\003\125\004\003 -\023\022\125\124\116\040\055\040\104\101\124\101\103\157\162\160 -\040\123\107\103\060\036\027\015\071\071\060\066\062\064\061\070 -\065\067\062\061\132\027\015\061\071\060\066\062\064\061\071\060 -\066\063\060\132\060\201\223\061\013\060\011\006\003\125\004\006 -\023\002\125\123\061\013\060\011\006\003\125\004\010\023\002\125 -\124\061\027\060\025\006\003\125\004\007\023\016\123\141\154\164 -\040\114\141\153\145\040\103\151\164\171\061\036\060\034\006\003 -\125\004\012\023\025\124\150\145\040\125\123\105\122\124\122\125 -\123\124\040\116\145\164\167\157\162\153\061\041\060\037\006\003 -\125\004\013\023\030\150\164\164\160\072\057\057\167\167\167\056 -\165\163\145\162\164\162\165\163\164\056\143\157\155\061\033\060 -\031\006\003\125\004\003\023\022\125\124\116\040\055\040\104\101 -\124\101\103\157\162\160\040\123\107\103\060\202\001\042\060\015 -\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001 -\017\000\060\202\001\012\002\202\001\001\000\337\356\130\020\242 -\053\156\125\304\216\277\056\106\011\347\340\010\017\056\053\172 -\023\224\033\275\366\266\200\216\145\005\223\000\036\274\257\342 -\017\216\031\015\022\107\354\254\255\243\372\056\160\370\336\156 -\373\126\102\025\236\056\134\357\043\336\041\271\005\166\047\031 -\017\117\326\303\234\264\276\224\031\143\362\246\021\012\353\123 -\110\234\276\362\051\073\026\350\032\240\114\246\311\364\030\131 -\150\300\160\362\123\000\300\136\120\202\245\126\157\066\371\112 -\340\104\206\240\115\116\326\107\156\111\112\313\147\327\246\304 -\005\271\216\036\364\374\377\315\347\066\340\234\005\154\262\063 -\042\025\320\264\340\314\027\300\262\300\364\376\062\077\051\052 -\225\173\330\362\247\116\017\124\174\241\015\200\263\011\003\301 -\377\134\335\136\232\076\274\256\274\107\212\152\256\161\312\037 -\261\052\270\137\102\005\013\354\106\060\321\162\013\312\351\126 -\155\365\357\337\170\276\141\272\262\245\256\004\114\274\250\254 -\151\025\227\275\357\353\264\214\277\065\370\324\303\321\050\016 -\134\072\237\160\030\063\040\167\304\242\257\002\003\001\000\001 -\243\201\253\060\201\250\060\013\006\003\125\035\017\004\004\003 -\002\001\306\060\017\006\003\125\035\023\001\001\377\004\005\060 -\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024\123 -\062\321\263\317\177\372\340\361\240\135\205\116\222\322\236\105 -\035\264\117\060\075\006\003\125\035\037\004\066\060\064\060\062 -\240\060\240\056\206\054\150\164\164\160\072\057\057\143\162\154 -\056\165\163\145\162\164\162\165\163\164\056\143\157\155\057\125 -\124\116\055\104\101\124\101\103\157\162\160\123\107\103\056\143 -\162\154\060\052\006\003\125\035\045\004\043\060\041\006\010\053 -\006\001\005\005\007\003\001\006\012\053\006\001\004\001\202\067 -\012\003\003\006\011\140\206\110\001\206\370\102\004\001\060\015 -\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202\001 -\001\000\047\065\227\000\212\213\050\275\306\063\060\036\051\374 -\342\367\325\230\324\100\273\140\312\277\253\027\054\011\066\177 -\120\372\101\334\256\226\072\012\043\076\211\131\311\243\007\355 -\033\067\255\374\174\276\121\111\132\336\072\012\124\010\026\105 -\302\231\261\207\315\214\150\340\151\003\351\304\116\230\262\073 -\214\026\263\016\240\014\230\120\233\223\251\160\011\310\054\243 -\217\337\002\344\340\161\072\361\264\043\162\240\252\001\337\337 -\230\076\024\120\240\061\046\275\050\351\132\060\046\165\371\173 -\140\034\215\363\315\120\046\155\004\047\232\337\325\015\105\107 -\051\153\054\346\166\331\251\051\175\062\335\311\066\074\275\256 -\065\361\021\236\035\273\220\077\022\107\116\216\327\176\017\142 -\163\035\122\046\070\034\030\111\375\060\164\232\304\345\042\057 -\330\300\215\355\221\172\114\000\217\162\177\135\332\335\033\213 -\105\153\347\335\151\227\250\305\126\114\017\014\366\237\172\221 -\067\366\227\202\340\335\161\151\377\166\077\140\115\074\317\367 -\231\371\306\127\364\311\125\071\170\272\054\171\311\246\210\053 -\364\010 +\060\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004 +\003\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164 +\151\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165 +\163\151\164\166\141\156\171\153\151\141\144\157 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\151 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\005\113\060\202\004\264\240\003\002\001\002\002\001\151 +\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 +\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125\061 +\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160\145 +\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145\164 +\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172\164 +\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030\006 +\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141\156 +\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004\003 +\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164\151 +\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165\163 +\151\164\166\141\156\171\153\151\141\144\157\060\036\027\015\071 +\071\060\062\062\065\061\064\061\060\062\062\132\027\015\061\071 +\060\062\062\060\061\064\061\060\062\062\132\060\201\231\061\013 +\060\011\006\003\125\004\006\023\002\110\125\061\021\060\017\006 +\003\125\004\007\023\010\102\165\144\141\160\145\163\164\061\047 +\060\045\006\003\125\004\012\023\036\116\145\164\114\157\143\153 +\040\110\141\154\157\172\141\164\142\151\172\164\157\156\163\141 +\147\151\040\113\146\164\056\061\032\060\030\006\003\125\004\013 +\023\021\124\141\156\165\163\151\164\166\141\156\171\153\151\141 +\144\157\153\061\062\060\060\006\003\125\004\003\023\051\116\145 +\164\114\157\143\153\040\125\172\154\145\164\151\040\050\103\154 +\141\163\163\040\102\051\040\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\060\201\237\060\015\006\011\052\206 +\110\206\367\015\001\001\001\005\000\003\201\215\000\060\201\211 +\002\201\201\000\261\352\004\354\040\240\043\302\217\070\140\317 +\307\106\263\325\033\376\373\271\231\236\004\334\034\177\214\112 +\201\230\356\244\324\312\212\027\271\042\177\203\012\165\114\233 +\300\151\330\144\071\243\355\222\243\375\133\134\164\032\300\107 +\312\072\151\166\232\272\342\104\027\374\114\243\325\376\270\227 +\210\257\210\003\211\037\244\362\004\076\310\007\013\346\371\263 +\057\172\142\024\011\106\024\312\144\365\213\200\265\142\250\330 +\153\326\161\223\055\263\277\011\124\130\355\006\353\250\173\334 +\103\261\241\151\002\003\001\000\001\243\202\002\237\060\202\002 +\233\060\022\006\003\125\035\023\001\001\377\004\010\060\006\001 +\001\377\002\001\004\060\016\006\003\125\035\017\001\001\377\004 +\004\003\002\000\006\060\021\006\011\140\206\110\001\206\370\102 +\001\001\004\004\003\002\000\007\060\202\002\140\006\011\140\206 +\110\001\206\370\102\001\015\004\202\002\121\026\202\002\115\106 +\111\107\131\105\114\105\115\041\040\105\172\145\156\040\164\141 +\156\165\163\151\164\166\141\156\171\040\141\040\116\145\164\114 +\157\143\153\040\113\146\164\056\040\101\154\164\141\154\141\156 +\157\163\040\123\172\157\154\147\141\154\164\141\164\141\163\151 +\040\106\145\154\164\145\164\145\154\145\151\142\145\156\040\154 +\145\151\162\164\040\145\154\152\141\162\141\163\157\153\040\141 +\154\141\160\152\141\156\040\153\145\163\172\165\154\164\056\040 +\101\040\150\151\164\145\154\145\163\151\164\145\163\040\146\157 +\154\171\141\155\141\164\141\164\040\141\040\116\145\164\114\157 +\143\153\040\113\146\164\056\040\164\145\162\155\145\153\146\145 +\154\145\154\157\163\163\145\147\055\142\151\172\164\157\163\151 +\164\141\163\141\040\166\145\144\151\056\040\101\040\144\151\147 +\151\164\141\154\151\163\040\141\154\141\151\162\141\163\040\145 +\154\146\157\147\141\144\141\163\141\156\141\153\040\146\145\154 +\164\145\164\145\154\145\040\141\172\040\145\154\157\151\162\164 +\040\145\154\154\145\156\157\162\172\145\163\151\040\145\154\152 +\141\162\141\163\040\155\145\147\164\145\164\145\154\145\056\040 +\101\172\040\145\154\152\141\162\141\163\040\154\145\151\162\141 +\163\141\040\155\145\147\164\141\154\141\154\150\141\164\157\040 +\141\040\116\145\164\114\157\143\153\040\113\146\164\056\040\111 +\156\164\145\162\156\145\164\040\150\157\156\154\141\160\152\141 +\156\040\141\040\150\164\164\160\163\072\057\057\167\167\167\056 +\156\145\164\154\157\143\153\056\156\145\164\057\144\157\143\163 +\040\143\151\155\145\156\040\166\141\147\171\040\153\145\162\150 +\145\164\157\040\141\172\040\145\154\154\145\156\157\162\172\145 +\163\100\156\145\164\154\157\143\153\056\156\145\164\040\145\055 +\155\141\151\154\040\143\151\155\145\156\056\040\111\115\120\117 +\122\124\101\116\124\041\040\124\150\145\040\151\163\163\165\141 +\156\143\145\040\141\156\144\040\164\150\145\040\165\163\145\040 +\157\146\040\164\150\151\163\040\143\145\162\164\151\146\151\143 +\141\164\145\040\151\163\040\163\165\142\152\145\143\164\040\164 +\157\040\164\150\145\040\116\145\164\114\157\143\153\040\103\120 +\123\040\141\166\141\151\154\141\142\154\145\040\141\164\040\150 +\164\164\160\163\072\057\057\167\167\167\056\156\145\164\154\157 +\143\153\056\156\145\164\057\144\157\143\163\040\157\162\040\142 +\171\040\145\055\155\141\151\154\040\141\164\040\143\160\163\100 +\156\145\164\154\157\143\153\056\156\145\164\056\060\015\006\011 +\052\206\110\206\367\015\001\001\004\005\000\003\201\201\000\004 +\333\256\214\027\257\370\016\220\061\116\315\076\011\300\155\072 +\260\370\063\114\107\114\343\165\210\020\227\254\260\070\025\221 +\306\051\226\314\041\300\155\074\245\164\317\330\202\245\071\303 +\145\343\102\160\273\042\220\343\175\333\065\166\341\240\265\332 +\237\160\156\223\032\060\071\035\060\333\056\343\174\262\221\262 +\321\067\051\372\271\326\027\134\107\117\343\035\070\353\237\325 +\173\225\250\050\236\025\112\321\321\320\053\000\227\240\342\222 +\066\053\143\254\130\001\153\063\051\120\206\203\361\001\110 END -# Trust for Certificate "UTN DATACorp SGC Root CA" +# Trust for Certificate "NetLock Business (Class B) Root" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN DATACorp SGC Root CA" +CKA_LABEL UTF8 "NetLock Business (Class B) Root" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\130\021\237\016\022\202\207\352\120\375\331\207\105\157\117\170 -\334\372\326\324 +\207\237\113\356\005\337\230\130\073\343\140\326\063\347\015\077 +\376\230\161\257 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\263\245\076\167\041\155\254\112\300\311\373\325\101\075\312\006 +\071\026\252\271\152\101\341\024\151\337\236\154\073\162\334\266 END CKA_ISSUER MULTILINE_OCTAL -\060\201\223\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\033\060\031\006\003\125 -\004\003\023\022\125\124\116\040\055\040\104\101\124\101\103\157 -\162\160\040\123\107\103 +\060\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004 +\003\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164 +\151\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165 +\163\151\164\166\141\156\171\153\151\141\144\157 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\041\264\021\323\052\150\006\251 -\255\151 +\002\001\151 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_VALID -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "UTN USERFirst Email Root CA" +# Certificate "NetLock Express (Class C) Root" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN USERFirst Email Root CA" +CKA_LABEL UTF8 "NetLock Express (Class C) Root" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 -\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 -\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 -\154 +\060\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004 +\003\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145 +\163\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141 +\156\165\163\151\164\166\141\156\171\153\151\141\144\157 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 -\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 -\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 -\154 +\060\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004 +\003\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145 +\163\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141 +\156\165\163\151\164\166\141\156\171\153\151\141\144\157 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\045\045\147 -\311\211 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\004\242\060\202\003\212\240\003\002\001\002\002\020\104 -\276\014\213\120\000\044\264\021\323\066\045\045\147\311\211\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 -\256\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 -\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 -\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 -\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 -\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 -\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 -\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 -\165\163\164\056\143\157\155\061\066\060\064\006\003\125\004\003 -\023\055\125\124\116\055\125\123\105\122\106\151\162\163\164\055 -\103\154\151\145\156\164\040\101\165\164\150\145\156\164\151\143 -\141\164\151\157\156\040\141\156\144\040\105\155\141\151\154\060 -\036\027\015\071\071\060\067\060\071\061\067\062\070\065\060\132 -\027\015\061\071\060\067\060\071\061\067\063\066\065\070\132\060 -\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025 -\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145 -\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025 -\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145 -\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030 -\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164 -\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125\004 -\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163\164 -\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164\151 -\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151\154 -\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001 -\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001 -\000\262\071\205\244\362\175\253\101\073\142\106\067\256\315\301 -\140\165\274\071\145\371\112\032\107\242\271\314\110\314\152\230 -\325\115\065\031\271\244\102\345\316\111\342\212\057\036\174\322 -\061\007\307\116\264\203\144\235\056\051\325\242\144\304\205\275 -\205\121\065\171\244\116\150\220\173\034\172\244\222\250\027\362 -\230\025\362\223\314\311\244\062\225\273\014\117\060\275\230\240 -\013\213\345\156\033\242\106\372\170\274\242\157\253\131\136\245 -\057\317\312\332\155\252\057\353\254\241\263\152\252\267\056\147 -\065\213\171\341\036\151\210\342\346\106\315\240\245\352\276\013 -\316\166\072\172\016\233\352\374\332\047\133\075\163\037\042\346 -\110\141\306\114\363\151\261\250\056\033\266\324\061\040\054\274 -\202\212\216\244\016\245\327\211\103\374\026\132\257\035\161\327 -\021\131\332\272\207\015\257\372\363\341\302\360\244\305\147\214 -\326\326\124\072\336\012\244\272\003\167\263\145\310\375\036\323 -\164\142\252\030\312\150\223\036\241\205\176\365\107\145\313\370 -\115\127\050\164\322\064\377\060\266\356\366\142\060\024\214\054 -\353\002\003\001\000\001\243\201\271\060\201\266\060\013\006\003 -\125\035\017\004\004\003\002\001\306\060\017\006\003\125\035\023 -\001\001\377\004\005\060\003\001\001\377\060\035\006\003\125\035 -\016\004\026\004\024\211\202\147\175\304\235\046\160\000\113\264 -\120\110\174\336\075\256\004\156\175\060\130\006\003\125\035\037 -\004\121\060\117\060\115\240\113\240\111\206\107\150\164\164\160 -\072\057\057\143\162\154\056\165\163\145\162\164\162\165\163\164 -\056\143\157\155\057\125\124\116\055\125\123\105\122\106\151\162 -\163\164\055\103\154\151\145\156\164\101\165\164\150\145\156\164 -\151\143\141\164\151\157\156\141\156\144\105\155\141\151\154\056 -\143\162\154\060\035\006\003\125\035\045\004\026\060\024\006\010 -\053\006\001\005\005\007\003\002\006\010\053\006\001\005\005\007 -\003\004\060\015\006\011\052\206\110\206\367\015\001\001\005\005 -\000\003\202\001\001\000\261\155\141\135\246\032\177\174\253\112 -\344\060\374\123\157\045\044\306\312\355\342\061\134\053\016\356 -\356\141\125\157\004\076\317\071\336\305\033\111\224\344\353\040 -\114\264\346\236\120\056\162\331\215\365\252\243\263\112\332\126 -\034\140\227\200\334\202\242\255\112\275\212\053\377\013\011\264 -\306\327\040\004\105\344\315\200\001\272\272\053\156\316\252\327 -\222\376\344\257\353\364\046\035\026\052\177\154\060\225\067\057 -\063\022\254\177\335\307\321\021\214\121\230\262\320\243\221\320 -\255\366\237\236\203\223\036\035\102\270\106\257\153\146\360\233 -\177\352\343\003\002\345\002\121\301\252\325\065\235\162\100\003 -\211\272\061\035\305\020\150\122\236\337\242\205\305\134\010\246 -\170\346\123\117\261\350\267\323\024\236\223\246\303\144\343\254 -\176\161\315\274\237\351\003\033\314\373\351\254\061\301\257\174 -\025\164\002\231\303\262\107\246\302\062\141\327\307\157\110\044 -\121\047\241\325\207\125\362\173\217\230\075\026\236\356\165\266 -\370\320\216\362\363\306\256\050\133\247\360\363\066\027\374\303 -\005\323\312\003\112\124 +\002\001\150 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\005\117\060\202\004\270\240\003\002\001\002\002\001\150 +\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 +\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125\061 +\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160\145 +\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145\164 +\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172\164 +\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030\006 +\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141\156 +\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004\003 +\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145\163 +\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141\156 +\165\163\151\164\166\141\156\171\153\151\141\144\157\060\036\027 +\015\071\071\060\062\062\065\061\064\060\070\061\061\132\027\015 +\061\071\060\062\062\060\061\064\060\070\061\061\132\060\201\233 +\061\013\060\011\006\003\125\004\006\023\002\110\125\061\021\060 +\017\006\003\125\004\007\023\010\102\165\144\141\160\145\163\164 +\061\047\060\045\006\003\125\004\012\023\036\116\145\164\114\157 +\143\153\040\110\141\154\157\172\141\164\142\151\172\164\157\156 +\163\141\147\151\040\113\146\164\056\061\032\060\030\006\003\125 +\004\013\023\021\124\141\156\165\163\151\164\166\141\156\171\153 +\151\141\144\157\153\061\064\060\062\006\003\125\004\003\023\053 +\116\145\164\114\157\143\153\040\105\170\160\162\145\163\163\172 +\040\050\103\154\141\163\163\040\103\051\040\124\141\156\165\163 +\151\164\166\141\156\171\153\151\141\144\157\060\201\237\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215 +\000\060\201\211\002\201\201\000\353\354\260\154\141\212\043\045 +\257\140\040\343\331\237\374\223\013\333\135\215\260\241\263\100 +\072\202\316\375\165\340\170\062\003\206\132\206\225\221\355\123 +\372\235\100\374\346\350\335\331\133\172\003\275\135\363\073\014 +\303\121\171\233\255\125\240\351\320\003\020\257\012\272\024\102 +\331\122\046\021\042\307\322\040\314\202\244\232\251\376\270\201 +\166\235\152\267\322\066\165\076\261\206\011\366\156\155\176\116 +\267\172\354\256\161\204\366\004\063\010\045\062\353\164\254\026 +\104\306\344\100\223\035\177\255\002\003\001\000\001\243\202\002 +\237\060\202\002\233\060\022\006\003\125\035\023\001\001\377\004 +\010\060\006\001\001\377\002\001\004\060\016\006\003\125\035\017 +\001\001\377\004\004\003\002\000\006\060\021\006\011\140\206\110 +\001\206\370\102\001\001\004\004\003\002\000\007\060\202\002\140 +\006\011\140\206\110\001\206\370\102\001\015\004\202\002\121\026 +\202\002\115\106\111\107\131\105\114\105\115\041\040\105\172\145 +\156\040\164\141\156\165\163\151\164\166\141\156\171\040\141\040 +\116\145\164\114\157\143\153\040\113\146\164\056\040\101\154\164 +\141\154\141\156\157\163\040\123\172\157\154\147\141\154\164\141 +\164\141\163\151\040\106\145\154\164\145\164\145\154\145\151\142 +\145\156\040\154\145\151\162\164\040\145\154\152\141\162\141\163 +\157\153\040\141\154\141\160\152\141\156\040\153\145\163\172\165 +\154\164\056\040\101\040\150\151\164\145\154\145\163\151\164\145 +\163\040\146\157\154\171\141\155\141\164\141\164\040\141\040\116 +\145\164\114\157\143\153\040\113\146\164\056\040\164\145\162\155 +\145\153\146\145\154\145\154\157\163\163\145\147\055\142\151\172 +\164\157\163\151\164\141\163\141\040\166\145\144\151\056\040\101 +\040\144\151\147\151\164\141\154\151\163\040\141\154\141\151\162 +\141\163\040\145\154\146\157\147\141\144\141\163\141\156\141\153 +\040\146\145\154\164\145\164\145\154\145\040\141\172\040\145\154 +\157\151\162\164\040\145\154\154\145\156\157\162\172\145\163\151 +\040\145\154\152\141\162\141\163\040\155\145\147\164\145\164\145 +\154\145\056\040\101\172\040\145\154\152\141\162\141\163\040\154 +\145\151\162\141\163\141\040\155\145\147\164\141\154\141\154\150 +\141\164\157\040\141\040\116\145\164\114\157\143\153\040\113\146 +\164\056\040\111\156\164\145\162\156\145\164\040\150\157\156\154 +\141\160\152\141\156\040\141\040\150\164\164\160\163\072\057\057 +\167\167\167\056\156\145\164\154\157\143\153\056\156\145\164\057 +\144\157\143\163\040\143\151\155\145\156\040\166\141\147\171\040 +\153\145\162\150\145\164\157\040\141\172\040\145\154\154\145\156 +\157\162\172\145\163\100\156\145\164\154\157\143\153\056\156\145 +\164\040\145\055\155\141\151\154\040\143\151\155\145\156\056\040 +\111\115\120\117\122\124\101\116\124\041\040\124\150\145\040\151 +\163\163\165\141\156\143\145\040\141\156\144\040\164\150\145\040 +\165\163\145\040\157\146\040\164\150\151\163\040\143\145\162\164 +\151\146\151\143\141\164\145\040\151\163\040\163\165\142\152\145 +\143\164\040\164\157\040\164\150\145\040\116\145\164\114\157\143 +\153\040\103\120\123\040\141\166\141\151\154\141\142\154\145\040 +\141\164\040\150\164\164\160\163\072\057\057\167\167\167\056\156 +\145\164\154\157\143\153\056\156\145\164\057\144\157\143\163\040 +\157\162\040\142\171\040\145\055\155\141\151\154\040\141\164\040 +\143\160\163\100\156\145\164\154\157\143\153\056\156\145\164\056 +\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\003 +\201\201\000\020\255\177\327\014\062\200\012\330\206\361\171\230 +\265\255\324\315\263\066\304\226\110\301\134\315\232\331\005\056 +\237\276\120\353\364\046\024\020\055\324\146\027\370\236\301\047 +\375\361\355\344\173\113\240\154\265\253\232\127\160\246\355\240 +\244\355\056\365\375\374\275\376\115\067\010\014\274\343\226\203 +\042\365\111\033\177\113\053\264\124\301\200\174\231\116\035\320 +\214\356\320\254\345\222\372\165\126\376\144\240\023\217\270\270 +\026\235\141\005\147\200\310\320\330\245\007\002\064\230\004\215 +\063\004\324 END -# Trust for Certificate "UTN USERFirst Email Root CA" +# Trust for Certificate "NetLock Express (Class C) Root" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN USERFirst Email Root CA" +CKA_LABEL UTF8 "NetLock Express (Class C) Root" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\261\162\261\245\155\225\371\037\345\002\207\341\115\067\352\152 -\104\143\166\212 +\343\222\121\057\012\317\365\005\337\366\336\006\177\165\067\341 +\145\352\127\113 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\327\064\075\357\035\047\011\050\341\061\002\133\023\053\335\367 +\117\353\361\360\160\302\200\143\135\130\237\332\022\074\251\304 END CKA_ISSUER MULTILINE_OCTAL -\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 -\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 -\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 -\154 +\060\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125 +\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 +\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 +\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 +\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 +\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 +\156\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004 +\003\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145 +\163\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141 +\156\165\163\151\164\166\141\156\171\153\151\141\144\157 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\045\045\147 -\311\211 +\002\001\150 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "UTN USERFirst Hardware Root CA" +# Certificate "XRamp Global CA Root" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN USERFirst Hardware Root CA" +CKA_LABEL UTF8 "XRamp Global CA Root" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\227\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\037\060\035\006\003\125 -\004\003\023\026\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\110\141\162\144\167\141\162\145 +\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\036\060\034\006\003\125\004\013\023\025\167\167\167\056\170 +\162\141\155\160\163\145\143\165\162\151\164\171\056\143\157\155 +\061\044\060\042\006\003\125\004\012\023\033\130\122\141\155\160 +\040\123\145\143\165\162\151\164\171\040\123\145\162\166\151\143 +\145\163\040\111\156\143\061\055\060\053\006\003\125\004\003\023 +\044\130\122\141\155\160\040\107\154\157\142\141\154\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\227\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\037\060\035\006\003\125 -\004\003\023\026\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\110\141\162\144\167\141\162\145 +\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\036\060\034\006\003\125\004\013\023\025\167\167\167\056\170 +\162\141\155\160\163\145\143\165\162\151\164\171\056\143\157\155 +\061\044\060\042\006\003\125\004\012\023\033\130\122\141\155\160 +\040\123\145\143\165\162\151\164\171\040\123\145\162\166\151\143 +\145\163\040\111\156\143\061\055\060\053\006\003\125\004\003\023 +\044\130\122\141\155\160\040\107\154\157\142\141\154\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\052\376\145 -\012\375 +\002\020\120\224\154\354\030\352\325\234\115\325\227\357\165\217 +\240\255 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\164\060\202\003\134\240\003\002\001\002\002\020\104 -\276\014\213\120\000\044\264\021\323\066\052\376\145\012\375\060 +\060\202\004\060\060\202\003\030\240\003\002\001\002\002\020\120 +\224\154\354\030\352\325\234\115\325\227\357\165\217\240\255\060 \015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 -\227\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 -\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 -\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 -\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 -\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 -\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 -\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 -\165\163\164\056\143\157\155\061\037\060\035\006\003\125\004\003 -\023\026\125\124\116\055\125\123\105\122\106\151\162\163\164\055 -\110\141\162\144\167\141\162\145\060\036\027\015\071\071\060\067 -\060\071\061\070\061\060\064\062\132\027\015\061\071\060\067\060 -\071\061\070\061\071\062\062\132\060\201\227\061\013\060\011\006 -\003\125\004\006\023\002\125\123\061\013\060\011\006\003\125\004 -\010\023\002\125\124\061\027\060\025\006\003\125\004\007\023\016 -\123\141\154\164\040\114\141\153\145\040\103\151\164\171\061\036 -\060\034\006\003\125\004\012\023\025\124\150\145\040\125\123\105 -\122\124\122\125\123\124\040\116\145\164\167\157\162\153\061\041 -\060\037\006\003\125\004\013\023\030\150\164\164\160\072\057\057 -\167\167\167\056\165\163\145\162\164\162\165\163\164\056\143\157 -\155\061\037\060\035\006\003\125\004\003\023\026\125\124\116\055 -\125\123\105\122\106\151\162\163\164\055\110\141\162\144\167\141 -\162\145\060\202\001\042\060\015\006\011\052\206\110\206\367\015 -\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202 -\001\001\000\261\367\303\070\077\264\250\177\317\071\202\121\147 -\320\155\237\322\377\130\363\347\237\053\354\015\211\124\231\271 -\070\231\026\367\340\041\171\110\302\273\141\164\022\226\035\074 -\152\162\325\074\020\147\072\071\355\053\023\315\146\353\225\011 -\063\244\154\227\261\350\306\354\301\165\171\234\106\136\215\253 -\320\152\375\271\052\125\027\020\124\263\031\360\232\366\361\261 -\135\266\247\155\373\340\161\027\153\242\210\373\000\337\376\032 -\061\167\014\232\001\172\261\062\343\053\001\007\070\156\303\245 -\136\043\274\105\233\173\120\301\311\060\217\333\345\053\172\323 -\133\373\063\100\036\240\325\230\027\274\213\207\303\211\323\135 -\240\216\262\252\252\366\216\151\210\006\305\372\211\041\363\010 -\235\151\056\011\063\233\051\015\106\017\214\314\111\064\260\151 -\121\275\371\006\315\150\255\146\114\274\076\254\141\275\012\210 -\016\310\337\075\356\174\004\114\235\012\136\153\221\326\356\307 -\355\050\215\253\115\207\211\163\320\156\244\320\036\026\213\024 -\341\166\104\003\177\143\254\344\315\111\234\305\222\364\253\062 -\241\110\133\002\003\001\000\001\243\201\271\060\201\266\060\013 -\006\003\125\035\017\004\004\003\002\001\306\060\017\006\003\125 -\035\023\001\001\377\004\005\060\003\001\001\377\060\035\006\003 -\125\035\016\004\026\004\024\241\162\137\046\033\050\230\103\225 -\135\007\067\325\205\226\235\113\322\303\105\060\104\006\003\125 -\035\037\004\075\060\073\060\071\240\067\240\065\206\063\150\164 -\164\160\072\057\057\143\162\154\056\165\163\145\162\164\162\165 -\163\164\056\143\157\155\057\125\124\116\055\125\123\105\122\106 -\151\162\163\164\055\110\141\162\144\167\141\162\145\056\143\162 -\154\060\061\006\003\125\035\045\004\052\060\050\006\010\053\006 -\001\005\005\007\003\001\006\010\053\006\001\005\005\007\003\005 -\006\010\053\006\001\005\005\007\003\006\006\010\053\006\001\005 -\005\007\003\007\060\015\006\011\052\206\110\206\367\015\001\001 -\005\005\000\003\202\001\001\000\107\031\017\336\164\306\231\227 -\257\374\255\050\136\165\216\353\055\147\356\116\173\053\327\014 -\377\366\336\313\125\242\012\341\114\124\145\223\140\153\237\022 -\234\255\136\203\054\353\132\256\300\344\055\364\000\143\035\270 -\300\154\362\317\111\273\115\223\157\006\246\012\042\262\111\142 -\010\116\377\310\310\024\262\210\026\135\347\001\344\022\225\345 -\105\064\263\213\151\275\317\264\205\217\165\121\236\175\072\070 -\072\024\110\022\306\373\247\073\032\215\015\202\100\007\350\004 -\010\220\241\211\313\031\120\337\312\034\001\274\035\004\031\173 -\020\166\227\073\356\220\220\312\304\016\037\026\156\165\357\063 -\370\323\157\133\036\226\343\340\164\167\164\173\212\242\156\055 -\335\166\326\071\060\202\360\253\234\122\362\052\307\257\111\136 -\176\307\150\345\202\201\310\152\047\371\047\210\052\325\130\120 -\225\037\360\073\034\127\273\175\024\071\142\053\232\311\224\222 -\052\243\042\014\377\211\046\175\137\043\053\107\327\025\035\251 -\152\236\121\015\052\121\236\201\371\324\073\136\160\022\177\020 -\062\234\036\273\235\370\146\250 +\202\061\013\060\011\006\003\125\004\006\023\002\125\123\061\036 +\060\034\006\003\125\004\013\023\025\167\167\167\056\170\162\141 +\155\160\163\145\143\165\162\151\164\171\056\143\157\155\061\044 +\060\042\006\003\125\004\012\023\033\130\122\141\155\160\040\123 +\145\143\165\162\151\164\171\040\123\145\162\166\151\143\145\163 +\040\111\156\143\061\055\060\053\006\003\125\004\003\023\044\130 +\122\141\155\160\040\107\154\157\142\141\154\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\060\036\027\015\060\064\061\061\060\061\061\067\061 +\064\060\064\132\027\015\063\065\060\061\060\061\060\065\063\067 +\061\071\132\060\201\202\061\013\060\011\006\003\125\004\006\023 +\002\125\123\061\036\060\034\006\003\125\004\013\023\025\167\167 +\167\056\170\162\141\155\160\163\145\143\165\162\151\164\171\056 +\143\157\155\061\044\060\042\006\003\125\004\012\023\033\130\122 +\141\155\160\040\123\145\143\165\162\151\164\171\040\123\145\162 +\166\151\143\145\163\040\111\156\143\061\055\060\053\006\003\125 +\004\003\023\044\130\122\141\155\160\040\107\154\157\142\141\154 +\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 +\165\164\150\157\162\151\164\171\060\202\001\042\060\015\006\011 +\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000 +\060\202\001\012\002\202\001\001\000\230\044\036\275\025\264\272 +\337\307\214\245\047\266\070\013\151\363\266\116\250\054\056\041 +\035\134\104\337\041\135\176\043\164\376\136\176\264\112\267\246 +\255\037\256\340\006\026\342\233\133\331\147\164\153\135\200\217 +\051\235\206\033\331\234\015\230\155\166\020\050\130\344\145\260 +\177\112\230\171\237\340\303\061\176\200\053\265\214\300\100\073 +\021\206\320\313\242\206\066\140\244\325\060\202\155\331\156\320 +\017\022\004\063\227\137\117\141\132\360\344\371\221\253\347\035 +\073\274\350\317\364\153\055\064\174\342\110\141\034\216\363\141 +\104\314\157\240\112\251\224\260\115\332\347\251\064\172\162\070 +\250\101\314\074\224\021\175\353\310\246\214\267\206\313\312\063 +\073\331\075\067\213\373\172\076\206\054\347\163\327\012\127\254 +\144\233\031\353\364\017\004\010\212\254\003\027\031\144\364\132 +\045\042\215\064\054\262\366\150\035\022\155\323\212\036\024\332 +\304\217\246\342\043\205\325\172\015\275\152\340\351\354\354\027 +\273\102\033\147\252\045\355\105\203\041\374\301\311\174\325\142 +\076\372\362\305\055\323\375\324\145\002\003\001\000\001\243\201 +\237\060\201\234\060\023\006\011\053\006\001\004\001\202\067\024 +\002\004\006\036\004\000\103\000\101\060\013\006\003\125\035\017 +\004\004\003\002\001\206\060\017\006\003\125\035\023\001\001\377 +\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026 +\004\024\306\117\242\075\006\143\204\011\234\316\142\344\004\254 +\215\134\265\351\266\033\060\066\006\003\125\035\037\004\057\060 +\055\060\053\240\051\240\047\206\045\150\164\164\160\072\057\057 +\143\162\154\056\170\162\141\155\160\163\145\143\165\162\151\164 +\171\056\143\157\155\057\130\107\103\101\056\143\162\154\060\020 +\006\011\053\006\001\004\001\202\067\025\001\004\003\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 +\202\001\001\000\221\025\071\003\001\033\147\373\112\034\371\012 +\140\133\241\332\115\227\142\371\044\123\047\327\202\144\116\220 +\056\303\111\033\053\232\334\374\250\170\147\065\361\035\360\021 +\275\267\110\343\020\366\015\337\077\322\311\266\252\125\244\110 +\272\002\333\336\131\056\025\133\073\235\026\175\107\327\067\352 +\137\115\166\022\066\273\037\327\241\201\004\106\040\243\054\155 +\251\236\001\176\077\051\316\000\223\337\375\311\222\163\211\211 +\144\236\347\053\344\034\221\054\322\271\316\175\316\157\061\231 +\323\346\276\322\036\220\360\011\024\171\134\043\253\115\322\332 +\041\037\115\231\171\235\341\317\047\237\020\233\034\210\015\260 +\212\144\101\061\270\016\154\220\044\244\233\134\161\217\272\273 +\176\034\033\333\152\200\017\041\274\351\333\246\267\100\364\262 +\213\251\261\344\357\232\032\320\075\151\231\356\250\050\243\341 +\074\263\360\262\021\234\317\174\100\346\335\347\103\175\242\330 +\072\265\251\215\362\064\231\304\324\020\341\006\375\011\204\020 +\073\356\304\114\364\354\047\174\102\302\164\174\202\212\011\311 +\264\003\045\274 END -# Trust for Certificate "UTN USERFirst Hardware Root CA" +# Trust for Certificate "XRamp Global CA Root" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN USERFirst Hardware Root CA" +CKA_LABEL UTF8 "XRamp Global CA Root" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\004\203\355\063\231\254\066\010\005\207\042\355\274\136\106\000 -\343\276\371\327 +\270\001\206\321\353\234\206\245\101\004\317\060\124\363\114\122 +\267\345\130\306 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\114\126\101\345\015\273\053\350\312\243\355\030\010\255\103\071 +\241\013\104\263\312\020\330\000\156\235\017\330\017\222\012\321 END CKA_ISSUER MULTILINE_OCTAL -\060\201\227\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\037\060\035\006\003\125 -\004\003\023\026\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\110\141\162\144\167\141\162\145 +\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\036\060\034\006\003\125\004\013\023\025\167\167\167\056\170 +\162\141\155\160\163\145\143\165\162\151\164\171\056\143\157\155 +\061\044\060\042\006\003\125\004\012\023\033\130\122\141\155\160 +\040\123\145\143\165\162\151\164\171\040\123\145\162\166\151\143 +\145\163\040\111\156\143\061\055\060\053\006\003\125\004\003\023 +\044\130\122\141\155\160\040\107\154\157\142\141\154\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\052\376\145 -\012\375 +\002\020\120\224\154\354\030\352\325\234\115\325\227\357\165\217 +\240\255 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_VALID -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "UTN USERFirst Object Root CA" +# Certificate "Go Daddy Class 2 CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN USERFirst Object Root CA" +CKA_LABEL UTF8 "Go Daddy Class 2 CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\225\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\035\060\033\006\003\125 -\004\003\023\024\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\117\142\152\145\143\164 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\041\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157 +\040\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156 +\143\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040 +\104\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\225\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\035\060\033\006\003\125 -\004\003\023\024\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\117\142\152\145\143\164 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\041\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157 +\040\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156 +\143\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040 +\104\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\055\340\263 -\137\033 +\002\001\000 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\146\060\202\003\116\240\003\002\001\002\002\020\104 -\276\014\213\120\000\044\264\021\323\066\055\340\263\137\033\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 -\225\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 -\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 -\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 -\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 -\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 -\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 -\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 -\165\163\164\056\143\157\155\061\035\060\033\006\003\125\004\003 -\023\024\125\124\116\055\125\123\105\122\106\151\162\163\164\055 -\117\142\152\145\143\164\060\036\027\015\071\071\060\067\060\071 -\061\070\063\061\062\060\132\027\015\061\071\060\067\060\071\061 -\070\064\060\063\066\132\060\201\225\061\013\060\011\006\003\125 -\004\006\023\002\125\123\061\013\060\011\006\003\125\004\010\023 -\002\125\124\061\027\060\025\006\003\125\004\007\023\016\123\141 -\154\164\040\114\141\153\145\040\103\151\164\171\061\036\060\034 -\006\003\125\004\012\023\025\124\150\145\040\125\123\105\122\124 -\122\125\123\124\040\116\145\164\167\157\162\153\061\041\060\037 -\006\003\125\004\013\023\030\150\164\164\160\072\057\057\167\167 -\167\056\165\163\145\162\164\162\165\163\164\056\143\157\155\061 -\035\060\033\006\003\125\004\003\023\024\125\124\116\055\125\123 -\105\122\106\151\162\163\164\055\117\142\152\145\143\164\060\202 -\001\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005 -\000\003\202\001\017\000\060\202\001\012\002\202\001\001\000\316 -\252\201\077\243\243\141\170\252\061\000\125\225\021\236\047\017 -\037\034\337\072\233\202\150\060\300\112\141\035\361\057\016\372 -\276\171\367\245\043\357\125\121\226\204\315\333\343\271\156\076 -\061\330\012\040\147\307\364\331\277\224\353\107\004\076\002\316 -\052\242\135\207\004\011\366\060\235\030\212\227\262\252\034\374 -\101\322\241\066\313\373\075\221\272\347\331\160\065\372\344\347 -\220\303\233\243\233\323\074\365\022\231\167\261\267\011\340\150 -\346\034\270\363\224\143\210\152\152\376\013\166\311\276\364\042 -\344\147\271\253\032\136\167\301\205\007\335\015\154\277\356\006 -\307\167\152\101\236\247\017\327\373\356\224\027\267\374\205\276 -\244\253\304\034\061\335\327\266\321\344\360\357\337\026\217\262 -\122\223\327\241\324\211\241\007\056\277\341\001\022\102\036\032 -\341\330\225\064\333\144\171\050\377\272\056\021\302\345\350\133 -\222\110\373\107\013\302\154\332\255\062\203\101\363\245\345\101 -\160\375\145\220\155\372\372\121\304\371\275\226\053\031\004\054 -\323\155\247\334\360\177\157\203\145\342\152\253\207\206\165\002 -\003\001\000\001\243\201\257\060\201\254\060\013\006\003\125\035 -\017\004\004\003\002\001\306\060\017\006\003\125\035\023\001\001 -\377\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004 -\026\004\024\332\355\144\164\024\234\024\074\253\335\231\251\275 -\133\050\115\213\074\311\330\060\102\006\003\125\035\037\004\073 -\060\071\060\067\240\065\240\063\206\061\150\164\164\160\072\057 -\057\143\162\154\056\165\163\145\162\164\162\165\163\164\056\143 -\157\155\057\125\124\116\055\125\123\105\122\106\151\162\163\164 -\055\117\142\152\145\143\164\056\143\162\154\060\051\006\003\125 -\035\045\004\042\060\040\006\010\053\006\001\005\005\007\003\003 -\006\010\053\006\001\005\005\007\003\010\006\012\053\006\001\004 -\001\202\067\012\003\004\060\015\006\011\052\206\110\206\367\015 -\001\001\005\005\000\003\202\001\001\000\010\037\122\261\067\104 -\170\333\375\316\271\332\225\226\230\252\125\144\200\265\132\100 -\335\041\245\305\301\363\137\054\114\310\107\132\151\352\350\360 -\065\065\364\320\045\363\310\246\244\207\112\275\033\261\163\010 -\275\324\303\312\266\065\273\131\206\167\061\315\247\200\024\256 -\023\357\374\261\110\371\153\045\045\055\121\266\054\155\105\301 -\230\310\212\126\135\076\356\103\116\076\153\047\216\320\072\113 -\205\013\137\323\355\152\247\165\313\321\132\207\057\071\165\023 -\132\162\260\002\201\237\276\360\017\204\124\040\142\154\151\324 -\341\115\306\015\231\103\001\015\022\226\214\170\235\277\120\242 -\261\104\252\152\317\027\172\317\157\017\324\370\044\125\137\360 -\064\026\111\146\076\120\106\311\143\161\070\061\142\270\142\271 -\363\123\255\154\265\053\242\022\252\031\117\011\332\136\347\223 -\306\216\024\010\376\360\060\200\030\240\206\205\115\310\175\327 -\213\003\376\156\325\367\235\026\254\222\054\240\043\345\234\221 -\122\037\224\337\027\224\163\303\263\301\301\161\005\040\000\170 -\275\023\122\035\250\076\315\000\037\310 +\060\202\004\000\060\202\002\350\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061\041 +\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157\040 +\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156\143 +\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040\104 +\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\060\036\027\015\060\064\060\066\062\071\061\067 +\060\066\062\060\132\027\015\063\064\060\066\062\071\061\067\060 +\066\062\060\132\060\143\061\013\060\011\006\003\125\004\006\023 +\002\125\123\061\041\060\037\006\003\125\004\012\023\030\124\150 +\145\040\107\157\040\104\141\144\144\171\040\107\162\157\165\160 +\054\040\111\156\143\056\061\061\060\057\006\003\125\004\013\023 +\050\107\157\040\104\141\144\144\171\040\103\154\141\163\163\040 +\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\060\202\001\040\060\015\006 +\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001\015 +\000\060\202\001\010\002\202\001\001\000\336\235\327\352\127\030 +\111\241\133\353\327\137\110\206\352\276\335\377\344\357\147\034 +\364\145\150\263\127\161\240\136\167\273\355\233\111\351\160\200 +\075\126\030\143\010\157\332\362\314\320\077\177\002\124\042\124 +\020\330\262\201\324\300\165\075\113\177\307\167\303\076\170\253 +\032\003\265\040\153\057\152\053\261\305\210\176\304\273\036\260 +\301\330\105\047\157\252\067\130\367\207\046\327\330\055\366\251 +\027\267\037\162\066\116\246\027\077\145\230\222\333\052\156\135 +\242\376\210\340\013\336\177\345\215\025\341\353\313\072\325\342 +\022\242\023\055\330\216\257\137\022\075\240\010\005\010\266\134 +\245\145\070\004\105\231\036\243\140\140\164\305\101\245\162\142 +\033\142\305\037\157\137\032\102\276\002\121\145\250\256\043\030 +\152\374\170\003\251\115\177\200\303\372\253\132\374\241\100\244 +\312\031\026\376\262\310\357\136\163\015\356\167\275\232\366\171 +\230\274\261\007\147\242\025\015\335\240\130\306\104\173\012\076 +\142\050\137\272\101\007\123\130\317\021\176\070\164\305\370\377 +\265\151\220\217\204\164\352\227\033\257\002\001\003\243\201\300 +\060\201\275\060\035\006\003\125\035\016\004\026\004\024\322\304 +\260\322\221\324\114\021\161\263\141\313\075\241\376\335\250\152 +\324\343\060\201\215\006\003\125\035\043\004\201\205\060\201\202 +\200\024\322\304\260\322\221\324\114\021\161\263\141\313\075\241 +\376\335\250\152\324\343\241\147\244\145\060\143\061\013\060\011 +\006\003\125\004\006\023\002\125\123\061\041\060\037\006\003\125 +\004\012\023\030\124\150\145\040\107\157\040\104\141\144\144\171 +\040\107\162\157\165\160\054\040\111\156\143\056\061\061\060\057 +\006\003\125\004\013\023\050\107\157\040\104\141\144\144\171\040 +\103\154\141\163\163\040\062\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\202 +\001\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 +\202\001\001\000\062\113\363\262\312\076\221\374\022\306\241\007 +\214\216\167\240\063\006\024\134\220\036\030\367\010\246\075\012 +\031\371\207\200\021\156\151\344\226\027\060\377\064\221\143\162 +\070\356\314\034\001\243\035\224\050\244\061\366\172\304\124\327 +\366\345\061\130\003\242\314\316\142\333\224\105\163\265\277\105 +\311\044\265\325\202\002\255\043\171\151\215\270\266\115\316\317 +\114\312\063\043\350\034\210\252\235\213\101\156\026\311\040\345 +\211\236\315\073\332\160\367\176\231\046\040\024\124\045\253\156 +\163\205\346\233\041\235\012\154\202\016\250\370\302\014\372\020 +\036\154\226\357\207\015\304\017\141\213\255\356\203\053\225\370 +\216\222\204\162\071\353\040\352\203\355\203\315\227\156\010\274 +\353\116\046\266\163\053\344\323\366\114\376\046\161\342\141\021 +\164\112\377\127\032\207\017\165\110\056\317\121\151\027\240\002 +\022\141\225\325\321\100\262\020\114\356\304\254\020\103\246\245 +\236\012\325\225\142\232\015\317\210\202\305\062\014\344\053\237 +\105\346\015\237\050\234\261\271\052\132\127\255\067\017\257\035 +\177\333\275\237 END -# Trust for Certificate "UTN USERFirst Object Root CA" +# Trust for Certificate "Go Daddy Class 2 CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "UTN USERFirst Object Root CA" +CKA_LABEL UTF8 "Go Daddy Class 2 CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\341\055\373\113\101\327\331\303\053\060\121\113\254\035\201\330 -\070\136\055\106 +\047\226\272\346\077\030\001\342\167\046\033\240\327\167\160\002 +\217\040\356\344 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\247\362\344\026\006\101\021\120\060\153\234\343\264\234\260\311 +\221\336\006\045\253\332\375\062\027\014\273\045\027\052\204\147 END CKA_ISSUER MULTILINE_OCTAL -\060\201\225\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 -\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 -\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 -\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 -\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 -\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 -\164\162\165\163\164\056\143\157\155\061\035\060\033\006\003\125 -\004\003\023\024\125\124\116\055\125\123\105\122\106\151\162\163 -\164\055\117\142\152\145\143\164 +\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\041\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157 +\040\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156 +\143\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040 +\104\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145 +\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 +\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\104\276\014\213\120\000\044\264\021\323\066\055\340\263 -\137\033 +\002\001\000 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Camerfirma Chambers of Commerce Root" +# Certificate "Starfield Class 2 CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Camerfirma Chambers of Commerce Root" +CKA_LABEL UTF8 "Starfield Class 2 CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 -\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 -\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 -\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 -\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 -\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 -\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 -\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 -\164 +\060\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\045\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151 +\145\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163 +\054\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023 +\051\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163 +\040\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156 +\040\101\165\164\150\157\162\151\164\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 -\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 -\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 -\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 -\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 -\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 -\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 -\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 -\164 +\060\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\045\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151 +\145\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163 +\054\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023 +\051\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163 +\040\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156 +\040\101\165\164\150\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\000 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\275\060\202\003\245\240\003\002\001\002\002\001\000 +\060\202\004\017\060\202\002\367\240\003\002\001\002\002\001\000 \060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061\047 -\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155\145 -\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101\070 -\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004\013 -\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150\141 -\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060\040 -\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163\040 -\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157\164 -\060\036\027\015\060\063\060\071\063\060\061\066\061\063\064\063 -\132\027\015\063\067\060\071\063\060\061\066\061\063\064\064\132 -\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 -\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 -\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 -\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 -\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 -\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 -\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 -\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 -\164\060\202\001\040\060\015\006\011\052\206\110\206\367\015\001 -\001\001\005\000\003\202\001\015\000\060\202\001\010\002\202\001 -\001\000\267\066\125\345\245\135\030\060\340\332\211\124\221\374 -\310\307\122\370\057\120\331\357\261\165\163\145\107\175\033\133 -\272\165\305\374\241\210\044\372\057\355\312\010\112\071\124\304 -\121\172\265\332\140\352\070\074\201\262\313\361\273\331\221\043 -\077\110\001\160\165\251\005\052\255\037\161\363\311\124\075\035 -\006\152\100\076\263\014\205\356\134\033\171\302\142\304\270\066 -\216\065\135\001\014\043\004\107\065\252\233\140\116\240\146\075 -\313\046\012\234\100\241\364\135\230\277\161\253\245\000\150\052 -\355\203\172\017\242\024\265\324\042\263\200\260\074\014\132\121 -\151\055\130\030\217\355\231\236\361\256\342\225\346\366\107\250 -\326\014\017\260\130\130\333\303\146\067\236\233\221\124\063\067 -\322\224\034\152\110\311\311\362\245\332\245\014\043\367\043\016 -\234\062\125\136\161\234\204\005\121\232\055\375\346\116\052\064 -\132\336\312\100\067\147\014\124\041\125\167\332\012\014\314\227 -\256\200\334\224\066\112\364\076\316\066\023\036\123\344\254\116 -\072\005\354\333\256\162\234\070\213\320\071\073\211\012\076\167 -\376\165\002\001\003\243\202\001\104\060\202\001\100\060\022\006 -\003\125\035\023\001\001\377\004\010\060\006\001\001\377\002\001 -\014\060\074\006\003\125\035\037\004\065\060\063\060\061\240\057 -\240\055\206\053\150\164\164\160\072\057\057\143\162\154\056\143 -\150\141\155\142\145\162\163\151\147\156\056\157\162\147\057\143 -\150\141\155\142\145\162\163\162\157\157\164\056\143\162\154\060 -\035\006\003\125\035\016\004\026\004\024\343\224\365\261\115\351 -\333\241\051\133\127\213\115\166\006\166\341\321\242\212\060\016 -\006\003\125\035\017\001\001\377\004\004\003\002\001\006\060\021 -\006\011\140\206\110\001\206\370\102\001\001\004\004\003\002\000 -\007\060\047\006\003\125\035\021\004\040\060\036\201\034\143\150 -\141\155\142\145\162\163\162\157\157\164\100\143\150\141\155\142 -\145\162\163\151\147\156\056\157\162\147\060\047\006\003\125\035 -\022\004\040\060\036\201\034\143\150\141\155\142\145\162\163\162 -\157\157\164\100\143\150\141\155\142\145\162\163\151\147\156\056 -\157\162\147\060\130\006\003\125\035\040\004\121\060\117\060\115 -\006\013\053\006\001\004\001\201\207\056\012\003\001\060\076\060 -\074\006\010\053\006\001\005\005\007\002\001\026\060\150\164\164 -\160\072\057\057\143\160\163\056\143\150\141\155\142\145\162\163 -\151\147\156\056\157\162\147\057\143\160\163\057\143\150\141\155 -\142\145\162\163\162\157\157\164\056\150\164\155\154\060\015\006 -\011\052\206\110\206\367\015\001\001\005\005\000\003\202\001\001 -\000\014\101\227\302\032\206\300\042\174\237\373\220\363\032\321 -\003\261\357\023\371\041\137\004\234\332\311\245\215\047\154\226 -\207\221\276\101\220\001\162\223\347\036\175\137\366\211\306\135 -\247\100\011\075\254\111\105\105\334\056\215\060\150\262\011\272 -\373\303\057\314\272\013\337\077\167\173\106\175\072\022\044\216 -\226\217\074\005\012\157\322\224\050\035\155\014\300\056\210\042 -\325\330\317\035\023\307\360\110\327\327\005\247\317\307\107\236 -\073\074\064\310\200\117\324\024\273\374\015\120\367\372\263\354 -\102\137\251\335\155\310\364\165\317\173\301\162\046\261\001\034 -\134\054\375\172\116\264\001\305\005\127\271\347\074\252\005\331 -\210\351\007\106\101\316\357\101\201\256\130\337\203\242\256\312 -\327\167\037\347\000\074\235\157\216\344\062\011\035\115\170\064 -\170\064\074\224\233\046\355\117\161\306\031\172\275\040\042\110 -\132\376\113\175\003\267\347\130\276\306\062\116\164\036\150\335 -\250\150\133\263\076\356\142\175\331\200\350\012\165\172\267\356 -\264\145\232\041\220\340\252\320\230\274\070\265\163\074\213\370 -\334 +\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061\045 +\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151\145 +\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163\054 +\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023\051 +\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163\040 +\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\060\036\027\015\060\064\060 +\066\062\071\061\067\063\071\061\066\132\027\015\063\064\060\066 +\062\071\061\067\063\071\061\066\132\060\150\061\013\060\011\006 +\003\125\004\006\023\002\125\123\061\045\060\043\006\003\125\004 +\012\023\034\123\164\141\162\146\151\145\154\144\040\124\145\143 +\150\156\157\154\157\147\151\145\163\054\040\111\156\143\056\061 +\062\060\060\006\003\125\004\013\023\051\123\164\141\162\146\151 +\145\154\144\040\103\154\141\163\163\040\062\040\103\145\162\164 +\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 +\151\164\171\060\202\001\040\060\015\006\011\052\206\110\206\367 +\015\001\001\001\005\000\003\202\001\015\000\060\202\001\010\002 +\202\001\001\000\267\062\310\376\351\161\246\004\205\255\014\021 +\144\337\316\115\357\310\003\030\207\077\241\253\373\074\246\237 +\360\303\241\332\324\330\156\053\123\220\373\044\244\076\204\360 +\236\350\137\354\345\047\104\365\050\246\077\173\336\340\052\360 +\310\257\123\057\236\312\005\001\223\036\217\146\034\071\247\115 +\372\132\266\163\004\045\146\353\167\177\347\131\306\112\231\045 +\024\124\353\046\307\363\177\031\325\060\160\217\257\260\106\052 +\377\255\353\051\355\327\237\252\004\207\243\324\371\211\245\064 +\137\333\103\221\202\066\331\146\074\261\270\271\202\375\234\072 +\076\020\310\073\357\006\145\146\172\233\031\030\075\377\161\121 +\074\060\056\137\276\075\167\163\262\135\006\154\303\043\126\232 +\053\205\046\222\034\247\002\263\344\077\015\257\010\171\202\270 +\066\075\352\234\323\065\263\274\151\312\365\314\235\350\375\144 +\215\027\200\063\156\136\112\135\231\311\036\207\264\235\032\300 +\325\156\023\065\043\136\337\233\137\075\357\326\367\166\302\352 +\076\273\170\015\034\102\147\153\004\330\370\326\332\157\213\362 +\104\240\001\253\002\001\003\243\201\305\060\201\302\060\035\006 +\003\125\035\016\004\026\004\024\277\137\267\321\316\335\037\206 +\364\133\125\254\334\327\020\302\016\251\210\347\060\201\222\006 +\003\125\035\043\004\201\212\060\201\207\200\024\277\137\267\321 +\316\335\037\206\364\133\125\254\334\327\020\302\016\251\210\347 +\241\154\244\152\060\150\061\013\060\011\006\003\125\004\006\023 +\002\125\123\061\045\060\043\006\003\125\004\012\023\034\123\164 +\141\162\146\151\145\154\144\040\124\145\143\150\156\157\154\157 +\147\151\145\163\054\040\111\156\143\056\061\062\060\060\006\003 +\125\004\013\023\051\123\164\141\162\146\151\145\154\144\040\103 +\154\141\163\163\040\062\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\202\001 +\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202 +\001\001\000\005\235\077\210\235\321\311\032\125\241\254\151\363 +\363\131\332\233\001\207\032\117\127\251\241\171\011\052\333\367 +\057\262\036\314\307\136\152\330\203\207\241\227\357\111\065\076 +\167\006\101\130\142\277\216\130\270\012\147\077\354\263\335\041 +\146\037\311\124\372\162\314\075\114\100\330\201\257\167\236\203 +\172\273\242\307\365\064\027\216\331\021\100\364\374\054\052\115 +\025\177\247\142\135\056\045\323\000\013\040\032\035\150\371\027 +\270\364\275\213\355\050\131\335\115\026\213\027\203\310\262\145 +\307\055\172\245\252\274\123\206\155\335\127\244\312\370\040\101 +\013\150\360\364\373\164\276\126\135\172\171\365\371\035\205\343 +\055\225\276\365\161\220\103\314\215\037\232\000\012\207\051\351 +\125\042\130\000\043\352\343\022\103\051\133\107\010\335\214\101 +\152\145\006\250\345\041\252\101\264\225\041\225\271\175\321\064 +\253\023\326\255\274\334\342\075\071\315\275\076\165\160\241\030 +\131\003\311\042\264\217\234\325\136\052\327\245\266\324\012\155 +\370\267\100\021\106\232\037\171\016\142\277\017\227\354\340\057 +\037\027\224 +END + +# Trust for Certificate "Starfield Class 2 CA" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Starfield Class 2 CA" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\255\176\034\050\260\144\357\217\140\003\100\040\024\303\320\343 +\067\016\265\212 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\062\112\113\273\310\143\151\233\276\164\232\306\335\035\106\044 +END +CKA_ISSUER MULTILINE_OCTAL +\060\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\045\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151 +\145\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163 +\054\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023 +\051\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163 +\040\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156 +\040\101\165\164\150\157\162\151\164\171 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "StartCom Ltd." +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "StartCom Ltd." +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114 +\061\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145 +\154\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141 +\164\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162 +\164\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125 +\004\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171 +\040\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040 +\106\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151 +\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 +\061\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026 +\022\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056 +\157\162\147 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114 +\061\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145 +\154\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141 +\164\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162 +\164\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125 +\004\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171 +\040\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040 +\106\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151 +\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 +\061\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026 +\022\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056 +\157\162\147 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\000 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\005\026\060\202\004\177\240\003\002\001\002\002\001\000 +\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 +\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114\061 +\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145\154 +\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141\164 +\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164 +\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125\004 +\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171\040 +\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040\106 +\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 +\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026\022 +\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056\157 +\162\147\060\036\027\015\060\065\060\063\061\067\061\067\063\067 +\064\070\132\027\015\063\065\060\063\061\060\061\067\063\067\064 +\070\132\060\201\260\061\013\060\011\006\003\125\004\006\023\002 +\111\114\061\017\060\015\006\003\125\004\010\023\006\111\163\162 +\141\145\154\061\016\060\014\006\003\125\004\007\023\005\105\151 +\154\141\164\061\026\060\024\006\003\125\004\012\023\015\123\164 +\141\162\164\103\157\155\040\114\164\144\056\061\032\060\030\006 +\003\125\004\013\023\021\103\101\040\101\165\164\150\157\162\151 +\164\171\040\104\145\160\056\061\051\060\047\006\003\125\004\003 +\023\040\106\162\145\145\040\123\123\114\040\103\145\162\164\151 +\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 +\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011 +\001\026\022\141\144\155\151\156\100\163\164\141\162\164\143\157 +\155\056\157\162\147\060\201\237\060\015\006\011\052\206\110\206 +\367\015\001\001\001\005\000\003\201\215\000\060\201\211\002\201 +\201\000\355\204\140\000\043\236\310\112\121\051\047\336\072\241 +\071\265\151\253\011\262\057\064\375\141\334\075\323\260\317\261 +\327\302\304\302\261\344\226\126\304\276\252\024\016\347\314\072 +\120\310\072\142\235\303\243\254\131\173\216\356\125\032\034\107 +\276\243\227\071\263\265\357\043\054\010\350\330\257\163\057\271 +\311\203\350\355\000\017\310\165\245\057\064\114\030\350\166\210 +\043\111\212\333\266\355\150\332\303\265\142\051\114\245\113\267 +\230\264\011\024\020\240\370\376\142\166\042\025\013\244\326\010 +\057\065\002\003\001\000\001\243\202\002\074\060\202\002\070\060 +\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377 +\060\013\006\003\125\035\017\004\004\003\002\001\346\060\035\006 +\003\125\035\016\004\026\004\024\034\211\303\226\314\275\376\062 +\325\015\214\201\061\266\230\235\215\050\144\215\060\201\335\006 +\003\125\035\043\004\201\325\060\201\322\200\024\034\211\303\226 +\314\275\376\062\325\015\214\201\061\266\230\235\215\050\144\215 +\241\201\266\244\201\263\060\201\260\061\013\060\011\006\003\125 +\004\006\023\002\111\114\061\017\060\015\006\003\125\004\010\023 +\006\111\163\162\141\145\154\061\016\060\014\006\003\125\004\007 +\023\005\105\151\154\141\164\061\026\060\024\006\003\125\004\012 +\023\015\123\164\141\162\164\103\157\155\040\114\164\144\056\061 +\032\060\030\006\003\125\004\013\023\021\103\101\040\101\165\164 +\150\157\162\151\164\171\040\104\145\160\056\061\051\060\047\006 +\003\125\004\003\023\040\106\162\145\145\040\123\123\114\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110\206 +\367\015\001\011\001\026\022\141\144\155\151\156\100\163\164\141 +\162\164\143\157\155\056\157\162\147\202\001\000\060\035\006\003 +\125\035\021\004\026\060\024\201\022\141\144\155\151\156\100\163 +\164\141\162\164\143\157\155\056\157\162\147\060\035\006\003\125 +\035\022\004\026\060\024\201\022\141\144\155\151\156\100\163\164 +\141\162\164\143\157\155\056\157\162\147\060\021\006\011\140\206 +\110\001\206\370\102\001\001\004\004\003\002\000\007\060\057\006 +\011\140\206\110\001\206\370\102\001\015\004\042\026\040\106\162 +\145\145\040\123\123\114\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060\062 +\006\011\140\206\110\001\206\370\102\001\004\004\045\026\043\150 +\164\164\160\072\057\057\143\145\162\164\056\163\164\141\162\164 +\143\157\155\056\157\162\147\057\143\141\055\143\162\154\056\143 +\162\154\060\050\006\011\140\206\110\001\206\370\102\001\002\004 +\033\026\031\150\164\164\160\072\057\057\143\145\162\164\056\163 +\164\141\162\164\143\157\155\056\157\162\147\057\060\071\006\011 +\140\206\110\001\206\370\102\001\010\004\054\026\052\150\164\164 +\160\072\057\057\143\145\162\164\056\163\164\141\162\164\143\157 +\155\056\157\162\147\057\151\156\144\145\170\056\160\150\160\077 +\141\160\160\075\061\061\061\060\015\006\011\052\206\110\206\367 +\015\001\001\004\005\000\003\201\201\000\154\161\045\341\236\064 +\221\041\357\333\154\275\001\010\126\217\210\330\101\072\123\365 +\162\337\047\127\113\166\204\367\150\244\376\353\077\011\176\050 +\270\127\352\037\301\252\342\377\226\237\111\231\346\262\225\163 +\226\306\110\307\136\215\007\162\126\370\203\217\237\167\257\051 +\323\105\016\244\356\260\066\164\055\360\315\230\043\173\067\113 +\332\376\121\230\304\036\064\074\210\375\231\073\120\247\301\213 +\063\307\302\122\026\022\225\123\145\042\357\272\213\316\142\333 +\160\043\261\200\337\032\040\070\347\176 END -# Trust for Certificate "Camerfirma Chambers of Commerce Root" +# Trust for Certificate "StartCom Ltd." CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Camerfirma Chambers of Commerce Root" +CKA_LABEL UTF8 "StartCom Ltd." CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\156\072\125\244\031\014\031\134\223\204\074\300\333\162\056\061 -\060\141\360\261 +\225\346\255\370\327\161\106\002\115\325\152\041\262\347\077\315 +\362\073\065\377 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\260\001\356\024\331\257\051\030\224\166\216\361\151\063\052\204 +\010\174\130\037\122\053\104\264\073\171\315\001\370\305\303\311 END CKA_ISSUER MULTILINE_OCTAL -\060\177\061\013\060\011\006\003\125\004\006\023\002\105\125\061 -\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 -\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 -\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 -\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 -\141\155\142\145\162\163\151\147\156\056\157\162\147\061\042\060 -\040\006\003\125\004\003\023\031\103\150\141\155\142\145\162\163 -\040\157\146\040\103\157\155\155\145\162\143\145\040\122\157\157 -\164 +\060\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114 +\061\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145 +\154\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141 +\164\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162 +\164\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125 +\004\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171 +\040\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040 +\106\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151 +\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 +\061\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026 +\022\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056 +\157\162\147 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\000 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Camerfirma Global Chambersign Root" +# Certificate "StartCom Certification Authority" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Camerfirma Global Chambersign Root" +CKA_LABEL UTF8 "StartCom Certification Authority" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061 -\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 -\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 -\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 -\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 -\141\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060 -\036\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103 -\150\141\155\142\145\162\163\151\147\156\040\122\157\157\164 +\060\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061 +\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103 +\157\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013 +\023\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154 +\040\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147 +\156\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123 +\164\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061 -\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 -\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 -\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 -\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 -\141\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060 -\036\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103 -\150\141\155\142\145\162\163\151\147\156\040\122\157\157\164 +\060\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061 +\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103 +\157\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013 +\023\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154 +\040\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147 +\156\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123 +\164\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\305\060\202\003\255\240\003\002\001\002\002\001\000 +\060\202\007\311\060\202\005\261\240\003\002\001\002\002\001\001 \060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061\047 -\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155\145 -\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101\070 -\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004\013 -\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150\141 -\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060\036 -\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103\150 -\141\155\142\145\162\163\151\147\156\040\122\157\157\164\060\036 -\027\015\060\063\060\071\063\060\061\066\061\064\061\070\132\027 -\015\063\067\060\071\063\060\061\066\061\064\061\070\132\060\175 -\061\013\060\011\006\003\125\004\006\023\002\105\125\061\047\060 -\045\006\003\125\004\012\023\036\101\103\040\103\141\155\145\162 -\146\151\162\155\141\040\123\101\040\103\111\106\040\101\070\062 -\067\064\063\062\070\067\061\043\060\041\006\003\125\004\013\023 -\032\150\164\164\160\072\057\057\167\167\167\056\143\150\141\155 -\142\145\162\163\151\147\156\056\157\162\147\061\040\060\036\006 -\003\125\004\003\023\027\107\154\157\142\141\154\040\103\150\141 -\155\142\145\162\163\151\147\156\040\122\157\157\164\060\202\001 -\040\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000 -\003\202\001\015\000\060\202\001\010\002\202\001\001\000\242\160 -\242\320\237\102\256\133\027\307\330\175\317\024\203\374\117\311 -\241\267\023\257\212\327\236\076\004\012\222\213\140\126\372\264 -\062\057\210\115\241\140\010\364\267\011\116\240\111\057\111\326 -\323\337\235\227\132\237\224\004\160\354\077\131\331\267\314\146 -\213\230\122\050\011\002\337\305\057\204\215\172\227\167\277\354 -\100\235\045\162\253\265\077\062\230\373\267\267\374\162\204\345 -\065\207\371\125\372\243\037\016\157\056\050\335\151\240\331\102 -\020\306\370\265\104\302\320\103\177\333\274\344\242\074\152\125 -\170\012\167\251\330\352\031\062\267\057\376\134\077\033\356\261 -\230\354\312\255\172\151\105\343\226\017\125\366\346\355\165\352 -\145\350\062\126\223\106\211\250\045\212\145\006\356\153\277\171 -\007\320\361\267\257\355\054\115\222\273\300\250\137\247\147\175 -\004\362\025\010\160\254\222\326\175\004\322\063\373\114\266\013 -\013\373\032\311\304\215\003\251\176\134\362\120\253\022\245\241 -\317\110\120\245\357\322\310\032\023\372\260\177\261\202\034\167 -\152\017\137\334\013\225\217\357\103\176\346\105\011\045\002\001 -\003\243\202\001\120\060\202\001\114\060\022\006\003\125\035\023 -\001\001\377\004\010\060\006\001\001\377\002\001\014\060\077\006 -\003\125\035\037\004\070\060\066\060\064\240\062\240\060\206\056 -\150\164\164\160\072\057\057\143\162\154\056\143\150\141\155\142 -\145\162\163\151\147\156\056\157\162\147\057\143\150\141\155\142 -\145\162\163\151\147\156\162\157\157\164\056\143\162\154\060\035 -\006\003\125\035\016\004\026\004\024\103\234\066\237\260\236\060 -\115\306\316\137\255\020\253\345\003\245\372\251\024\060\016\006 -\003\125\035\017\001\001\377\004\004\003\002\001\006\060\021\006 -\011\140\206\110\001\206\370\102\001\001\004\004\003\002\000\007 -\060\052\006\003\125\035\021\004\043\060\041\201\037\143\150\141 -\155\142\145\162\163\151\147\156\162\157\157\164\100\143\150\141 -\155\142\145\162\163\151\147\156\056\157\162\147\060\052\006\003 -\125\035\022\004\043\060\041\201\037\143\150\141\155\142\145\162 -\163\151\147\156\162\157\157\164\100\143\150\141\155\142\145\162 -\163\151\147\156\056\157\162\147\060\133\006\003\125\035\040\004 -\124\060\122\060\120\006\013\053\006\001\004\001\201\207\056\012 -\001\001\060\101\060\077\006\010\053\006\001\005\005\007\002\001 -\026\063\150\164\164\160\072\057\057\143\160\163\056\143\150\141 -\155\142\145\162\163\151\147\156\056\157\162\147\057\143\160\163 -\057\143\150\141\155\142\145\162\163\151\147\156\162\157\157\164 -\056\150\164\155\154\060\015\006\011\052\206\110\206\367\015\001 -\001\005\005\000\003\202\001\001\000\074\073\160\221\371\004\124 -\047\221\341\355\355\376\150\177\141\135\345\101\145\117\062\361 -\030\005\224\152\034\336\037\160\333\076\173\062\002\064\265\014 -\154\241\212\174\245\364\217\377\324\330\255\027\325\055\004\321 -\077\130\200\342\201\131\210\276\300\343\106\223\044\376\220\275 -\046\242\060\055\350\227\046\127\065\211\164\226\030\366\025\342 -\257\044\031\126\002\002\262\272\017\024\352\306\212\146\301\206 -\105\125\213\276\222\276\234\244\004\307\111\074\236\350\051\172 -\211\327\376\257\377\150\365\245\027\220\275\254\231\314\245\206 -\127\011\147\106\333\326\026\302\106\361\344\251\120\365\217\321 -\222\025\323\137\076\306\000\111\072\156\130\262\321\321\047\015 -\045\310\062\370\040\021\315\175\062\063\110\224\124\114\335\334 -\171\304\060\237\353\216\270\125\265\327\210\134\305\152\044\075 -\262\323\005\003\121\306\007\357\314\024\162\164\075\156\162\316 -\030\050\214\112\240\167\345\011\053\105\104\107\254\267\147\177 -\001\212\005\132\223\276\241\301\377\370\347\016\147\244\107\111 -\166\135\165\220\032\365\046\217\360 -END - -# Trust for Certificate "Camerfirma Global Chambersign Root" +\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061\026 +\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103\157 +\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013\023 +\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154\040 +\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147\156 +\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123\164 +\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143\141 +\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060\036 +\027\015\060\066\060\071\061\067\061\071\064\066\063\066\132\027 +\015\063\066\060\071\061\067\061\071\064\066\063\066\132\060\175 +\061\013\060\011\006\003\125\004\006\023\002\111\114\061\026\060 +\024\006\003\125\004\012\023\015\123\164\141\162\164\103\157\155 +\040\114\164\144\056\061\053\060\051\006\003\125\004\013\023\042 +\123\145\143\165\162\145\040\104\151\147\151\164\141\154\040\103 +\145\162\164\151\146\151\143\141\164\145\040\123\151\147\156\151 +\156\147\061\051\060\047\006\003\125\004\003\023\040\123\164\141 +\162\164\103\157\155\040\103\145\162\164\151\146\151\143\141\164 +\151\157\156\040\101\165\164\150\157\162\151\164\171\060\202\002 +\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000 +\003\202\002\017\000\060\202\002\012\002\202\002\001\000\301\210 +\333\011\274\154\106\174\170\237\225\173\265\063\220\362\162\142 +\326\301\066\040\042\044\136\316\351\167\362\103\012\242\006\144 +\244\314\216\066\370\070\346\043\360\156\155\261\074\335\162\243 +\205\034\241\323\075\264\063\053\323\057\257\376\352\260\101\131 +\147\266\304\006\175\012\236\164\205\326\171\114\200\067\172\337 +\071\005\122\131\367\364\033\106\103\244\322\205\205\322\303\161 +\363\165\142\064\272\054\212\177\036\217\356\355\064\320\021\307 +\226\315\122\075\272\063\326\335\115\336\013\073\112\113\237\302 +\046\057\372\265\026\034\162\065\167\312\074\135\346\312\341\046 +\213\032\066\166\134\001\333\164\024\045\376\355\265\240\210\017 +\335\170\312\055\037\007\227\060\001\055\162\171\372\106\326\023 +\052\250\271\246\253\203\111\035\345\362\357\335\344\001\216\030 +\012\217\143\123\026\205\142\251\016\031\072\314\265\146\246\302 +\153\164\007\344\053\341\166\076\264\155\330\366\104\341\163\142 +\037\073\304\276\240\123\126\045\154\121\011\367\252\253\312\277 +\166\375\155\233\363\235\333\277\075\146\274\014\126\252\257\230 +\110\225\072\113\337\247\130\120\331\070\165\251\133\352\103\014 +\002\377\231\353\350\154\115\160\133\051\145\234\335\252\135\314 +\257\001\061\354\014\353\322\215\350\352\234\173\346\156\367\047 +\146\014\032\110\327\156\102\343\077\336\041\076\173\341\015\160 +\373\143\252\250\154\032\124\264\134\045\172\311\242\311\213\026 +\246\273\054\176\027\136\005\115\130\156\022\035\001\356\022\020 +\015\306\062\177\030\377\374\364\372\315\156\221\350\066\111\276 +\032\110\151\213\302\226\115\032\022\262\151\027\301\012\220\326 +\372\171\042\110\277\272\173\151\370\160\307\372\172\067\330\330 +\015\322\166\117\127\377\220\267\343\221\322\335\357\302\140\267 +\147\072\335\376\252\234\360\324\213\177\162\042\316\306\237\227 +\266\370\257\212\240\020\250\331\373\030\306\266\265\134\122\074 +\211\266\031\052\163\001\012\017\003\263\022\140\362\172\057\201 +\333\243\156\377\046\060\227\365\213\335\211\127\266\255\075\263 +\257\053\305\267\166\002\360\245\326\053\232\206\024\052\162\366 +\343\063\214\135\011\113\023\337\273\214\164\023\122\113\002\003 +\001\000\001\243\202\002\122\060\202\002\116\060\014\006\003\125 +\035\023\004\005\060\003\001\001\377\060\013\006\003\125\035\017 +\004\004\003\002\001\256\060\035\006\003\125\035\016\004\026\004 +\024\116\013\357\032\244\100\133\245\027\151\207\060\312\064\150 +\103\320\101\256\362\060\144\006\003\125\035\037\004\135\060\133 +\060\054\240\052\240\050\206\046\150\164\164\160\072\057\057\143 +\145\162\164\056\163\164\141\162\164\143\157\155\056\157\162\147 +\057\163\146\163\143\141\055\143\162\154\056\143\162\154\060\053 +\240\051\240\047\206\045\150\164\164\160\072\057\057\143\162\154 +\056\163\164\141\162\164\143\157\155\056\157\162\147\057\163\146 +\163\143\141\055\143\162\154\056\143\162\154\060\202\001\135\006 +\003\125\035\040\004\202\001\124\060\202\001\120\060\202\001\114 +\006\013\053\006\001\004\001\201\265\067\001\001\001\060\202\001 +\073\060\057\006\010\053\006\001\005\005\007\002\001\026\043\150 +\164\164\160\072\057\057\143\145\162\164\056\163\164\141\162\164 +\143\157\155\056\157\162\147\057\160\157\154\151\143\171\056\160 +\144\146\060\065\006\010\053\006\001\005\005\007\002\001\026\051 +\150\164\164\160\072\057\057\143\145\162\164\056\163\164\141\162 +\164\143\157\155\056\157\162\147\057\151\156\164\145\162\155\145 +\144\151\141\164\145\056\160\144\146\060\201\320\006\010\053\006 +\001\005\005\007\002\002\060\201\303\060\047\026\040\123\164\141 +\162\164\040\103\157\155\155\145\162\143\151\141\154\040\050\123 +\164\141\162\164\103\157\155\051\040\114\164\144\056\060\003\002 +\001\001\032\201\227\114\151\155\151\164\145\144\040\114\151\141 +\142\151\154\151\164\171\054\040\162\145\141\144\040\164\150\145 +\040\163\145\143\164\151\157\156\040\052\114\145\147\141\154\040 +\114\151\155\151\164\141\164\151\157\156\163\052\040\157\146\040 +\164\150\145\040\123\164\141\162\164\103\157\155\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\040\120\157\154\151\143\171\040\141\166\141\151 +\154\141\142\154\145\040\141\164\040\150\164\164\160\072\057\057 +\143\145\162\164\056\163\164\141\162\164\143\157\155\056\157\162 +\147\057\160\157\154\151\143\171\056\160\144\146\060\021\006\011 +\140\206\110\001\206\370\102\001\001\004\004\003\002\000\007\060 +\070\006\011\140\206\110\001\206\370\102\001\015\004\053\026\051 +\123\164\141\162\164\103\157\155\040\106\162\145\145\040\123\123 +\114\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 +\101\165\164\150\157\162\151\164\171\060\015\006\011\052\206\110 +\206\367\015\001\001\005\005\000\003\202\002\001\000\026\154\231 +\364\146\014\064\365\320\205\136\175\012\354\332\020\116\070\034 +\136\337\246\045\005\113\221\062\301\350\073\361\075\335\104\011 +\133\007\111\212\051\313\146\002\267\261\232\367\045\230\011\074 +\216\033\341\335\066\207\053\113\273\150\323\071\146\075\240\046 +\307\362\071\221\035\121\253\202\173\176\325\316\132\344\342\003 +\127\160\151\227\010\371\136\130\246\012\337\214\006\232\105\026 +\026\070\012\136\127\366\142\307\172\002\005\346\274\036\265\362 +\236\364\251\051\203\370\262\024\343\156\050\207\104\303\220\032 +\336\070\251\074\254\103\115\144\105\316\335\050\251\134\362\163 +\173\004\370\027\350\253\261\363\056\134\144\156\163\061\072\022 +\270\274\263\021\344\175\217\201\121\232\073\215\211\364\115\223 +\146\173\074\003\355\323\232\035\232\363\145\120\365\240\320\165 +\237\057\257\360\352\202\103\230\370\151\234\211\171\304\103\216 +\106\162\343\144\066\022\257\367\045\036\070\211\220\167\176\303 +\153\152\271\303\313\104\113\254\170\220\213\347\307\054\036\113 +\021\104\310\064\122\047\315\012\135\237\205\301\211\325\032\170 +\362\225\020\123\062\335\200\204\146\165\331\265\150\050\373\141 +\056\276\204\250\070\300\231\022\206\245\036\147\144\255\006\056 +\057\251\160\205\307\226\017\174\211\145\365\216\103\124\016\253 +\335\245\200\071\224\140\300\064\311\226\160\054\243\022\365\037 +\110\173\275\034\176\153\267\235\220\364\042\073\256\370\374\052 +\312\372\202\122\240\357\257\113\125\223\353\301\265\360\042\213 +\254\064\116\046\042\004\241\207\054\165\112\267\345\175\023\327 +\270\014\144\300\066\322\311\057\206\022\214\043\011\301\033\202 +\073\163\111\243\152\127\207\224\345\326\170\305\231\103\143\343 +\115\340\167\055\341\145\231\162\151\004\032\107\011\346\017\001 +\126\044\373\037\277\016\171\251\130\056\271\304\011\001\176\225 +\272\155\000\006\076\262\352\112\020\071\330\320\053\365\277\354 +\165\277\227\002\305\011\033\010\334\125\067\342\201\373\067\204 +\103\142\040\312\347\126\113\145\352\376\154\301\044\223\044\241 +\064\353\005\377\232\042\256\233\175\077\361\145\121\012\246\060 +\152\263\364\210\034\200\015\374\162\212\350\203\136 +END + +# Trust for Certificate "StartCom Certification Authority" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Camerfirma Global Chambersign Root" +CKA_LABEL UTF8 "StartCom Certification Authority" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\063\233\153\024\120\044\233\125\172\001\207\162\204\331\340\057 -\303\322\330\351 +\076\053\367\362\003\033\226\363\214\346\304\330\250\135\076\055 +\130\107\152\017 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\305\346\173\277\006\320\117\103\355\304\172\145\212\373\153\031 +\042\115\217\212\374\367\065\302\273\127\064\220\173\213\042\026 END CKA_ISSUER MULTILINE_OCTAL -\060\175\061\013\060\011\006\003\125\004\006\023\002\105\125\061 -\047\060\045\006\003\125\004\012\023\036\101\103\040\103\141\155 -\145\162\146\151\162\155\141\040\123\101\040\103\111\106\040\101 -\070\062\067\064\063\062\070\067\061\043\060\041\006\003\125\004 -\013\023\032\150\164\164\160\072\057\057\167\167\167\056\143\150 -\141\155\142\145\162\163\151\147\156\056\157\162\147\061\040\060 -\036\006\003\125\004\003\023\027\107\154\157\142\141\154\040\103 -\150\141\155\142\145\162\163\151\147\156\040\122\157\157\164 +\060\175\061\013\060\011\006\003\125\004\006\023\002\111\114\061 +\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164\103 +\157\155\040\114\164\144\056\061\053\060\051\006\003\125\004\013 +\023\042\123\145\143\165\162\145\040\104\151\147\151\164\141\154 +\040\103\145\162\164\151\146\151\143\141\164\145\040\123\151\147 +\156\151\156\147\061\051\060\047\006\003\125\004\003\023\040\123 +\164\141\162\164\103\157\155\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "NetLock Qualified (Class QA) Root" +# Certificate "Taiwan GRCA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Qualified (Class QA) Root" +CKA_LABEL UTF8 "Taiwan GRCA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004 -\003\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163 -\151\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151 -\040\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165 -\163\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034 -\006\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146 -\157\100\156\145\164\154\157\143\153\056\150\165 +\060\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061 +\060\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156 +\155\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004 -\003\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163 -\151\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151 -\040\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165 -\163\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034 -\006\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146 -\157\100\156\145\164\154\157\143\153\056\150\165 +\060\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061 +\060\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156 +\155\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\173 +\002\020\037\235\131\132\327\057\302\006\104\245\200\010\151\343 +\136\366 END CKA_VALUE MULTILINE_OCTAL -\060\202\006\321\060\202\005\271\240\003\002\001\002\002\001\173 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125\061 -\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160\145 -\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145\164 -\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172\164 -\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030\006 -\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141\156 -\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004\003 -\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163\151 -\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151\040 -\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165\163 -\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034\006 -\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146\157 -\100\156\145\164\154\157\143\153\056\150\165\060\036\027\015\060 -\063\060\063\063\060\060\061\064\067\061\061\132\027\015\062\062 -\061\062\061\065\060\061\064\067\061\061\132\060\201\311\061\013 -\060\011\006\003\125\004\006\023\002\110\125\061\021\060\017\006 -\003\125\004\007\023\010\102\165\144\141\160\145\163\164\061\047 -\060\045\006\003\125\004\012\023\036\116\145\164\114\157\143\153 -\040\110\141\154\157\172\141\164\142\151\172\164\157\156\163\141 -\147\151\040\113\146\164\056\061\032\060\030\006\003\125\004\013 -\023\021\124\141\156\165\163\151\164\166\141\156\171\153\151\141 -\144\157\153\061\102\060\100\006\003\125\004\003\023\071\116\145 -\164\114\157\143\153\040\115\151\156\157\163\151\164\145\164\164 -\040\113\157\172\152\145\147\171\172\157\151\040\050\103\154\141 -\163\163\040\121\101\051\040\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\061\036\060\034\006\011\052\206\110 -\206\367\015\001\011\001\026\017\151\156\146\157\100\156\145\164 -\154\157\143\153\056\150\165\060\202\001\042\060\015\006\011\052 -\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000\060 -\202\001\012\002\202\001\001\000\307\122\045\262\330\075\324\204 -\125\011\247\033\275\154\271\024\364\212\002\333\166\374\152\052 -\170\253\345\167\360\156\340\214\043\147\333\245\144\231\271\335 -\001\076\157\357\055\232\074\042\360\135\311\127\240\125\101\177 -\362\103\136\130\202\123\061\145\316\036\362\046\272\000\124\036 -\257\260\274\034\344\122\214\240\062\257\267\067\261\123\147\150 -\164\147\120\366\055\056\144\336\256\046\171\337\337\231\206\253 -\253\177\205\354\240\373\200\314\364\270\014\036\223\105\143\271 -\334\270\133\233\355\133\071\324\137\142\260\247\216\174\146\070 -\054\252\261\010\143\027\147\175\314\275\263\361\303\077\317\120 -\071\355\321\031\203\025\333\207\022\047\226\267\332\352\345\235 -\274\272\352\071\117\213\357\164\232\347\305\320\322\352\206\121 -\034\344\376\144\010\050\004\171\005\353\312\305\161\016\013\357 -\253\352\354\022\021\241\030\005\062\151\321\014\054\032\075\045 -\231\077\265\174\312\155\260\256\231\231\372\010\140\347\031\302 -\362\275\121\323\314\323\002\254\301\021\014\200\316\253\334\224 -\235\153\243\071\123\072\326\205\002\003\000\305\175\243\202\002 -\300\060\202\002\274\060\022\006\003\125\035\023\001\001\377\004 -\010\060\006\001\001\377\002\001\004\060\016\006\003\125\035\017 -\001\001\377\004\004\003\002\001\006\060\202\002\165\006\011\140 -\206\110\001\206\370\102\001\015\004\202\002\146\026\202\002\142 -\106\111\107\131\105\114\105\115\041\040\105\172\145\156\040\164 -\141\156\165\163\151\164\166\141\156\171\040\141\040\116\145\164 -\114\157\143\153\040\113\146\164\056\040\115\151\156\157\163\151 -\164\145\164\164\040\123\172\157\154\147\141\154\164\141\164\141 -\163\151\040\123\172\141\142\141\154\171\172\141\164\141\142\141 -\156\040\154\145\151\162\164\040\145\154\152\141\162\141\163\157 -\153\040\141\154\141\160\152\141\156\040\153\145\163\172\165\154 -\164\056\040\101\040\155\151\156\157\163\151\164\145\164\164\040 -\145\154\145\153\164\162\157\156\151\153\165\163\040\141\154\141 -\151\162\141\163\040\152\157\147\150\141\164\141\163\040\145\162 -\166\145\156\171\145\163\165\154\145\163\145\156\145\153\054\040 -\166\141\154\141\155\151\156\164\040\145\154\146\157\147\141\144 -\141\163\141\156\141\153\040\146\145\154\164\145\164\145\154\145 -\040\141\040\115\151\156\157\163\151\164\145\164\164\040\123\172 -\157\154\147\141\154\164\141\164\141\163\151\040\123\172\141\142 -\141\154\171\172\141\164\142\141\156\054\040\141\172\040\101\154 -\164\141\154\141\156\157\163\040\123\172\145\162\172\157\144\145 -\163\151\040\106\145\154\164\145\164\145\154\145\153\142\145\156 -\040\145\154\157\151\162\164\040\145\154\154\145\156\157\162\172 -\145\163\151\040\145\154\152\141\162\141\163\040\155\145\147\164 -\145\164\145\154\145\056\040\101\040\144\157\153\165\155\145\156 -\164\165\155\157\153\040\155\145\147\164\141\154\141\154\150\141 -\164\157\153\040\141\040\150\164\164\160\163\072\057\057\167\167 -\167\056\156\145\164\154\157\143\153\056\150\165\057\144\157\143 -\163\057\040\143\151\155\145\156\040\166\141\147\171\040\153\145 -\162\150\145\164\157\153\040\141\172\040\151\156\146\157\100\156 -\145\164\154\157\143\153\056\156\145\164\040\145\055\155\141\151 -\154\040\143\151\155\145\156\056\040\127\101\122\116\111\116\107 -\041\040\124\150\145\040\151\163\163\165\141\156\143\145\040\141 -\156\144\040\164\150\145\040\165\163\145\040\157\146\040\164\150 -\151\163\040\143\145\162\164\151\146\151\143\141\164\145\040\141 -\162\145\040\163\165\142\152\145\143\164\040\164\157\040\164\150 -\145\040\116\145\164\114\157\143\153\040\121\165\141\154\151\146 -\151\145\144\040\103\120\123\040\141\166\141\151\154\141\142\154 -\145\040\141\164\040\150\164\164\160\163\072\057\057\167\167\167 -\056\156\145\164\154\157\143\153\056\150\165\057\144\157\143\163 -\057\040\157\162\040\142\171\040\145\055\155\141\151\154\040\141 -\164\040\151\156\146\157\100\156\145\164\154\157\143\153\056\156 -\145\164\060\035\006\003\125\035\016\004\026\004\024\011\152\142 -\026\222\260\132\273\125\016\313\165\062\072\062\345\262\041\311 -\050\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 -\003\202\001\001\000\221\152\120\234\333\170\201\233\077\213\102 -\343\073\374\246\303\356\103\340\317\363\342\200\065\111\105\166 -\002\342\343\057\005\305\361\052\347\300\101\063\306\266\233\320 -\063\071\315\300\333\241\255\154\067\002\114\130\101\073\362\227 -\222\306\110\250\315\345\212\071\211\141\371\122\227\351\275\366 -\371\224\164\350\161\016\274\167\206\303\006\314\132\174\112\176 -\064\120\060\056\373\177\062\232\215\075\363\040\133\370\152\312 -\206\363\061\114\054\131\200\002\175\376\070\311\060\165\034\267 -\125\343\274\237\272\250\155\204\050\005\165\263\213\015\300\221 -\124\041\347\246\013\264\231\365\121\101\334\315\243\107\042\331 -\307\001\201\304\334\107\117\046\352\037\355\333\315\015\230\364 -\243\234\264\163\062\112\226\231\376\274\177\310\045\130\370\130 -\363\166\146\211\124\244\246\076\304\120\134\272\211\030\202\165 -\110\041\322\117\023\350\140\176\007\166\333\020\265\121\346\252 -\271\150\252\315\366\235\220\165\022\352\070\032\312\104\350\267 -\231\247\052\150\225\146\225\253\255\357\211\313\140\251\006\022 -\306\224\107\351\050 +\060\202\005\162\060\202\003\132\240\003\002\001\002\002\020\037 +\235\131\132\327\057\302\006\104\245\200\010\151\343\136\366\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\077 +\061\013\060\011\006\003\125\004\006\023\002\124\127\061\060\060 +\056\006\003\125\004\012\014\047\107\157\166\145\162\156\155\145 +\156\164\040\122\157\157\164\040\103\145\162\164\151\146\151\143 +\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060 +\036\027\015\060\062\061\062\060\065\061\063\062\063\063\063\132 +\027\015\063\062\061\062\060\065\061\063\062\063\063\063\132\060 +\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061\060 +\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156\155 +\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146\151 +\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 +\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001 +\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001 +\000\232\045\270\354\314\242\165\250\173\367\316\133\131\212\311 +\321\206\022\010\124\354\234\362\347\106\366\210\363\174\351\245 +\337\114\107\066\244\033\001\034\177\036\127\212\215\303\305\321 +\041\343\332\044\077\110\053\373\237\056\241\224\347\054\034\223 +\321\277\033\001\207\123\231\316\247\365\012\041\166\167\377\251 +\267\306\163\224\117\106\367\020\111\067\372\250\131\111\135\152 +\201\007\126\362\212\371\006\320\367\160\042\115\264\267\101\271 +\062\270\261\360\261\303\234\077\160\375\123\335\201\252\330\143 +\170\366\330\123\156\241\254\152\204\044\162\124\206\306\322\262 +\312\034\016\171\201\326\265\160\142\010\001\056\116\117\016\325 +\021\257\251\257\345\232\277\334\314\207\155\046\344\311\127\242 +\373\226\371\314\341\077\123\214\154\114\176\233\123\010\013\154 +\027\373\147\310\302\255\261\315\200\264\227\334\166\001\026\025 +\351\152\327\244\341\170\107\316\206\325\373\061\363\372\061\276 +\064\252\050\373\160\114\035\111\307\257\054\235\155\146\246\266 +\215\144\176\265\040\152\235\073\201\266\217\100\000\147\113\211 +\206\270\314\145\376\025\123\351\004\301\326\137\035\104\327\012 +\057\047\232\106\175\241\015\165\255\124\206\025\334\111\073\361 +\226\316\017\233\240\354\243\172\135\276\325\052\165\102\345\173 +\336\245\266\252\257\050\254\254\220\254\070\267\325\150\065\046 +\172\334\367\073\363\375\105\233\321\273\103\170\156\157\361\102 +\124\152\230\360\015\255\227\351\122\136\351\325\152\162\336\152 +\367\033\140\024\364\245\344\266\161\147\252\037\352\342\115\301 +\102\100\376\147\106\027\070\057\107\077\161\234\256\345\041\312 +\141\055\155\007\250\204\174\055\356\121\045\361\143\220\236\375 +\341\127\210\153\357\212\043\155\261\346\275\077\255\321\075\226 +\013\205\215\315\153\047\273\267\005\233\354\273\221\251\012\007 +\022\002\227\116\040\220\360\377\015\036\342\101\073\323\100\072 +\347\215\135\332\146\344\002\260\007\122\230\134\016\216\063\234 +\302\246\225\373\125\031\156\114\216\256\113\017\275\301\070\115 +\136\217\204\035\146\315\305\140\226\264\122\132\005\211\216\225 +\172\230\301\221\074\225\043\262\016\364\171\264\311\174\301\112 +\041\002\003\001\000\001\243\152\060\150\060\035\006\003\125\035 +\016\004\026\004\024\314\314\357\314\051\140\244\073\261\222\266 +\074\372\062\142\217\254\045\025\073\060\014\006\003\125\035\023 +\004\005\060\003\001\001\377\060\071\006\004\147\052\007\000\004 +\061\060\057\060\055\002\001\000\060\011\006\005\053\016\003\002 +\032\005\000\060\007\006\005\147\052\003\000\000\004\024\003\233 +\360\042\023\377\225\050\066\323\334\236\300\062\373\061\072\212 +\121\145\060\015\006\011\052\206\110\206\367\015\001\001\005\005 +\000\003\202\002\001\000\100\200\112\372\046\311\316\136\060\335 +\117\206\164\166\130\365\256\263\203\063\170\244\172\164\027\031 +\116\351\122\265\271\340\012\164\142\252\150\312\170\240\114\232 +\216\054\043\056\325\152\022\044\277\324\150\323\212\320\330\234 +\237\264\037\014\336\070\176\127\070\374\215\342\117\136\014\237 +\253\073\322\377\165\227\313\244\343\147\010\377\345\300\026\265 +\110\001\175\351\371\012\377\033\345\152\151\277\170\041\250\302 +\247\043\251\206\253\166\126\350\016\014\366\023\335\052\146\212 +\144\111\075\032\030\207\220\004\237\102\122\267\117\313\376\107 +\101\166\065\357\377\000\166\066\105\062\233\306\106\205\135\342 +\044\260\036\343\110\226\230\127\107\224\125\172\017\101\261\104 +\044\363\301\376\032\153\277\210\375\301\246\332\223\140\136\201 +\112\231\040\234\110\146\031\265\000\171\124\017\270\054\057\113 +\274\251\135\133\140\177\214\207\245\340\122\143\052\276\330\073 +\205\100\025\376\036\266\145\077\305\113\332\176\265\172\065\051 +\243\056\172\230\140\042\243\364\175\047\116\055\352\264\164\074 +\351\017\244\063\017\020\021\274\023\001\326\345\016\323\277\265 +\022\242\341\105\043\300\314\010\156\141\267\211\253\203\343\044 +\036\346\135\007\347\037\040\076\317\147\310\347\254\060\155\047 +\113\150\156\113\052\134\002\010\064\333\370\166\344\147\243\046 +\234\077\242\062\302\112\305\201\030\061\020\126\252\204\357\055 +\012\377\270\037\167\322\277\245\130\240\142\344\327\113\221\165 +\215\211\200\230\176\155\313\123\116\136\257\366\262\227\205\227 +\271\332\125\006\271\044\356\327\306\070\036\143\033\022\073\225 +\341\130\254\362\337\204\325\137\231\057\015\125\133\346\070\333 +\056\077\162\351\110\205\313\273\051\023\217\036\070\125\271\363 +\262\304\060\231\043\116\135\362\110\241\022\014\334\022\220\011 +\220\124\221\003\074\107\345\325\311\145\340\267\113\175\354\107 +\323\263\013\076\255\236\320\164\000\016\353\275\121\255\300\336 +\054\300\303\152\376\357\334\013\247\372\106\337\140\333\234\246 +\131\120\165\043\151\163\223\262\371\374\002\323\107\346\161\316 +\020\002\356\047\214\204\377\254\105\015\023\134\203\062\340\045 +\245\206\054\174\364\022 END -# Trust for Certificate "NetLock Qualified (Class QA) Root" +# Trust for Certificate "Taiwan GRCA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Qualified (Class QA) Root" +CKA_LABEL UTF8 "Taiwan GRCA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\001\150\227\341\240\270\362\303\261\064\146\134\040\247\047\267 -\241\130\342\217 +\364\213\021\277\336\253\276\224\124\040\161\346\101\336\153\276 +\210\053\100\271 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\324\200\145\150\044\371\211\042\050\333\365\244\232\027\217\024 +\067\205\104\123\062\105\037\040\360\363\225\341\045\304\103\116 END CKA_ISSUER MULTILINE_OCTAL -\060\201\311\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\102\060\100\006\003\125\004 -\003\023\071\116\145\164\114\157\143\153\040\115\151\156\157\163 -\151\164\145\164\164\040\113\157\172\152\145\147\171\172\157\151 -\040\050\103\154\141\163\163\040\121\101\051\040\124\141\156\165 -\163\151\164\166\141\156\171\153\151\141\144\157\061\036\060\034 -\006\011\052\206\110\206\367\015\001\011\001\026\017\151\156\146 -\157\100\156\145\164\154\157\143\153\056\150\165 +\060\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061 +\060\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156 +\155\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146 +\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 +\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\173 +\002\020\037\235\131\132\327\057\302\006\104\245\200\010\151\343 +\136\366 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "NetLock Notary (Class A) Root" +# Certificate "Firmaprofesional Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Notary (Class A) Root" +CKA_LABEL UTF8 "Firmaprofesional Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 -\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 -\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 -\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 -\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 -\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 -\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 -\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 -\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 -\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 -\144\157 +\060\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165 +\156\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145 +\154\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101 +\165\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164 +\151\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160 +\162\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101 +\066\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206 +\110\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155 +\141\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 -\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 -\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 -\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 -\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 -\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 -\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 -\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 -\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 -\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 -\144\157 +\060\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165 +\156\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145 +\154\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101 +\165\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164 +\151\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160 +\162\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101 +\066\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206 +\110\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155 +\141\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\002\001\003 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\006\175\060\202\005\145\240\003\002\001\002\002\002\001 -\003\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000 -\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 -\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 -\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 -\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 -\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 -\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 -\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 -\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 -\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 -\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 -\144\157\060\036\027\015\071\071\060\062\062\064\062\063\061\064 -\064\067\132\027\015\061\071\060\062\061\071\062\063\061\064\064 -\067\132\060\201\257\061\013\060\011\006\003\125\004\006\023\002 -\110\125\061\020\060\016\006\003\125\004\010\023\007\110\165\156 -\147\141\162\171\061\021\060\017\006\003\125\004\007\023\010\102 -\165\144\141\160\145\163\164\061\047\060\045\006\003\125\004\012 -\023\036\116\145\164\114\157\143\153\040\110\141\154\157\172\141 -\164\142\151\172\164\157\156\163\141\147\151\040\113\146\164\056 -\061\032\060\030\006\003\125\004\013\023\021\124\141\156\165\163 -\151\164\166\141\156\171\153\151\141\144\157\153\061\066\060\064 -\006\003\125\004\003\023\055\116\145\164\114\157\143\153\040\113 -\157\172\152\145\147\171\172\157\151\040\050\103\154\141\163\163 -\040\101\051\040\124\141\156\165\163\151\164\166\141\156\171\153 -\151\141\144\157\060\202\001\042\060\015\006\011\052\206\110\206 -\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012 -\002\202\001\001\000\274\164\214\017\273\114\364\067\036\251\005 -\202\330\346\341\154\160\352\170\265\156\321\070\104\015\250\203 -\316\135\322\326\325\201\305\324\113\347\133\224\160\046\333\073 -\235\152\114\142\367\161\363\144\326\141\073\075\353\163\243\067 -\331\317\352\214\222\073\315\367\007\334\146\164\227\364\105\042 -\335\364\134\340\277\155\363\276\145\063\344\025\072\277\333\230 -\220\125\070\304\355\246\125\143\013\260\170\004\364\343\156\301 -\077\216\374\121\170\037\222\236\203\302\376\331\260\251\311\274 -\132\000\377\251\250\230\164\373\366\054\076\025\071\015\266\004 -\125\250\016\230\040\102\263\261\045\255\176\232\157\135\123\261 -\253\014\374\353\340\363\172\263\250\263\377\106\366\143\242\330 -\072\230\173\266\254\205\377\260\045\117\164\143\347\023\007\245 -\012\217\005\367\300\144\157\176\247\047\200\226\336\324\056\206 -\140\307\153\053\136\163\173\027\347\221\077\144\014\330\113\042 -\064\053\233\062\362\110\037\237\241\012\204\172\342\302\255\227 -\075\216\325\301\371\126\243\120\351\306\264\372\230\242\356\225 -\346\052\003\214\337\002\003\001\000\001\243\202\002\237\060\202 -\002\233\060\016\006\003\125\035\017\001\001\377\004\004\003\002 -\000\006\060\022\006\003\125\035\023\001\001\377\004\010\060\006 -\001\001\377\002\001\004\060\021\006\011\140\206\110\001\206\370 -\102\001\001\004\004\003\002\000\007\060\202\002\140\006\011\140 -\206\110\001\206\370\102\001\015\004\202\002\121\026\202\002\115 -\106\111\107\131\105\114\105\115\041\040\105\172\145\156\040\164 -\141\156\165\163\151\164\166\141\156\171\040\141\040\116\145\164 -\114\157\143\153\040\113\146\164\056\040\101\154\164\141\154\141 -\156\157\163\040\123\172\157\154\147\141\154\164\141\164\141\163 -\151\040\106\145\154\164\145\164\145\154\145\151\142\145\156\040 -\154\145\151\162\164\040\145\154\152\141\162\141\163\157\153\040 -\141\154\141\160\152\141\156\040\153\145\163\172\165\154\164\056 -\040\101\040\150\151\164\145\154\145\163\151\164\145\163\040\146 -\157\154\171\141\155\141\164\141\164\040\141\040\116\145\164\114 -\157\143\153\040\113\146\164\056\040\164\145\162\155\145\153\146 -\145\154\145\154\157\163\163\145\147\055\142\151\172\164\157\163 -\151\164\141\163\141\040\166\145\144\151\056\040\101\040\144\151 -\147\151\164\141\154\151\163\040\141\154\141\151\162\141\163\040 -\145\154\146\157\147\141\144\141\163\141\156\141\153\040\146\145 -\154\164\145\164\145\154\145\040\141\172\040\145\154\157\151\162 -\164\040\145\154\154\145\156\157\162\172\145\163\151\040\145\154 -\152\141\162\141\163\040\155\145\147\164\145\164\145\154\145\056 -\040\101\172\040\145\154\152\141\162\141\163\040\154\145\151\162 -\141\163\141\040\155\145\147\164\141\154\141\154\150\141\164\157 -\040\141\040\116\145\164\114\157\143\153\040\113\146\164\056\040 -\111\156\164\145\162\156\145\164\040\150\157\156\154\141\160\152 -\141\156\040\141\040\150\164\164\160\163\072\057\057\167\167\167 -\056\156\145\164\154\157\143\153\056\156\145\164\057\144\157\143 -\163\040\143\151\155\145\156\040\166\141\147\171\040\153\145\162 -\150\145\164\157\040\141\172\040\145\154\154\145\156\157\162\172 -\145\163\100\156\145\164\154\157\143\153\056\156\145\164\040\145 -\055\155\141\151\154\040\143\151\155\145\156\056\040\111\115\120 -\117\122\124\101\116\124\041\040\124\150\145\040\151\163\163\165 -\141\156\143\145\040\141\156\144\040\164\150\145\040\165\163\145 -\040\157\146\040\164\150\151\163\040\143\145\162\164\151\146\151 -\143\141\164\145\040\151\163\040\163\165\142\152\145\143\164\040 -\164\157\040\164\150\145\040\116\145\164\114\157\143\153\040\103 -\120\123\040\141\166\141\151\154\141\142\154\145\040\141\164\040 -\150\164\164\160\163\072\057\057\167\167\167\056\156\145\164\154 -\157\143\153\056\156\145\164\057\144\157\143\163\040\157\162\040 -\142\171\040\145\055\155\141\151\154\040\141\164\040\143\160\163 -\100\156\145\164\154\157\143\153\056\156\145\164\056\060\015\006 -\011\052\206\110\206\367\015\001\001\004\005\000\003\202\001\001 -\000\110\044\106\367\272\126\157\372\310\050\003\100\116\345\061 -\071\153\046\153\123\177\333\337\337\363\161\075\046\300\024\016 -\306\147\173\043\250\014\163\335\001\273\306\312\156\067\071\125 -\325\307\214\126\040\016\050\012\016\322\052\244\260\111\122\306 -\070\007\376\276\012\011\214\321\230\317\312\332\024\061\241\117 -\322\071\374\017\021\054\103\303\335\253\223\307\125\076\107\174 -\030\032\000\334\363\173\330\362\177\122\154\040\364\013\137\151 -\122\364\356\370\262\051\140\353\343\111\061\041\015\326\265\020 -\101\342\101\011\154\342\032\232\126\113\167\002\366\240\233\232 -\047\207\350\125\051\161\302\220\237\105\170\032\341\025\144\075 -\320\016\330\240\166\237\256\305\320\056\352\326\017\126\354\144 -\177\132\233\024\130\001\047\176\023\120\307\153\052\346\150\074 -\277\134\240\012\033\341\016\172\351\342\200\303\351\351\366\375 -\154\021\236\320\345\050\047\053\124\062\102\024\202\165\346\112 -\360\053\146\165\143\214\242\373\004\076\203\016\233\066\360\030 -\344\046\040\303\214\360\050\007\255\074\027\146\210\265\375\266 -\210 +\060\202\004\127\060\202\003\077\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123\061 +\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165\156 +\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145\154 +\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101\165 +\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164\151 +\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160\162 +\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101\066 +\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206\110 +\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155\141 +\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155\060 +\036\027\015\060\061\061\060\062\064\062\062\060\060\060\060\132 +\027\015\061\063\061\060\062\064\062\062\060\060\060\060\132\060 +\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123\061 +\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165\156 +\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145\154 +\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101\165 +\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164\151 +\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160\162 +\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101\066 +\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206\110 +\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155\141 +\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155\060 +\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001\001 +\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001\000 +\347\043\003\157\157\043\245\136\170\316\225\054\355\224\036\156 +\012\236\001\307\352\060\321\054\235\335\067\350\233\230\171\126 +\323\374\163\337\320\212\336\125\217\121\371\132\352\336\265\160 +\304\355\244\355\377\243\015\156\017\144\120\061\257\001\047\130 +\256\376\154\247\112\057\027\055\323\163\325\023\034\217\131\245 +\064\054\035\124\004\105\315\150\270\240\300\003\245\317\205\102 +\107\225\050\133\317\357\200\154\340\220\227\212\001\074\035\363 +\207\020\060\046\110\175\327\374\351\235\221\161\377\101\232\251 +\100\265\067\234\051\040\117\037\122\343\240\175\023\155\124\267 +\012\336\351\152\116\007\254\254\031\137\334\176\142\164\366\262 +\005\000\272\205\240\375\035\070\156\313\132\273\206\274\224\147 +\063\065\203\054\037\043\315\370\310\221\161\314\227\213\357\256 +\017\334\051\003\033\300\071\353\160\355\301\156\016\330\147\013 +\211\251\274\065\344\357\266\064\264\245\266\304\055\245\276\320 +\303\224\044\110\333\337\226\323\000\265\146\032\213\146\005\017 +\335\077\077\313\077\252\136\232\112\370\264\112\357\225\067\033 +\002\003\001\000\001\243\201\237\060\201\234\060\052\006\003\125 +\035\021\004\043\060\041\206\037\150\164\164\160\072\057\057\167 +\167\167\056\146\151\162\155\141\160\162\157\146\145\163\151\157 +\156\141\154\056\143\157\155\060\022\006\003\125\035\023\001\001 +\377\004\010\060\006\001\001\377\002\001\001\060\053\006\003\125 +\035\020\004\044\060\042\200\017\062\060\060\061\061\060\062\064 +\062\062\060\060\060\060\132\201\017\062\060\061\063\061\060\062 +\064\062\062\060\060\060\060\132\060\016\006\003\125\035\017\001 +\001\377\004\004\003\002\001\006\060\035\006\003\125\035\016\004 +\026\004\024\063\013\240\146\321\352\332\316\336\142\223\004\050 +\122\265\024\177\070\150\267\060\015\006\011\052\206\110\206\367 +\015\001\001\005\005\000\003\202\001\001\000\107\163\376\215\047 +\124\360\365\324\167\234\047\171\127\127\267\025\126\354\307\330 +\130\267\001\002\364\063\355\223\120\210\236\174\106\261\275\077 +\024\157\361\263\107\110\213\214\227\006\327\352\176\243\134\052 +\273\115\057\107\342\370\071\006\311\234\056\061\032\003\170\364 +\274\070\306\042\213\063\061\360\026\004\004\175\371\166\344\113 +\327\300\346\203\354\131\314\077\336\377\117\153\267\147\176\246 +\206\201\062\043\003\235\310\367\137\301\112\140\245\222\251\261 +\244\240\140\303\170\207\263\042\363\052\353\133\251\355\005\253 +\067\017\261\342\323\225\166\143\126\164\214\130\162\033\067\345 +\144\241\276\115\014\223\230\014\227\366\207\155\263\077\347\313 +\200\246\355\210\307\137\120\142\002\350\231\164\026\320\346\264 +\071\361\047\313\310\100\326\343\206\020\251\043\022\222\340\151 +\101\143\247\257\045\013\300\305\222\313\036\230\243\132\272\305 +\063\017\240\227\001\335\177\340\173\326\006\124\317\241\342\115 +\070\353\113\120\265\313\046\364\312\332\160\112\152\241\342\171 +\252\341\247\063\366\375\112\037\366\331\140 END -# Trust for Certificate "NetLock Notary (Class A) Root" +# Trust for Certificate "Firmaprofesional Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Notary (Class A) Root" +CKA_LABEL UTF8 "Firmaprofesional Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\254\355\137\145\123\375\045\316\001\137\037\172\110\073\152\164 -\237\141\170\306 +\251\142\217\113\230\251\033\110\065\272\322\301\106\062\206\273 +\146\144\152\214 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\206\070\155\136\111\143\154\205\134\333\155\334\224\267\320\367 +\021\222\171\100\074\261\203\100\345\253\146\112\147\222\200\337 END CKA_ISSUER MULTILINE_OCTAL -\060\201\257\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\020\060\016\006\003\125\004\010\023\007\110\165\156\147\141 -\162\171\061\021\060\017\006\003\125\004\007\023\010\102\165\144 -\141\160\145\163\164\061\047\060\045\006\003\125\004\012\023\036 -\116\145\164\114\157\143\153\040\110\141\154\157\172\141\164\142 -\151\172\164\157\156\163\141\147\151\040\113\146\164\056\061\032 -\060\030\006\003\125\004\013\023\021\124\141\156\165\163\151\164 -\166\141\156\171\153\151\141\144\157\153\061\066\060\064\006\003 -\125\004\003\023\055\116\145\164\114\157\143\153\040\113\157\172 -\152\145\147\171\172\157\151\040\050\103\154\141\163\163\040\101 -\051\040\124\141\156\165\163\151\164\166\141\156\171\153\151\141 -\144\157 +\060\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123 +\061\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165 +\156\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145 +\154\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101 +\165\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164 +\151\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160 +\162\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101 +\066\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206 +\110\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155 +\141\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\002\001\003 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "NetLock Business (Class B) Root" +# Certificate "Wells Fargo Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Business (Class B) Root" +CKA_LABEL UTF8 "Wells Fargo Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004 -\003\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164 -\151\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165 -\163\151\164\166\141\156\171\153\151\141\144\157 +\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\024\060\022\006\003\125\004\012\023\013\127\145\154\154\163 +\040\106\141\162\147\157\061\054\060\052\006\003\125\004\013\023 +\043\127\145\154\154\163\040\106\141\162\147\157\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\061\057\060\055\006\003\125\004\003\023\046\127 +\145\154\154\163\040\106\141\162\147\157\040\122\157\157\164\040 +\103\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150 +\157\162\151\164\171 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004 -\003\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164 -\151\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165 -\163\151\164\166\141\156\171\153\151\141\144\157 +\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\024\060\022\006\003\125\004\012\023\013\127\145\154\154\163 +\040\106\141\162\147\157\061\054\060\052\006\003\125\004\013\023 +\043\127\145\154\154\163\040\106\141\162\147\157\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\061\057\060\055\006\003\125\004\003\023\046\127 +\145\154\154\163\040\106\141\162\147\157\040\122\157\157\164\040 +\103\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150 +\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\151 +\002\004\071\344\227\236 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\113\060\202\004\264\240\003\002\001\002\002\001\151 -\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 -\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125\061 -\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160\145 -\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145\164 -\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172\164 -\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030\006 -\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141\156 -\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004\003 -\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164\151 -\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165\163 -\151\164\166\141\156\171\153\151\141\144\157\060\036\027\015\071 -\071\060\062\062\065\061\064\061\060\062\062\132\027\015\061\071 -\060\062\062\060\061\064\061\060\062\062\132\060\201\231\061\013 -\060\011\006\003\125\004\006\023\002\110\125\061\021\060\017\006 -\003\125\004\007\023\010\102\165\144\141\160\145\163\164\061\047 -\060\045\006\003\125\004\012\023\036\116\145\164\114\157\143\153 -\040\110\141\154\157\172\141\164\142\151\172\164\157\156\163\141 -\147\151\040\113\146\164\056\061\032\060\030\006\003\125\004\013 -\023\021\124\141\156\165\163\151\164\166\141\156\171\153\151\141 -\144\157\153\061\062\060\060\006\003\125\004\003\023\051\116\145 -\164\114\157\143\153\040\125\172\154\145\164\151\040\050\103\154 -\141\163\163\040\102\051\040\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\060\201\237\060\015\006\011\052\206 -\110\206\367\015\001\001\001\005\000\003\201\215\000\060\201\211 -\002\201\201\000\261\352\004\354\040\240\043\302\217\070\140\317 -\307\106\263\325\033\376\373\271\231\236\004\334\034\177\214\112 -\201\230\356\244\324\312\212\027\271\042\177\203\012\165\114\233 -\300\151\330\144\071\243\355\222\243\375\133\134\164\032\300\107 -\312\072\151\166\232\272\342\104\027\374\114\243\325\376\270\227 -\210\257\210\003\211\037\244\362\004\076\310\007\013\346\371\263 -\057\172\142\024\011\106\024\312\144\365\213\200\265\142\250\330 -\153\326\161\223\055\263\277\011\124\130\355\006\353\250\173\334 -\103\261\241\151\002\003\001\000\001\243\202\002\237\060\202\002 -\233\060\022\006\003\125\035\023\001\001\377\004\010\060\006\001 -\001\377\002\001\004\060\016\006\003\125\035\017\001\001\377\004 -\004\003\002\000\006\060\021\006\011\140\206\110\001\206\370\102 -\001\001\004\004\003\002\000\007\060\202\002\140\006\011\140\206 -\110\001\206\370\102\001\015\004\202\002\121\026\202\002\115\106 -\111\107\131\105\114\105\115\041\040\105\172\145\156\040\164\141 -\156\165\163\151\164\166\141\156\171\040\141\040\116\145\164\114 -\157\143\153\040\113\146\164\056\040\101\154\164\141\154\141\156 -\157\163\040\123\172\157\154\147\141\154\164\141\164\141\163\151 -\040\106\145\154\164\145\164\145\154\145\151\142\145\156\040\154 -\145\151\162\164\040\145\154\152\141\162\141\163\157\153\040\141 -\154\141\160\152\141\156\040\153\145\163\172\165\154\164\056\040 -\101\040\150\151\164\145\154\145\163\151\164\145\163\040\146\157 -\154\171\141\155\141\164\141\164\040\141\040\116\145\164\114\157 -\143\153\040\113\146\164\056\040\164\145\162\155\145\153\146\145 -\154\145\154\157\163\163\145\147\055\142\151\172\164\157\163\151 -\164\141\163\141\040\166\145\144\151\056\040\101\040\144\151\147 -\151\164\141\154\151\163\040\141\154\141\151\162\141\163\040\145 -\154\146\157\147\141\144\141\163\141\156\141\153\040\146\145\154 -\164\145\164\145\154\145\040\141\172\040\145\154\157\151\162\164 -\040\145\154\154\145\156\157\162\172\145\163\151\040\145\154\152 -\141\162\141\163\040\155\145\147\164\145\164\145\154\145\056\040 -\101\172\040\145\154\152\141\162\141\163\040\154\145\151\162\141 -\163\141\040\155\145\147\164\141\154\141\154\150\141\164\157\040 -\141\040\116\145\164\114\157\143\153\040\113\146\164\056\040\111 -\156\164\145\162\156\145\164\040\150\157\156\154\141\160\152\141 -\156\040\141\040\150\164\164\160\163\072\057\057\167\167\167\056 -\156\145\164\154\157\143\153\056\156\145\164\057\144\157\143\163 -\040\143\151\155\145\156\040\166\141\147\171\040\153\145\162\150 -\145\164\157\040\141\172\040\145\154\154\145\156\157\162\172\145 -\163\100\156\145\164\154\157\143\153\056\156\145\164\040\145\055 -\155\141\151\154\040\143\151\155\145\156\056\040\111\115\120\117 -\122\124\101\116\124\041\040\124\150\145\040\151\163\163\165\141 -\156\143\145\040\141\156\144\040\164\150\145\040\165\163\145\040 -\157\146\040\164\150\151\163\040\143\145\162\164\151\146\151\143 -\141\164\145\040\151\163\040\163\165\142\152\145\143\164\040\164 -\157\040\164\150\145\040\116\145\164\114\157\143\153\040\103\120 -\123\040\141\166\141\151\154\141\142\154\145\040\141\164\040\150 -\164\164\160\163\072\057\057\167\167\167\056\156\145\164\154\157 -\143\153\056\156\145\164\057\144\157\143\163\040\157\162\040\142 -\171\040\145\055\155\141\151\154\040\141\164\040\143\160\163\100 -\156\145\164\154\157\143\153\056\156\145\164\056\060\015\006\011 -\052\206\110\206\367\015\001\001\004\005\000\003\201\201\000\004 -\333\256\214\027\257\370\016\220\061\116\315\076\011\300\155\072 -\260\370\063\114\107\114\343\165\210\020\227\254\260\070\025\221 -\306\051\226\314\041\300\155\074\245\164\317\330\202\245\071\303 -\145\343\102\160\273\042\220\343\175\333\065\166\341\240\265\332 -\237\160\156\223\032\060\071\035\060\333\056\343\174\262\221\262 -\321\067\051\372\271\326\027\134\107\117\343\035\070\353\237\325 -\173\225\250\050\236\025\112\321\321\320\053\000\227\240\342\222 -\066\053\143\254\130\001\153\063\051\120\206\203\361\001\110 +\060\202\003\345\060\202\002\315\240\003\002\001\002\002\004\071 +\344\227\236\060\015\006\011\052\206\110\206\367\015\001\001\005 +\005\000\060\201\202\061\013\060\011\006\003\125\004\006\023\002 +\125\123\061\024\060\022\006\003\125\004\012\023\013\127\145\154 +\154\163\040\106\141\162\147\157\061\054\060\052\006\003\125\004 +\013\023\043\127\145\154\154\163\040\106\141\162\147\157\040\103 +\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 +\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003\023 +\046\127\145\154\154\163\040\106\141\162\147\157\040\122\157\157 +\164\040\103\145\162\164\151\146\151\143\141\164\145\040\101\165 +\164\150\157\162\151\164\171\060\036\027\015\060\060\061\060\061 +\061\061\066\064\061\062\070\132\027\015\062\061\060\061\061\064 +\061\066\064\061\062\070\132\060\201\202\061\013\060\011\006\003 +\125\004\006\023\002\125\123\061\024\060\022\006\003\125\004\012 +\023\013\127\145\154\154\163\040\106\141\162\147\157\061\054\060 +\052\006\003\125\004\013\023\043\127\145\154\154\163\040\106\141 +\162\147\157\040\103\145\162\164\151\146\151\143\141\164\151\157 +\156\040\101\165\164\150\157\162\151\164\171\061\057\060\055\006 +\003\125\004\003\023\046\127\145\154\154\163\040\106\141\162\147 +\157\040\122\157\157\164\040\103\145\162\164\151\146\151\143\141 +\164\145\040\101\165\164\150\157\162\151\164\171\060\202\001\042 +\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003 +\202\001\017\000\060\202\001\012\002\202\001\001\000\325\250\063 +\073\046\371\064\377\315\233\176\345\004\107\316\000\342\175\167 +\347\061\302\056\047\245\115\150\271\061\272\215\103\131\227\307 +\163\252\177\075\134\100\236\005\345\241\342\211\331\114\270\077 +\233\371\014\264\310\142\031\054\105\256\221\036\163\161\101\304 +\113\023\375\160\302\045\254\042\365\165\013\267\123\344\245\053 +\335\316\275\034\072\172\303\367\023\217\046\124\234\026\153\153 +\257\373\330\226\261\140\232\110\340\045\042\044\171\064\316\016 +\046\000\013\116\253\375\213\316\202\327\057\010\160\150\301\250 +\012\371\164\117\007\253\244\371\342\203\176\047\163\164\076\270 +\371\070\102\374\245\250\133\110\043\263\353\343\045\262\200\256 +\226\324\012\234\302\170\232\306\150\030\256\067\142\067\136\121 +\165\250\130\143\300\121\356\100\170\176\250\257\032\240\341\260 +\170\235\120\214\173\347\263\374\216\043\260\333\145\000\160\204 +\001\010\000\024\156\124\206\232\272\314\371\067\020\366\340\336 +\204\055\235\244\205\067\323\207\343\025\320\301\027\220\176\031 +\041\152\022\251\166\375\022\002\351\117\041\136\027\002\003\001 +\000\001\243\141\060\137\060\017\006\003\125\035\023\001\001\377 +\004\005\060\003\001\001\377\060\114\006\003\125\035\040\004\105 +\060\103\060\101\006\013\140\206\110\001\206\373\173\207\007\001 +\013\060\062\060\060\006\010\053\006\001\005\005\007\002\001\026 +\044\150\164\164\160\072\057\057\167\167\167\056\167\145\154\154 +\163\146\141\162\147\157\056\143\157\155\057\143\145\162\164\160 +\157\154\151\143\171\060\015\006\011\052\206\110\206\367\015\001 +\001\005\005\000\003\202\001\001\000\322\047\335\234\012\167\053 +\273\042\362\002\265\112\112\221\371\321\055\276\344\273\032\150 +\357\016\244\000\351\356\347\357\356\366\371\345\164\244\302\330 +\122\130\304\164\373\316\153\265\073\051\171\030\132\357\233\355 +\037\153\066\356\110\045\045\024\266\126\242\020\350\356\247\177 +\320\077\243\320\303\135\046\356\007\314\303\301\044\041\207\036 +\337\052\022\123\157\101\026\347\355\256\224\372\214\162\372\023 +\107\360\074\176\256\175\021\072\023\354\355\372\157\162\144\173 +\235\175\177\046\375\172\373\045\255\352\076\051\177\114\343\000 +\127\062\260\263\351\355\123\027\331\213\262\024\016\060\350\345 +\325\023\306\144\257\304\000\325\330\130\044\374\365\217\354\361 +\307\175\245\333\017\047\321\306\362\100\210\346\037\366\141\250 +\364\102\310\271\067\323\251\276\054\126\170\302\162\233\131\135 +\065\100\212\350\116\143\032\266\351\040\152\121\342\316\244\220 +\337\166\160\231\134\160\103\115\267\266\247\031\144\116\222\267 +\305\221\074\177\110\026\145\173\026\375\313\374\373\331\325\326 +\117\041\145\073\112\177\107\243\373 END -# Trust for Certificate "NetLock Business (Class B) Root" +# Trust for Certificate "Wells Fargo Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Business (Class B) Root" +CKA_LABEL UTF8 "Wells Fargo Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\207\237\113\356\005\337\230\130\073\343\140\326\063\347\015\077 -\376\230\161\257 +\223\346\253\042\003\003\265\043\050\334\332\126\236\272\344\321 +\321\314\373\145 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\071\026\252\271\152\101\341\024\151\337\236\154\073\162\334\266 +\040\013\112\172\210\247\251\102\206\212\137\164\126\173\210\005 END CKA_ISSUER MULTILINE_OCTAL -\060\201\231\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\062\060\060\006\003\125\004 -\003\023\051\116\145\164\114\157\143\153\040\125\172\154\145\164 -\151\040\050\103\154\141\163\163\040\102\051\040\124\141\156\165 -\163\151\164\166\141\156\171\153\151\141\144\157 +\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\024\060\022\006\003\125\004\012\023\013\127\145\154\154\163 +\040\106\141\162\147\157\061\054\060\052\006\003\125\004\013\023 +\043\127\145\154\154\163\040\106\141\162\147\157\040\103\145\162 +\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 +\162\151\164\171\061\057\060\055\006\003\125\004\003\023\046\127 +\145\154\154\163\040\106\141\162\147\157\040\122\157\157\164\040 +\103\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150 +\157\162\151\164\171 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\151 +\002\004\071\344\227\236 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -13107,866 +14361,1037 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "NetLock Express (Class C) Root" +# Certificate "Swisscom Root CA 1" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Express (Class C) Root" +CKA_LABEL UTF8 "Swisscom Root CA 1" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004 -\003\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145 -\163\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141 -\156\165\163\151\164\166\141\156\171\153\151\141\144\157 +\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 +\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 +\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 +\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 +\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 +\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 +\164\040\103\101\040\061 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004 -\003\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145 -\163\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141 -\156\165\163\151\164\166\141\156\171\153\151\141\144\157 +\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 +\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 +\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 +\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 +\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 +\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 +\164\040\103\101\040\061 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\150 +\002\020\134\013\205\134\013\347\131\101\337\127\314\077\177\235 +\250\066 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\117\060\202\004\270\240\003\002\001\002\002\001\150 -\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 -\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125\061 -\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160\145 -\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145\164 -\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172\164 -\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030\006 -\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141\156 -\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004\003 -\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145\163 -\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141\156 -\165\163\151\164\166\141\156\171\153\151\141\144\157\060\036\027 -\015\071\071\060\062\062\065\061\064\060\070\061\061\132\027\015 -\061\071\060\062\062\060\061\064\060\070\061\061\132\060\201\233 -\061\013\060\011\006\003\125\004\006\023\002\110\125\061\021\060 -\017\006\003\125\004\007\023\010\102\165\144\141\160\145\163\164 -\061\047\060\045\006\003\125\004\012\023\036\116\145\164\114\157 -\143\153\040\110\141\154\157\172\141\164\142\151\172\164\157\156 -\163\141\147\151\040\113\146\164\056\061\032\060\030\006\003\125 -\004\013\023\021\124\141\156\165\163\151\164\166\141\156\171\153 -\151\141\144\157\153\061\064\060\062\006\003\125\004\003\023\053 -\116\145\164\114\157\143\153\040\105\170\160\162\145\163\163\172 -\040\050\103\154\141\163\163\040\103\051\040\124\141\156\165\163 -\151\164\166\141\156\171\153\151\141\144\157\060\201\237\060\015 -\006\011\052\206\110\206\367\015\001\001\001\005\000\003\201\215 -\000\060\201\211\002\201\201\000\353\354\260\154\141\212\043\045 -\257\140\040\343\331\237\374\223\013\333\135\215\260\241\263\100 -\072\202\316\375\165\340\170\062\003\206\132\206\225\221\355\123 -\372\235\100\374\346\350\335\331\133\172\003\275\135\363\073\014 -\303\121\171\233\255\125\240\351\320\003\020\257\012\272\024\102 -\331\122\046\021\042\307\322\040\314\202\244\232\251\376\270\201 -\166\235\152\267\322\066\165\076\261\206\011\366\156\155\176\116 -\267\172\354\256\161\204\366\004\063\010\045\062\353\164\254\026 -\104\306\344\100\223\035\177\255\002\003\001\000\001\243\202\002 -\237\060\202\002\233\060\022\006\003\125\035\023\001\001\377\004 -\010\060\006\001\001\377\002\001\004\060\016\006\003\125\035\017 -\001\001\377\004\004\003\002\000\006\060\021\006\011\140\206\110 -\001\206\370\102\001\001\004\004\003\002\000\007\060\202\002\140 -\006\011\140\206\110\001\206\370\102\001\015\004\202\002\121\026 -\202\002\115\106\111\107\131\105\114\105\115\041\040\105\172\145 -\156\040\164\141\156\165\163\151\164\166\141\156\171\040\141\040 -\116\145\164\114\157\143\153\040\113\146\164\056\040\101\154\164 -\141\154\141\156\157\163\040\123\172\157\154\147\141\154\164\141 -\164\141\163\151\040\106\145\154\164\145\164\145\154\145\151\142 -\145\156\040\154\145\151\162\164\040\145\154\152\141\162\141\163 -\157\153\040\141\154\141\160\152\141\156\040\153\145\163\172\165 -\154\164\056\040\101\040\150\151\164\145\154\145\163\151\164\145 -\163\040\146\157\154\171\141\155\141\164\141\164\040\141\040\116 -\145\164\114\157\143\153\040\113\146\164\056\040\164\145\162\155 -\145\153\146\145\154\145\154\157\163\163\145\147\055\142\151\172 -\164\157\163\151\164\141\163\141\040\166\145\144\151\056\040\101 -\040\144\151\147\151\164\141\154\151\163\040\141\154\141\151\162 -\141\163\040\145\154\146\157\147\141\144\141\163\141\156\141\153 -\040\146\145\154\164\145\164\145\154\145\040\141\172\040\145\154 -\157\151\162\164\040\145\154\154\145\156\157\162\172\145\163\151 -\040\145\154\152\141\162\141\163\040\155\145\147\164\145\164\145 -\154\145\056\040\101\172\040\145\154\152\141\162\141\163\040\154 -\145\151\162\141\163\141\040\155\145\147\164\141\154\141\154\150 -\141\164\157\040\141\040\116\145\164\114\157\143\153\040\113\146 -\164\056\040\111\156\164\145\162\156\145\164\040\150\157\156\154 -\141\160\152\141\156\040\141\040\150\164\164\160\163\072\057\057 -\167\167\167\056\156\145\164\154\157\143\153\056\156\145\164\057 -\144\157\143\163\040\143\151\155\145\156\040\166\141\147\171\040 -\153\145\162\150\145\164\157\040\141\172\040\145\154\154\145\156 -\157\162\172\145\163\100\156\145\164\154\157\143\153\056\156\145 -\164\040\145\055\155\141\151\154\040\143\151\155\145\156\056\040 -\111\115\120\117\122\124\101\116\124\041\040\124\150\145\040\151 -\163\163\165\141\156\143\145\040\141\156\144\040\164\150\145\040 -\165\163\145\040\157\146\040\164\150\151\163\040\143\145\162\164 -\151\146\151\143\141\164\145\040\151\163\040\163\165\142\152\145 -\143\164\040\164\157\040\164\150\145\040\116\145\164\114\157\143 -\153\040\103\120\123\040\141\166\141\151\154\141\142\154\145\040 -\141\164\040\150\164\164\160\163\072\057\057\167\167\167\056\156 -\145\164\154\157\143\153\056\156\145\164\057\144\157\143\163\040 -\157\162\040\142\171\040\145\055\155\141\151\154\040\141\164\040 -\143\160\163\100\156\145\164\154\157\143\153\056\156\145\164\056 -\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\003 -\201\201\000\020\255\177\327\014\062\200\012\330\206\361\171\230 -\265\255\324\315\263\066\304\226\110\301\134\315\232\331\005\056 -\237\276\120\353\364\046\024\020\055\324\146\027\370\236\301\047 -\375\361\355\344\173\113\240\154\265\253\232\127\160\246\355\240 -\244\355\056\365\375\374\275\376\115\067\010\014\274\343\226\203 -\042\365\111\033\177\113\053\264\124\301\200\174\231\116\035\320 -\214\356\320\254\345\222\372\165\126\376\144\240\023\217\270\270 -\026\235\141\005\147\200\310\320\330\245\007\002\064\230\004\215 -\063\004\324 +\060\202\005\331\060\202\003\301\240\003\002\001\002\002\020\134 +\013\205\134\013\347\131\101\337\127\314\077\177\235\250\066\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\144 +\061\013\060\011\006\003\125\004\006\023\002\143\150\061\021\060 +\017\006\003\125\004\012\023\010\123\167\151\163\163\143\157\155 +\061\045\060\043\006\003\125\004\013\023\034\104\151\147\151\164 +\141\154\040\103\145\162\164\151\146\151\143\141\164\145\040\123 +\145\162\166\151\143\145\163\061\033\060\031\006\003\125\004\003 +\023\022\123\167\151\163\163\143\157\155\040\122\157\157\164\040 +\103\101\040\061\060\036\027\015\060\065\060\070\061\070\061\062 +\060\066\062\060\132\027\015\062\065\060\070\061\070\062\062\060 +\066\062\060\132\060\144\061\013\060\011\006\003\125\004\006\023 +\002\143\150\061\021\060\017\006\003\125\004\012\023\010\123\167 +\151\163\163\143\157\155\061\045\060\043\006\003\125\004\013\023 +\034\104\151\147\151\164\141\154\040\103\145\162\164\151\146\151 +\143\141\164\145\040\123\145\162\166\151\143\145\163\061\033\060 +\031\006\003\125\004\003\023\022\123\167\151\163\163\143\157\155 +\040\122\157\157\164\040\103\101\040\061\060\202\002\042\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\002 +\017\000\060\202\002\012\002\202\002\001\000\320\271\260\250\014 +\331\273\077\041\370\033\325\063\223\200\026\145\040\165\262\075 +\233\140\155\106\310\214\061\157\027\303\372\232\154\126\355\074 +\305\221\127\303\315\253\226\111\220\052\031\113\036\243\155\127 +\335\361\053\142\050\165\105\136\252\326\133\372\013\045\330\241 +\026\371\034\304\056\346\225\052\147\314\320\051\156\074\205\064 +\070\141\111\261\000\237\326\072\161\137\115\155\316\137\271\251 +\344\211\177\152\122\372\312\233\362\334\251\371\235\231\107\077 +\116\051\137\264\246\215\135\173\013\231\021\003\003\376\347\333 +\333\243\377\035\245\315\220\036\001\037\065\260\177\000\333\220 +\157\306\176\173\321\356\172\172\247\252\014\127\157\244\155\305 +\023\073\260\245\331\355\062\034\264\136\147\213\124\334\163\207 +\345\323\027\174\146\120\162\135\324\032\130\301\331\317\330\211 +\002\157\247\111\264\066\135\320\244\336\007\054\266\165\267\050 +\221\326\227\276\050\365\230\036\352\133\046\311\275\260\227\163 +\332\256\221\046\353\150\301\371\071\025\326\147\113\012\155\117 +\313\317\260\344\102\161\214\123\171\347\356\341\333\035\240\156 +\035\214\032\167\065\134\026\036\053\123\037\064\213\321\154\374 +\362\147\007\172\365\255\355\326\232\253\241\261\113\341\314\067 +\137\375\177\315\115\256\270\037\234\103\371\052\130\125\103\105 +\274\226\315\160\016\374\311\343\146\272\116\215\073\201\313\025 +\144\173\271\224\350\135\063\122\205\161\056\117\216\242\006\021 +\121\311\343\313\241\156\061\010\144\014\302\322\074\365\066\350 +\327\320\016\170\043\040\221\311\044\052\145\051\133\042\367\041 +\316\203\136\244\363\336\113\323\150\217\106\165\134\203\011\156 +\051\153\304\160\214\365\235\327\040\057\377\106\322\053\070\302 +\057\165\034\075\176\332\245\357\036\140\205\151\102\323\314\370 +\143\376\036\103\071\205\246\266\143\101\020\263\163\036\274\323 +\372\312\175\026\107\342\247\325\320\243\212\012\010\226\142\126 +\156\064\333\331\002\271\060\165\343\004\322\347\217\302\260\021 +\100\012\254\325\161\002\142\213\061\276\335\306\043\130\061\102 +\103\055\164\371\306\236\246\212\017\351\376\277\203\346\103\127 +\044\272\357\106\064\252\327\022\001\070\355\002\003\001\000\001 +\243\201\206\060\201\203\060\016\006\003\125\035\017\001\001\377 +\004\004\003\002\001\206\060\035\006\003\125\035\041\004\026\060 +\024\060\022\006\007\140\205\164\001\123\000\001\006\007\140\205 +\164\001\123\000\001\060\022\006\003\125\035\023\001\001\377\004 +\010\060\006\001\001\377\002\001\007\060\037\006\003\125\035\043 +\004\030\060\026\200\024\003\045\057\336\157\202\001\072\134\054 +\334\053\241\151\265\147\324\214\323\375\060\035\006\003\125\035 +\016\004\026\004\024\003\045\057\336\157\202\001\072\134\054\334 +\053\241\151\265\147\324\214\323\375\060\015\006\011\052\206\110 +\206\367\015\001\001\005\005\000\003\202\002\001\000\065\020\313 +\354\246\004\015\015\017\315\300\333\253\250\362\210\227\014\337 +\223\057\115\174\100\126\061\172\353\244\017\140\315\172\363\276 +\303\047\216\003\076\244\335\022\357\176\036\164\006\074\077\061 +\362\034\173\221\061\041\264\360\320\154\227\324\351\227\262\044 +\126\036\126\303\065\275\210\005\017\133\020\032\144\341\307\202 +\060\371\062\255\236\120\054\347\170\005\320\061\261\132\230\212 +\165\116\220\134\152\024\052\340\122\107\202\140\346\036\332\201 +\261\373\024\013\132\361\237\322\225\272\076\320\033\326\025\035 +\243\276\206\325\333\017\300\111\144\273\056\120\031\113\322\044 +\370\335\036\007\126\320\070\240\225\160\040\166\214\327\335\036 +\336\237\161\304\043\357\203\023\134\243\044\025\115\051\100\074 +\152\304\251\330\267\246\104\245\015\364\340\235\167\036\100\160 +\046\374\332\331\066\344\171\344\265\077\274\233\145\276\273\021 +\226\317\333\306\050\071\072\010\316\107\133\123\132\305\231\376 +\135\251\335\357\114\324\306\245\255\002\346\214\007\022\036\157 +\003\321\157\240\243\363\051\275\022\307\120\242\260\177\210\251 +\231\167\232\261\300\245\071\056\134\174\151\342\054\260\352\067 +\152\244\341\132\341\365\120\345\203\357\245\273\052\210\347\214 +\333\375\155\136\227\031\250\176\146\165\153\161\352\277\261\307 +\157\240\364\216\244\354\064\121\133\214\046\003\160\241\167\325 +\001\022\127\000\065\333\043\336\016\212\050\231\375\261\020\157 +\113\377\070\055\140\116\054\234\353\147\265\255\111\356\113\037 +\254\257\373\015\220\132\146\140\160\135\252\315\170\324\044\356 +\310\101\240\223\001\222\234\152\236\374\271\044\305\263\025\202 +\176\276\256\225\053\353\261\300\332\343\001\140\013\136\151\254 +\204\126\141\276\161\027\376\035\023\017\376\306\207\105\351\376 +\062\240\032\015\023\244\224\125\161\245\026\213\272\312\211\260 +\262\307\374\217\330\124\265\223\142\235\316\317\131\373\075\030 +\316\052\313\065\025\202\135\377\124\042\133\161\122\373\267\311 +\376\140\233\000\101\144\360\252\052\354\266\102\103\316\211\146 +\201\310\213\237\071\124\003\045\323\026\065\216\204\320\137\372 +\060\032\365\232\154\364\016\123\371\072\133\321\034 +END + +# Trust for Certificate "Swisscom Root CA 1" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Swisscom Root CA 1" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\137\072\374\012\213\144\366\206\147\064\164\337\176\251\242\376 +\371\372\172\121 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\370\070\174\167\210\337\054\026\150\056\302\342\122\113\270\371 +END +CKA_ISSUER MULTILINE_OCTAL +\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 +\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 +\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 +\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 +\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 +\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 +\164\040\103\101\040\061 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\134\013\205\134\013\347\131\101\337\127\314\077\177\235 +\250\066 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "DigiCert Assured ID Root CA" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "DigiCert Assured ID Root CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\145\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\044\060\042\006\003\125\004\003\023\033\104\151\147\151 +\103\145\162\164\040\101\163\163\165\162\145\144\040\111\104\040 +\122\157\157\164\040\103\101 END - -# Trust for Certificate "NetLock Express (Class C) Root" +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\145\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\044\060\042\006\003\125\004\003\023\033\104\151\147\151 +\103\145\162\164\040\101\163\163\165\162\145\144\040\111\104\040 +\122\157\157\164\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\014\347\340\345\027\330\106\376\217\345\140\374\033\360 +\060\071 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\003\267\060\202\002\237\240\003\002\001\002\002\020\014 +\347\340\345\027\330\106\376\217\345\140\374\033\360\060\071\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\145 +\061\013\060\011\006\003\125\004\006\023\002\125\123\061\025\060 +\023\006\003\125\004\012\023\014\104\151\147\151\103\145\162\164 +\040\111\156\143\061\031\060\027\006\003\125\004\013\023\020\167 +\167\167\056\144\151\147\151\143\145\162\164\056\143\157\155\061 +\044\060\042\006\003\125\004\003\023\033\104\151\147\151\103\145 +\162\164\040\101\163\163\165\162\145\144\040\111\104\040\122\157 +\157\164\040\103\101\060\036\027\015\060\066\061\061\061\060\060 +\060\060\060\060\060\132\027\015\063\061\061\061\061\060\060\060 +\060\060\060\060\132\060\145\061\013\060\011\006\003\125\004\006 +\023\002\125\123\061\025\060\023\006\003\125\004\012\023\014\104 +\151\147\151\103\145\162\164\040\111\156\143\061\031\060\027\006 +\003\125\004\013\023\020\167\167\167\056\144\151\147\151\143\145 +\162\164\056\143\157\155\061\044\060\042\006\003\125\004\003\023 +\033\104\151\147\151\103\145\162\164\040\101\163\163\165\162\145 +\144\040\111\104\040\122\157\157\164\040\103\101\060\202\001\042 +\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003 +\202\001\017\000\060\202\001\012\002\202\001\001\000\255\016\025 +\316\344\103\200\134\261\207\363\267\140\371\161\022\245\256\334 +\046\224\210\252\364\316\365\040\071\050\130\140\014\370\200\332 +\251\025\225\062\141\074\265\261\050\204\212\212\334\237\012\014 +\203\027\172\217\220\254\212\347\171\123\134\061\204\052\366\017 +\230\062\066\166\314\336\335\074\250\242\357\152\373\041\362\122 +\141\337\237\040\327\037\342\261\331\376\030\144\322\022\133\137 +\371\130\030\065\274\107\315\241\066\371\153\177\324\260\070\076 +\301\033\303\214\063\331\330\057\030\376\050\017\263\247\203\326 +\303\156\104\300\141\065\226\026\376\131\234\213\166\155\327\361 +\242\113\015\053\377\013\162\332\236\140\320\216\220\065\306\170 +\125\207\040\241\317\345\155\012\310\111\174\061\230\063\154\042 +\351\207\320\062\132\242\272\023\202\021\355\071\027\235\231\072 +\162\241\346\372\244\331\325\027\061\165\256\205\175\042\256\077 +\001\106\206\366\050\171\310\261\332\344\127\027\304\176\034\016 +\260\264\222\246\126\263\275\262\227\355\252\247\360\267\305\250 +\077\225\026\320\377\241\226\353\010\137\030\167\117\002\003\001 +\000\001\243\143\060\141\060\016\006\003\125\035\017\001\001\377 +\004\004\003\002\001\206\060\017\006\003\125\035\023\001\001\377 +\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026 +\004\024\105\353\242\257\364\222\313\202\061\055\121\213\247\247 +\041\235\363\155\310\017\060\037\006\003\125\035\043\004\030\060 +\026\200\024\105\353\242\257\364\222\313\202\061\055\121\213\247 +\247\041\235\363\155\310\017\060\015\006\011\052\206\110\206\367 +\015\001\001\005\005\000\003\202\001\001\000\242\016\274\337\342 +\355\360\343\162\163\172\144\224\277\367\162\146\330\062\344\102 +\165\142\256\207\353\362\325\331\336\126\263\237\314\316\024\050 +\271\015\227\140\134\022\114\130\344\323\075\203\111\105\130\227 +\065\151\032\250\107\352\126\306\171\253\022\330\147\201\204\337 +\177\011\074\224\346\270\046\054\040\275\075\263\050\211\367\137 +\377\042\342\227\204\037\351\145\357\207\340\337\301\147\111\263 +\135\353\262\011\052\353\046\355\170\276\175\077\053\363\267\046 +\065\155\137\211\001\266\111\133\237\001\005\233\253\075\045\301 +\314\266\177\302\361\157\206\306\372\144\150\353\201\055\224\353 +\102\267\372\214\036\335\142\361\276\120\147\267\154\275\363\361 +\037\153\014\066\007\026\177\067\174\251\133\155\172\361\022\106 +\140\203\327\047\004\276\113\316\227\276\303\147\052\150\021\337 +\200\347\014\063\146\277\023\015\024\156\363\177\037\143\020\036 +\372\215\033\045\155\154\217\245\267\141\001\261\322\243\046\241 +\020\161\235\255\342\303\371\303\231\121\267\053\007\010\316\056 +\346\120\262\247\372\012\105\057\242\360\362 +END + +# Trust for Certificate "DigiCert Assured ID Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "NetLock Express (Class C) Root" +CKA_LABEL UTF8 "DigiCert Assured ID Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\343\222\121\057\012\317\365\005\337\366\336\006\177\165\067\341 -\145\352\127\113 +\005\143\270\143\015\142\327\132\273\310\253\036\113\337\265\250 +\231\262\115\103 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\117\353\361\360\160\302\200\143\135\130\237\332\022\074\251\304 +\207\316\013\173\052\016\111\000\341\130\161\233\067\250\223\162 END CKA_ISSUER MULTILINE_OCTAL -\060\201\233\061\013\060\011\006\003\125\004\006\023\002\110\125 -\061\021\060\017\006\003\125\004\007\023\010\102\165\144\141\160 -\145\163\164\061\047\060\045\006\003\125\004\012\023\036\116\145 -\164\114\157\143\153\040\110\141\154\157\172\141\164\142\151\172 -\164\157\156\163\141\147\151\040\113\146\164\056\061\032\060\030 -\006\003\125\004\013\023\021\124\141\156\165\163\151\164\166\141 -\156\171\153\151\141\144\157\153\061\064\060\062\006\003\125\004 -\003\023\053\116\145\164\114\157\143\153\040\105\170\160\162\145 -\163\163\172\040\050\103\154\141\163\163\040\103\051\040\124\141 -\156\165\163\151\164\166\141\156\171\153\151\141\144\157 +\060\145\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\044\060\042\006\003\125\004\003\023\033\104\151\147\151 +\103\145\162\164\040\101\163\163\165\162\145\144\040\111\104\040 +\122\157\157\164\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\150 +\002\020\014\347\340\345\027\330\106\376\217\345\140\374\033\360 +\060\071 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "XRamp Global CA Root" +# Certificate "DigiCert Global Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "XRamp Global CA Root" +CKA_LABEL UTF8 "DigiCert Global Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\036\060\034\006\003\125\004\013\023\025\167\167\167\056\170 -\162\141\155\160\163\145\143\165\162\151\164\171\056\143\157\155 -\061\044\060\042\006\003\125\004\012\023\033\130\122\141\155\160 -\040\123\145\143\165\162\151\164\171\040\123\145\162\166\151\143 -\145\163\040\111\156\143\061\055\060\053\006\003\125\004\003\023 -\044\130\122\141\155\160\040\107\154\157\142\141\154\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171 +\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147\151 +\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157\164 +\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\036\060\034\006\003\125\004\013\023\025\167\167\167\056\170 -\162\141\155\160\163\145\143\165\162\151\164\171\056\143\157\155 -\061\044\060\042\006\003\125\004\012\023\033\130\122\141\155\160 -\040\123\145\143\165\162\151\164\171\040\123\145\162\166\151\143 -\145\163\040\111\156\143\061\055\060\053\006\003\125\004\003\023 -\044\130\122\141\155\160\040\107\154\157\142\141\154\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171 +\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147\151 +\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157\164 +\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\120\224\154\354\030\352\325\234\115\325\227\357\165\217 -\240\255 +\002\020\010\073\340\126\220\102\106\261\241\165\152\311\131\221 +\307\112 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\060\060\202\003\030\240\003\002\001\002\002\020\120 -\224\154\354\030\352\325\234\115\325\227\357\165\217\240\255\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 -\202\061\013\060\011\006\003\125\004\006\023\002\125\123\061\036 -\060\034\006\003\125\004\013\023\025\167\167\167\056\170\162\141 -\155\160\163\145\143\165\162\151\164\171\056\143\157\155\061\044 -\060\042\006\003\125\004\012\023\033\130\122\141\155\160\040\123 -\145\143\165\162\151\164\171\040\123\145\162\166\151\143\145\163 -\040\111\156\143\061\055\060\053\006\003\125\004\003\023\044\130 -\122\141\155\160\040\107\154\157\142\141\154\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\060\036\027\015\060\064\061\061\060\061\061\067\061 -\064\060\064\132\027\015\063\065\060\061\060\061\060\065\063\067 -\061\071\132\060\201\202\061\013\060\011\006\003\125\004\006\023 -\002\125\123\061\036\060\034\006\003\125\004\013\023\025\167\167 -\167\056\170\162\141\155\160\163\145\143\165\162\151\164\171\056 -\143\157\155\061\044\060\042\006\003\125\004\012\023\033\130\122 -\141\155\160\040\123\145\143\165\162\151\164\171\040\123\145\162 -\166\151\143\145\163\040\111\156\143\061\055\060\053\006\003\125 -\004\003\023\044\130\122\141\155\160\040\107\154\157\142\141\154 -\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040\101 -\165\164\150\157\162\151\164\171\060\202\001\042\060\015\006\011 -\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000 -\060\202\001\012\002\202\001\001\000\230\044\036\275\025\264\272 -\337\307\214\245\047\266\070\013\151\363\266\116\250\054\056\041 -\035\134\104\337\041\135\176\043\164\376\136\176\264\112\267\246 -\255\037\256\340\006\026\342\233\133\331\147\164\153\135\200\217 -\051\235\206\033\331\234\015\230\155\166\020\050\130\344\145\260 -\177\112\230\171\237\340\303\061\176\200\053\265\214\300\100\073 -\021\206\320\313\242\206\066\140\244\325\060\202\155\331\156\320 -\017\022\004\063\227\137\117\141\132\360\344\371\221\253\347\035 -\073\274\350\317\364\153\055\064\174\342\110\141\034\216\363\141 -\104\314\157\240\112\251\224\260\115\332\347\251\064\172\162\070 -\250\101\314\074\224\021\175\353\310\246\214\267\206\313\312\063 -\073\331\075\067\213\373\172\076\206\054\347\163\327\012\127\254 -\144\233\031\353\364\017\004\010\212\254\003\027\031\144\364\132 -\045\042\215\064\054\262\366\150\035\022\155\323\212\036\024\332 -\304\217\246\342\043\205\325\172\015\275\152\340\351\354\354\027 -\273\102\033\147\252\045\355\105\203\041\374\301\311\174\325\142 -\076\372\362\305\055\323\375\324\145\002\003\001\000\001\243\201 -\237\060\201\234\060\023\006\011\053\006\001\004\001\202\067\024 -\002\004\006\036\004\000\103\000\101\060\013\006\003\125\035\017 -\004\004\003\002\001\206\060\017\006\003\125\035\023\001\001\377 -\004\005\060\003\001\001\377\060\035\006\003\125\035\016\004\026 -\004\024\306\117\242\075\006\143\204\011\234\316\142\344\004\254 -\215\134\265\351\266\033\060\066\006\003\125\035\037\004\057\060 -\055\060\053\240\051\240\047\206\045\150\164\164\160\072\057\057 -\143\162\154\056\170\162\141\155\160\163\145\143\165\162\151\164 -\171\056\143\157\155\057\130\107\103\101\056\143\162\154\060\020 -\006\011\053\006\001\004\001\202\067\025\001\004\003\002\001\001 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 -\202\001\001\000\221\025\071\003\001\033\147\373\112\034\371\012 -\140\133\241\332\115\227\142\371\044\123\047\327\202\144\116\220 -\056\303\111\033\053\232\334\374\250\170\147\065\361\035\360\021 -\275\267\110\343\020\366\015\337\077\322\311\266\252\125\244\110 -\272\002\333\336\131\056\025\133\073\235\026\175\107\327\067\352 -\137\115\166\022\066\273\037\327\241\201\004\106\040\243\054\155 -\251\236\001\176\077\051\316\000\223\337\375\311\222\163\211\211 -\144\236\347\053\344\034\221\054\322\271\316\175\316\157\061\231 -\323\346\276\322\036\220\360\011\024\171\134\043\253\115\322\332 -\041\037\115\231\171\235\341\317\047\237\020\233\034\210\015\260 -\212\144\101\061\270\016\154\220\044\244\233\134\161\217\272\273 -\176\034\033\333\152\200\017\041\274\351\333\246\267\100\364\262 -\213\251\261\344\357\232\032\320\075\151\231\356\250\050\243\341 -\074\263\360\262\021\234\317\174\100\346\335\347\103\175\242\330 -\072\265\251\215\362\064\231\304\324\020\341\006\375\011\204\020 -\073\356\304\114\364\354\047\174\102\302\164\174\202\212\011\311 -\264\003\045\274 -END - -# Trust for Certificate "XRamp Global CA Root" +\060\202\003\257\060\202\002\227\240\003\002\001\002\002\020\010 +\073\340\126\220\102\106\261\241\165\152\311\131\221\307\112\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\141 +\061\013\060\011\006\003\125\004\006\023\002\125\123\061\025\060 +\023\006\003\125\004\012\023\014\104\151\147\151\103\145\162\164 +\040\111\156\143\061\031\060\027\006\003\125\004\013\023\020\167 +\167\167\056\144\151\147\151\143\145\162\164\056\143\157\155\061 +\040\060\036\006\003\125\004\003\023\027\104\151\147\151\103\145 +\162\164\040\107\154\157\142\141\154\040\122\157\157\164\040\103 +\101\060\036\027\015\060\066\061\061\061\060\060\060\060\060\060 +\060\132\027\015\063\061\061\061\061\060\060\060\060\060\060\060 +\132\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103 +\145\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013 +\023\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143 +\157\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147 +\151\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157 +\164\040\103\101\060\202\001\042\060\015\006\011\052\206\110\206 +\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012 +\002\202\001\001\000\342\073\341\021\162\336\250\244\323\243\127 +\252\120\242\217\013\167\220\311\242\245\356\022\316\226\133\001 +\011\040\314\001\223\247\116\060\267\123\367\103\304\151\000\127 +\235\342\215\042\335\207\006\100\000\201\011\316\316\033\203\277 +\337\315\073\161\106\342\326\146\307\005\263\166\047\026\217\173 +\236\036\225\175\356\267\110\243\010\332\326\257\172\014\071\006 +\145\177\112\135\037\274\027\370\253\276\356\050\327\164\177\172 +\170\231\131\205\150\156\134\043\062\113\277\116\300\350\132\155 +\343\160\277\167\020\277\374\001\366\205\331\250\104\020\130\062 +\251\165\030\325\321\242\276\107\342\047\152\364\232\063\370\111 +\010\140\213\324\137\264\072\204\277\241\252\112\114\175\076\317 +\117\137\154\166\136\240\113\067\221\236\334\042\346\155\316\024 +\032\216\152\313\376\315\263\024\144\027\307\133\051\236\062\277 +\362\356\372\323\013\102\324\253\267\101\062\332\014\324\357\370 +\201\325\273\215\130\077\265\033\350\111\050\242\160\332\061\004 +\335\367\262\026\362\114\012\116\007\250\355\112\075\136\265\177 +\243\220\303\257\047\002\003\001\000\001\243\143\060\141\060\016 +\006\003\125\035\017\001\001\377\004\004\003\002\001\206\060\017 +\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377\060 +\035\006\003\125\035\016\004\026\004\024\003\336\120\065\126\321 +\114\273\146\360\243\342\033\033\303\227\262\075\321\125\060\037 +\006\003\125\035\043\004\030\060\026\200\024\003\336\120\065\126 +\321\114\273\146\360\243\342\033\033\303\227\262\075\321\125\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202 +\001\001\000\313\234\067\252\110\023\022\012\372\335\104\234\117 +\122\260\364\337\256\004\365\171\171\010\243\044\030\374\113\053 +\204\300\055\271\325\307\376\364\301\037\130\313\270\155\234\172 +\164\347\230\051\253\021\265\343\160\240\241\315\114\210\231\223 +\214\221\160\342\253\017\034\276\223\251\377\143\325\344\007\140 +\323\243\277\235\133\011\361\325\216\343\123\364\216\143\372\077 +\247\333\264\146\337\142\146\326\321\156\101\215\362\055\265\352 +\167\112\237\235\130\342\053\131\300\100\043\355\055\050\202\105 +\076\171\124\222\046\230\340\200\110\250\067\357\360\326\171\140 +\026\336\254\350\016\315\156\254\104\027\070\057\111\332\341\105 +\076\052\271\066\123\317\072\120\006\367\056\350\304\127\111\154 +\141\041\030\325\004\255\170\074\054\072\200\153\247\353\257\025 +\024\351\330\211\301\271\070\154\342\221\154\212\377\144\271\167 +\045\127\060\300\033\044\243\341\334\351\337\107\174\265\264\044 +\010\005\060\354\055\275\013\277\105\277\120\271\251\363\353\230 +\001\022\255\310\210\306\230\064\137\215\012\074\306\351\325\225 +\225\155\336 +END + +# Trust for Certificate "DigiCert Global Root CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "XRamp Global CA Root" +CKA_LABEL UTF8 "DigiCert Global Root CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\270\001\206\321\353\234\206\245\101\004\317\060\124\363\114\122 -\267\345\130\306 +\250\230\135\072\145\345\345\304\262\327\326\155\100\306\335\057 +\261\234\124\066 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\241\013\104\263\312\020\330\000\156\235\017\330\017\222\012\321 +\171\344\251\204\015\175\072\226\327\300\117\342\103\114\211\056 END CKA_ISSUER MULTILINE_OCTAL -\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\036\060\034\006\003\125\004\013\023\025\167\167\167\056\170 -\162\141\155\160\163\145\143\165\162\151\164\171\056\143\157\155 -\061\044\060\042\006\003\125\004\012\023\033\130\122\141\155\160 -\040\123\145\143\165\162\151\164\171\040\123\145\162\166\151\143 -\145\163\040\111\156\143\061\055\060\053\006\003\125\004\003\023 -\044\130\122\141\155\160\040\107\154\157\142\141\154\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171 +\060\141\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\040\060\036\006\003\125\004\003\023\027\104\151\147\151 +\103\145\162\164\040\107\154\157\142\141\154\040\122\157\157\164 +\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\120\224\154\354\030\352\325\234\115\325\227\357\165\217 -\240\255 +\002\020\010\073\340\126\220\102\106\261\241\165\152\311\131\221 +\307\112 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Go Daddy Class 2 CA" +# Certificate "DigiCert High Assurance EV Root CA" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Go Daddy Class 2 CA" +CKA_LABEL UTF8 "DigiCert High Assurance EV Root CA" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\041\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157 -\040\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156 -\143\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040 -\104\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171 +\060\154\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\053\060\051\006\003\125\004\003\023\042\104\151\147\151 +\103\145\162\164\040\110\151\147\150\040\101\163\163\165\162\141 +\156\143\145\040\105\126\040\122\157\157\164\040\103\101 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\041\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157 -\040\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156 -\143\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040 -\104\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171 +\060\154\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\053\060\051\006\003\125\004\003\023\042\104\151\147\151 +\103\145\162\164\040\110\151\147\150\040\101\163\163\165\162\141 +\156\143\145\040\105\126\040\122\157\157\164\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\020\002\254\134\046\152\013\100\233\217\013\171\362\256\106 +\045\167 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\000\060\202\002\350\240\003\002\001\002\002\001\000 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061\041 -\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157\040 -\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156\143 -\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040\104 -\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\060\036\027\015\060\064\060\066\062\071\061\067 -\060\066\062\060\132\027\015\063\064\060\066\062\071\061\067\060 -\066\062\060\132\060\143\061\013\060\011\006\003\125\004\006\023 -\002\125\123\061\041\060\037\006\003\125\004\012\023\030\124\150 -\145\040\107\157\040\104\141\144\144\171\040\107\162\157\165\160 -\054\040\111\156\143\056\061\061\060\057\006\003\125\004\013\023 -\050\107\157\040\104\141\144\144\171\040\103\154\141\163\163\040 -\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\101\165\164\150\157\162\151\164\171\060\202\001\040\060\015\006 -\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001\015 -\000\060\202\001\010\002\202\001\001\000\336\235\327\352\127\030 -\111\241\133\353\327\137\110\206\352\276\335\377\344\357\147\034 -\364\145\150\263\127\161\240\136\167\273\355\233\111\351\160\200 -\075\126\030\143\010\157\332\362\314\320\077\177\002\124\042\124 -\020\330\262\201\324\300\165\075\113\177\307\167\303\076\170\253 -\032\003\265\040\153\057\152\053\261\305\210\176\304\273\036\260 -\301\330\105\047\157\252\067\130\367\207\046\327\330\055\366\251 -\027\267\037\162\066\116\246\027\077\145\230\222\333\052\156\135 -\242\376\210\340\013\336\177\345\215\025\341\353\313\072\325\342 -\022\242\023\055\330\216\257\137\022\075\240\010\005\010\266\134 -\245\145\070\004\105\231\036\243\140\140\164\305\101\245\162\142 -\033\142\305\037\157\137\032\102\276\002\121\145\250\256\043\030 -\152\374\170\003\251\115\177\200\303\372\253\132\374\241\100\244 -\312\031\026\376\262\310\357\136\163\015\356\167\275\232\366\171 -\230\274\261\007\147\242\025\015\335\240\130\306\104\173\012\076 -\142\050\137\272\101\007\123\130\317\021\176\070\164\305\370\377 -\265\151\220\217\204\164\352\227\033\257\002\001\003\243\201\300 -\060\201\275\060\035\006\003\125\035\016\004\026\004\024\322\304 -\260\322\221\324\114\021\161\263\141\313\075\241\376\335\250\152 -\324\343\060\201\215\006\003\125\035\043\004\201\205\060\201\202 -\200\024\322\304\260\322\221\324\114\021\161\263\141\313\075\241 -\376\335\250\152\324\343\241\147\244\145\060\143\061\013\060\011 -\006\003\125\004\006\023\002\125\123\061\041\060\037\006\003\125 -\004\012\023\030\124\150\145\040\107\157\040\104\141\144\144\171 -\040\107\162\157\165\160\054\040\111\156\143\056\061\061\060\057 -\006\003\125\004\013\023\050\107\157\040\104\141\144\144\171\040 -\103\154\141\163\163\040\062\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\202 -\001\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003 -\202\001\001\000\062\113\363\262\312\076\221\374\022\306\241\007 -\214\216\167\240\063\006\024\134\220\036\030\367\010\246\075\012 -\031\371\207\200\021\156\151\344\226\027\060\377\064\221\143\162 -\070\356\314\034\001\243\035\224\050\244\061\366\172\304\124\327 -\366\345\061\130\003\242\314\316\142\333\224\105\163\265\277\105 -\311\044\265\325\202\002\255\043\171\151\215\270\266\115\316\317 -\114\312\063\043\350\034\210\252\235\213\101\156\026\311\040\345 -\211\236\315\073\332\160\367\176\231\046\040\024\124\045\253\156 -\163\205\346\233\041\235\012\154\202\016\250\370\302\014\372\020 -\036\154\226\357\207\015\304\017\141\213\255\356\203\053\225\370 -\216\222\204\162\071\353\040\352\203\355\203\315\227\156\010\274 -\353\116\046\266\163\053\344\323\366\114\376\046\161\342\141\021 -\164\112\377\127\032\207\017\165\110\056\317\121\151\027\240\002 -\022\141\225\325\321\100\262\020\114\356\304\254\020\103\246\245 -\236\012\325\225\142\232\015\317\210\202\305\062\014\344\053\237 -\105\346\015\237\050\234\261\271\052\132\127\255\067\017\257\035 -\177\333\275\237 +\060\202\003\305\060\202\002\255\240\003\002\001\002\002\020\002 +\254\134\046\152\013\100\233\217\013\171\362\256\106\045\167\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\154 +\061\013\060\011\006\003\125\004\006\023\002\125\123\061\025\060 +\023\006\003\125\004\012\023\014\104\151\147\151\103\145\162\164 +\040\111\156\143\061\031\060\027\006\003\125\004\013\023\020\167 +\167\167\056\144\151\147\151\143\145\162\164\056\143\157\155\061 +\053\060\051\006\003\125\004\003\023\042\104\151\147\151\103\145 +\162\164\040\110\151\147\150\040\101\163\163\165\162\141\156\143 +\145\040\105\126\040\122\157\157\164\040\103\101\060\036\027\015 +\060\066\061\061\061\060\060\060\060\060\060\060\132\027\015\063 +\061\061\061\061\060\060\060\060\060\060\060\132\060\154\061\013 +\060\011\006\003\125\004\006\023\002\125\123\061\025\060\023\006 +\003\125\004\012\023\014\104\151\147\151\103\145\162\164\040\111 +\156\143\061\031\060\027\006\003\125\004\013\023\020\167\167\167 +\056\144\151\147\151\143\145\162\164\056\143\157\155\061\053\060 +\051\006\003\125\004\003\023\042\104\151\147\151\103\145\162\164 +\040\110\151\147\150\040\101\163\163\165\162\141\156\143\145\040 +\105\126\040\122\157\157\164\040\103\101\060\202\001\042\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\001 +\017\000\060\202\001\012\002\202\001\001\000\306\314\345\163\346 +\373\324\273\345\055\055\062\246\337\345\201\077\311\315\045\111 +\266\161\052\303\325\224\064\147\242\012\034\260\137\151\246\100 +\261\304\267\262\217\320\230\244\251\101\131\072\323\334\224\326 +\074\333\164\070\244\112\314\115\045\202\367\112\245\123\022\070 +\356\363\111\155\161\221\176\143\266\253\246\137\303\244\204\370 +\117\142\121\276\370\305\354\333\070\222\343\006\345\010\221\014 +\304\050\101\125\373\313\132\211\025\176\161\350\065\277\115\162 +\011\075\276\072\070\120\133\167\061\033\215\263\307\044\105\232 +\247\254\155\000\024\132\004\267\272\023\353\121\012\230\101\101 +\042\116\145\141\207\201\101\120\246\171\134\211\336\031\112\127 +\325\056\346\135\034\123\054\176\230\315\032\006\026\244\150\163 +\320\064\004\023\134\241\161\323\132\174\125\333\136\144\341\067 +\207\060\126\004\345\021\264\051\200\022\361\171\071\210\242\002 +\021\174\047\146\267\210\267\170\362\312\012\250\070\253\012\144 +\302\277\146\135\225\204\301\241\045\036\207\135\032\120\013\040 +\022\314\101\273\156\013\121\070\270\113\313\002\003\001\000\001 +\243\143\060\141\060\016\006\003\125\035\017\001\001\377\004\004 +\003\002\001\206\060\017\006\003\125\035\023\001\001\377\004\005 +\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024 +\261\076\303\151\003\370\277\107\001\324\230\046\032\010\002\357 +\143\144\053\303\060\037\006\003\125\035\043\004\030\060\026\200 +\024\261\076\303\151\003\370\277\107\001\324\230\046\032\010\002 +\357\143\144\053\303\060\015\006\011\052\206\110\206\367\015\001 +\001\005\005\000\003\202\001\001\000\034\032\006\227\334\327\234 +\237\074\210\146\006\010\127\041\333\041\107\370\052\147\252\277 +\030\062\166\100\020\127\301\212\363\172\331\021\145\216\065\372 +\236\374\105\265\236\331\114\061\113\270\221\350\103\054\216\263 +\170\316\333\343\123\171\161\326\345\041\224\001\332\125\207\232 +\044\144\366\212\146\314\336\234\067\315\250\064\261\151\233\043 +\310\236\170\042\053\160\103\343\125\107\061\141\031\357\130\305 +\205\057\116\060\366\240\061\026\043\310\347\342\145\026\063\313 +\277\032\033\240\075\370\312\136\213\061\213\140\010\211\055\014 +\006\134\122\267\304\371\012\230\321\025\137\237\022\276\174\066 +\143\070\275\104\244\177\344\046\053\012\304\227\151\015\351\214 +\342\300\020\127\270\310\166\022\221\125\362\110\151\330\274\052 +\002\133\017\104\324\040\061\333\364\272\160\046\135\220\140\236 +\274\113\027\011\057\264\313\036\103\150\311\007\047\301\322\134 +\367\352\041\271\150\022\234\074\234\277\236\374\200\134\233\143 +\315\354\107\252\045\047\147\240\067\363\000\202\175\124\327\251 +\370\351\056\023\243\167\350\037\112 +END + +# Trust for Certificate "DigiCert High Assurance EV Root CA" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "DigiCert High Assurance EV Root CA" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\137\267\356\006\063\342\131\333\255\014\114\232\346\323\217\032 +\141\307\334\045 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\324\164\336\127\134\071\262\323\234\205\203\305\300\145\111\212 +END +CKA_ISSUER MULTILINE_OCTAL +\060\154\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\025\060\023\006\003\125\004\012\023\014\104\151\147\151\103\145 +\162\164\040\111\156\143\061\031\060\027\006\003\125\004\013\023 +\020\167\167\167\056\144\151\147\151\143\145\162\164\056\143\157 +\155\061\053\060\051\006\003\125\004\003\023\042\104\151\147\151 +\103\145\162\164\040\110\151\147\150\040\101\163\163\165\162\141 +\156\143\145\040\105\126\040\122\157\157\164\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\002\254\134\046\152\013\100\233\217\013\171\362\256\106 +\045\167 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "Certplus Class 2 Primary CA" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Certplus Class 2 Primary CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154 +\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141 +\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101 END - -# Trust for Certificate "Go Daddy Class 2 CA" +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154 +\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141 +\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\021\000\205\275\113\363\330\332\343\151\366\224\327\137\303 +\245\104\043 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\003\222\060\202\002\172\240\003\002\001\002\002\021\000 +\205\275\113\363\330\332\343\151\366\224\327\137\303\245\104\043 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061\021 +\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154\165 +\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141\163 +\163\040\062\040\120\162\151\155\141\162\171\040\103\101\060\036 +\027\015\071\071\060\067\060\067\061\067\060\065\060\060\132\027 +\015\061\071\060\067\060\066\062\063\065\071\065\071\132\060\075 +\061\013\060\011\006\003\125\004\006\023\002\106\122\061\021\060 +\017\006\003\125\004\012\023\010\103\145\162\164\160\154\165\163 +\061\033\060\031\006\003\125\004\003\023\022\103\154\141\163\163 +\040\062\040\120\162\151\155\141\162\171\040\103\101\060\202\001 +\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000 +\003\202\001\017\000\060\202\001\012\002\202\001\001\000\334\120 +\226\320\022\370\065\322\010\170\172\266\122\160\375\157\356\317 +\271\021\313\135\167\341\354\351\176\004\215\326\314\157\163\103 +\127\140\254\063\012\104\354\003\137\034\200\044\221\345\250\221 +\126\022\202\367\340\053\364\333\256\141\056\211\020\215\153\154 +\272\263\002\275\325\066\305\110\067\043\342\360\132\067\122\063 +\027\022\342\321\140\115\276\057\101\021\343\366\027\045\014\213 +\221\300\033\231\173\231\126\015\257\356\322\274\107\127\343\171 +\111\173\064\211\047\044\204\336\261\354\351\130\116\376\116\337 +\132\276\101\255\254\010\305\030\016\357\322\123\356\154\320\235 +\022\001\023\215\334\200\142\367\225\251\104\210\112\161\116\140 +\125\236\333\043\031\171\126\007\014\077\143\013\134\260\342\276 +\176\025\374\224\063\130\101\070\164\304\341\217\213\337\046\254 +\037\265\213\073\267\103\131\153\260\044\246\155\220\213\304\162 +\352\135\063\230\267\313\336\136\173\357\224\361\033\076\312\311 +\041\301\305\230\002\252\242\366\133\167\233\365\176\226\125\064 +\034\147\151\300\361\102\343\107\254\374\050\034\146\125\002\003 +\001\000\001\243\201\214\060\201\211\060\017\006\003\125\035\023 +\004\010\060\006\001\001\377\002\001\012\060\013\006\003\125\035 +\017\004\004\003\002\001\006\060\035\006\003\125\035\016\004\026 +\004\024\343\163\055\337\313\016\050\014\336\335\263\244\312\171 +\270\216\273\350\060\211\060\021\006\011\140\206\110\001\206\370 +\102\001\001\004\004\003\002\001\006\060\067\006\003\125\035\037 +\004\060\060\056\060\054\240\052\240\050\206\046\150\164\164\160 +\072\057\057\167\167\167\056\143\145\162\164\160\154\165\163\056 +\143\157\155\057\103\122\114\057\143\154\141\163\163\062\056\143 +\162\154\060\015\006\011\052\206\110\206\367\015\001\001\005\005 +\000\003\202\001\001\000\247\124\317\210\104\031\313\337\324\177 +\000\337\126\063\142\265\367\121\001\220\353\303\077\321\210\104 +\351\044\135\357\347\024\275\040\267\232\074\000\376\155\237\333 +\220\334\327\364\142\326\213\160\135\347\345\004\110\251\150\174 +\311\361\102\363\154\177\305\172\174\035\121\210\272\322\012\076 +\047\135\336\055\121\116\323\023\144\151\344\056\343\323\347\233 +\011\231\246\340\225\233\316\032\327\177\276\074\316\122\263\021 +\025\301\017\027\315\003\273\234\045\025\272\242\166\211\374\006 +\361\030\320\223\113\016\174\202\267\245\364\366\137\376\355\100 +\246\235\204\164\071\271\334\036\205\026\332\051\033\206\043\000 +\311\273\211\176\156\200\210\036\057\024\264\003\044\250\062\157 +\003\232\107\054\060\276\126\306\247\102\002\160\033\352\100\330 +\272\005\003\160\007\244\226\377\375\110\063\012\341\334\245\201 +\220\233\115\335\175\347\347\262\315\134\310\152\225\370\245\366 +\215\304\135\170\010\276\173\006\326\111\317\031\066\120\043\056 +\010\346\236\005\115\107\030\325\026\351\261\326\266\020\325\273 +\227\277\242\216\264\124 +END + +# Trust for Certificate "Certplus Class 2 Primary CA" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Go Daddy Class 2 CA" +CKA_LABEL UTF8 "Certplus Class 2 Primary CA" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\047\226\272\346\077\030\001\342\167\046\033\240\327\167\160\002 -\217\040\356\344 +\164\040\164\101\162\234\335\222\354\171\061\330\043\020\215\302 +\201\222\342\273 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\221\336\006\045\253\332\375\062\027\014\273\045\027\052\204\147 +\210\054\214\122\270\242\074\363\367\273\003\352\256\254\102\013 END CKA_ISSUER MULTILINE_OCTAL -\060\143\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\041\060\037\006\003\125\004\012\023\030\124\150\145\040\107\157 -\040\104\141\144\144\171\040\107\162\157\165\160\054\040\111\156 -\143\056\061\061\060\057\006\003\125\004\013\023\050\107\157\040 -\104\141\144\144\171\040\103\154\141\163\163\040\062\040\103\145 -\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150 -\157\162\151\164\171 +\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154 +\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141 +\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\021\000\205\275\113\363\330\332\343\151\366\224\327\137\303 +\245\104\043 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Starfield Class 2 CA" +# Certificate "DST Root CA X3" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Starfield Class 2 CA" +CKA_LABEL UTF8 "DST Root CA X3" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\045\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151 -\145\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163 -\054\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023 -\051\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163 -\040\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156 -\040\101\165\164\150\157\162\151\164\171 +\060\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147 +\151\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124 +\162\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004 +\003\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130 +\063 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\045\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151 -\145\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163 -\054\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023 -\051\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163 -\040\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156 -\040\101\165\164\150\157\162\151\164\171 +\060\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147 +\151\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124 +\162\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004 +\003\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130 +\063 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\020\104\257\260\200\326\243\047\272\211\060\071\206\056\370 +\100\153 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\017\060\202\002\367\240\003\002\001\002\002\001\000 -\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061\045 -\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151\145 -\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163\054 -\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023\051 -\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163\040 -\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156\040 -\101\165\164\150\157\162\151\164\171\060\036\027\015\060\064\060 -\066\062\071\061\067\063\071\061\066\132\027\015\063\064\060\066 -\062\071\061\067\063\071\061\066\132\060\150\061\013\060\011\006 -\003\125\004\006\023\002\125\123\061\045\060\043\006\003\125\004 -\012\023\034\123\164\141\162\146\151\145\154\144\040\124\145\143 -\150\156\157\154\157\147\151\145\163\054\040\111\156\143\056\061 -\062\060\060\006\003\125\004\013\023\051\123\164\141\162\146\151 -\145\154\144\040\103\154\141\163\163\040\062\040\103\145\162\164 -\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162 -\151\164\171\060\202\001\040\060\015\006\011\052\206\110\206\367 -\015\001\001\001\005\000\003\202\001\015\000\060\202\001\010\002 -\202\001\001\000\267\062\310\376\351\161\246\004\205\255\014\021 -\144\337\316\115\357\310\003\030\207\077\241\253\373\074\246\237 -\360\303\241\332\324\330\156\053\123\220\373\044\244\076\204\360 -\236\350\137\354\345\047\104\365\050\246\077\173\336\340\052\360 -\310\257\123\057\236\312\005\001\223\036\217\146\034\071\247\115 -\372\132\266\163\004\045\146\353\167\177\347\131\306\112\231\045 -\024\124\353\046\307\363\177\031\325\060\160\217\257\260\106\052 -\377\255\353\051\355\327\237\252\004\207\243\324\371\211\245\064 -\137\333\103\221\202\066\331\146\074\261\270\271\202\375\234\072 -\076\020\310\073\357\006\145\146\172\233\031\030\075\377\161\121 -\074\060\056\137\276\075\167\163\262\135\006\154\303\043\126\232 -\053\205\046\222\034\247\002\263\344\077\015\257\010\171\202\270 -\066\075\352\234\323\065\263\274\151\312\365\314\235\350\375\144 -\215\027\200\063\156\136\112\135\231\311\036\207\264\235\032\300 -\325\156\023\065\043\136\337\233\137\075\357\326\367\166\302\352 -\076\273\170\015\034\102\147\153\004\330\370\326\332\157\213\362 -\104\240\001\253\002\001\003\243\201\305\060\201\302\060\035\006 -\003\125\035\016\004\026\004\024\277\137\267\321\316\335\037\206 -\364\133\125\254\334\327\020\302\016\251\210\347\060\201\222\006 -\003\125\035\043\004\201\212\060\201\207\200\024\277\137\267\321 -\316\335\037\206\364\133\125\254\334\327\020\302\016\251\210\347 -\241\154\244\152\060\150\061\013\060\011\006\003\125\004\006\023 -\002\125\123\061\045\060\043\006\003\125\004\012\023\034\123\164 -\141\162\146\151\145\154\144\040\124\145\143\150\156\157\154\157 -\147\151\145\163\054\040\111\156\143\056\061\062\060\060\006\003 -\125\004\013\023\051\123\164\141\162\146\151\145\154\144\040\103 -\154\141\163\163\040\062\040\103\145\162\164\151\146\151\143\141 -\164\151\157\156\040\101\165\164\150\157\162\151\164\171\202\001 -\000\060\014\006\003\125\035\023\004\005\060\003\001\001\377\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202 -\001\001\000\005\235\077\210\235\321\311\032\125\241\254\151\363 -\363\131\332\233\001\207\032\117\127\251\241\171\011\052\333\367 -\057\262\036\314\307\136\152\330\203\207\241\227\357\111\065\076 -\167\006\101\130\142\277\216\130\270\012\147\077\354\263\335\041 -\146\037\311\124\372\162\314\075\114\100\330\201\257\167\236\203 -\172\273\242\307\365\064\027\216\331\021\100\364\374\054\052\115 -\025\177\247\142\135\056\045\323\000\013\040\032\035\150\371\027 -\270\364\275\213\355\050\131\335\115\026\213\027\203\310\262\145 -\307\055\172\245\252\274\123\206\155\335\127\244\312\370\040\101 -\013\150\360\364\373\164\276\126\135\172\171\365\371\035\205\343 -\055\225\276\365\161\220\103\314\215\037\232\000\012\207\051\351 -\125\042\130\000\043\352\343\022\103\051\133\107\010\335\214\101 -\152\145\006\250\345\041\252\101\264\225\041\225\271\175\321\064 -\253\023\326\255\274\334\342\075\071\315\275\076\165\160\241\030 -\131\003\311\042\264\217\234\325\136\052\327\245\266\324\012\155 -\370\267\100\021\106\232\037\171\016\142\277\017\227\354\340\057 -\037\027\224 -END - -# Trust for Certificate "Starfield Class 2 CA" +\060\202\003\112\060\202\002\062\240\003\002\001\002\002\020\104 +\257\260\200\326\243\047\272\211\060\071\206\056\370\100\153\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\077 +\061\044\060\042\006\003\125\004\012\023\033\104\151\147\151\164 +\141\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165 +\163\164\040\103\157\056\061\027\060\025\006\003\125\004\003\023 +\016\104\123\124\040\122\157\157\164\040\103\101\040\130\063\060 +\036\027\015\060\060\060\071\063\060\062\061\061\062\061\071\132 +\027\015\062\061\060\071\063\060\061\064\060\061\061\065\132\060 +\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147\151 +\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124\162 +\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004\003 +\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130\063 +\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001 +\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001 +\000\337\257\351\227\120\010\203\127\264\314\142\145\366\220\202 +\354\307\323\054\153\060\312\133\354\331\303\175\307\100\301\030 +\024\213\340\350\063\166\111\052\343\077\041\111\223\254\116\016 +\257\076\110\313\145\356\374\323\041\017\145\322\052\331\062\217 +\214\345\367\167\260\022\173\265\225\300\211\243\251\272\355\163 +\056\172\014\006\062\203\242\176\212\024\060\315\021\240\341\052 +\070\271\171\012\061\375\120\275\200\145\337\267\121\143\203\310 +\342\210\141\352\113\141\201\354\122\153\271\242\342\113\032\050 +\237\110\243\236\014\332\011\216\076\027\056\036\335\040\337\133 +\306\052\212\253\056\275\160\255\305\013\032\045\220\164\162\305 +\173\152\253\064\326\060\211\377\345\150\023\173\124\013\310\326 +\256\354\132\234\222\036\075\144\263\214\306\337\277\311\101\160 +\354\026\162\325\046\354\070\125\071\103\320\374\375\030\134\100 +\361\227\353\325\232\233\215\035\272\332\045\271\306\330\337\301 +\025\002\072\253\332\156\361\076\056\365\134\010\234\074\326\203 +\151\344\020\233\031\052\266\051\127\343\345\075\233\237\360\002 +\135\002\003\001\000\001\243\102\060\100\060\017\006\003\125\035 +\023\001\001\377\004\005\060\003\001\001\377\060\016\006\003\125 +\035\017\001\001\377\004\004\003\002\001\006\060\035\006\003\125 +\035\016\004\026\004\024\304\247\261\244\173\054\161\372\333\341 +\113\220\165\377\304\025\140\205\211\020\060\015\006\011\052\206 +\110\206\367\015\001\001\005\005\000\003\202\001\001\000\243\032 +\054\233\027\000\134\251\036\356\050\146\067\072\277\203\307\077 +\113\303\011\240\225\040\135\343\331\131\104\322\076\015\076\275 +\212\113\240\164\037\316\020\202\234\164\032\035\176\230\032\335 +\313\023\113\263\040\104\344\221\351\314\374\175\245\333\152\345 +\376\346\375\340\116\335\267\000\072\265\160\111\257\362\345\353 +\002\361\321\002\213\031\313\224\072\136\110\304\030\036\130\031 +\137\036\002\132\360\014\361\261\255\251\334\131\206\213\156\351 +\221\365\206\312\372\271\146\063\252\131\133\316\342\247\026\163 +\107\313\053\314\231\260\067\110\317\343\126\113\365\317\017\014 +\162\062\207\306\360\104\273\123\162\155\103\365\046\110\232\122 +\147\267\130\253\376\147\166\161\170\333\015\242\126\024\023\071 +\044\061\205\242\250\002\132\060\107\341\335\120\007\274\002\011 +\220\000\353\144\143\140\233\026\274\210\311\022\346\322\175\221 +\213\371\075\062\215\145\264\351\174\261\127\166\352\305\266\050 +\071\277\025\145\034\310\366\167\226\152\012\215\167\013\330\221 +\013\004\216\007\333\051\266\012\356\235\202\065\065\020 +END + +# Trust for Certificate "DST Root CA X3" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Starfield Class 2 CA" +CKA_LABEL UTF8 "DST Root CA X3" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\255\176\034\050\260\144\357\217\140\003\100\040\024\303\320\343 -\067\016\265\212 +\332\311\002\117\124\330\366\337\224\223\137\261\163\046\070\312 +\152\327\174\023 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\062\112\113\273\310\143\151\233\276\164\232\306\335\035\106\044 +\101\003\122\334\017\367\120\033\026\360\002\216\272\157\105\305 END CKA_ISSUER MULTILINE_OCTAL -\060\150\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\045\060\043\006\003\125\004\012\023\034\123\164\141\162\146\151 -\145\154\144\040\124\145\143\150\156\157\154\157\147\151\145\163 -\054\040\111\156\143\056\061\062\060\060\006\003\125\004\013\023 -\051\123\164\141\162\146\151\145\154\144\040\103\154\141\163\163 -\040\062\040\103\145\162\164\151\146\151\143\141\164\151\157\156 -\040\101\165\164\150\157\162\151\164\171 +\060\077\061\044\060\042\006\003\125\004\012\023\033\104\151\147 +\151\164\141\154\040\123\151\147\156\141\164\165\162\145\040\124 +\162\165\163\164\040\103\157\056\061\027\060\025\006\003\125\004 +\003\023\016\104\123\124\040\122\157\157\164\040\103\101\040\130 +\063 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\020\104\257\260\200\326\243\047\272\211\060\071\206\056\370 +\100\153 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "StartCom Ltd." +# Certificate "DST ACES CA X6" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "StartCom Ltd." +CKA_LABEL UTF8 "DST ACES CA X6" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114 -\061\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145 -\154\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141 -\164\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162 -\164\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125 -\004\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171 -\040\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040 -\106\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151 -\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\061\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026 -\022\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056 -\157\162\147 +\060\133\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\040\060\036\006\003\125\004\012\023\027\104\151\147\151\164\141 +\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165\163 +\164\061\021\060\017\006\003\125\004\013\023\010\104\123\124\040 +\101\103\105\123\061\027\060\025\006\003\125\004\003\023\016\104 +\123\124\040\101\103\105\123\040\103\101\040\130\066 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114 -\061\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145 -\154\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141 -\164\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162 -\164\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125 -\004\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171 -\040\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040 -\106\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151 -\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\061\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026 -\022\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056 -\157\162\147 +\060\133\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\040\060\036\006\003\125\004\012\023\027\104\151\147\151\164\141 +\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165\163 +\164\061\021\060\017\006\003\125\004\013\023\010\104\123\124\040 +\101\103\105\123\061\027\060\025\006\003\125\004\003\023\016\104 +\123\124\040\101\103\105\123\040\103\101\040\130\066 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\020\015\136\231\012\326\235\267\170\354\330\007\126\073\206 +\025\331 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\026\060\202\004\177\240\003\002\001\002\002\001\000 -\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 -\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114\061 -\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145\154 -\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141\164 -\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162\164 -\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125\004 -\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171\040 -\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040\106 -\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\061 -\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026\022 -\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056\157 -\162\147\060\036\027\015\060\065\060\063\061\067\061\067\063\067 -\064\070\132\027\015\063\065\060\063\061\060\061\067\063\067\064 -\070\132\060\201\260\061\013\060\011\006\003\125\004\006\023\002 -\111\114\061\017\060\015\006\003\125\004\010\023\006\111\163\162 -\141\145\154\061\016\060\014\006\003\125\004\007\023\005\105\151 -\154\141\164\061\026\060\024\006\003\125\004\012\023\015\123\164 -\141\162\164\103\157\155\040\114\164\144\056\061\032\060\030\006 -\003\125\004\013\023\021\103\101\040\101\165\164\150\157\162\151 -\164\171\040\104\145\160\056\061\051\060\047\006\003\125\004\003 -\023\040\106\162\145\145\040\123\123\114\040\103\145\162\164\151 -\146\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151 -\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011 -\001\026\022\141\144\155\151\156\100\163\164\141\162\164\143\157 -\155\056\157\162\147\060\201\237\060\015\006\011\052\206\110\206 -\367\015\001\001\001\005\000\003\201\215\000\060\201\211\002\201 -\201\000\355\204\140\000\043\236\310\112\121\051\047\336\072\241 -\071\265\151\253\011\262\057\064\375\141\334\075\323\260\317\261 -\327\302\304\302\261\344\226\126\304\276\252\024\016\347\314\072 -\120\310\072\142\235\303\243\254\131\173\216\356\125\032\034\107 -\276\243\227\071\263\265\357\043\054\010\350\330\257\163\057\271 -\311\203\350\355\000\017\310\165\245\057\064\114\030\350\166\210 -\043\111\212\333\266\355\150\332\303\265\142\051\114\245\113\267 -\230\264\011\024\020\240\370\376\142\166\042\025\013\244\326\010 -\057\065\002\003\001\000\001\243\202\002\074\060\202\002\070\060 -\017\006\003\125\035\023\001\001\377\004\005\060\003\001\001\377 -\060\013\006\003\125\035\017\004\004\003\002\001\346\060\035\006 -\003\125\035\016\004\026\004\024\034\211\303\226\314\275\376\062 -\325\015\214\201\061\266\230\235\215\050\144\215\060\201\335\006 -\003\125\035\043\004\201\325\060\201\322\200\024\034\211\303\226 -\314\275\376\062\325\015\214\201\061\266\230\235\215\050\144\215 -\241\201\266\244\201\263\060\201\260\061\013\060\011\006\003\125 -\004\006\023\002\111\114\061\017\060\015\006\003\125\004\010\023 -\006\111\163\162\141\145\154\061\016\060\014\006\003\125\004\007 -\023\005\105\151\154\141\164\061\026\060\024\006\003\125\004\012 -\023\015\123\164\141\162\164\103\157\155\040\114\164\144\056\061 -\032\060\030\006\003\125\004\013\023\021\103\101\040\101\165\164 -\150\157\162\151\164\171\040\104\145\160\056\061\051\060\047\006 -\003\125\004\003\023\040\106\162\145\145\040\123\123\114\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110\206 -\367\015\001\011\001\026\022\141\144\155\151\156\100\163\164\141 -\162\164\143\157\155\056\157\162\147\202\001\000\060\035\006\003 -\125\035\021\004\026\060\024\201\022\141\144\155\151\156\100\163 -\164\141\162\164\143\157\155\056\157\162\147\060\035\006\003\125 -\035\022\004\026\060\024\201\022\141\144\155\151\156\100\163\164 -\141\162\164\143\157\155\056\157\162\147\060\021\006\011\140\206 -\110\001\206\370\102\001\001\004\004\003\002\000\007\060\057\006 -\011\140\206\110\001\206\370\102\001\015\004\042\026\040\106\162 -\145\145\040\123\123\114\040\103\145\162\164\151\146\151\143\141 -\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060\062 -\006\011\140\206\110\001\206\370\102\001\004\004\045\026\043\150 -\164\164\160\072\057\057\143\145\162\164\056\163\164\141\162\164 -\143\157\155\056\157\162\147\057\143\141\055\143\162\154\056\143 -\162\154\060\050\006\011\140\206\110\001\206\370\102\001\002\004 -\033\026\031\150\164\164\160\072\057\057\143\145\162\164\056\163 -\164\141\162\164\143\157\155\056\157\162\147\057\060\071\006\011 -\140\206\110\001\206\370\102\001\010\004\054\026\052\150\164\164 -\160\072\057\057\143\145\162\164\056\163\164\141\162\164\143\157 -\155\056\157\162\147\057\151\156\144\145\170\056\160\150\160\077 -\141\160\160\075\061\061\061\060\015\006\011\052\206\110\206\367 -\015\001\001\004\005\000\003\201\201\000\154\161\045\341\236\064 -\221\041\357\333\154\275\001\010\126\217\210\330\101\072\123\365 -\162\337\047\127\113\166\204\367\150\244\376\353\077\011\176\050 -\270\127\352\037\301\252\342\377\226\237\111\231\346\262\225\163 -\226\306\110\307\136\215\007\162\126\370\203\217\237\167\257\051 -\323\105\016\244\356\260\066\164\055\360\315\230\043\173\067\113 -\332\376\121\230\304\036\064\074\210\375\231\073\120\247\301\213 -\063\307\302\122\026\022\225\123\145\042\357\272\213\316\142\333 -\160\043\261\200\337\032\040\070\347\176 -END - -# Trust for Certificate "StartCom Ltd." +\060\202\004\011\060\202\002\361\240\003\002\001\002\002\020\015 +\136\231\012\326\235\267\170\354\330\007\126\073\206\025\331\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\133 +\061\013\060\011\006\003\125\004\006\023\002\125\123\061\040\060 +\036\006\003\125\004\012\023\027\104\151\147\151\164\141\154\040 +\123\151\147\156\141\164\165\162\145\040\124\162\165\163\164\061 +\021\060\017\006\003\125\004\013\023\010\104\123\124\040\101\103 +\105\123\061\027\060\025\006\003\125\004\003\023\016\104\123\124 +\040\101\103\105\123\040\103\101\040\130\066\060\036\027\015\060 +\063\061\061\062\060\062\061\061\071\065\070\132\027\015\061\067 +\061\061\062\060\062\061\061\071\065\070\132\060\133\061\013\060 +\011\006\003\125\004\006\023\002\125\123\061\040\060\036\006\003 +\125\004\012\023\027\104\151\147\151\164\141\154\040\123\151\147 +\156\141\164\165\162\145\040\124\162\165\163\164\061\021\060\017 +\006\003\125\004\013\023\010\104\123\124\040\101\103\105\123\061 +\027\060\025\006\003\125\004\003\023\016\104\123\124\040\101\103 +\105\123\040\103\101\040\130\066\060\202\001\042\060\015\006\011 +\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000 +\060\202\001\012\002\202\001\001\000\271\075\365\054\311\224\334 +\165\212\225\135\143\350\204\167\166\146\271\131\221\134\106\335 +\222\076\237\371\016\003\264\075\141\222\275\043\046\265\143\356 +\222\322\236\326\074\310\015\220\137\144\201\261\250\010\015\114 +\330\371\323\005\050\122\264\001\045\305\225\034\014\176\076\020 +\204\165\317\301\031\221\143\317\350\250\221\210\271\103\122\273 +\200\261\125\211\213\061\372\320\267\166\276\101\075\060\232\244 +\042\045\027\163\350\036\342\323\254\052\275\133\070\041\325\052 +\113\327\125\175\343\072\125\275\327\155\153\002\127\153\346\107 +\174\010\310\202\272\336\247\207\075\241\155\270\060\126\302\263 +\002\201\137\055\365\342\232\060\030\050\270\146\323\313\001\226 +\157\352\212\105\125\326\340\235\377\147\053\027\002\246\116\032 +\152\021\013\176\267\173\347\230\326\214\166\157\301\073\333\120 +\223\176\345\320\216\037\067\270\275\272\306\237\154\351\174\063 +\362\062\074\046\107\372\047\044\002\311\176\035\133\210\102\023 +\152\065\174\175\065\351\056\146\221\162\223\325\062\046\304\164 +\365\123\243\263\135\232\366\011\313\002\003\001\000\001\243\201 +\310\060\201\305\060\017\006\003\125\035\023\001\001\377\004\005 +\060\003\001\001\377\060\016\006\003\125\035\017\001\001\377\004 +\004\003\002\001\306\060\037\006\003\125\035\021\004\030\060\026 +\201\024\160\153\151\055\157\160\163\100\164\162\165\163\164\144 +\163\164\056\143\157\155\060\142\006\003\125\035\040\004\133\060 +\131\060\127\006\012\140\206\110\001\145\003\002\001\001\001\060 +\111\060\107\006\010\053\006\001\005\005\007\002\001\026\073\150 +\164\164\160\072\057\057\167\167\167\056\164\162\165\163\164\144 +\163\164\056\143\157\155\057\143\145\162\164\151\146\151\143\141 +\164\145\163\057\160\157\154\151\143\171\057\101\103\105\123\055 +\151\156\144\145\170\056\150\164\155\154\060\035\006\003\125\035 +\016\004\026\004\024\011\162\006\116\030\103\017\345\326\314\303 +\152\213\061\173\170\217\250\203\270\060\015\006\011\052\206\110 +\206\367\015\001\001\005\005\000\003\202\001\001\000\243\330\216 +\326\262\333\316\005\347\062\315\001\323\004\003\345\166\344\126 +\053\234\231\220\350\010\060\154\337\175\075\356\345\277\265\044 +\100\204\111\341\321\050\256\304\302\072\123\060\210\361\365\167 +\156\121\312\372\377\231\257\044\137\033\240\375\362\254\204\312 +\337\251\360\137\004\056\255\026\277\041\227\020\201\075\343\377 +\207\215\062\334\224\345\107\212\136\152\023\311\224\225\075\322 +\356\310\064\225\320\200\324\255\062\010\200\124\074\340\275\122 +\123\327\122\174\262\151\077\177\172\317\152\164\312\372\004\052 +\234\114\132\006\245\351\040\255\105\146\017\151\361\335\277\351 +\343\062\213\372\340\301\206\115\162\074\056\330\223\170\012\052 +\370\330\322\047\075\031\211\137\132\173\212\073\314\014\332\121 +\256\307\013\367\053\260\067\005\354\274\127\043\342\070\322\233 +\150\363\126\022\210\117\102\174\270\061\304\265\333\344\310\041 +\064\351\110\021\065\356\372\307\222\127\305\237\064\344\307\366 +\367\016\013\114\234\150\170\173\161\061\307\353\036\340\147\101 +\363\267\240\247\315\345\172\063\066\152\372\232\053 +END + +# Trust for Certificate "DST ACES CA X6" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "StartCom Ltd." +CKA_LABEL UTF8 "DST ACES CA X6" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\225\346\255\370\327\161\106\002\115\325\152\041\262\347\077\315 -\362\073\065\377 +\100\124\332\157\034\077\100\164\254\355\017\354\315\333\171\321 +\123\373\220\035 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\010\174\130\037\122\053\104\264\073\171\315\001\370\305\303\311 +\041\330\114\202\053\231\011\063\242\353\024\044\215\216\137\350 END CKA_ISSUER MULTILINE_OCTAL -\060\201\260\061\013\060\011\006\003\125\004\006\023\002\111\114 -\061\017\060\015\006\003\125\004\010\023\006\111\163\162\141\145 -\154\061\016\060\014\006\003\125\004\007\023\005\105\151\154\141 -\164\061\026\060\024\006\003\125\004\012\023\015\123\164\141\162 -\164\103\157\155\040\114\164\144\056\061\032\060\030\006\003\125 -\004\013\023\021\103\101\040\101\165\164\150\157\162\151\164\171 -\040\104\145\160\056\061\051\060\047\006\003\125\004\003\023\040 -\106\162\145\145\040\123\123\114\040\103\145\162\164\151\146\151 -\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\061\041\060\037\006\011\052\206\110\206\367\015\001\011\001\026 -\022\141\144\155\151\156\100\163\164\141\162\164\143\157\155\056 -\157\162\147 +\060\133\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\040\060\036\006\003\125\004\012\023\027\104\151\147\151\164\141 +\154\040\123\151\147\156\141\164\165\162\145\040\124\162\165\163 +\164\061\021\060\017\006\003\125\004\013\023\010\104\123\124\040 +\101\103\105\123\061\027\060\025\006\003\125\004\003\023\016\104 +\123\124\040\101\103\105\123\040\103\101\040\130\066 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\000 +\002\020\015\136\231\012\326\235\267\170\354\330\007\126\073\206 +\025\331 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Taiwan GRCA" +# Certificate "TURKTRUST Certificate Services Provider Root 1" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Taiwan GRCA" +CKA_LABEL UTF8 "TURKTRUST Certificate Services Provider Root 1" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061 -\060\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156 -\155\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303 +\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157 +\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151 +\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304 +\261\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124 +\122\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101 +\122\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051 +\040\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124 +\040\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151 +\155\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303 +\274\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164 +\154\145\162\151\040\101\056\305\236\056 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061 -\060\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156 -\155\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303 +\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157 +\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151 +\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304 +\261\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124 +\122\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101 +\122\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051 +\040\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124 +\040\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151 +\155\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303 +\274\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164 +\154\145\162\151\040\101\056\305\236\056 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\037\235\131\132\327\057\302\006\104\245\200\010\151\343 -\136\366 +\002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\162\060\202\003\132\240\003\002\001\002\002\020\037 -\235\131\132\327\057\302\006\104\245\200\010\151\343\136\366\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\077 -\061\013\060\011\006\003\125\004\006\023\002\124\127\061\060\060 -\056\006\003\125\004\012\014\047\107\157\166\145\162\156\155\145 -\156\164\040\122\157\157\164\040\103\145\162\164\151\146\151\143 -\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171\060 -\036\027\015\060\062\061\062\060\065\061\063\062\063\063\063\132 -\027\015\063\062\061\062\060\065\061\063\062\063\063\063\132\060 -\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061\060 -\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156\155 -\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146\151 -\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164\171 -\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001 -\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001 -\000\232\045\270\354\314\242\165\250\173\367\316\133\131\212\311 -\321\206\022\010\124\354\234\362\347\106\366\210\363\174\351\245 -\337\114\107\066\244\033\001\034\177\036\127\212\215\303\305\321 -\041\343\332\044\077\110\053\373\237\056\241\224\347\054\034\223 -\321\277\033\001\207\123\231\316\247\365\012\041\166\167\377\251 -\267\306\163\224\117\106\367\020\111\067\372\250\131\111\135\152 -\201\007\126\362\212\371\006\320\367\160\042\115\264\267\101\271 -\062\270\261\360\261\303\234\077\160\375\123\335\201\252\330\143 -\170\366\330\123\156\241\254\152\204\044\162\124\206\306\322\262 -\312\034\016\171\201\326\265\160\142\010\001\056\116\117\016\325 -\021\257\251\257\345\232\277\334\314\207\155\046\344\311\127\242 -\373\226\371\314\341\077\123\214\154\114\176\233\123\010\013\154 -\027\373\147\310\302\255\261\315\200\264\227\334\166\001\026\025 -\351\152\327\244\341\170\107\316\206\325\373\061\363\372\061\276 -\064\252\050\373\160\114\035\111\307\257\054\235\155\146\246\266 -\215\144\176\265\040\152\235\073\201\266\217\100\000\147\113\211 -\206\270\314\145\376\025\123\351\004\301\326\137\035\104\327\012 -\057\047\232\106\175\241\015\165\255\124\206\025\334\111\073\361 -\226\316\017\233\240\354\243\172\135\276\325\052\165\102\345\173 -\336\245\266\252\257\050\254\254\220\254\070\267\325\150\065\046 -\172\334\367\073\363\375\105\233\321\273\103\170\156\157\361\102 -\124\152\230\360\015\255\227\351\122\136\351\325\152\162\336\152 -\367\033\140\024\364\245\344\266\161\147\252\037\352\342\115\301 -\102\100\376\147\106\027\070\057\107\077\161\234\256\345\041\312 -\141\055\155\007\250\204\174\055\356\121\045\361\143\220\236\375 -\341\127\210\153\357\212\043\155\261\346\275\077\255\321\075\226 -\013\205\215\315\153\047\273\267\005\233\354\273\221\251\012\007 -\022\002\227\116\040\220\360\377\015\036\342\101\073\323\100\072 -\347\215\135\332\146\344\002\260\007\122\230\134\016\216\063\234 -\302\246\225\373\125\031\156\114\216\256\113\017\275\301\070\115 -\136\217\204\035\146\315\305\140\226\264\122\132\005\211\216\225 -\172\230\301\221\074\225\043\262\016\364\171\264\311\174\301\112 -\041\002\003\001\000\001\243\152\060\150\060\035\006\003\125\035 -\016\004\026\004\024\314\314\357\314\051\140\244\073\261\222\266 -\074\372\062\142\217\254\045\025\073\060\014\006\003\125\035\023 -\004\005\060\003\001\001\377\060\071\006\004\147\052\007\000\004 -\061\060\057\060\055\002\001\000\060\011\006\005\053\016\003\002 -\032\005\000\060\007\006\005\147\052\003\000\000\004\024\003\233 -\360\042\023\377\225\050\066\323\334\236\300\062\373\061\072\212 -\121\145\060\015\006\011\052\206\110\206\367\015\001\001\005\005 -\000\003\202\002\001\000\100\200\112\372\046\311\316\136\060\335 -\117\206\164\166\130\365\256\263\203\063\170\244\172\164\027\031 -\116\351\122\265\271\340\012\164\142\252\150\312\170\240\114\232 -\216\054\043\056\325\152\022\044\277\324\150\323\212\320\330\234 -\237\264\037\014\336\070\176\127\070\374\215\342\117\136\014\237 -\253\073\322\377\165\227\313\244\343\147\010\377\345\300\026\265 -\110\001\175\351\371\012\377\033\345\152\151\277\170\041\250\302 -\247\043\251\206\253\166\126\350\016\014\366\023\335\052\146\212 -\144\111\075\032\030\207\220\004\237\102\122\267\117\313\376\107 -\101\166\065\357\377\000\166\066\105\062\233\306\106\205\135\342 -\044\260\036\343\110\226\230\127\107\224\125\172\017\101\261\104 -\044\363\301\376\032\153\277\210\375\301\246\332\223\140\136\201 -\112\231\040\234\110\146\031\265\000\171\124\017\270\054\057\113 -\274\251\135\133\140\177\214\207\245\340\122\143\052\276\330\073 -\205\100\025\376\036\266\145\077\305\113\332\176\265\172\065\051 -\243\056\172\230\140\042\243\364\175\047\116\055\352\264\164\074 -\351\017\244\063\017\020\021\274\023\001\326\345\016\323\277\265 -\022\242\341\105\043\300\314\010\156\141\267\211\253\203\343\044 -\036\346\135\007\347\037\040\076\317\147\310\347\254\060\155\047 -\113\150\156\113\052\134\002\010\064\333\370\166\344\147\243\046 -\234\077\242\062\302\112\305\201\030\061\020\126\252\204\357\055 -\012\377\270\037\167\322\277\245\130\240\142\344\327\113\221\165 -\215\211\200\230\176\155\313\123\116\136\257\366\262\227\205\227 -\271\332\125\006\271\044\356\327\306\070\036\143\033\022\073\225 -\341\130\254\362\337\204\325\137\231\057\015\125\133\346\070\333 -\056\077\162\351\110\205\313\273\051\023\217\036\070\125\271\363 -\262\304\060\231\043\116\135\362\110\241\022\014\334\022\220\011 -\220\124\221\003\074\107\345\325\311\145\340\267\113\175\354\107 -\323\263\013\076\255\236\320\164\000\016\353\275\121\255\300\336 -\054\300\303\152\376\357\334\013\247\372\106\337\140\333\234\246 -\131\120\165\043\151\163\223\262\371\374\002\323\107\346\161\316 -\020\002\356\047\214\204\377\254\105\015\023\134\203\062\340\045 -\245\206\054\174\364\022 -END - -# Trust for Certificate "Taiwan GRCA" +\060\202\003\373\060\202\002\343\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303\234 +\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157\156 +\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151\172 +\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304\261 +\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124\122 +\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101\122 +\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051\040 +\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124\040 +\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151\155 +\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303\274 +\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164\154 +\145\162\151\040\101\056\305\236\056\060\036\027\015\060\065\060 +\065\061\063\061\060\062\067\061\067\132\027\015\061\065\060\063 +\062\062\061\060\062\067\061\067\132\060\201\267\061\077\060\075 +\006\003\125\004\003\014\066\124\303\234\122\113\124\122\125\123 +\124\040\105\154\145\153\164\162\157\156\151\153\040\123\145\162 +\164\151\146\151\153\141\040\110\151\172\155\145\164\040\123\141 +\304\237\154\141\171\304\261\143\304\261\163\304\261\061\013\060 +\011\006\003\125\004\006\014\002\124\122\061\017\060\015\006\003 +\125\004\007\014\006\101\116\113\101\122\101\061\126\060\124\006 +\003\125\004\012\014\115\050\143\051\040\062\060\060\065\040\124 +\303\234\122\113\124\122\125\123\124\040\102\151\154\147\151\040 +\304\260\154\145\164\151\305\237\151\155\040\166\145\040\102\151 +\154\151\305\237\151\155\040\107\303\274\166\145\156\154\151\304 +\237\151\040\110\151\172\155\145\164\154\145\162\151\040\101\056 +\305\236\056\060\202\001\042\060\015\006\011\052\206\110\206\367 +\015\001\001\001\005\000\003\202\001\017\000\060\202\001\012\002 +\202\001\001\000\312\122\005\326\143\003\330\034\137\335\322\173 +\135\362\014\140\141\133\153\073\164\053\170\015\175\105\275\042 +\164\350\214\003\301\306\021\052\075\225\274\251\224\260\273\221 +\227\310\151\174\204\305\264\221\154\154\023\152\244\125\255\244 +\205\350\225\176\263\000\257\000\302\005\030\365\160\235\066\213 +\256\313\344\033\201\177\223\210\373\152\125\273\175\205\222\316 +\272\130\237\333\062\305\275\135\357\042\112\057\101\007\176\111 +\141\263\206\354\116\246\101\156\204\274\003\354\365\073\034\310 +\037\302\356\250\356\352\022\112\215\024\317\363\012\340\120\071 +\371\010\065\370\021\131\255\347\042\352\113\312\024\006\336\102 +\272\262\231\363\055\124\210\020\006\352\341\032\076\075\147\037 +\373\316\373\174\202\350\021\135\112\301\271\024\352\124\331\146 +\233\174\211\175\004\232\142\311\351\122\074\236\234\357\322\365 +\046\344\346\345\030\174\213\156\337\154\314\170\133\117\162\262 +\313\134\077\214\005\215\321\114\214\255\222\307\341\170\177\145 +\154\111\006\120\054\236\062\302\327\112\306\165\212\131\116\165 +\157\107\136\301\002\003\001\000\001\243\020\060\016\060\014\006 +\003\125\035\023\004\005\060\003\001\001\377\060\015\006\011\052 +\206\110\206\367\015\001\001\005\005\000\003\202\001\001\000\025 +\365\125\377\067\226\200\131\041\244\374\241\025\114\040\366\324 +\137\332\003\044\374\317\220\032\364\041\012\232\356\072\261\152 +\357\357\370\140\321\114\066\146\105\035\363\146\002\164\004\173 +\222\060\250\336\012\166\017\357\225\156\275\311\067\346\032\015 +\254\211\110\133\314\203\066\302\365\106\134\131\202\126\264\325 +\376\043\264\330\124\034\104\253\304\247\345\024\316\074\101\141 +\174\103\346\315\304\201\011\213\044\373\124\045\326\026\250\226 +\014\147\007\157\263\120\107\343\034\044\050\335\052\230\244\141 +\376\333\352\022\067\274\001\032\064\205\275\156\117\347\221\162 +\007\104\205\036\130\312\124\104\335\367\254\271\313\211\041\162 +\333\217\300\151\051\227\052\243\256\030\043\227\034\101\052\213 +\174\052\301\174\220\350\251\050\300\323\221\306\255\050\207\100 +\150\265\377\354\247\322\323\070\030\234\323\175\151\135\360\306 +\245\036\044\033\243\107\374\151\007\150\347\344\232\264\355\017 +\241\207\207\002\316\207\322\110\116\341\274\377\313\361\162\222 +\104\144\003\045\352\336\133\156\237\311\362\116\254\335\307 +END + +# Trust for Certificate "TURKTRUST Certificate Services Provider Root 1" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Taiwan GRCA" +CKA_LABEL UTF8 "TURKTRUST Certificate Services Provider Root 1" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\364\213\021\277\336\253\276\224\124\040\161\346\101\336\153\276 -\210\053\100\271 +\171\230\243\010\341\115\145\205\346\302\036\025\072\161\237\272 +\132\323\112\331 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\067\205\104\123\062\105\037\040\360\363\225\341\045\304\103\116 +\361\152\042\030\311\315\337\316\202\035\035\267\170\134\251\245 END CKA_ISSUER MULTILINE_OCTAL -\060\077\061\013\060\011\006\003\125\004\006\023\002\124\127\061 -\060\060\056\006\003\125\004\012\014\047\107\157\166\145\162\156 -\155\145\156\164\040\122\157\157\164\040\103\145\162\164\151\146 -\151\143\141\164\151\157\156\040\101\165\164\150\157\162\151\164 -\171 +\060\201\267\061\077\060\075\006\003\125\004\003\014\066\124\303 +\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157 +\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151 +\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304 +\261\163\304\261\061\013\060\011\006\003\125\004\006\014\002\124 +\122\061\017\060\015\006\003\125\004\007\014\006\101\116\113\101 +\122\101\061\126\060\124\006\003\125\004\012\014\115\050\143\051 +\040\062\060\060\065\040\124\303\234\122\113\124\122\125\123\124 +\040\102\151\154\147\151\040\304\260\154\145\164\151\305\237\151 +\155\040\166\145\040\102\151\154\151\305\237\151\155\040\107\303 +\274\166\145\156\154\151\304\237\151\040\110\151\172\155\145\164 +\154\145\162\151\040\101\056\305\236\056 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\037\235\131\132\327\057\302\006\104\245\200\010\151\343 -\136\366 +\002\001\001 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -13974,275 +15399,450 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Firmaprofesional Root CA" +# Certificate "TURKTRUST Certificate Services Provider Root 2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Firmaprofesional Root CA" +CKA_LABEL UTF8 "TURKTRUST Certificate Services Provider Root 2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165 -\156\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145 -\154\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101 -\165\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164 -\151\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160 -\162\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101 -\066\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206 -\110\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155 -\141\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155 +\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303 +\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157 +\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151 +\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304 +\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124 +\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141 +\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234 +\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260 +\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151 +\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151 +\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236 +\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060 +\065 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165 -\156\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145 -\154\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101 -\165\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164 -\151\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160 -\162\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101 -\066\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206 -\110\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155 -\141\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155 +\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303 +\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157 +\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151 +\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304 +\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124 +\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141 +\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234 +\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260 +\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151 +\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151 +\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236 +\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060 +\065 END CKA_SERIAL_NUMBER MULTILINE_OCTAL \002\001\001 END CKA_VALUE MULTILINE_OCTAL -\060\202\004\127\060\202\003\077\240\003\002\001\002\002\001\001 +\060\202\004\074\060\202\003\044\240\003\002\001\002\002\001\001 \060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 -\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123\061 -\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165\156 -\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145\154 -\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101\165 -\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164\151 -\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160\162 -\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101\066 -\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206\110 -\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155\141 -\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155\060 -\036\027\015\060\061\061\060\062\064\062\062\060\060\060\060\132 -\027\015\061\063\061\060\062\064\062\062\060\060\060\060\132\060 -\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123\061 -\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165\156 -\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145\154 -\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101\165 -\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164\151 -\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160\162 -\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101\066 -\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206\110 -\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155\141 -\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155\060 -\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001\001 -\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001\000 -\347\043\003\157\157\043\245\136\170\316\225\054\355\224\036\156 -\012\236\001\307\352\060\321\054\235\335\067\350\233\230\171\126 -\323\374\163\337\320\212\336\125\217\121\371\132\352\336\265\160 -\304\355\244\355\377\243\015\156\017\144\120\061\257\001\047\130 -\256\376\154\247\112\057\027\055\323\163\325\023\034\217\131\245 -\064\054\035\124\004\105\315\150\270\240\300\003\245\317\205\102 -\107\225\050\133\317\357\200\154\340\220\227\212\001\074\035\363 -\207\020\060\046\110\175\327\374\351\235\221\161\377\101\232\251 -\100\265\067\234\051\040\117\037\122\343\240\175\023\155\124\267 -\012\336\351\152\116\007\254\254\031\137\334\176\142\164\366\262 -\005\000\272\205\240\375\035\070\156\313\132\273\206\274\224\147 -\063\065\203\054\037\043\315\370\310\221\161\314\227\213\357\256 -\017\334\051\003\033\300\071\353\160\355\301\156\016\330\147\013 -\211\251\274\065\344\357\266\064\264\245\266\304\055\245\276\320 -\303\224\044\110\333\337\226\323\000\265\146\032\213\146\005\017 -\335\077\077\313\077\252\136\232\112\370\264\112\357\225\067\033 -\002\003\001\000\001\243\201\237\060\201\234\060\052\006\003\125 -\035\021\004\043\060\041\206\037\150\164\164\160\072\057\057\167 -\167\167\056\146\151\162\155\141\160\162\157\146\145\163\151\157 -\156\141\154\056\143\157\155\060\022\006\003\125\035\023\001\001 -\377\004\010\060\006\001\001\377\002\001\001\060\053\006\003\125 -\035\020\004\044\060\042\200\017\062\060\060\061\061\060\062\064 -\062\062\060\060\060\060\132\201\017\062\060\061\063\061\060\062 -\064\062\062\060\060\060\060\132\060\016\006\003\125\035\017\001 -\001\377\004\004\003\002\001\006\060\035\006\003\125\035\016\004 -\026\004\024\063\013\240\146\321\352\332\316\336\142\223\004\050 -\122\265\024\177\070\150\267\060\015\006\011\052\206\110\206\367 -\015\001\001\005\005\000\003\202\001\001\000\107\163\376\215\047 -\124\360\365\324\167\234\047\171\127\127\267\025\126\354\307\330 -\130\267\001\002\364\063\355\223\120\210\236\174\106\261\275\077 -\024\157\361\263\107\110\213\214\227\006\327\352\176\243\134\052 -\273\115\057\107\342\370\071\006\311\234\056\061\032\003\170\364 -\274\070\306\042\213\063\061\360\026\004\004\175\371\166\344\113 -\327\300\346\203\354\131\314\077\336\377\117\153\267\147\176\246 -\206\201\062\043\003\235\310\367\137\301\112\140\245\222\251\261 -\244\240\140\303\170\207\263\042\363\052\353\133\251\355\005\253 -\067\017\261\342\323\225\166\143\126\164\214\130\162\033\067\345 -\144\241\276\115\014\223\230\014\227\366\207\155\263\077\347\313 -\200\246\355\210\307\137\120\142\002\350\231\164\026\320\346\264 -\071\361\047\313\310\100\326\343\206\020\251\043\022\222\340\151 -\101\143\247\257\045\013\300\305\222\313\036\230\243\132\272\305 -\063\017\240\227\001\335\177\340\173\326\006\124\317\241\342\115 -\070\353\113\120\265\313\046\364\312\332\160\112\152\241\342\171 -\252\341\247\063\366\375\112\037\366\331\140 +\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303\234 +\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157\156 +\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151\172 +\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304\261 +\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124\122 +\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141\162 +\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234\122 +\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260\154 +\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151\305 +\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151\040 +\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236\056 +\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060\065 +\060\036\027\015\060\065\061\061\060\067\061\060\060\067\065\067 +\132\027\015\061\065\060\071\061\066\061\060\060\067\065\067\132 +\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303 +\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157 +\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151 +\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304 +\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124 +\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141 +\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234 +\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260 +\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151 +\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151 +\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236 +\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060 +\065\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001 +\001\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001 +\001\000\251\066\176\303\221\103\114\303\031\230\010\310\307\130 +\173\117\026\214\245\316\111\001\037\163\016\254\165\023\246\372 +\236\054\040\336\330\220\016\012\321\151\322\047\373\252\167\237 +\047\122\045\342\313\135\330\330\203\120\027\175\212\265\202\077 +\004\216\264\325\360\111\247\144\267\036\056\137\040\234\120\165 +\117\257\341\265\101\024\364\230\222\210\307\345\345\144\107\141 +\107\171\375\300\121\361\301\231\347\334\316\152\373\257\265\001 +\060\334\106\034\357\212\354\225\357\334\377\257\020\034\353\235 +\330\260\252\152\205\030\015\027\311\076\277\361\233\320\011\211 +\102\375\240\102\264\235\211\121\125\051\317\033\160\274\204\124 +\255\301\023\037\230\364\056\166\140\213\135\077\232\255\312\014 +\277\247\126\133\217\167\270\325\236\171\111\222\077\340\361\227 +\044\172\154\233\027\017\155\357\123\230\221\053\344\017\276\131 +\171\007\170\273\227\225\364\237\151\324\130\207\012\251\343\314 +\266\130\031\237\046\041\261\304\131\215\262\101\165\300\255\151 +\316\234\000\010\362\066\377\076\360\241\017\032\254\024\375\246 +\140\017\002\003\001\000\001\243\103\060\101\060\035\006\003\125 +\035\016\004\026\004\024\331\067\263\116\005\375\331\317\237\022 +\026\256\266\211\057\353\045\072\210\034\060\017\006\003\125\035 +\017\001\001\377\004\005\003\003\007\006\000\060\017\006\003\125 +\035\023\001\001\377\004\005\060\003\001\001\377\060\015\006\011 +\052\206\110\206\367\015\001\001\005\005\000\003\202\001\001\000 +\162\140\226\267\311\334\330\051\136\043\205\137\262\263\055\166 +\373\210\327\027\376\173\155\105\270\366\205\154\237\042\374\052 +\020\042\354\252\271\060\366\253\130\326\071\020\061\231\051\000 +\275\211\146\101\373\164\336\221\301\030\013\237\265\141\313\235 +\072\276\365\250\224\243\042\125\156\027\111\377\322\051\361\070 +\046\135\357\245\252\072\371\161\173\346\332\130\035\323\164\302 +\001\372\076\151\130\137\255\313\150\276\024\056\233\154\300\266 +\334\240\046\372\167\032\342\044\332\032\067\340\147\255\321\163 +\203\015\245\032\035\156\022\222\176\204\142\000\027\275\274\045 +\030\127\362\327\251\157\131\210\274\064\267\056\205\170\235\226 +\334\024\303\054\212\122\233\226\214\122\146\075\206\026\213\107 +\270\121\011\214\352\175\315\210\162\263\140\063\261\360\012\104 +\357\017\365\011\067\210\044\016\054\153\040\072\242\372\021\362 +\100\065\234\104\150\143\073\254\063\157\143\274\054\273\362\322 +\313\166\175\175\210\330\035\310\005\035\156\274\224\251\146\214 +\167\161\307\372\221\372\057\121\236\351\071\122\266\347\004\102 +END + +# Trust for Certificate "TURKTRUST Certificate Services Provider Root 2" +CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "TURKTRUST Certificate Services Provider Root 2" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\264\065\324\341\021\235\034\146\220\247\111\353\263\224\275\143 +\173\247\202\267 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\067\245\156\324\261\045\204\227\267\375\126\025\172\371\242\000 +END +CKA_ISSUER MULTILINE_OCTAL +\060\201\276\061\077\060\075\006\003\125\004\003\014\066\124\303 +\234\122\113\124\122\125\123\124\040\105\154\145\153\164\162\157 +\156\151\153\040\123\145\162\164\151\146\151\153\141\040\110\151 +\172\155\145\164\040\123\141\304\237\154\141\171\304\261\143\304 +\261\163\304\261\061\013\060\011\006\003\125\004\006\023\002\124 +\122\061\017\060\015\006\003\125\004\007\014\006\101\156\153\141 +\162\141\061\135\060\133\006\003\125\004\012\014\124\124\303\234 +\122\113\124\122\125\123\124\040\102\151\154\147\151\040\304\260 +\154\145\164\151\305\237\151\155\040\166\145\040\102\151\154\151 +\305\237\151\155\040\107\303\274\166\145\156\154\151\304\237\151 +\040\110\151\172\155\145\164\154\145\162\151\040\101\056\305\236 +\056\040\050\143\051\040\113\141\163\304\261\155\040\062\060\060 +\065 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\001 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + +# +# Certificate "SwissSign Platinum CA - G2" +# +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "SwissSign Platinum CA - G2" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003\023 +\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164\151 +\156\165\155\040\103\101\040\055\040\107\062 END - -# Trust for Certificate "Firmaprofesional Root CA" +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003\023 +\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164\151 +\156\165\155\040\103\101\040\055\040\107\062 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\010\116\262\000\147\014\003\135\117 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\005\301\060\202\003\251\240\003\002\001\002\002\010\116 +\262\000\147\014\003\135\117\060\015\006\011\052\206\110\206\367 +\015\001\001\005\005\000\060\111\061\013\060\011\006\003\125\004 +\006\023\002\103\110\061\025\060\023\006\003\125\004\012\023\014 +\123\167\151\163\163\123\151\147\156\040\101\107\061\043\060\041 +\006\003\125\004\003\023\032\123\167\151\163\163\123\151\147\156 +\040\120\154\141\164\151\156\165\155\040\103\101\040\055\040\107 +\062\060\036\027\015\060\066\061\060\062\065\060\070\063\066\060 +\060\132\027\015\063\066\061\060\062\065\060\070\063\066\060\060 +\132\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110 +\061\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163 +\123\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003 +\023\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164 +\151\156\165\155\040\103\101\040\055\040\107\062\060\202\002\042 +\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003 +\202\002\017\000\060\202\002\012\002\202\002\001\000\312\337\242 +\002\342\332\370\374\007\026\261\336\140\252\336\226\134\144\037 +\307\057\176\317\147\372\104\102\326\166\143\225\256\353\257\162 +\040\212\105\107\206\142\170\206\326\040\071\046\364\256\243\375 +\043\347\245\234\265\042\041\031\267\067\223\042\300\120\234\202 +\173\324\325\004\104\134\313\264\302\237\222\276\044\330\173\147 +\042\342\151\137\345\005\170\324\207\331\161\160\063\045\123\264 +\207\073\051\220\050\066\232\125\104\060\150\244\203\227\177\015 +\036\234\166\377\025\235\140\227\000\215\212\205\003\354\200\276 +\352\054\156\020\121\222\314\176\325\243\063\330\326\111\336\130 +\052\257\366\026\353\113\173\220\062\227\271\272\235\130\361\370 +\127\111\004\036\242\135\006\160\335\161\333\371\335\213\232\033 +\214\317\075\243\115\316\313\174\366\273\234\240\372\011\316\043 +\142\262\351\015\037\342\162\050\217\237\254\150\040\175\157\073 +\250\205\061\011\177\013\307\350\145\351\343\170\016\011\147\060 +\213\064\202\373\135\340\314\235\201\155\142\356\010\036\004\054 +\116\233\354\376\251\117\137\375\151\170\357\011\037\241\264\277 +\372\363\357\220\036\114\005\213\036\352\172\221\172\303\327\345 +\373\060\274\154\033\020\130\230\367\032\137\320\051\062\003\023 +\106\115\141\152\205\114\122\164\057\006\037\173\021\342\204\227 +\306\231\363\155\177\327\147\203\176\023\150\330\161\050\132\330 +\316\335\350\020\024\232\376\155\043\207\156\216\132\160\074\325 +\215\011\000\247\252\274\260\061\067\155\310\204\024\036\133\275 +\105\143\040\153\113\164\214\275\333\072\016\301\317\132\026\217 +\245\230\362\166\211\262\023\022\073\013\167\167\254\273\345\074 +\051\112\222\162\312\141\032\053\136\114\342\203\164\167\372\065 +\110\172\205\115\215\232\123\304\337\170\312\227\221\110\053\105 +\053\001\367\034\032\242\355\030\272\012\275\203\372\157\274\215 +\127\223\073\324\324\246\316\036\361\240\261\316\253\375\053\050 +\232\117\033\327\303\162\333\244\304\277\135\114\365\335\173\226 +\151\356\150\200\346\347\230\272\066\267\376\156\355\053\275\040 +\370\145\031\332\125\011\176\045\334\376\141\142\162\371\176\030 +\002\357\143\264\320\373\257\345\073\143\214\147\217\002\003\001 +\000\001\243\201\254\060\201\251\060\016\006\003\125\035\017\001 +\001\377\004\004\003\002\001\006\060\017\006\003\125\035\023\001 +\001\377\004\005\060\003\001\001\377\060\035\006\003\125\035\016 +\004\026\004\024\120\257\314\007\207\025\107\157\070\305\264\145 +\321\336\225\252\351\337\234\314\060\037\006\003\125\035\043\004 +\030\060\026\200\024\120\257\314\007\207\025\107\157\070\305\264 +\145\321\336\225\252\351\337\234\314\060\106\006\003\125\035\040 +\004\077\060\075\060\073\006\011\140\205\164\001\131\001\001\001 +\001\060\056\060\054\006\010\053\006\001\005\005\007\002\001\026 +\040\150\164\164\160\072\057\057\162\145\160\157\163\151\164\157 +\162\171\056\163\167\151\163\163\163\151\147\156\056\143\157\155 +\057\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000 +\003\202\002\001\000\010\205\246\365\026\014\374\104\032\301\143 +\340\371\125\106\010\374\160\034\102\050\226\216\267\305\301\101 +\165\116\011\161\171\345\155\226\312\113\245\210\140\320\060\164 +\270\312\010\334\264\060\236\100\007\026\153\145\225\167\001\256 +\244\267\065\013\201\332\161\025\251\164\027\070\173\130\312\371 +\057\373\300\145\166\215\133\001\271\175\336\202\075\144\270\276 +\024\164\243\012\124\323\054\225\030\027\065\365\121\153\077\217 +\242\226\141\071\170\153\113\345\246\240\370\123\337\121\020\223 +\142\347\200\057\342\321\340\274\216\066\106\167\063\354\270\373 +\216\232\054\211\115\061\021\017\046\236\004\273\267\004\215\013 +\362\271\374\132\235\073\026\267\057\310\230\253\376\212\120\131 +\056\243\073\374\051\135\213\301\113\311\342\212\023\035\261\277 +\273\102\035\122\335\116\330\024\136\020\306\061\007\357\161\047 +\367\033\071\011\334\202\352\213\263\225\206\136\375\365\332\135 +\061\246\340\061\266\224\346\104\111\164\305\026\345\367\037\003 +\141\050\305\310\313\022\240\102\113\371\153\210\010\215\264\062 +\030\363\165\237\304\177\000\117\005\225\234\243\027\002\303\263 +\123\233\252\040\071\051\053\146\372\235\257\136\263\222\322\265 +\246\341\032\371\055\101\151\201\024\264\264\265\355\211\075\316 +\373\251\235\065\102\104\261\034\024\163\201\317\052\001\065\232 +\061\325\055\217\155\204\337\200\115\127\343\077\305\204\165\332 +\211\306\060\273\353\217\313\042\010\240\256\252\361\003\154\072 +\113\115\011\245\016\162\306\126\153\041\102\116\043\045\024\150 +\256\166\012\174\014\007\160\144\371\232\057\366\005\071\046\306 +\014\217\031\177\103\136\156\364\133\025\057\333\141\135\346\147 +\057\077\010\224\371\140\264\230\061\332\164\361\204\223\161\115 +\137\373\140\130\321\373\304\301\155\211\242\273\040\037\235\161 +\221\313\062\233\023\075\076\175\222\122\065\254\222\224\242\323 +\030\302\174\307\352\257\166\005\026\335\147\047\302\176\034\007 +\042\041\363\100\012\033\064\007\104\023\302\204\152\216\337\031 +\132\277\177\353\035\342\032\070\321\134\257\107\222\153\200\265 +\060\245\311\215\330\253\061\201\037\337\302\146\067\323\223\251 +\205\206\171\145\322 +END + +# Trust for Certificate "SwissSign Platinum CA - G2" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Firmaprofesional Root CA" +CKA_LABEL UTF8 "SwissSign Platinum CA - G2" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\251\142\217\113\230\251\033\110\065\272\322\301\106\062\206\273 -\146\144\152\214 +\126\340\372\300\073\217\030\043\125\030\345\323\021\312\350\302 +\103\061\253\146 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\021\222\171\100\074\261\203\100\345\253\146\112\147\222\200\337 +\311\230\047\167\050\036\075\016\025\074\204\000\270\205\003\346 END CKA_ISSUER MULTILINE_OCTAL -\060\201\235\061\013\060\011\006\003\125\004\006\023\002\105\123 -\061\042\060\040\006\003\125\004\007\023\031\103\057\040\115\165 -\156\164\141\156\145\162\040\062\064\064\040\102\141\162\143\145 -\154\157\156\141\061\102\060\100\006\003\125\004\003\023\071\101 -\165\164\157\162\151\144\141\144\040\144\145\040\103\145\162\164 -\151\146\151\143\141\143\151\157\156\040\106\151\162\155\141\160 -\162\157\146\145\163\151\157\156\141\154\040\103\111\106\040\101 -\066\062\066\063\064\060\066\070\061\046\060\044\006\011\052\206 -\110\206\367\015\001\011\001\026\027\143\141\100\146\151\162\155 -\141\160\162\157\146\145\163\151\157\156\141\154\056\143\157\155 +\060\111\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\043\060\041\006\003\125\004\003\023 +\032\123\167\151\163\163\123\151\147\156\040\120\154\141\164\151 +\156\165\155\040\103\101\040\055\040\107\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\001\001 +\002\010\116\262\000\147\014\003\135\117 END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_VALID +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Wells Fargo Root CA" +# Certificate "SwissSign Gold CA - G2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Wells Fargo Root CA" +CKA_LABEL UTF8 "SwissSign Gold CA - G2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\024\060\022\006\003\125\004\012\023\013\127\145\154\154\163 -\040\106\141\162\147\157\061\054\060\052\006\003\125\004\013\023 -\043\127\145\154\154\163\040\106\141\162\147\157\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\061\057\060\055\006\003\125\004\003\023\046\127 -\145\154\154\163\040\106\141\162\147\157\040\122\157\157\164\040 -\103\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150 -\157\162\151\164\171 +\060\105\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\037\060\035\006\003\125\004\003\023 +\026\123\167\151\163\163\123\151\147\156\040\107\157\154\144\040 +\103\101\040\055\040\107\062 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\024\060\022\006\003\125\004\012\023\013\127\145\154\154\163 -\040\106\141\162\147\157\061\054\060\052\006\003\125\004\013\023 -\043\127\145\154\154\163\040\106\141\162\147\157\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\061\057\060\055\006\003\125\004\003\023\046\127 -\145\154\154\163\040\106\141\162\147\157\040\122\157\157\164\040 -\103\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150 -\157\162\151\164\171 +\060\105\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\037\060\035\006\003\125\004\003\023 +\026\123\167\151\163\163\123\151\147\156\040\107\157\154\144\040 +\103\101\040\055\040\107\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\071\344\227\236 +\002\011\000\273\100\034\103\365\136\117\260 END CKA_VALUE MULTILINE_OCTAL -\060\202\003\345\060\202\002\315\240\003\002\001\002\002\004\071 -\344\227\236\060\015\006\011\052\206\110\206\367\015\001\001\005 -\005\000\060\201\202\061\013\060\011\006\003\125\004\006\023\002 -\125\123\061\024\060\022\006\003\125\004\012\023\013\127\145\154 -\154\163\040\106\141\162\147\157\061\054\060\052\006\003\125\004 -\013\023\043\127\145\154\154\163\040\106\141\162\147\157\040\103 -\145\162\164\151\146\151\143\141\164\151\157\156\040\101\165\164 -\150\157\162\151\164\171\061\057\060\055\006\003\125\004\003\023 -\046\127\145\154\154\163\040\106\141\162\147\157\040\122\157\157 -\164\040\103\145\162\164\151\146\151\143\141\164\145\040\101\165 -\164\150\157\162\151\164\171\060\036\027\015\060\060\061\060\061 -\061\061\066\064\061\062\070\132\027\015\062\061\060\061\061\064 -\061\066\064\061\062\070\132\060\201\202\061\013\060\011\006\003 -\125\004\006\023\002\125\123\061\024\060\022\006\003\125\004\012 -\023\013\127\145\154\154\163\040\106\141\162\147\157\061\054\060 -\052\006\003\125\004\013\023\043\127\145\154\154\163\040\106\141 -\162\147\157\040\103\145\162\164\151\146\151\143\141\164\151\157 -\156\040\101\165\164\150\157\162\151\164\171\061\057\060\055\006 -\003\125\004\003\023\046\127\145\154\154\163\040\106\141\162\147 -\157\040\122\157\157\164\040\103\145\162\164\151\146\151\143\141 -\164\145\040\101\165\164\150\157\162\151\164\171\060\202\001\042 -\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000\003 -\202\001\017\000\060\202\001\012\002\202\001\001\000\325\250\063 -\073\046\371\064\377\315\233\176\345\004\107\316\000\342\175\167 -\347\061\302\056\047\245\115\150\271\061\272\215\103\131\227\307 -\163\252\177\075\134\100\236\005\345\241\342\211\331\114\270\077 -\233\371\014\264\310\142\031\054\105\256\221\036\163\161\101\304 -\113\023\375\160\302\045\254\042\365\165\013\267\123\344\245\053 -\335\316\275\034\072\172\303\367\023\217\046\124\234\026\153\153 -\257\373\330\226\261\140\232\110\340\045\042\044\171\064\316\016 -\046\000\013\116\253\375\213\316\202\327\057\010\160\150\301\250 -\012\371\164\117\007\253\244\371\342\203\176\047\163\164\076\270 -\371\070\102\374\245\250\133\110\043\263\353\343\045\262\200\256 -\226\324\012\234\302\170\232\306\150\030\256\067\142\067\136\121 -\165\250\130\143\300\121\356\100\170\176\250\257\032\240\341\260 -\170\235\120\214\173\347\263\374\216\043\260\333\145\000\160\204 -\001\010\000\024\156\124\206\232\272\314\371\067\020\366\340\336 -\204\055\235\244\205\067\323\207\343\025\320\301\027\220\176\031 -\041\152\022\251\166\375\022\002\351\117\041\136\027\002\003\001 -\000\001\243\141\060\137\060\017\006\003\125\035\023\001\001\377 -\004\005\060\003\001\001\377\060\114\006\003\125\035\040\004\105 -\060\103\060\101\006\013\140\206\110\001\206\373\173\207\007\001 -\013\060\062\060\060\006\010\053\006\001\005\005\007\002\001\026 -\044\150\164\164\160\072\057\057\167\167\167\056\167\145\154\154 -\163\146\141\162\147\157\056\143\157\155\057\143\145\162\164\160 -\157\154\151\143\171\060\015\006\011\052\206\110\206\367\015\001 -\001\005\005\000\003\202\001\001\000\322\047\335\234\012\167\053 -\273\042\362\002\265\112\112\221\371\321\055\276\344\273\032\150 -\357\016\244\000\351\356\347\357\356\366\371\345\164\244\302\330 -\122\130\304\164\373\316\153\265\073\051\171\030\132\357\233\355 -\037\153\066\356\110\045\045\024\266\126\242\020\350\356\247\177 -\320\077\243\320\303\135\046\356\007\314\303\301\044\041\207\036 -\337\052\022\123\157\101\026\347\355\256\224\372\214\162\372\023 -\107\360\074\176\256\175\021\072\023\354\355\372\157\162\144\173 -\235\175\177\046\375\172\373\045\255\352\076\051\177\114\343\000 -\127\062\260\263\351\355\123\027\331\213\262\024\016\060\350\345 -\325\023\306\144\257\304\000\325\330\130\044\374\365\217\354\361 -\307\175\245\333\017\047\321\306\362\100\210\346\037\366\141\250 -\364\102\310\271\067\323\251\276\054\126\170\302\162\233\131\135 -\065\100\212\350\116\143\032\266\351\040\152\121\342\316\244\220 -\337\166\160\231\134\160\103\115\267\266\247\031\144\116\222\267 -\305\221\074\177\110\026\145\173\026\375\313\374\373\331\325\326 -\117\041\145\073\112\177\107\243\373 -END - -# Trust for Certificate "Wells Fargo Root CA" +\060\202\005\272\060\202\003\242\240\003\002\001\002\002\011\000 +\273\100\034\103\365\136\117\260\060\015\006\011\052\206\110\206 +\367\015\001\001\005\005\000\060\105\061\013\060\011\006\003\125 +\004\006\023\002\103\110\061\025\060\023\006\003\125\004\012\023 +\014\123\167\151\163\163\123\151\147\156\040\101\107\061\037\060 +\035\006\003\125\004\003\023\026\123\167\151\163\163\123\151\147 +\156\040\107\157\154\144\040\103\101\040\055\040\107\062\060\036 +\027\015\060\066\061\060\062\065\060\070\063\060\063\065\132\027 +\015\063\066\061\060\062\065\060\070\063\060\063\065\132\060\105 +\061\013\060\011\006\003\125\004\006\023\002\103\110\061\025\060 +\023\006\003\125\004\012\023\014\123\167\151\163\163\123\151\147 +\156\040\101\107\061\037\060\035\006\003\125\004\003\023\026\123 +\167\151\163\163\123\151\147\156\040\107\157\154\144\040\103\101 +\040\055\040\107\062\060\202\002\042\060\015\006\011\052\206\110 +\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002 +\012\002\202\002\001\000\257\344\356\176\213\044\016\022\156\251 +\120\055\026\104\073\222\222\134\312\270\135\204\222\102\023\052 +\274\145\127\202\100\076\127\044\315\120\213\045\052\267\157\374 +\357\242\320\300\037\002\044\112\023\226\217\043\023\346\050\130 +\000\243\107\307\006\247\204\043\053\273\275\226\053\177\125\314 +\213\301\127\037\016\142\145\017\335\075\126\212\163\332\256\176 +\155\272\201\034\176\102\214\040\065\331\103\115\204\372\204\333 +\122\054\363\016\047\167\013\153\277\021\057\162\170\237\056\330 +\076\346\030\067\132\052\162\371\332\142\220\222\225\312\037\234 +\351\263\074\053\313\363\001\023\277\132\317\301\265\012\140\275 +\335\265\231\144\123\270\240\226\263\157\342\046\167\221\214\340 +\142\020\002\237\064\017\244\325\222\063\121\336\276\215\272\204 +\172\140\074\152\333\237\053\354\336\336\001\077\156\115\345\120 +\206\313\264\257\355\104\100\305\312\132\214\332\322\053\174\250 +\356\276\246\345\012\252\016\245\337\005\122\267\125\307\042\135 +\062\152\227\227\143\023\333\311\333\171\066\173\205\072\112\305 +\122\211\371\044\347\235\167\251\202\377\125\034\245\161\151\053 +\321\002\044\362\263\046\324\153\332\004\125\345\301\012\307\155 +\060\067\220\052\344\236\024\063\136\026\027\125\305\133\265\313 +\064\211\222\361\235\046\217\241\007\324\306\262\170\120\333\014 +\014\013\174\013\214\101\327\271\351\335\214\210\367\243\115\262 +\062\314\330\027\332\315\267\316\146\235\324\375\136\377\275\227 +\076\051\165\347\176\247\142\130\257\045\064\245\101\307\075\274 +\015\120\312\003\003\017\010\132\037\225\163\170\142\277\257\162 +\024\151\016\245\345\003\016\170\216\046\050\102\360\007\013\142 +\040\020\147\071\106\372\251\003\314\004\070\172\146\357\040\203 +\265\214\112\126\216\221\000\374\216\134\202\336\210\240\303\342 +\150\156\175\215\357\074\335\145\364\135\254\121\357\044\200\256 +\252\126\227\157\371\255\175\332\141\077\230\167\074\245\221\266 +\034\214\046\332\145\242\011\155\301\342\124\343\271\312\114\114 +\200\217\167\173\140\232\036\337\266\362\110\036\016\272\116\124 +\155\230\340\341\242\032\242\167\120\317\304\143\222\354\107\031 +\235\353\346\153\316\301\002\003\001\000\001\243\201\254\060\201 +\251\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001 +\006\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001 +\001\377\060\035\006\003\125\035\016\004\026\004\024\133\045\173 +\226\244\145\121\176\270\071\363\300\170\146\136\350\072\347\360 +\356\060\037\006\003\125\035\043\004\030\060\026\200\024\133\045 +\173\226\244\145\121\176\270\071\363\300\170\146\136\350\072\347 +\360\356\060\106\006\003\125\035\040\004\077\060\075\060\073\006 +\011\140\205\164\001\131\001\002\001\001\060\056\060\054\006\010 +\053\006\001\005\005\007\002\001\026\040\150\164\164\160\072\057 +\057\162\145\160\157\163\151\164\157\162\171\056\163\167\151\163 +\163\163\151\147\156\056\143\157\155\057\060\015\006\011\052\206 +\110\206\367\015\001\001\005\005\000\003\202\002\001\000\047\272 +\343\224\174\361\256\300\336\027\346\345\330\325\365\124\260\203 +\364\273\315\136\005\173\117\237\165\146\257\074\350\126\176\374 +\162\170\070\003\331\053\142\033\000\271\370\351\140\315\314\316 +\121\212\307\120\061\156\341\112\176\030\057\151\131\266\075\144 +\201\053\343\203\204\346\042\207\216\175\340\356\002\231\141\270 +\036\364\270\053\210\022\026\204\302\061\223\070\226\061\246\271 +\073\123\077\303\044\223\126\133\151\222\354\305\301\273\070\000 +\343\354\027\251\270\334\307\174\001\203\237\062\107\272\122\042 +\064\035\062\172\011\126\247\174\045\066\251\075\113\332\300\202 +\157\012\273\022\310\207\113\047\021\371\036\055\307\223\077\236 +\333\137\046\153\122\331\056\212\361\024\306\104\215\025\251\267 +\277\275\336\246\032\356\256\055\373\110\167\027\376\273\354\257 +\030\365\052\121\360\071\204\227\225\154\156\033\303\053\304\164 +\140\171\045\260\012\047\337\337\136\322\071\317\105\175\102\113 +\337\263\054\036\305\306\135\312\125\072\240\234\151\232\217\332 +\357\262\260\074\237\207\154\022\053\145\160\025\122\061\032\044 +\317\157\061\043\120\037\214\117\217\043\303\164\101\143\034\125 +\250\024\335\076\340\121\120\317\361\033\060\126\016\222\260\202 +\205\330\203\313\042\144\274\055\270\045\325\124\242\270\006\352 +\255\222\244\044\240\301\206\265\112\023\152\107\317\056\013\126 +\225\124\313\316\232\333\152\264\246\262\333\101\010\206\047\167 +\367\152\240\102\154\013\070\316\327\165\120\062\222\302\337\053 +\060\042\110\320\325\101\070\045\135\244\351\135\237\306\224\165 +\320\105\375\060\227\103\217\220\253\012\307\206\163\140\112\151 +\055\336\245\170\327\006\332\152\236\113\076\167\072\040\023\042 +\001\320\277\150\236\143\140\153\065\115\013\155\272\241\075\300 +\223\340\177\043\263\125\255\162\045\116\106\371\322\026\357\260 +\144\301\001\236\351\312\240\152\230\016\317\330\140\362\057\111 +\270\344\102\341\070\065\026\364\310\156\117\367\201\126\350\272 +\243\276\043\257\256\375\157\003\340\002\073\060\166\372\033\155 +\101\317\001\261\351\270\311\146\364\333\046\363\072\244\164\362 +\111\044\133\311\260\320\127\301\372\076\172\341\227\311 +END + +# Trust for Certificate "SwissSign Gold CA - G2" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Wells Fargo Root CA" +CKA_LABEL UTF8 "SwissSign Gold CA - G2" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\223\346\253\042\003\003\265\043\050\334\332\126\236\272\344\321 -\321\314\373\145 +\330\305\070\212\267\060\033\033\156\324\172\346\105\045\072\157 +\237\032\047\141 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\040\013\112\172\210\247\251\102\206\212\137\164\126\173\210\005 +\044\167\331\250\221\321\073\372\210\055\302\377\370\315\063\223 END CKA_ISSUER MULTILINE_OCTAL -\060\201\202\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\024\060\022\006\003\125\004\012\023\013\127\145\154\154\163 -\040\106\141\162\147\157\061\054\060\052\006\003\125\004\013\023 -\043\127\145\154\154\163\040\106\141\162\147\157\040\103\145\162 -\164\151\146\151\143\141\164\151\157\156\040\101\165\164\150\157 -\162\151\164\171\061\057\060\055\006\003\125\004\003\023\046\127 -\145\154\154\163\040\106\141\162\147\157\040\122\157\157\164\040 -\103\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150 -\157\162\151\164\171 +\060\105\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\037\060\035\006\003\125\004\003\023 +\026\123\167\151\163\163\123\151\147\156\040\107\157\154\144\040 +\103\101\040\055\040\107\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\004\071\344\227\236 +\002\011\000\273\100\034\103\365\136\117\260 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR @@ -14250,159 +15850,150 @@ CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE # -# Certificate "Swisscom Root CA 1" +# Certificate "SwissSign Silver CA - G2" # CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Swisscom Root CA 1" +CKA_LABEL UTF8 "SwissSign Silver CA - G2" CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 CKA_SUBJECT MULTILINE_OCTAL -\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 -\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 -\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 -\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 -\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 -\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 -\164\040\103\101\040\061 +\060\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023 +\030\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145 +\162\040\103\101\040\055\040\107\062 END CKA_ID UTF8 "0" CKA_ISSUER MULTILINE_OCTAL -\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 -\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 -\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 -\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 -\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 -\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 -\164\040\103\101\040\061 +\060\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023 +\030\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145 +\162\040\103\101\040\055\040\107\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\134\013\205\134\013\347\131\101\337\127\314\077\177\235 -\250\066 +\002\010\117\033\324\057\124\273\057\113 END CKA_VALUE MULTILINE_OCTAL -\060\202\005\331\060\202\003\301\240\003\002\001\002\002\020\134 -\013\205\134\013\347\131\101\337\127\314\077\177\235\250\066\060 -\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\144 -\061\013\060\011\006\003\125\004\006\023\002\143\150\061\021\060 -\017\006\003\125\004\012\023\010\123\167\151\163\163\143\157\155 -\061\045\060\043\006\003\125\004\013\023\034\104\151\147\151\164 -\141\154\040\103\145\162\164\151\146\151\143\141\164\145\040\123 -\145\162\166\151\143\145\163\061\033\060\031\006\003\125\004\003 -\023\022\123\167\151\163\163\143\157\155\040\122\157\157\164\040 -\103\101\040\061\060\036\027\015\060\065\060\070\061\070\061\062 -\060\066\062\060\132\027\015\062\065\060\070\061\070\062\062\060 -\066\062\060\132\060\144\061\013\060\011\006\003\125\004\006\023 -\002\143\150\061\021\060\017\006\003\125\004\012\023\010\123\167 -\151\163\163\143\157\155\061\045\060\043\006\003\125\004\013\023 -\034\104\151\147\151\164\141\154\040\103\145\162\164\151\146\151 -\143\141\164\145\040\123\145\162\166\151\143\145\163\061\033\060 -\031\006\003\125\004\003\023\022\123\167\151\163\163\143\157\155 -\040\122\157\157\164\040\103\101\040\061\060\202\002\042\060\015 -\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\002 -\017\000\060\202\002\012\002\202\002\001\000\320\271\260\250\014 -\331\273\077\041\370\033\325\063\223\200\026\145\040\165\262\075 -\233\140\155\106\310\214\061\157\027\303\372\232\154\126\355\074 -\305\221\127\303\315\253\226\111\220\052\031\113\036\243\155\127 -\335\361\053\142\050\165\105\136\252\326\133\372\013\045\330\241 -\026\371\034\304\056\346\225\052\147\314\320\051\156\074\205\064 -\070\141\111\261\000\237\326\072\161\137\115\155\316\137\271\251 -\344\211\177\152\122\372\312\233\362\334\251\371\235\231\107\077 -\116\051\137\264\246\215\135\173\013\231\021\003\003\376\347\333 -\333\243\377\035\245\315\220\036\001\037\065\260\177\000\333\220 -\157\306\176\173\321\356\172\172\247\252\014\127\157\244\155\305 -\023\073\260\245\331\355\062\034\264\136\147\213\124\334\163\207 -\345\323\027\174\146\120\162\135\324\032\130\301\331\317\330\211 -\002\157\247\111\264\066\135\320\244\336\007\054\266\165\267\050 -\221\326\227\276\050\365\230\036\352\133\046\311\275\260\227\163 -\332\256\221\046\353\150\301\371\071\025\326\147\113\012\155\117 -\313\317\260\344\102\161\214\123\171\347\356\341\333\035\240\156 -\035\214\032\167\065\134\026\036\053\123\037\064\213\321\154\374 -\362\147\007\172\365\255\355\326\232\253\241\261\113\341\314\067 -\137\375\177\315\115\256\270\037\234\103\371\052\130\125\103\105 -\274\226\315\160\016\374\311\343\146\272\116\215\073\201\313\025 -\144\173\271\224\350\135\063\122\205\161\056\117\216\242\006\021 -\121\311\343\313\241\156\061\010\144\014\302\322\074\365\066\350 -\327\320\016\170\043\040\221\311\044\052\145\051\133\042\367\041 -\316\203\136\244\363\336\113\323\150\217\106\165\134\203\011\156 -\051\153\304\160\214\365\235\327\040\057\377\106\322\053\070\302 -\057\165\034\075\176\332\245\357\036\140\205\151\102\323\314\370 -\143\376\036\103\071\205\246\266\143\101\020\263\163\036\274\323 -\372\312\175\026\107\342\247\325\320\243\212\012\010\226\142\126 -\156\064\333\331\002\271\060\165\343\004\322\347\217\302\260\021 -\100\012\254\325\161\002\142\213\061\276\335\306\043\130\061\102 -\103\055\164\371\306\236\246\212\017\351\376\277\203\346\103\127 -\044\272\357\106\064\252\327\022\001\070\355\002\003\001\000\001 -\243\201\206\060\201\203\060\016\006\003\125\035\017\001\001\377 -\004\004\003\002\001\206\060\035\006\003\125\035\041\004\026\060 -\024\060\022\006\007\140\205\164\001\123\000\001\006\007\140\205 -\164\001\123\000\001\060\022\006\003\125\035\023\001\001\377\004 -\010\060\006\001\001\377\002\001\007\060\037\006\003\125\035\043 -\004\030\060\026\200\024\003\045\057\336\157\202\001\072\134\054 -\334\053\241\151\265\147\324\214\323\375\060\035\006\003\125\035 -\016\004\026\004\024\003\045\057\336\157\202\001\072\134\054\334 -\053\241\151\265\147\324\214\323\375\060\015\006\011\052\206\110 -\206\367\015\001\001\005\005\000\003\202\002\001\000\065\020\313 -\354\246\004\015\015\017\315\300\333\253\250\362\210\227\014\337 -\223\057\115\174\100\126\061\172\353\244\017\140\315\172\363\276 -\303\047\216\003\076\244\335\022\357\176\036\164\006\074\077\061 -\362\034\173\221\061\041\264\360\320\154\227\324\351\227\262\044 -\126\036\126\303\065\275\210\005\017\133\020\032\144\341\307\202 -\060\371\062\255\236\120\054\347\170\005\320\061\261\132\230\212 -\165\116\220\134\152\024\052\340\122\107\202\140\346\036\332\201 -\261\373\024\013\132\361\237\322\225\272\076\320\033\326\025\035 -\243\276\206\325\333\017\300\111\144\273\056\120\031\113\322\044 -\370\335\036\007\126\320\070\240\225\160\040\166\214\327\335\036 -\336\237\161\304\043\357\203\023\134\243\044\025\115\051\100\074 -\152\304\251\330\267\246\104\245\015\364\340\235\167\036\100\160 -\046\374\332\331\066\344\171\344\265\077\274\233\145\276\273\021 -\226\317\333\306\050\071\072\010\316\107\133\123\132\305\231\376 -\135\251\335\357\114\324\306\245\255\002\346\214\007\022\036\157 -\003\321\157\240\243\363\051\275\022\307\120\242\260\177\210\251 -\231\167\232\261\300\245\071\056\134\174\151\342\054\260\352\067 -\152\244\341\132\341\365\120\345\203\357\245\273\052\210\347\214 -\333\375\155\136\227\031\250\176\146\165\153\161\352\277\261\307 -\157\240\364\216\244\354\064\121\133\214\046\003\160\241\167\325 -\001\022\127\000\065\333\043\336\016\212\050\231\375\261\020\157 -\113\377\070\055\140\116\054\234\353\147\265\255\111\356\113\037 -\254\257\373\015\220\132\146\140\160\135\252\315\170\324\044\356 -\310\101\240\223\001\222\234\152\236\374\271\044\305\263\025\202 -\176\276\256\225\053\353\261\300\332\343\001\140\013\136\151\254 -\204\126\141\276\161\027\376\035\023\017\376\306\207\105\351\376 -\062\240\032\015\023\244\224\125\161\245\026\213\272\312\211\260 -\262\307\374\217\330\124\265\223\142\235\316\317\131\373\075\030 -\316\052\313\065\025\202\135\377\124\042\133\161\122\373\267\311 -\376\140\233\000\101\144\360\252\052\354\266\102\103\316\211\146 -\201\310\213\237\071\124\003\045\323\026\065\216\204\320\137\372 -\060\032\365\232\154\364\016\123\371\072\133\321\034 -END - -# Trust for Certificate "Swisscom Root CA 1" +\060\202\005\275\060\202\003\245\240\003\002\001\002\002\010\117 +\033\324\057\124\273\057\113\060\015\006\011\052\206\110\206\367 +\015\001\001\005\005\000\060\107\061\013\060\011\006\003\125\004 +\006\023\002\103\110\061\025\060\023\006\003\125\004\012\023\014 +\123\167\151\163\163\123\151\147\156\040\101\107\061\041\060\037 +\006\003\125\004\003\023\030\123\167\151\163\163\123\151\147\156 +\040\123\151\154\166\145\162\040\103\101\040\055\040\107\062\060 +\036\027\015\060\066\061\060\062\065\060\070\063\062\064\066\132 +\027\015\063\066\061\060\062\065\060\070\063\062\064\066\132\060 +\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061\025 +\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123\151 +\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023\030 +\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145\162 +\040\103\101\040\055\040\107\062\060\202\002\042\060\015\006\011 +\052\206\110\206\367\015\001\001\001\005\000\003\202\002\017\000 +\060\202\002\012\002\202\002\001\000\304\361\207\177\323\170\061 +\367\070\311\370\303\231\103\274\307\367\274\067\347\116\161\272 +\113\217\245\163\035\134\156\230\256\003\127\256\070\067\103\057 +\027\075\037\310\316\150\020\301\170\256\031\003\053\020\372\054 +\171\203\366\350\271\150\271\125\362\004\104\247\071\371\374\004 +\213\036\361\242\115\047\371\141\173\272\267\345\242\023\266\353 +\141\076\320\154\321\346\373\372\136\355\035\264\236\240\065\133 +\241\222\313\360\111\222\376\205\012\005\076\346\331\013\342\117 +\273\334\225\067\374\221\351\062\065\042\321\037\072\116\047\205 +\235\260\025\224\062\332\141\015\107\115\140\102\256\222\107\350 +\203\132\120\130\351\212\213\271\135\241\334\335\231\112\037\066 +\147\273\110\344\203\266\067\353\110\072\257\017\147\217\027\007 +\350\004\312\357\152\061\207\324\300\266\371\224\161\173\147\144 +\270\266\221\112\102\173\145\056\060\152\014\365\220\356\225\346 +\362\315\202\354\331\241\112\354\366\262\113\345\105\205\346\155 +\170\223\004\056\234\202\155\066\251\304\061\144\037\206\203\013 +\052\364\065\012\170\311\125\317\101\260\107\351\060\237\231\276 +\141\250\006\204\271\050\172\137\070\331\033\251\070\260\203\177 +\163\301\303\073\110\052\202\017\041\233\270\314\250\065\303\204 +\033\203\263\076\276\244\225\151\001\072\211\000\170\004\331\311 +\364\231\031\253\126\176\133\213\206\071\025\221\244\020\054\011 +\062\200\140\263\223\300\052\266\030\013\235\176\215\111\362\020 +\112\177\371\325\106\057\031\222\243\231\247\046\254\273\214\074 +\346\016\274\107\007\334\163\121\361\160\144\057\010\371\264\107 +\035\060\154\104\352\051\067\205\222\150\146\274\203\070\376\173 +\071\056\323\120\360\037\373\136\140\266\251\246\372\047\101\361 +\233\030\162\362\365\204\164\112\311\147\304\124\256\110\144\337 +\214\321\156\260\035\341\007\217\010\036\231\234\161\351\114\330 +\245\367\107\022\037\164\321\121\236\206\363\302\242\043\100\013 +\163\333\113\246\347\163\006\214\301\240\351\301\131\254\106\372 +\346\057\370\317\161\234\106\155\271\304\025\215\070\171\003\105 +\110\357\304\135\327\010\356\207\071\042\206\262\015\017\130\103 +\367\161\251\110\056\375\352\326\037\002\003\001\000\001\243\201 +\254\060\201\251\060\016\006\003\125\035\017\001\001\377\004\004 +\003\002\001\006\060\017\006\003\125\035\023\001\001\377\004\005 +\060\003\001\001\377\060\035\006\003\125\035\016\004\026\004\024 +\027\240\315\301\344\101\266\072\133\073\313\105\235\275\034\302 +\230\372\206\130\060\037\006\003\125\035\043\004\030\060\026\200 +\024\027\240\315\301\344\101\266\072\133\073\313\105\235\275\034 +\302\230\372\206\130\060\106\006\003\125\035\040\004\077\060\075 +\060\073\006\011\140\205\164\001\131\001\003\001\001\060\056\060 +\054\006\010\053\006\001\005\005\007\002\001\026\040\150\164\164 +\160\072\057\057\162\145\160\157\163\151\164\157\162\171\056\163 +\167\151\163\163\163\151\147\156\056\143\157\155\057\060\015\006 +\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002\001 +\000\163\306\201\340\047\322\055\017\340\225\060\342\232\101\177 +\120\054\137\137\142\141\251\206\152\151\030\014\164\111\326\135 +\204\352\101\122\030\157\130\255\120\126\040\152\306\275\050\151 +\130\221\334\221\021\065\251\072\035\274\032\245\140\236\330\037 +\177\105\221\151\331\176\273\170\162\301\006\017\052\316\217\205 +\160\141\254\240\315\013\270\071\051\126\204\062\116\206\273\075 +\304\052\331\327\037\162\356\376\121\241\042\101\261\161\002\143 +\032\202\260\142\253\136\127\022\037\337\313\335\165\240\300\135 +\171\220\214\033\340\120\346\336\061\376\230\173\160\137\245\220 +\330\255\370\002\266\157\323\140\335\100\113\042\305\075\255\072 +\172\237\032\032\107\221\171\063\272\202\334\062\151\003\226\156 +\037\113\360\161\376\343\147\162\240\261\277\134\213\344\372\231 +\042\307\204\271\033\215\043\227\077\355\045\340\317\145\273\365 +\141\004\357\335\036\262\132\101\042\132\241\237\135\054\350\133 +\311\155\251\014\014\170\252\140\306\126\217\001\132\014\150\274 +\151\031\171\304\037\176\227\005\277\305\351\044\121\136\324\325 +\113\123\355\331\043\132\066\003\145\243\301\003\255\101\060\363 +\106\033\205\220\257\145\265\325\261\344\026\133\170\165\035\227 +\172\155\131\251\052\217\173\336\303\207\211\020\231\111\163\170 +\310\075\275\121\065\164\052\325\361\176\151\033\052\273\073\275 +\045\270\232\132\075\162\141\220\146\207\356\014\326\115\324\021 +\164\013\152\376\013\003\374\243\125\127\211\376\112\313\256\133 +\027\005\310\362\215\043\061\123\070\322\055\152\077\202\271\215 +\010\152\367\136\101\164\156\303\021\176\007\254\051\140\221\077 +\070\312\127\020\015\275\060\057\307\245\346\101\240\332\256\005 +\207\232\240\244\145\154\114\011\014\211\272\270\323\271\300\223 +\212\060\372\215\345\232\153\025\001\116\147\252\332\142\126\076 +\204\010\146\322\304\066\175\247\076\020\374\210\340\324\200\345 +\000\275\252\363\116\006\243\172\152\371\142\162\343\011\117\353 +\233\016\001\043\361\237\273\174\334\334\154\021\227\045\262\362 +\264\143\024\322\006\052\147\214\203\365\316\352\007\330\232\152 +\036\354\344\012\273\052\114\353\011\140\071\316\312\142\330\056 +\156 +END + +# Trust for Certificate "SwissSign Silver CA - G2" CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST CKA_TOKEN CK_BBOOL CK_TRUE CKA_PRIVATE CK_BBOOL CK_FALSE CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Swisscom Root CA 1" +CKA_LABEL UTF8 "SwissSign Silver CA - G2" CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\137\072\374\012\213\144\366\206\147\064\164\337\176\251\242\376 -\371\372\172\121 +\233\252\345\237\126\356\041\313\103\132\276\045\223\337\247\360 +\100\321\035\313 END CKA_CERT_MD5_HASH MULTILINE_OCTAL -\370\070\174\167\210\337\054\026\150\056\302\342\122\113\270\371 +\340\006\241\311\175\317\311\374\015\300\126\165\226\330\142\023 END CKA_ISSUER MULTILINE_OCTAL -\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 -\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 -\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 -\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 -\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 -\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 -\164\040\103\101\040\061 +\060\107\061\013\060\011\006\003\125\004\006\023\002\103\110\061 +\025\060\023\006\003\125\004\012\023\014\123\167\151\163\163\123 +\151\147\156\040\101\107\061\041\060\037\006\003\125\004\003\023 +\030\123\167\151\163\163\123\151\147\156\040\123\151\154\166\145 +\162\040\103\101\040\055\040\107\062 END CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\020\134\013\205\134\013\347\131\101\337\127\314\077\177\235 -\250\066 +\002\010\117\033\324\057\124\273\057\113 END CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR diff --git a/security/nss/lib/ckfw/builtins/constants.c b/security/nss/lib/ckfw/builtins/constants.c index 6cc62c0e8..53467edd9 100644 --- a/security/nss/lib/ckfw/builtins/constants.c +++ b/security/nss/lib/ckfw/builtins/constants.c @@ -56,42 +56,42 @@ static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; #include "nssckbi.h" #endif /* NSSCKBI_H */ -NSS_IMPLEMENT_DATA const CK_VERSION +const CK_VERSION nss_builtins_CryptokiVersion = { NSS_BUILTINS_CRYPTOKI_VERSION_MAJOR, NSS_BUILTINS_CRYPTOKI_VERSION_MINOR }; -NSS_IMPLEMENT_DATA const NSSUTF8 * -nss_builtins_ManufacturerID = (NSSUTF8 *) "Mozilla Foundation"; - -NSS_IMPLEMENT_DATA const NSSUTF8 * -nss_builtins_LibraryDescription = (NSSUTF8 *) "NSS Builtin Object Cryptoki Module"; - -NSS_IMPLEMENT_DATA const CK_VERSION +const CK_VERSION nss_builtins_LibraryVersion = { NSS_BUILTINS_LIBRARY_VERSION_MAJOR, NSS_BUILTINS_LIBRARY_VERSION_MINOR}; -NSS_IMPLEMENT_DATA const NSSUTF8 * -nss_builtins_SlotDescription = (NSSUTF8 *) ""; - -NSS_IMPLEMENT_DATA const CK_VERSION +const CK_VERSION nss_builtins_HardwareVersion = { NSS_BUILTINS_HARDWARE_VERSION_MAJOR, NSS_BUILTINS_HARDWARE_VERSION_MINOR }; -NSS_IMPLEMENT_DATA const CK_VERSION +const CK_VERSION nss_builtins_FirmwareVersion = { NSS_BUILTINS_FIRMWARE_VERSION_MAJOR, NSS_BUILTINS_FIRMWARE_VERSION_MINOR }; -NSS_IMPLEMENT_DATA const NSSUTF8 * -nss_builtins_TokenLabel = (NSSUTF8 *) "Builtin Object Token"; +const NSSUTF8 +nss_builtins_ManufacturerID[] = { "Mozilla Foundation" }; + +const NSSUTF8 +nss_builtins_LibraryDescription[] = { "NSS Builtin Object Cryptoki Module" }; + +const NSSUTF8 +nss_builtins_SlotDescription[] = { "NSS Builtin Objects" }; + +const NSSUTF8 +nss_builtins_TokenLabel[] = { "Builtin Object Token" }; -NSS_IMPLEMENT_DATA const NSSUTF8 * -nss_builtins_TokenModel = (NSSUTF8 *) "1"; +const NSSUTF8 +nss_builtins_TokenModel[] = { "1" }; /* should this be e.g. the certdata.txt RCS revision number? */ -NSS_IMPLEMENT_DATA const NSSUTF8 * -nss_builtins_TokenSerialNumber = (NSSUTF8 *) "1"; +const NSSUTF8 +nss_builtins_TokenSerialNumber[] = { "1" }; diff --git a/security/nss/lib/ckfw/builtins/nssckbi.h b/security/nss/lib/ckfw/builtins/nssckbi.h index 9397c2710..db682cb3c 100644 --- a/security/nss/lib/ckfw/builtins/nssckbi.h +++ b/security/nss/lib/ckfw/builtins/nssckbi.h @@ -75,8 +75,8 @@ * of the comment in the CK_VERSION type definition. */ #define NSS_BUILTINS_LIBRARY_VERSION_MAJOR 1 -#define NSS_BUILTINS_LIBRARY_VERSION_MINOR 62 -#define NSS_BUILTINS_LIBRARY_VERSION "1.62" +#define NSS_BUILTINS_LIBRARY_VERSION_MINOR 65 +#define NSS_BUILTINS_LIBRARY_VERSION "1.65" /* These version numbers detail the semantic changes to the ckfw engine. */ #define NSS_BUILTINS_HARDWARE_VERSION_MAJOR 1 -- cgit v1.2.1