forked from pool/ca-certificates-mozilla
- update certificates to revision 1.75
* new: Go_Daddy_Root_Certificate_Authority_G2.pem * new: Starfield_Root_Certificate_Authority_G2.pem * new: Starfield_Services_Root_Certificate_Authority_G2.pem * new: AffirmTrust_Commercial.pem * new: AffirmTrust_Networking.pem * new: AffirmTrust_Premium.pem * new: AffirmTrust_Premium_ECC.pem * new: Certum_Trusted_Network_CA.pem * new: Certinomis_Autorit_Racine.pem * new: Root_CA_Generalitat_Valenciana.pem * new: A_Trust_nQual_03.pem * new: TWCA_Root_Certification_Authority.pem OBS-URL: https://build.opensuse.org/package/show/Base:System/ca-certificates-mozilla?expand=0&rev=15
This commit is contained in:
parent
100a07b249
commit
3fb74b8ca7
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 30 07:52:16 UTC 2011 - lnussel@suse.de
|
||||||
|
|
||||||
|
- update certificates to revision 1.75
|
||||||
|
* new: Go_Daddy_Root_Certificate_Authority_G2.pem
|
||||||
|
* new: Starfield_Root_Certificate_Authority_G2.pem
|
||||||
|
* new: Starfield_Services_Root_Certificate_Authority_G2.pem
|
||||||
|
* new: AffirmTrust_Commercial.pem
|
||||||
|
* new: AffirmTrust_Networking.pem
|
||||||
|
* new: AffirmTrust_Premium.pem
|
||||||
|
* new: AffirmTrust_Premium_ECC.pem
|
||||||
|
* new: Certum_Trusted_Network_CA.pem
|
||||||
|
* new: Certinomis_Autorit_Racine.pem
|
||||||
|
* new: Root_CA_Generalitat_Valenciana.pem
|
||||||
|
* new: A_Trust_nQual_03.pem
|
||||||
|
* new: TWCA_Root_Certification_Authority.pem
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 31 13:43:23 UTC 2011 - lnussel@suse.de
|
Mon Jan 31 13:43:23 UTC 2011 - lnussel@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ca-certificates-mozilla (Version 1.65)
|
# spec file for package ca-certificates-mozilla
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
6835
certdata.txt
6835
certdata.txt
File diff suppressed because it is too large
Load Diff
@ -84,14 +84,21 @@ sub handle_object($)
|
|||||||
{
|
{
|
||||||
my $object = shift;
|
my $object = shift;
|
||||||
return unless $object;
|
return unless $object;
|
||||||
|
### convert old tags to be able to compare pre 1.74 files
|
||||||
|
$object->{'CKA_CLASS'} =~ s/^CKO_NETSCAPE/CKO_NSS/;
|
||||||
|
for my $type (keys %trust_types) {
|
||||||
|
next unless (exists $object->{$type});
|
||||||
|
$object->{$type} =~ s/^CKT_NETSCAPE/CKT_NSS/;
|
||||||
|
}
|
||||||
|
####
|
||||||
if($object->{'CKA_CLASS'} eq 'CKO_CERTIFICATE' && $object->{'CKA_CERTIFICATE_TYPE'} eq 'CKC_X_509') {
|
if($object->{'CKA_CLASS'} eq 'CKO_CERTIFICATE' && $object->{'CKA_CERTIFICATE_TYPE'} eq 'CKC_X_509') {
|
||||||
push @certificates, $object;
|
push @certificates, $object;
|
||||||
} elsif ($object->{'CKA_CLASS'} eq 'CKO_NETSCAPE_TRUST') {
|
} elsif ($object->{'CKA_CLASS'} eq 'CKO_NSS_TRUST') {
|
||||||
my $label = $object->{'CKA_LABEL'};
|
my $label = $object->{'CKA_LABEL'};
|
||||||
my $serial = colonhex($object->{'CKA_SERIAL_NUMBER'});
|
my $serial = colonhex($object->{'CKA_SERIAL_NUMBER'});
|
||||||
die "$label exists ($serial)" if exists($trusts{$label.$serial});
|
die "$label exists ($serial)" if exists($trusts{$label.$serial});
|
||||||
$trusts{$label.$serial} = $object;
|
$trusts{$label.$serial} = $object;
|
||||||
} elsif ($object->{'CKA_CLASS'} eq 'CKO_NETSCAPE_BUILTIN_ROOT_LIST') {
|
} elsif ($object->{'CKA_CLASS'} eq 'CKO_NSS_BUILTIN_ROOT_LIST') {
|
||||||
# ignore
|
# ignore
|
||||||
} else {
|
} else {
|
||||||
print STDERR "class ", $object->{'CKA_CLASS'} ," not handled\n";
|
print STDERR "class ", $object->{'CKA_CLASS'} ," not handled\n";
|
||||||
@ -159,7 +166,7 @@ for my $cert (@certificates) {
|
|||||||
if ($output_trustbits) {
|
if ($output_trustbits) {
|
||||||
for my $type (keys %trust_types) {
|
for my $type (keys %trust_types) {
|
||||||
if (exists $trust->{$type}
|
if (exists $trust->{$type}
|
||||||
&& $trust->{$type} eq 'CKT_NETSCAPE_TRUSTED_DELEGATOR') {
|
&& $trust->{$type} eq 'CKT_NSS_TRUSTED_DELEGATOR') {
|
||||||
push @addtrust, $trust_types{$type};
|
push @addtrust, $trust_types{$type};
|
||||||
if (exists $openssl_trust{$type}) {
|
if (exists $openssl_trust{$type}) {
|
||||||
push @addtrust_openssl, $openssl_trust{$type};
|
push @addtrust_openssl, $openssl_trust{$type};
|
||||||
@ -168,14 +175,14 @@ for my $cert (@certificates) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if($trust->{'CKA_TRUST_SERVER_AUTH'} eq 'CKT_NETSCAPE_TRUSTED_DELEGATOR') {
|
if($trust->{'CKA_TRUST_SERVER_AUTH'} eq 'CKT_NSS_TRUSTED_DELEGATOR') {
|
||||||
$trusted = 1;
|
$trusted = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$trusted) {
|
if (!$trusted) {
|
||||||
my $t = $trust->{'CKA_TRUST_SERVER_AUTH'};
|
my $t = $trust->{'CKA_TRUST_SERVER_AUTH'};
|
||||||
$t =~ s/CKT_NETSCAPE_//;
|
$t =~ s/CKT_NSS_//;
|
||||||
print STDERR "$t: $alias\n";
|
print STDERR "$t: $alias\n";
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user