wok-current rev 14158
Up: nss (3.14.1)
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Tue Mar 05 22:43:12 2013 +0100 (2013-03-05) |
parents | 6aaa07a8e787 |
children | e6a61425008b |
files | nss/receipt nss/stuff/add_spi+cacert_ca_certs.patch nss/stuff/nss-3.14.1-standalone-1.patch nss/stuff/nss-config.in nss/stuff/nss-no-rpath.patch nss/stuff/nss-nolocalsql.patch nss/stuff/nss.pc.in nss/stuff/ssl-renegotiate-transitional.patch |
line diff
1.1 --- a/nss/receipt Tue Mar 05 22:39:47 2013 +0100 1.2 +++ b/nss/receipt Tue Mar 05 22:43:12 2013 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="nss" 1.7 -VERSION="3.13.3" 1.8 +VERSION="3.14.1" 1.9 CATEGORY="utilities" 1.10 SHORT_DESC="Mozilla Network Security Services (NSS)." 1.11 MAINTAINER="rocky@slitaz.org" 1.12 @@ -15,79 +15,36 @@ 1.13 compile_rules() 1.14 { 1.15 cd $src 1.16 - # Adds the SPI Inc. and CAcert.org CA certificates - patch from Debian 1.17 - patch -Np1 -i $stuff/add_spi+cacert_ca_certs.patch 1.18 - # Adds transitional SSL renegotiate support - patch from Debian 1.19 - patch -Np1 -i $stuff/ssl-renegotiate-transitional.patch 1.20 - # Builds against system sqlite - patch from Fedora 1.21 - patch -Np0 -i $stuff/nss-nolocalsql.patch 1.22 - # Removes rpath 1.23 - patch -Np0 -i $stuff/nss-no-rpath.patch 1.24 + patch -Np1 -i $stuff/nss-3.14.1-standalone-1.patch && 1.25 + cd mozilla/security/nss && 1.26 + make -j1 nss_build_all BUILD_OPT=1 \ 1.27 + NSPR_INCLUDE_DIR=/usr/include/nspr \ 1.28 + USE_SYSTEM_ZLIB=1 \ 1.29 + ZLIB_LIBS=-lz \ 1.30 + $([ $(uname -m) = x86_64 ] && echo USE_64=1) \ 1.31 + $([ -f /usr/include/sqlite3.h ] && echo NSS_USE_SYSTEM_SQLITE=1) && 1.32 1.33 - cd $src/mozilla/security/nss/lib/ckfw/builtins 1.34 - make generate 1.35 - 1.36 - cd $src 1.37 - unset CFLAGS 1.38 - unset CXXFLAGS 1.39 - export NSS_USE_SYSTEM_SQLITE=1 1.40 - export BUILD_OPT=1 1.41 - export PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 1.42 - export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 1.43 - export NSPR_INCLUDE_DIR=`pkg-config --cflags-only-I nspr | sed 's/-I//'` 1.44 - export NSPR_LIB_DIR=`pkg-config --libs-only-L nspr | sed 's/-L.//'` 1.45 - 1.46 - make -j 1 -C mozilla/security/coreconf 1.47 - make -j 1 -C mozilla/security/dbm 1.48 - make -j 1 -C mozilla/security/nss 1.49 - 1.50 - mkdir -p $PWD/_pkg/usr/bin 1.51 - mkdir -p $PWD/_pkg/usr/lib/pkgconfig 1.52 - mkdir -p $PWD/_pkg/usr/include/nss 1.53 - 1.54 - NSS_VMAJOR=`grep "#define.*NSS_VMAJOR" mozilla/security/nss/lib/nss/nss.h | awk '{print $3}'` 1.55 - NSS_VMINOR=`grep "#define.*NSS_VMINOR" mozilla/security/nss/lib/nss/nss.h | awk '{print $3}'` 1.56 - NSS_VPATCH=`grep "#define.*NSS_VPATCH" mozilla/security/nss/lib/nss/nss.h | awk '{print $3}'` 1.57 - 1.58 - sed $stuff/nss.pc.in -e "s,%libdir%,/usr/lib,g" \ 1.59 - -e "s,%prefix%,/usr,g" \ 1.60 - -e "s,%exec_prefix%,/usr/bin,g" \ 1.61 - -e "s,%includedir%,/usr/include/nss,g" \ 1.62 - -e "s,%NSPR_VERSION%,${VERSION},g" \ 1.63 - -e "s,%NSS_VERSION%,${VERSION},g" \ 1.64 - > $PWD/_pkg/usr/lib/pkgconfig/nss.pc || return 1 1.65 - 1.66 - sed $stuff/nss-config.in -e "s,@libdir@,/usr/lib,g" \ 1.67 - -e "s,@prefix@,/usr/bin,g" \ 1.68 - -e "s,@exec_prefix@,/usr/bin,g" \ 1.69 - -e "s,@includedir@,/usr/include/nss,g" \ 1.70 - -e "s,@MOD_MAJOR_VERSION@,${NSS_VMAJOR},g" \ 1.71 - -e "s,@MOD_MINOR_VERSION@,${NSS_VMINOR},g" \ 1.72 - -e "s,@MOD_PATCH_VERSION@,${NSS_VPATCH},g" \ 1.73 - > $PWD/_pkg/usr/bin/nss-config || return 1 1.74 - chmod 755 $PWD/_pkg/usr/bin/nss-config || return 1 1.75 - 1.76 - for file in libsoftokn3.so libfreebl3.so libnss3.so libnssutil3.so \ 1.77 - libssl3.so libsmime3.so libnssckbi.so libnssdbm3.so 1.78 - do 1.79 - cp mozilla/dist/*.OBJ/lib/${file} $PWD/_pkg/usr/lib/ || return 1 1.80 - done 1.81 - for file in libcrmf.a libnssb.a libnssckfw.a; do 1.82 - cp mozilla/dist/*.OBJ/lib/${file} $PWD/_pkg/usr/lib/ || return 1 1.83 - done 1.84 - 1.85 - for file in certutil cmsutil crlutil modutil pk12util signtool signver ssltap; do 1.86 - cp mozilla/dist/*.OBJ/bin/${file} $PWD/_pkg/usr/bin/ || return 1 1.87 - done 1.88 - 1.89 - cp mozilla/dist/public/nss/*.h $PWD/_pkg/usr/include/nss || return 1 1.90 + mkdir -p $install/usr/lib $install/usr/include/nss 1.91 + mkdir -p $install/usr/bin $install/usr/lib/pkgconfig && 1.92 + cd ../../dist && 1.93 + install -v -m755 Linux*/lib/*.so $install/usr/lib && 1.94 + install -v -m644 Linux*/lib/*.chk $install/usr/lib && 1.95 + install -v -m644 Linux*/lib/libcrmf.a $install/usr/lib && 1.96 + install -v -m755 -d $install/usr/include/nss && 1.97 + cp -v -RL public/nss/* $install/usr/include/nss && 1.98 + cp -v -RL private/nss/* $install/usr/include/nss && 1.99 + chmod 644 $install/usr/include/nss/* && 1.100 + install -v -m755 Linux*/bin/certutil $install/usr/bin && 1.101 + install -v -m755 Linux*/bin/nss-config $install/usr/bin && 1.102 + install -v -m755 Linux*/bin/pk12util $install/usr/bin && 1.103 + install -v -m644 Linux*/lib/pkgconfig/nss.pc $install/usr/lib/pkgconfig 1.104 } 1.105 1.106 # Rules to gen a SliTaz package suitable for Tazpkg. 1.107 genpkg_rules() 1.108 { 1.109 mkdir -p $fs/usr/lib 1.110 - cp -a $_pkg/usr/bin $fs/usr 1.111 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.112 + cp -a $install/usr/bin $fs/usr 1.113 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.114 rm $fs/usr/bin/nss-config 1.115 }
2.1 --- a/nss/stuff/add_spi+cacert_ca_certs.patch Tue Mar 05 22:39:47 2013 +0100 2.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 2.3 @@ -1,1168 +0,0 @@ 2.4 -## 95_add_spi+cacert_ca_certs.patch by martin f. krafft <madduck@debian.org> 2.5 -## 2.6 -## All lines beginning with `## DP:' are a description of the patch. 2.7 -## DP: Adds the SPI Inc. and CAcert.org CA certificates 2.8 - 2.9 -diff --git a/mozilla/security/nss/lib/ckfw/builtins/certdata.c b/mozilla/security/nss/lib/ckfw/builtins/certdata.c 2.10 -index 52b78ad..28fe53c 100644 2.11 ---- a/mozilla/security/nss/lib/ckfw/builtins/certdata.c 2.12 -+++ b/mozilla/security/nss/lib/ckfw/builtins/certdata.c 2.13 -@@ -35,7 +35,7 @@ 2.14 - * 2.15 - * ***** END LICENSE BLOCK ***** */ 2.16 - #ifdef DEBUG 2.17 --static const char CVS_ID[] = "@(#) $RCSfile: certdata.c,v $ $Revision: 1.67 $ $Date: 2010/04/08 14:28:58 $""; @(#) $RCSfile: certdata.c,v $ $Revision: 1.67 $ $Date: 2010/04/08 14:28:58 $"; 2.18 -+static const char CVS_ID[] = "@(#) $RCSfile: certdata.txt,v $ $Revision: 1.64 $ $Date: 2010/04/08 14:28:59 $""; @(#) $RCSfile: certdata.perl,v $ $Revision: 1.13 $ $Date: 2010/03/26 22:06:47 $"; 2.19 - #endif /* DEBUG */ 2.20 - 2.21 - #ifndef BUILTINS_H 2.22 -@@ -960,6 +960,24 @@ static const CK_ATTRIBUTE_TYPE nss_builtins_types_300 [] = { 2.23 - static const CK_ATTRIBUTE_TYPE nss_builtins_types_301 [] = { 2.24 - 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 2.25 - }; 2.26 -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_302 [] = { 2.27 -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE 2.28 -+}; 2.29 -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_303 [] = { 2.30 -+ 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 2.31 -+}; 2.32 -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_304 [] = { 2.33 -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE 2.34 -+}; 2.35 -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_305 [] = { 2.36 -+ 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 2.37 -+}; 2.38 -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_306 [] = { 2.39 -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE 2.40 -+}; 2.41 -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_307 [] = { 2.42 -+ 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 2.43 -+}; 2.44 - #ifdef DEBUG 2.45 - static const NSSItem nss_builtins_items_0 [] = { 2.46 - { (void *)&cko_data, (PRUint32)sizeof(CK_OBJECT_CLASS) }, 2.47 -@@ -968,7 +986,7 @@ static const NSSItem nss_builtins_items_0 [] = { 2.48 - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.49 - { (void *)"CVS ID", (PRUint32)7 }, 2.50 - { (void *)"NSS", (PRUint32)4 }, 2.51 -- { (void *)"@(#) $RCSfile: certdata.c,v $ $Revision: 1.67 $ $Date: 2010/04/08 14:28:58 $""; @(#) $RCSfile: certdata.c,v $ $Revision: 1.67 $ $Date: 2010/04/08 14:28:58 $", (PRUint32)160 } 2.52 -+ { (void *)"@(#) $RCSfile: certdata.txt,v $ $Revision: 1.64 $ $Date: 2010/04/08 14:28:59 $""; @(#) $RCSfile: certdata.perl,v $ $Revision: 1.13 $ $Date: 2010/03/26 22:06:47 $", (PRUint32)160 } 2.53 - }; 2.54 - #endif /* DEBUG */ 2.55 - static const NSSItem nss_builtins_items_1 [] = { 2.56 -@@ -20303,6 +20321,531 @@ static const NSSItem nss_builtins_items_301 [] = { 2.57 - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.58 - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } 2.59 - }; 2.60 -+static const NSSItem nss_builtins_items_302 [] = { 2.61 -+ { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, 2.62 -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, 2.63 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.64 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.65 -+ { (void *)"CAcert.org Class 1 Root CA", (PRUint32)27 }, 2.66 -+ { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, 2.67 -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" 2.68 -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" 2.69 -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" 2.70 -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" 2.71 -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" 2.72 -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" 2.73 -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" 2.74 -+"\100\143\141\143\145\162\164\056\157\162\147" 2.75 -+, (PRUint32)123 }, 2.76 -+ { (void *)"0", (PRUint32)2 }, 2.77 -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" 2.78 -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" 2.79 -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" 2.80 -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" 2.81 -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" 2.82 -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" 2.83 -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" 2.84 -+"\100\143\141\143\145\162\164\056\157\162\147" 2.85 -+, (PRUint32)123 }, 2.86 -+ { (void *)"\002\001\000" 2.87 -+, (PRUint32)3 }, 2.88 -+ { (void *)"\060\202\007\075\060\202\005\045\240\003\002\001\002\002\001\000" 2.89 -+"\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060" 2.90 -+"\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164" 2.91 -+"\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164" 2.92 -+"\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056" 2.93 -+"\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101" 2.94 -+"\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165" 2.95 -+"\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110" 2.96 -+"\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100" 2.97 -+"\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\063" 2.98 -+"\060\063\063\060\061\062\062\071\064\071\132\027\015\063\063\060" 2.99 -+"\063\062\071\061\062\062\071\064\071\132\060\171\061\020\060\016" 2.100 -+"\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036" 2.101 -+"\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057" 2.102 -+"\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042" 2.103 -+"\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164" 2.104 -+"\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151" 2.105 -+"\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011" 2.106 -+"\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162" 2.107 -+"\164\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110" 2.108 -+"\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002" 2.109 -+"\012\002\202\002\001\000\316\042\300\342\106\175\354\066\050\007" 2.110 -+"\120\226\362\240\063\100\214\113\361\073\146\077\061\345\153\002" 2.111 -+"\066\333\326\174\366\361\210\217\116\167\066\005\101\225\371\011" 2.112 -+"\360\022\317\106\206\163\140\267\156\176\350\300\130\144\256\315" 2.113 -+"\260\255\105\027\014\143\372\147\012\350\326\322\277\076\347\230" 2.114 -+"\304\360\114\372\340\003\273\065\135\154\041\336\236\040\331\272" 2.115 -+"\315\146\062\067\162\372\367\010\365\307\315\130\311\216\347\016" 2.116 -+"\136\352\076\376\034\241\024\012\025\154\206\204\133\144\146\052" 2.117 -+"\172\251\113\123\171\365\210\242\173\356\057\012\141\053\215\262" 2.118 -+"\176\115\126\245\023\354\352\332\222\236\254\104\101\036\130\140" 2.119 -+"\145\005\146\370\300\104\275\313\224\367\102\176\013\367\145\150" 2.120 -+"\230\121\005\360\363\005\221\004\035\033\027\202\354\310\127\273" 2.121 -+"\303\153\172\210\361\260\162\314\045\133\040\221\354\026\002\022" 2.122 -+"\217\062\351\027\030\110\320\307\005\056\002\060\102\270\045\234" 2.123 -+"\005\153\077\252\072\247\353\123\110\367\350\322\266\007\230\334" 2.124 -+"\033\306\064\177\177\311\034\202\172\005\130\053\010\133\363\070" 2.125 -+"\242\253\027\135\146\311\230\327\236\020\213\242\322\335\164\232" 2.126 -+"\367\161\014\162\140\337\315\157\230\063\235\226\064\166\076\044" 2.127 -+"\172\222\260\016\225\036\157\346\240\105\070\107\252\327\101\355" 2.128 -+"\112\267\022\366\327\033\203\212\017\056\330\011\266\131\327\252" 2.129 -+"\004\377\322\223\175\150\056\335\213\113\253\130\272\057\215\352" 2.130 -+"\225\247\240\303\124\211\245\373\333\213\121\042\235\262\303\276" 2.131 -+"\021\276\054\221\206\213\226\170\255\040\323\212\057\032\077\306" 2.132 -+"\320\121\145\207\041\261\031\001\145\177\105\034\207\365\174\320" 2.133 -+"\101\114\117\051\230\041\375\063\037\165\014\004\121\372\031\167" 2.134 -+"\333\324\024\034\356\201\303\035\365\230\267\151\006\221\042\335" 2.135 -+"\000\120\314\201\061\254\022\007\173\070\332\150\133\346\053\324" 2.136 -+"\176\311\137\255\350\353\162\114\363\001\345\113\040\277\232\246" 2.137 -+"\127\312\221\000\001\213\241\165\041\067\265\143\015\147\076\106" 2.138 -+"\117\160\040\147\316\305\326\131\333\002\340\360\322\313\315\272" 2.139 -+"\142\267\220\101\350\335\040\344\051\274\144\051\102\310\042\334" 2.140 -+"\170\232\377\103\354\230\033\011\121\113\132\132\302\161\361\304" 2.141 -+"\313\163\251\345\241\013\002\003\001\000\001\243\202\001\316\060" 2.142 -+"\202\001\312\060\035\006\003\125\035\016\004\026\004\024\026\265" 2.143 -+"\062\033\324\307\363\340\346\216\363\275\322\260\072\356\262\071" 2.144 -+"\030\321\060\201\243\006\003\125\035\043\004\201\233\060\201\230" 2.145 -+"\200\024\026\265\062\033\324\307\363\340\346\216\363\275\322\260" 2.146 -+"\072\356\262\071\030\321\241\175\244\173\060\171\061\020\060\016" 2.147 -+"\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036" 2.148 -+"\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057" 2.149 -+"\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042" 2.150 -+"\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164" 2.151 -+"\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151" 2.152 -+"\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011" 2.153 -+"\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162" 2.154 -+"\164\056\157\162\147\202\001\000\060\017\006\003\125\035\023\001" 2.155 -+"\001\377\004\005\060\003\001\001\377\060\062\006\003\125\035\037" 2.156 -+"\004\053\060\051\060\047\240\045\240\043\206\041\150\164\164\160" 2.157 -+"\163\072\057\057\167\167\167\056\143\141\143\145\162\164\056\157" 2.158 -+"\162\147\057\162\145\166\157\153\145\056\143\162\154\060\060\006" 2.159 -+"\011\140\206\110\001\206\370\102\001\004\004\043\026\041\150\164" 2.160 -+"\164\160\163\072\057\057\167\167\167\056\143\141\143\145\162\164" 2.161 -+"\056\157\162\147\057\162\145\166\157\153\145\056\143\162\154\060" 2.162 -+"\064\006\011\140\206\110\001\206\370\102\001\010\004\047\026\045" 2.163 -+"\150\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162" 2.164 -+"\164\056\157\162\147\057\151\156\144\145\170\056\160\150\160\077" 2.165 -+"\151\144\075\061\060\060\126\006\011\140\206\110\001\206\370\102" 2.166 -+"\001\015\004\111\026\107\124\157\040\147\145\164\040\171\157\165" 2.167 -+"\162\040\157\167\156\040\143\145\162\164\151\146\151\143\141\164" 2.168 -+"\145\040\146\157\162\040\106\122\105\105\040\150\145\141\144\040" 2.169 -+"\157\166\145\162\040\164\157\040\150\164\164\160\072\057\057\167" 2.170 -+"\167\167\056\143\141\143\145\162\164\056\157\162\147\060\015\006" 2.171 -+"\011\052\206\110\206\367\015\001\001\004\005\000\003\202\002\001" 2.172 -+"\000\050\307\356\234\202\002\272\134\200\022\312\065\012\035\201" 2.173 -+"\157\211\152\231\314\362\150\017\177\247\341\215\130\225\076\275" 2.174 -+"\362\006\303\220\132\254\265\140\366\231\103\001\243\210\160\234" 2.175 -+"\235\142\235\244\207\257\147\130\015\060\066\073\346\255\110\323" 2.176 -+"\313\164\002\206\161\076\342\053\003\150\361\064\142\100\106\073" 2.177 -+"\123\352\050\364\254\373\146\225\123\212\115\135\375\073\331\140" 2.178 -+"\327\312\171\151\073\261\145\222\246\306\201\202\134\234\315\353" 2.179 -+"\115\001\212\245\337\021\125\252\025\312\037\067\300\202\230\160" 2.180 -+"\141\333\152\174\226\243\216\056\124\076\117\041\251\220\357\334" 2.181 -+"\202\277\334\350\105\255\115\220\163\010\074\224\145\260\004\231" 2.182 -+"\166\177\342\274\302\152\025\252\227\004\067\044\330\036\224\116" 2.183 -+"\155\016\121\276\326\304\217\312\226\155\367\103\337\350\060\145" 2.184 -+"\047\073\173\273\103\103\143\304\103\367\262\354\150\314\341\031" 2.185 -+"\216\042\373\230\341\173\132\076\001\067\073\213\010\260\242\363" 2.186 -+"\225\116\032\313\233\315\232\261\333\262\160\360\055\112\333\330" 2.187 -+"\260\343\157\105\110\063\022\377\376\074\062\052\124\367\304\367" 2.188 -+"\212\360\210\043\302\107\376\144\172\161\300\321\036\246\143\260" 2.189 -+"\007\176\244\057\323\001\217\334\237\053\266\306\010\251\017\223" 2.190 -+"\110\045\374\022\375\237\102\334\363\304\076\366\127\260\327\335" 2.191 -+"\151\321\006\167\064\012\113\322\312\240\377\034\306\214\311\026" 2.192 -+"\276\304\314\062\067\150\163\137\010\373\121\367\111\123\066\005" 2.193 -+"\012\225\002\114\362\171\032\020\366\330\072\165\234\363\035\361" 2.194 -+"\242\015\160\147\206\033\263\026\365\057\345\244\353\171\206\371" 2.195 -+"\075\013\302\163\013\245\231\254\157\374\147\270\345\057\013\246" 2.196 -+"\030\044\215\173\321\110\065\051\030\100\254\223\140\341\226\206" 2.197 -+"\120\264\172\131\330\217\041\013\237\317\202\221\306\073\277\153" 2.198 -+"\334\007\221\271\227\126\043\252\266\154\224\306\110\006\074\344" 2.199 -+"\316\116\252\344\366\057\011\334\123\157\056\374\164\353\072\143" 2.200 -+"\231\302\246\254\211\274\247\262\104\240\015\212\020\343\154\362" 2.201 -+"\044\313\372\233\237\160\107\056\336\024\213\324\262\040\011\226" 2.202 -+"\242\144\361\044\034\334\241\065\234\025\262\324\274\125\056\175" 2.203 -+"\006\365\234\016\125\364\132\326\223\332\166\255\045\163\114\305" 2.204 -+"\103" 2.205 -+, (PRUint32)1857 } 2.206 -+}; 2.207 -+static const NSSItem nss_builtins_items_303 [] = { 2.208 -+ { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, 2.209 -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, 2.210 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.211 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.212 -+ { (void *)"CAcert.org Class 1 Root CA", (PRUint32)27 }, 2.213 -+ { (void *)"\023\134\354\066\364\234\270\351\073\032\262\160\315\200\210\106" 2.214 -+"\166\316\217\063" 2.215 -+, (PRUint32)20 }, 2.216 -+ { (void *)"\246\033\067\136\071\015\234\066\124\356\275\040\061\106\037\153" 2.217 -+, (PRUint32)16 }, 2.218 -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" 2.219 -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" 2.220 -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" 2.221 -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" 2.222 -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" 2.223 -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" 2.224 -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" 2.225 -+"\100\143\141\143\145\162\164\056\157\162\147" 2.226 -+, (PRUint32)123 }, 2.227 -+ { (void *)"\002\001\000" 2.228 -+, (PRUint32)3 }, 2.229 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.230 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.231 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.232 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } 2.233 -+}; 2.234 -+static const NSSItem nss_builtins_items_304 [] = { 2.235 -+ { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, 2.236 -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, 2.237 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.238 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.239 -+ { (void *)"CAcert.org Class 3 Root CA", (PRUint32)27 }, 2.240 -+ { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, 2.241 -+ { (void *)"\060\124\061\024\060\022\006\003\125\004\012\023\013\103\101\143" 2.242 -+"\145\162\164\040\111\156\143\056\061\036\060\034\006\003\125\004" 2.243 -+"\013\023\025\150\164\164\160\072\057\057\167\167\167\056\103\101" 2.244 -+"\143\145\162\164\056\157\162\147\061\034\060\032\006\003\125\004" 2.245 -+"\003\023\023\103\101\143\145\162\164\040\103\154\141\163\163\040" 2.246 -+"\063\040\122\157\157\164" 2.247 -+, (PRUint32)86 }, 2.248 -+ { (void *)"0", (PRUint32)2 }, 2.249 -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" 2.250 -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" 2.251 -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" 2.252 -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" 2.253 -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" 2.254 -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" 2.255 -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" 2.256 -+"\100\143\141\143\145\162\164\056\157\162\147" 2.257 -+, (PRUint32)123 }, 2.258 -+ { (void *)"\002\001\001" 2.259 -+, (PRUint32)3 }, 2.260 -+ { (void *)"\060\202\006\010\060\202\003\360\240\003\002\001\002\002\001\001" 2.261 -+"\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060" 2.262 -+"\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164" 2.263 -+"\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164" 2.264 -+"\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056" 2.265 -+"\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101" 2.266 -+"\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165" 2.267 -+"\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110" 2.268 -+"\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100" 2.269 -+"\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\065" 2.270 -+"\061\060\061\064\060\067\063\066\065\065\132\027\015\063\063\060" 2.271 -+"\063\062\070\060\067\063\066\065\065\132\060\124\061\024\060\022" 2.272 -+"\006\003\125\004\012\023\013\103\101\143\145\162\164\040\111\156" 2.273 -+"\143\056\061\036\060\034\006\003\125\004\013\023\025\150\164\164" 2.274 -+"\160\072\057\057\167\167\167\056\103\101\143\145\162\164\056\157" 2.275 -+"\162\147\061\034\060\032\006\003\125\004\003\023\023\103\101\143" 2.276 -+"\145\162\164\040\103\154\141\163\163\040\063\040\122\157\157\164" 2.277 -+"\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001" 2.278 -+"\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001" 2.279 -+"\000\253\111\065\021\110\174\322\046\176\123\224\317\103\251\335" 2.280 -+"\050\327\102\052\213\363\207\170\031\130\174\017\236\332\211\175" 2.281 -+"\341\373\353\162\220\015\164\241\226\144\253\237\240\044\231\163" 2.282 -+"\332\342\125\166\307\027\173\365\004\254\106\270\303\276\177\144" 2.283 -+"\215\020\154\044\363\141\234\300\362\220\372\121\346\365\151\001" 2.284 -+"\143\303\017\126\342\112\102\317\342\104\214\045\050\250\305\171" 2.285 -+"\011\175\106\271\212\363\351\363\064\051\010\105\344\034\237\313" 2.286 -+"\224\004\034\201\250\024\263\230\145\304\103\354\116\202\215\011" 2.287 -+"\321\275\252\133\215\222\320\354\336\220\305\177\012\302\343\353" 2.288 -+"\346\061\132\136\164\076\227\063\131\350\303\003\075\140\063\277" 2.289 -+"\367\321\157\107\304\315\356\142\203\122\156\056\010\232\244\331" 2.290 -+"\025\030\221\246\205\222\107\260\256\110\353\155\267\041\354\205" 2.291 -+"\032\150\162\065\253\377\360\020\135\300\364\224\247\152\325\073" 2.292 -+"\222\176\114\220\005\176\223\301\054\213\244\216\142\164\025\161" 2.293 -+"\156\013\161\003\352\257\025\070\232\324\322\005\162\157\214\371" 2.294 -+"\053\353\132\162\045\371\071\106\343\162\033\076\004\303\144\047" 2.295 -+"\042\020\052\212\117\130\247\003\255\276\264\056\023\355\135\252" 2.296 -+"\110\327\325\175\324\052\173\134\372\106\004\120\344\314\016\102" 2.297 -+"\133\214\355\333\362\317\374\226\223\340\333\021\066\124\142\064" 2.298 -+"\070\217\014\140\233\073\227\126\070\255\363\322\133\213\240\133" 2.299 -+"\352\116\226\270\174\327\325\240\206\160\100\323\221\051\267\242" 2.300 -+"\074\255\365\214\273\317\032\222\212\344\064\173\300\330\154\137" 2.301 -+"\351\012\302\303\247\040\232\132\337\054\135\122\134\272\107\325" 2.302 -+"\233\357\044\050\160\070\040\057\325\177\051\300\262\101\003\150" 2.303 -+"\222\314\340\234\314\227\113\105\357\072\020\012\253\160\072\230" 2.304 -+"\225\160\255\065\261\352\205\053\244\034\200\041\061\251\256\140" 2.305 -+"\172\200\046\110\000\270\001\300\223\143\125\042\221\074\126\347" 2.306 -+"\257\333\072\045\363\217\061\124\352\046\213\201\131\371\241\321" 2.307 -+"\123\021\305\173\235\003\366\164\021\340\155\261\054\077\054\206" 2.308 -+"\221\231\161\232\246\167\213\064\140\321\024\264\054\254\235\257" 2.309 -+"\214\020\323\237\304\152\370\157\023\374\163\131\367\146\102\164" 2.310 -+"\036\212\343\370\334\322\157\230\234\313\107\230\225\100\005\373" 2.311 -+"\351\002\003\001\000\001\243\201\277\060\201\274\060\017\006\003" 2.312 -+"\125\035\023\001\001\377\004\005\060\003\001\001\377\060\135\006" 2.313 -+"\010\053\006\001\005\005\007\001\001\004\121\060\117\060\043\006" 2.314 -+"\010\053\006\001\005\005\007\060\001\206\027\150\164\164\160\072" 2.315 -+"\057\057\157\143\163\160\056\103\101\143\145\162\164\056\157\162" 2.316 -+"\147\057\060\050\006\010\053\006\001\005\005\007\060\002\206\034" 2.317 -+"\150\164\164\160\072\057\057\167\167\167\056\103\101\143\145\162" 2.318 -+"\164\056\157\162\147\057\143\141\056\143\162\164\060\112\006\003" 2.319 -+"\125\035\040\004\103\060\101\060\077\006\010\053\006\001\004\001" 2.320 -+"\201\220\112\060\063\060\061\006\010\053\006\001\005\005\007\002" 2.321 -+"\001\026\045\150\164\164\160\072\057\057\167\167\167\056\103\101" 2.322 -+"\143\145\162\164\056\157\162\147\057\151\156\144\145\170\056\160" 2.323 -+"\150\160\077\151\144\075\061\060\060\015\006\011\052\206\110\206" 2.324 -+"\367\015\001\001\004\005\000\003\202\002\001\000\177\010\210\241" 2.325 -+"\332\032\120\111\332\211\373\241\010\162\363\212\367\036\304\072" 2.326 -+"\264\171\133\040\060\261\105\336\302\135\323\145\151\361\302\135" 2.327 -+"\124\124\074\205\137\271\173\102\221\302\231\375\033\121\233\253" 2.328 -+"\106\245\241\020\123\236\155\210\254\163\156\054\063\246\360\364" 2.329 -+"\236\340\165\301\076\210\105\251\341\146\103\376\126\132\321\172" 2.330 -+"\101\170\367\100\332\112\072\361\013\133\245\273\026\006\346\302" 2.331 -+"\347\223\271\205\115\227\117\261\036\070\103\200\357\233\015\214" 2.332 -+"\357\270\247\140\000\207\127\175\036\104\034\313\043\357\233\074" 2.333 -+"\231\235\257\265\051\034\105\171\026\226\115\047\155\361\034\154" 2.334 -+"\303\302\125\144\263\274\024\342\363\244\037\036\062\374\047\025" 2.335 -+"\005\317\335\056\256\076\202\141\173\360\041\020\030\366\104\352" 2.336 -+"\123\071\371\334\320\232\040\340\306\273\340\273\132\117\304\231" 2.337 -+"\310\007\275\265\275\242\333\056\142\015\102\064\101\274\377\213" 2.338 -+"\212\365\121\042\252\210\060\000\342\260\324\274\276\145\272\325" 2.339 -+"\003\127\171\233\350\334\310\115\370\120\355\221\245\122\050\242" 2.340 -+"\254\373\066\130\076\351\224\053\221\120\207\033\326\136\326\214" 2.341 -+"\314\367\017\020\014\122\116\320\026\141\345\345\012\154\277\027" 2.342 -+"\307\162\106\127\234\230\365\154\140\143\172\157\136\271\116\057" 2.343 -+"\310\271\271\273\152\205\274\230\015\355\371\076\227\204\064\224" 2.344 -+"\256\000\257\241\345\347\222\156\116\275\363\342\331\024\213\134" 2.345 -+"\322\353\001\154\240\027\245\055\020\353\234\172\112\275\275\356" 2.346 -+"\316\375\355\042\100\253\160\070\210\365\012\207\152\302\253\005" 2.347 -+"\140\311\110\005\332\123\301\336\104\167\152\263\363\074\074\355" 2.348 -+"\200\274\246\070\112\051\044\137\376\131\073\233\045\172\126\143" 2.349 -+"\000\144\271\135\244\142\175\127\066\117\255\203\357\037\222\123" 2.350 -+"\240\216\167\127\335\345\141\021\075\043\000\220\114\074\372\243" 2.351 -+"\140\223\004\243\257\065\366\016\152\217\117\112\140\247\205\005" 2.352 -+"\154\106\241\217\364\307\166\343\241\131\127\367\161\262\304\156" 2.353 -+"\024\134\155\155\101\146\337\033\223\261\324\000\303\356\313\317" 2.354 -+"\074\075\041\200\251\137\143\145\374\335\340\137\244\364\053\360" 2.355 -+"\205\161\101\324\147\045\373\032\261\227\256\326\231\202\023\101" 2.356 -+"\322\156\245\033\231\047\200\347\013\251\250\000" 2.357 -+, (PRUint32)1548 } 2.358 -+}; 2.359 -+static const NSSItem nss_builtins_items_305 [] = { 2.360 -+ { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, 2.361 -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, 2.362 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.363 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.364 -+ { (void *)"CAcert.org Class 3 Root CA", (PRUint32)27 }, 2.365 -+ { (void *)"\333\114\102\151\007\077\351\302\243\175\211\012\134\033\030\304" 2.366 -+"\030\116\052\055" 2.367 -+, (PRUint32)20 }, 2.368 -+ { (void *)"\163\077\065\124\035\104\311\351\132\112\357\121\255\003\006\266" 2.369 -+, (PRUint32)16 }, 2.370 -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" 2.371 -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" 2.372 -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" 2.373 -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" 2.374 -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" 2.375 -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" 2.376 -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" 2.377 -+"\100\143\141\143\145\162\164\056\157\162\147" 2.378 -+, (PRUint32)123 }, 2.379 -+ { (void *)"\002\001\001" 2.380 -+, (PRUint32)3 }, 2.381 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.382 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.383 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.384 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } 2.385 -+}; 2.386 -+static const NSSItem nss_builtins_items_306 [] = { 2.387 -+ { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, 2.388 -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, 2.389 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.390 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.391 -+ { (void *)"Software in the Public Interest, Inc. Root CA (2008)", (PRUint32)53 }, 2.392 -+ { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, 2.393 -+ { (void *)"\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123" 2.394 -+"\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141" 2.395 -+"\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144" 2.396 -+"\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125" 2.397 -+"\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040" 2.398 -+"\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162" 2.399 -+"\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157" 2.400 -+"\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004" 2.401 -+"\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101" 2.402 -+"\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206" 2.403 -+"\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163" 2.404 -+"\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147" 2.405 -+, (PRUint32)191 }, 2.406 -+ { (void *)"0", (PRUint32)2 }, 2.407 -+ { (void *)"\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123" 2.408 -+"\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141" 2.409 -+"\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144" 2.410 -+"\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125" 2.411 -+"\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040" 2.412 -+"\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162" 2.413 -+"\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157" 2.414 -+"\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004" 2.415 -+"\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101" 2.416 -+"\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206" 2.417 -+"\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163" 2.418 -+"\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147" 2.419 -+, (PRUint32)191 }, 2.420 -+ { (void *)"\002\011\000\350\216\266\311\370\052\024\050" 2.421 -+, (PRUint32)11 }, 2.422 -+ { (void *)"\060\202\010\016\060\202\005\366\240\003\002\001\002\002\011\000" 2.423 -+"\350\216\266\311\370\052\024\050\060\015\006\011\052\206\110\206" 2.424 -+"\367\015\001\001\005\005\000\060\201\274\061\013\060\011\006\003" 2.425 -+"\125\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010" 2.426 -+"\023\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125" 2.427 -+"\004\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163" 2.428 -+"\061\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167" 2.429 -+"\141\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151" 2.430 -+"\143\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003" 2.431 -+"\125\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061" 2.432 -+"\036\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146" 2.433 -+"\151\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061" 2.434 -+"\045\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026" 2.435 -+"\150\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151" 2.436 -+"\156\143\056\157\162\147\060\036\027\015\060\070\060\065\061\063" 2.437 -+"\060\070\060\067\065\066\132\027\015\061\070\060\065\061\061\060" 2.438 -+"\070\060\067\065\066\132\060\201\274\061\013\060\011\006\003\125" 2.439 -+"\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010\023" 2.440 -+"\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125\004" 2.441 -+"\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163\061" 2.442 -+"\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167\141" 2.443 -+"\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151\143" 2.444 -+"\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003\125" 2.445 -+"\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061\036" 2.446 -+"\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146\151" 2.447 -+"\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061\045" 2.448 -+"\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026\150" 2.449 -+"\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151\156" 2.450 -+"\143\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110" 2.451 -+"\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002" 2.452 -+"\012\002\202\002\001\000\334\066\346\107\102\302\304\121\165\051" 2.453 -+"\207\100\303\330\216\041\006\322\030\116\353\357\040\275\220\074" 2.454 -+"\205\020\023\214\051\133\224\143\366\364\055\361\006\102\221\271" 2.455 -+"\031\304\102\151\010\277\213\066\105\352\050\005\063\111\110\240" 2.456 -+"\047\103\223\065\212\101\330\170\263\360\357\263\156\055\335\321" 2.457 -+"\313\175\352\364\165\046\323\076\220\072\356\327\347\054\004\265" 2.458 -+"\174\341\365\174\305\116\357\167\275\134\242\223\063\222\316\175" 2.459 -+"\201\110\317\153\265\042\054\010\203\375\323\325\317\073\055\375" 2.460 -+"\265\111\220\133\366\255\115\023\312\336\323\246\235\123\121\161" 2.461 -+"\143\106\370\112\026\134\230\356\055\155\232\026\241\166\220\342" 2.462 -+"\140\103\231\326\211\326\154\056\172\230\262\013\003\054\343\172" 2.463 -+"\117\307\335\343\314\343\112\152\215\171\122\372\364\301\257\056" 2.464 -+"\217\052\010\313\033\051\202\222\162\103\274\316\210\251\252\247" 2.465 -+"\212\121\103\125\205\232\067\003\170\223\310\360\275\264\101\310" 2.466 -+"\007\102\232\313\065\227\172\212\201\145\336\035\124\010\001\361" 2.467 -+"\144\134\267\027\032\121\274\036\303\131\207\166\030\026\230\356" 2.468 -+"\277\366\147\201\213\006\065\305\113\155\131\031\307\322\306\110" 2.469 -+"\276\156\024\050\203\112\020\234\033\365\157\274\251\216\365\151" 2.470 -+"\376\262\301\125\314\347\024\311\371\133\024\123\121\007\352\316" 2.471 -+"\075\344\117\050\037\074\141\011\327\063\322\156\247\156\324\307" 2.472 -+"\023\011\157\153\135\024\356\235\211\033\245\152\362\366\370\320" 2.473 -+"\162\216\352\162\037\057\064\152\051\012\305\012\354\034\100\205" 2.474 -+"\022\367\246\245\323\117\255\300\205\214\114\174\163\040\314\123" 2.475 -+"\030\361\262\130\114\001\365\277\352\144\325\134\071\305\316\154" 2.476 -+"\314\123\132\126\272\101\017\045\337\153\120\266\307\212\240\275" 2.477 -+"\002\302\305\073\125\245\262\144\042\204\121\050\126\256\061\356" 2.478 -+"\136\373\013\026\115\106\005\221\200\104\355\254\155\360\127\250" 2.479 -+"\372\353\141\110\240\313\033\263\037\216\315\305\041\167\003\204" 2.480 -+"\036\374\254\243\103\010\143\214\355\371\047\357\264\260\135\147" 2.481 -+"\326\117\355\320\213\076\135\133\311\221\275\226\002\204\075\305" 2.482 -+"\115\274\102\077\164\375\074\135\254\134\110\066\136\207\061\057" 2.483 -+"\030\154\304\150\356\241\213\311\131\320\030\343\000\200\263\124" 2.484 -+"\047\056\231\360\025\123\002\003\001\000\001\243\202\002\017\060" 2.485 -+"\202\002\013\060\035\006\003\125\035\016\004\026\004\024\064\161" 2.486 -+"\321\070\327\025\066\203\107\153\327\067\144\102\073\216\215\122" 2.487 -+"\235\253\060\201\361\006\003\125\035\043\004\201\351\060\201\346" 2.488 -+"\200\024\064\161\321\070\327\025\066\203\107\153\327\067\144\102" 2.489 -+"\073\216\215\122\235\253\241\201\302\244\201\277\060\201\274\061" 2.490 -+"\013\060\011\006\003\125\004\006\023\002\125\123\061\020\060\016" 2.491 -+"\006\003\125\004\010\023\007\111\156\144\151\141\156\141\061\025" 2.492 -+"\060\023\006\003\125\004\007\023\014\111\156\144\151\141\156\141" 2.493 -+"\160\157\154\151\163\061\050\060\046\006\003\125\004\012\023\037" 2.494 -+"\123\157\146\164\167\141\162\145\040\151\156\040\164\150\145\040" 2.495 -+"\120\165\142\154\151\143\040\111\156\164\145\162\145\163\164\061" 2.496 -+"\023\060\021\006\003\125\004\013\023\012\150\157\163\164\155\141" 2.497 -+"\163\164\145\162\061\036\060\034\006\003\125\004\003\023\025\103" 2.498 -+"\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150\157" 2.499 -+"\162\151\164\171\061\045\060\043\006\011\052\206\110\206\367\015" 2.500 -+"\001\011\001\026\026\150\157\163\164\155\141\163\164\145\162\100" 2.501 -+"\163\160\151\055\151\156\143\056\157\162\147\202\011\000\350\216" 2.502 -+"\266\311\370\052\024\050\060\017\006\003\125\035\023\001\001\377" 2.503 -+"\004\005\060\003\001\001\377\060\021\006\011\140\206\110\001\206" 2.504 -+"\370\102\001\001\004\004\003\002\000\007\060\011\006\003\125\035" 2.505 -+"\022\004\002\060\000\060\056\006\011\140\206\110\001\206\370\102" 2.506 -+"\001\015\004\041\026\037\123\157\146\164\167\141\162\145\040\151" 2.507 -+"\156\040\164\150\145\040\120\165\142\154\151\143\040\111\156\164" 2.508 -+"\145\162\145\163\164\060\060\006\011\140\206\110\001\206\370\102" 2.509 -+"\001\004\004\043\026\041\150\164\164\160\163\072\057\057\143\141" 2.510 -+"\056\163\160\151\055\151\156\143\056\157\162\147\057\143\141\055" 2.511 -+"\143\162\154\056\160\145\155\060\062\006\011\140\206\110\001\206" 2.512 -+"\370\102\001\003\004\045\026\043\150\164\164\160\163\072\057\057" 2.513 -+"\143\141\056\163\160\151\055\151\156\143\056\157\162\147\057\143" 2.514 -+"\145\162\164\055\143\162\154\056\160\145\155\060\041\006\003\125" 2.515 -+"\035\021\004\032\060\030\201\026\150\157\163\164\155\141\163\164" 2.516 -+"\145\162\100\163\160\151\055\151\156\143\056\157\162\147\060\016" 2.517 -+"\006\003\125\035\017\001\001\377\004\004\003\002\001\006\060\015" 2.518 -+"\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002" 2.519 -+"\001\000\264\315\275\340\271\352\262\003\053\176\062\351\336\162" 2.520 -+"\077\311\113\202\136\235\342\257\125\011\242\014\124\350\317\030" 2.521 -+"\074\050\040\035\251\273\003\002\057\122\071\042\371\027\317\255" 2.522 -+"\147\220\263\003\177\330\025\343\153\176\273\233\126\001\257\065" 2.523 -+"\324\332\271\307\147\027\233\324\325\016\067\263\040\101\056\014" 2.524 -+"\001\304\133\371\145\076\302\141\350\322\360\152\225\160\303\306" 2.525 -+"\157\325\065\244\254\131\162\341\211\337\241\240\235\044\275\051" 2.526 -+"\171\351\141\052\331\323\036\311\106\244\010\170\101\222\162\017" 2.527 -+"\253\024\165\355\011\360\242\360\134\357\303\012\142\040\267\302" 2.528 -+"\050\146\256\114\057\056\217\105\143\046\226\360\356\061\346\213" 2.529 -+"\125\233\252\072\371\202\071\035\210\074\342\007\165\032\341\017" 2.530 -+"\261\060\274\161\062\322\072\376\372\241\211\363\103\054\326\162" 2.531 -+"\304\171\247\025\110\005\300\330\055\162\002\343\313\075\026\152" 2.532 -+"\272\311\270\021\020\342\111\205\314\226\107\140\005\045\056\357" 2.533 -+"\165\131\063\365\107\031\026\357\332\154\137\007\310\246\120\266" 2.534 -+"\035\313\146\064\045\374\146\203\353\305\266\060\101\370\106\104" 2.535 -+"\142\250\301\014\124\346\352\114\132\050\346\256\306\267\376\177" 2.536 -+"\073\226\250\056\356\307\150\076\335\000\075\051\257\052\143\253" 2.537 -+"\137\356\111\052\055\305\334\373\321\306\323\321\227\126\122\206" 2.538 -+"\266\224\353\324\140\121\267\374\036\233\314\002\233\324\037\217" 2.539 -+"\371\112\217\266\056\050\073\027\314\305\246\005\343\322\323\265" 2.540 -+"\306\003\311\341\110\102\233\313\077\344\027\340\376\015\001\225" 2.541 -+"\011\272\270\015\161\344\011\160\167\102\330\115\341\102\251\140" 2.542 -+"\203\327\027\211\103\322\324\335\247\030\266\253\324\044\045\207" 2.543 -+"\265\324\342\374\056\042\151\275\255\150\054\377\162\265\230\252" 2.544 -+"\006\234\347\052\152\270\241\223\166\316\260\363\177\234\341\340" 2.545 -+"\117\270\330\206\106\245\063\002\054\045\141\067\052\222\310\254" 2.546 -+"\201\164\150\143\207\063\166\275\005\177\136\325\325\002\155\275" 2.547 -+"\257\377\052\132\252\111\354\230\171\107\123\221\366\016\064\132" 2.548 -+"\311\245\306\353\262\343\305\254\266\240\160\065\273\310\121\151" 2.549 -+"\320\362\265\242\062\156\274\077\240\067\071\174\161\066\246\005" 2.550 -+"\337\014\022\344\026\247\305\326\313\143\243\225\160\077\346\004" 2.551 -+"\243\140" 2.552 -+, (PRUint32)2066 } 2.553 -+}; 2.554 -+static const NSSItem nss_builtins_items_307 [] = { 2.555 -+ { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, 2.556 -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, 2.557 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.558 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, 2.559 -+ { (void *)"Software in the Public Interest, Inc. Root CA (2008)", (PRUint32)53 }, 2.560 -+ { (void *)"\257\160\210\103\203\202\002\025\315\141\306\274\354\375\067\044" 2.561 -+"\251\220\103\034" 2.562 -+, (PRUint32)20 }, 2.563 -+ { (void *)"\052\107\237\140\273\203\164\157\001\003\327\013\015\366\015\170" 2.564 -+, (PRUint32)16 }, 2.565 -+ { (void *)"\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123" 2.566 -+"\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141" 2.567 -+"\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144" 2.568 -+"\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125" 2.569 -+"\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040" 2.570 -+"\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162" 2.571 -+"\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157" 2.572 -+"\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004" 2.573 -+"\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101" 2.574 -+"\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206" 2.575 -+"\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163" 2.576 -+"\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147" 2.577 -+, (PRUint32)191 }, 2.578 -+ { (void *)"\002\011\000\350\216\266\311\370\052\024\050" 2.579 -+, (PRUint32)11 }, 2.580 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.581 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.582 -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, 2.583 -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } 2.584 -+}; 2.585 - 2.586 - builtinsInternalObject 2.587 - nss_builtins_data[] = { 2.588 -@@ -20609,11 +21152,17 @@ nss_builtins_data[] = { 2.589 - { 11, nss_builtins_types_298, nss_builtins_items_298, {NULL} }, 2.590 - { 13, nss_builtins_types_299, nss_builtins_items_299, {NULL} }, 2.591 - { 11, nss_builtins_types_300, nss_builtins_items_300, {NULL} }, 2.592 -- { 13, nss_builtins_types_301, nss_builtins_items_301, {NULL} } 2.593 -+ { 13, nss_builtins_types_301, nss_builtins_items_301, {NULL} }, 2.594 -+ { 11, nss_builtins_types_302, nss_builtins_items_302, {NULL} }, 2.595 -+ { 13, nss_builtins_types_303, nss_builtins_items_303, {NULL} }, 2.596 -+ { 11, nss_builtins_types_304, nss_builtins_items_304, {NULL} }, 2.597 -+ { 13, nss_builtins_types_305, nss_builtins_items_305, {NULL} }, 2.598 -+ { 11, nss_builtins_types_306, nss_builtins_items_306, {NULL} }, 2.599 -+ { 13, nss_builtins_types_307, nss_builtins_items_307, {NULL} } 2.600 - }; 2.601 - const PRUint32 2.602 - #ifdef DEBUG 2.603 -- nss_builtins_nObjects = 301+1; 2.604 -+ nss_builtins_nObjects = 307+1; 2.605 - #else 2.606 -- nss_builtins_nObjects = 301; 2.607 -+ nss_builtins_nObjects = 307; 2.608 - #endif /* DEBUG */ 2.609 -diff --git a/mozilla/security/nss/lib/ckfw/builtins/certdata.txt b/mozilla/security/nss/lib/ckfw/builtins/certdata.txt 2.610 -index 93f1854..539f4e1 100644 2.611 ---- a/mozilla/security/nss/lib/ckfw/builtins/certdata.txt 2.612 -+++ b/mozilla/security/nss/lib/ckfw/builtins/certdata.txt 2.613 -@@ -20926,3 +20926,558 @@ CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.614 - CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.615 - CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.616 - CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE 2.617 -+ 2.618 -+# 2.619 -+# Certificate "CAcert.org Class 1 Root CA" 2.620 -+# 2.621 -+CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE 2.622 -+CKA_TOKEN CK_BBOOL CK_TRUE 2.623 -+CKA_PRIVATE CK_BBOOL CK_FALSE 2.624 -+CKA_MODIFIABLE CK_BBOOL CK_FALSE 2.625 -+CKA_LABEL UTF8 "CAcert.org Class 1 Root CA" 2.626 -+CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 2.627 -+CKA_SUBJECT MULTILINE_OCTAL 2.628 -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 2.629 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 2.630 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 2.631 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 2.632 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 2.633 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 2.634 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 2.635 -+\100\143\141\143\145\162\164\056\157\162\147 2.636 -+END 2.637 -+CKA_ID UTF8 "0" 2.638 -+CKA_ISSUER MULTILINE_OCTAL 2.639 -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 2.640 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 2.641 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 2.642 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 2.643 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 2.644 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 2.645 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 2.646 -+\100\143\141\143\145\162\164\056\157\162\147 2.647 -+END 2.648 -+CKA_SERIAL_NUMBER MULTILINE_OCTAL 2.649 -+\002\001\000 2.650 -+END 2.651 -+CKA_VALUE MULTILINE_OCTAL 2.652 -+\060\202\007\075\060\202\005\045\240\003\002\001\002\002\001\000 2.653 -+\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 2.654 -+\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164 2.655 -+\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164 2.656 -+\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056 2.657 -+\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101 2.658 -+\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165 2.659 -+\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110 2.660 -+\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100 2.661 -+\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\063 2.662 -+\060\063\063\060\061\062\062\071\064\071\132\027\015\063\063\060 2.663 -+\063\062\071\061\062\062\071\064\071\132\060\171\061\020\060\016 2.664 -+\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036 2.665 -+\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057 2.666 -+\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042 2.667 -+\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164 2.668 -+\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151 2.669 -+\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011 2.670 -+\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162 2.671 -+\164\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110 2.672 -+\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002 2.673 -+\012\002\202\002\001\000\316\042\300\342\106\175\354\066\050\007 2.674 -+\120\226\362\240\063\100\214\113\361\073\146\077\061\345\153\002 2.675 -+\066\333\326\174\366\361\210\217\116\167\066\005\101\225\371\011 2.676 -+\360\022\317\106\206\163\140\267\156\176\350\300\130\144\256\315 2.677 -+\260\255\105\027\014\143\372\147\012\350\326\322\277\076\347\230 2.678 -+\304\360\114\372\340\003\273\065\135\154\041\336\236\040\331\272 2.679 -+\315\146\062\067\162\372\367\010\365\307\315\130\311\216\347\016 2.680 -+\136\352\076\376\034\241\024\012\025\154\206\204\133\144\146\052 2.681 -+\172\251\113\123\171\365\210\242\173\356\057\012\141\053\215\262 2.682 -+\176\115\126\245\023\354\352\332\222\236\254\104\101\036\130\140 2.683 -+\145\005\146\370\300\104\275\313\224\367\102\176\013\367\145\150 2.684 -+\230\121\005\360\363\005\221\004\035\033\027\202\354\310\127\273 2.685 -+\303\153\172\210\361\260\162\314\045\133\040\221\354\026\002\022 2.686 -+\217\062\351\027\030\110\320\307\005\056\002\060\102\270\045\234 2.687 -+\005\153\077\252\072\247\353\123\110\367\350\322\266\007\230\334 2.688 -+\033\306\064\177\177\311\034\202\172\005\130\053\010\133\363\070 2.689 -+\242\253\027\135\146\311\230\327\236\020\213\242\322\335\164\232 2.690 -+\367\161\014\162\140\337\315\157\230\063\235\226\064\166\076\044 2.691 -+\172\222\260\016\225\036\157\346\240\105\070\107\252\327\101\355 2.692 -+\112\267\022\366\327\033\203\212\017\056\330\011\266\131\327\252 2.693 -+\004\377\322\223\175\150\056\335\213\113\253\130\272\057\215\352 2.694 -+\225\247\240\303\124\211\245\373\333\213\121\042\235\262\303\276 2.695 -+\021\276\054\221\206\213\226\170\255\040\323\212\057\032\077\306 2.696 -+\320\121\145\207\041\261\031\001\145\177\105\034\207\365\174\320 2.697 -+\101\114\117\051\230\041\375\063\037\165\014\004\121\372\031\167 2.698 -+\333\324\024\034\356\201\303\035\365\230\267\151\006\221\042\335 2.699 -+\000\120\314\201\061\254\022\007\173\070\332\150\133\346\053\324 2.700 -+\176\311\137\255\350\353\162\114\363\001\345\113\040\277\232\246 2.701 -+\127\312\221\000\001\213\241\165\041\067\265\143\015\147\076\106 2.702 -+\117\160\040\147\316\305\326\131\333\002\340\360\322\313\315\272 2.703 -+\142\267\220\101\350\335\040\344\051\274\144\051\102\310\042\334 2.704 -+\170\232\377\103\354\230\033\011\121\113\132\132\302\161\361\304 2.705 -+\313\163\251\345\241\013\002\003\001\000\001\243\202\001\316\060 2.706 -+\202\001\312\060\035\006\003\125\035\016\004\026\004\024\026\265 2.707 -+\062\033\324\307\363\340\346\216\363\275\322\260\072\356\262\071 2.708 -+\030\321\060\201\243\006\003\125\035\043\004\201\233\060\201\230 2.709 -+\200\024\026\265\062\033\324\307\363\340\346\216\363\275\322\260 2.710 -+\072\356\262\071\030\321\241\175\244\173\060\171\061\020\060\016 2.711 -+\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036 2.712 -+\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057 2.713 -+\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042 2.714 -+\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164 2.715 -+\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151 2.716 -+\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011 2.717 -+\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162 2.718 -+\164\056\157\162\147\202\001\000\060\017\006\003\125\035\023\001 2.719 -+\001\377\004\005\060\003\001\001\377\060\062\006\003\125\035\037 2.720 -+\004\053\060\051\060\047\240\045\240\043\206\041\150\164\164\160 2.721 -+\163\072\057\057\167\167\167\056\143\141\143\145\162\164\056\157 2.722 -+\162\147\057\162\145\166\157\153\145\056\143\162\154\060\060\006 2.723 -+\011\140\206\110\001\206\370\102\001\004\004\043\026\041\150\164 2.724 -+\164\160\163\072\057\057\167\167\167\056\143\141\143\145\162\164 2.725 -+\056\157\162\147\057\162\145\166\157\153\145\056\143\162\154\060 2.726 -+\064\006\011\140\206\110\001\206\370\102\001\010\004\047\026\045 2.727 -+\150\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162 2.728 -+\164\056\157\162\147\057\151\156\144\145\170\056\160\150\160\077 2.729 -+\151\144\075\061\060\060\126\006\011\140\206\110\001\206\370\102 2.730 -+\001\015\004\111\026\107\124\157\040\147\145\164\040\171\157\165 2.731 -+\162\040\157\167\156\040\143\145\162\164\151\146\151\143\141\164 2.732 -+\145\040\146\157\162\040\106\122\105\105\040\150\145\141\144\040 2.733 -+\157\166\145\162\040\164\157\040\150\164\164\160\072\057\057\167 2.734 -+\167\167\056\143\141\143\145\162\164\056\157\162\147\060\015\006 2.735 -+\011\052\206\110\206\367\015\001\001\004\005\000\003\202\002\001 2.736 -+\000\050\307\356\234\202\002\272\134\200\022\312\065\012\035\201 2.737 -+\157\211\152\231\314\362\150\017\177\247\341\215\130\225\076\275 2.738 -+\362\006\303\220\132\254\265\140\366\231\103\001\243\210\160\234 2.739 -+\235\142\235\244\207\257\147\130\015\060\066\073\346\255\110\323 2.740 -+\313\164\002\206\161\076\342\053\003\150\361\064\142\100\106\073 2.741 -+\123\352\050\364\254\373\146\225\123\212\115\135\375\073\331\140 2.742 -+\327\312\171\151\073\261\145\222\246\306\201\202\134\234\315\353 2.743 -+\115\001\212\245\337\021\125\252\025\312\037\067\300\202\230\160 2.744 -+\141\333\152\174\226\243\216\056\124\076\117\041\251\220\357\334 2.745 -+\202\277\334\350\105\255\115\220\163\010\074\224\145\260\004\231 2.746 -+\166\177\342\274\302\152\025\252\227\004\067\044\330\036\224\116 2.747 -+\155\016\121\276\326\304\217\312\226\155\367\103\337\350\060\145 2.748 -+\047\073\173\273\103\103\143\304\103\367\262\354\150\314\341\031 2.749 -+\216\042\373\230\341\173\132\076\001\067\073\213\010\260\242\363 2.750 -+\225\116\032\313\233\315\232\261\333\262\160\360\055\112\333\330 2.751 -+\260\343\157\105\110\063\022\377\376\074\062\052\124\367\304\367 2.752 -+\212\360\210\043\302\107\376\144\172\161\300\321\036\246\143\260 2.753 -+\007\176\244\057\323\001\217\334\237\053\266\306\010\251\017\223 2.754 -+\110\045\374\022\375\237\102\334\363\304\076\366\127\260\327\335 2.755 -+\151\321\006\167\064\012\113\322\312\240\377\034\306\214\311\026 2.756 -+\276\304\314\062\067\150\163\137\010\373\121\367\111\123\066\005 2.757 -+\012\225\002\114\362\171\032\020\366\330\072\165\234\363\035\361 2.758 -+\242\015\160\147\206\033\263\026\365\057\345\244\353\171\206\371 2.759 -+\075\013\302\163\013\245\231\254\157\374\147\270\345\057\013\246 2.760 -+\030\044\215\173\321\110\065\051\030\100\254\223\140\341\226\206 2.761 -+\120\264\172\131\330\217\041\013\237\317\202\221\306\073\277\153 2.762 -+\334\007\221\271\227\126\043\252\266\154\224\306\110\006\074\344 2.763 -+\316\116\252\344\366\057\011\334\123\157\056\374\164\353\072\143 2.764 -+\231\302\246\254\211\274\247\262\104\240\015\212\020\343\154\362 2.765 -+\044\313\372\233\237\160\107\056\336\024\213\324\262\040\011\226 2.766 -+\242\144\361\044\034\334\241\065\234\025\262\324\274\125\056\175 2.767 -+\006\365\234\016\125\364\132\326\223\332\166\255\045\163\114\305 2.768 -+\103 2.769 -+END 2.770 -+ 2.771 -+# Trust for Certificate "CAcert.org Class 1 Root CA" 2.772 -+CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST 2.773 -+CKA_TOKEN CK_BBOOL CK_TRUE 2.774 -+CKA_PRIVATE CK_BBOOL CK_FALSE 2.775 -+CKA_MODIFIABLE CK_BBOOL CK_FALSE 2.776 -+CKA_LABEL UTF8 "CAcert.org Class 1 Root CA" 2.777 -+CKA_CERT_SHA1_HASH MULTILINE_OCTAL 2.778 -+\023\134\354\066\364\234\270\351\073\032\262\160\315\200\210\106 2.779 -+\166\316\217\063 2.780 -+END 2.781 -+CKA_CERT_MD5_HASH MULTILINE_OCTAL 2.782 -+\246\033\067\136\071\015\234\066\124\356\275\040\061\106\037\153 2.783 -+END 2.784 -+CKA_ISSUER MULTILINE_OCTAL 2.785 -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 2.786 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 2.787 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 2.788 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 2.789 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 2.790 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 2.791 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 2.792 -+\100\143\141\143\145\162\164\056\157\162\147 2.793 -+END 2.794 -+CKA_SERIAL_NUMBER MULTILINE_OCTAL 2.795 -+\002\001\000 2.796 -+END 2.797 -+CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.798 -+CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.799 -+CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.800 -+CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE 2.801 -+ 2.802 -+# 2.803 -+# Certificate "CAcert.org Class 3 Root CA" 2.804 -+# 2.805 -+CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE 2.806 -+CKA_TOKEN CK_BBOOL CK_TRUE 2.807 -+CKA_PRIVATE CK_BBOOL CK_FALSE 2.808 -+CKA_MODIFIABLE CK_BBOOL CK_FALSE 2.809 -+CKA_LABEL UTF8 "CAcert.org Class 3 Root CA" 2.810 -+CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 2.811 -+CKA_SUBJECT MULTILINE_OCTAL 2.812 -+\060\124\061\024\060\022\006\003\125\004\012\023\013\103\101\143 2.813 -+\145\162\164\040\111\156\143\056\061\036\060\034\006\003\125\004 2.814 -+\013\023\025\150\164\164\160\072\057\057\167\167\167\056\103\101 2.815 -+\143\145\162\164\056\157\162\147\061\034\060\032\006\003\125\004 2.816 -+\003\023\023\103\101\143\145\162\164\040\103\154\141\163\163\040 2.817 -+\063\040\122\157\157\164 2.818 -+END 2.819 -+CKA_ID UTF8 "0" 2.820 -+CKA_ISSUER MULTILINE_OCTAL 2.821 -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 2.822 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 2.823 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 2.824 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 2.825 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 2.826 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 2.827 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 2.828 -+\100\143\141\143\145\162\164\056\157\162\147 2.829 -+END 2.830 -+CKA_SERIAL_NUMBER MULTILINE_OCTAL 2.831 -+\002\001\001 2.832 -+END 2.833 -+CKA_VALUE MULTILINE_OCTAL 2.834 -+\060\202\006\010\060\202\003\360\240\003\002\001\002\002\001\001 2.835 -+\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 2.836 -+\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164 2.837 -+\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164 2.838 -+\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056 2.839 -+\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101 2.840 -+\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165 2.841 -+\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110 2.842 -+\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100 2.843 -+\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\065 2.844 -+\061\060\061\064\060\067\063\066\065\065\132\027\015\063\063\060 2.845 -+\063\062\070\060\067\063\066\065\065\132\060\124\061\024\060\022 2.846 -+\006\003\125\004\012\023\013\103\101\143\145\162\164\040\111\156 2.847 -+\143\056\061\036\060\034\006\003\125\004\013\023\025\150\164\164 2.848 -+\160\072\057\057\167\167\167\056\103\101\143\145\162\164\056\157 2.849 -+\162\147\061\034\060\032\006\003\125\004\003\023\023\103\101\143 2.850 -+\145\162\164\040\103\154\141\163\163\040\063\040\122\157\157\164 2.851 -+\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001 2.852 -+\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001 2.853 -+\000\253\111\065\021\110\174\322\046\176\123\224\317\103\251\335 2.854 -+\050\327\102\052\213\363\207\170\031\130\174\017\236\332\211\175 2.855 -+\341\373\353\162\220\015\164\241\226\144\253\237\240\044\231\163 2.856 -+\332\342\125\166\307\027\173\365\004\254\106\270\303\276\177\144 2.857 -+\215\020\154\044\363\141\234\300\362\220\372\121\346\365\151\001 2.858 -+\143\303\017\126\342\112\102\317\342\104\214\045\050\250\305\171 2.859 -+\011\175\106\271\212\363\351\363\064\051\010\105\344\034\237\313 2.860 -+\224\004\034\201\250\024\263\230\145\304\103\354\116\202\215\011 2.861 -+\321\275\252\133\215\222\320\354\336\220\305\177\012\302\343\353 2.862 -+\346\061\132\136\164\076\227\063\131\350\303\003\075\140\063\277 2.863 -+\367\321\157\107\304\315\356\142\203\122\156\056\010\232\244\331 2.864 -+\025\030\221\246\205\222\107\260\256\110\353\155\267\041\354\205 2.865 -+\032\150\162\065\253\377\360\020\135\300\364\224\247\152\325\073 2.866 -+\222\176\114\220\005\176\223\301\054\213\244\216\142\164\025\161 2.867 -+\156\013\161\003\352\257\025\070\232\324\322\005\162\157\214\371 2.868 -+\053\353\132\162\045\371\071\106\343\162\033\076\004\303\144\047 2.869 -+\042\020\052\212\117\130\247\003\255\276\264\056\023\355\135\252 2.870 -+\110\327\325\175\324\052\173\134\372\106\004\120\344\314\016\102 2.871 -+\133\214\355\333\362\317\374\226\223\340\333\021\066\124\142\064 2.872 -+\070\217\014\140\233\073\227\126\070\255\363\322\133\213\240\133 2.873 -+\352\116\226\270\174\327\325\240\206\160\100\323\221\051\267\242 2.874 -+\074\255\365\214\273\317\032\222\212\344\064\173\300\330\154\137 2.875 -+\351\012\302\303\247\040\232\132\337\054\135\122\134\272\107\325 2.876 -+\233\357\044\050\160\070\040\057\325\177\051\300\262\101\003\150 2.877 -+\222\314\340\234\314\227\113\105\357\072\020\012\253\160\072\230 2.878 -+\225\160\255\065\261\352\205\053\244\034\200\041\061\251\256\140 2.879 -+\172\200\046\110\000\270\001\300\223\143\125\042\221\074\126\347 2.880 -+\257\333\072\045\363\217\061\124\352\046\213\201\131\371\241\321 2.881 -+\123\021\305\173\235\003\366\164\021\340\155\261\054\077\054\206 2.882 -+\221\231\161\232\246\167\213\064\140\321\024\264\054\254\235\257 2.883 -+\214\020\323\237\304\152\370\157\023\374\163\131\367\146\102\164 2.884 -+\036\212\343\370\334\322\157\230\234\313\107\230\225\100\005\373 2.885 -+\351\002\003\001\000\001\243\201\277\060\201\274\060\017\006\003 2.886 -+\125\035\023\001\001\377\004\005\060\003\001\001\377\060\135\006 2.887 -+\010\053\006\001\005\005\007\001\001\004\121\060\117\060\043\006 2.888 -+\010\053\006\001\005\005\007\060\001\206\027\150\164\164\160\072 2.889 -+\057\057\157\143\163\160\056\103\101\143\145\162\164\056\157\162 2.890 -+\147\057\060\050\006\010\053\006\001\005\005\007\060\002\206\034 2.891 -+\150\164\164\160\072\057\057\167\167\167\056\103\101\143\145\162 2.892 -+\164\056\157\162\147\057\143\141\056\143\162\164\060\112\006\003 2.893 -+\125\035\040\004\103\060\101\060\077\006\010\053\006\001\004\001 2.894 -+\201\220\112\060\063\060\061\006\010\053\006\001\005\005\007\002 2.895 -+\001\026\045\150\164\164\160\072\057\057\167\167\167\056\103\101 2.896 -+\143\145\162\164\056\157\162\147\057\151\156\144\145\170\056\160 2.897 -+\150\160\077\151\144\075\061\060\060\015\006\011\052\206\110\206 2.898 -+\367\015\001\001\004\005\000\003\202\002\001\000\177\010\210\241 2.899 -+\332\032\120\111\332\211\373\241\010\162\363\212\367\036\304\072 2.900 -+\264\171\133\040\060\261\105\336\302\135\323\145\151\361\302\135 2.901 -+\124\124\074\205\137\271\173\102\221\302\231\375\033\121\233\253 2.902 -+\106\245\241\020\123\236\155\210\254\163\156\054\063\246\360\364 2.903 -+\236\340\165\301\076\210\105\251\341\146\103\376\126\132\321\172 2.904 -+\101\170\367\100\332\112\072\361\013\133\245\273\026\006\346\302 2.905 -+\347\223\271\205\115\227\117\261\036\070\103\200\357\233\015\214 2.906 -+\357\270\247\140\000\207\127\175\036\104\034\313\043\357\233\074 2.907 -+\231\235\257\265\051\034\105\171\026\226\115\047\155\361\034\154 2.908 -+\303\302\125\144\263\274\024\342\363\244\037\036\062\374\047\025 2.909 -+\005\317\335\056\256\076\202\141\173\360\041\020\030\366\104\352 2.910 -+\123\071\371\334\320\232\040\340\306\273\340\273\132\117\304\231 2.911 -+\310\007\275\265\275\242\333\056\142\015\102\064\101\274\377\213 2.912 -+\212\365\121\042\252\210\060\000\342\260\324\274\276\145\272\325 2.913 -+\003\127\171\233\350\334\310\115\370\120\355\221\245\122\050\242 2.914 -+\254\373\066\130\076\351\224\053\221\120\207\033\326\136\326\214 2.915 -+\314\367\017\020\014\122\116\320\026\141\345\345\012\154\277\027 2.916 -+\307\162\106\127\234\230\365\154\140\143\172\157\136\271\116\057 2.917 -+\310\271\271\273\152\205\274\230\015\355\371\076\227\204\064\224 2.918 -+\256\000\257\241\345\347\222\156\116\275\363\342\331\024\213\134 2.919 -+\322\353\001\154\240\027\245\055\020\353\234\172\112\275\275\356 2.920 -+\316\375\355\042\100\253\160\070\210\365\012\207\152\302\253\005 2.921 -+\140\311\110\005\332\123\301\336\104\167\152\263\363\074\074\355 2.922 -+\200\274\246\070\112\051\044\137\376\131\073\233\045\172\126\143 2.923 -+\000\144\271\135\244\142\175\127\066\117\255\203\357\037\222\123 2.924 -+\240\216\167\127\335\345\141\021\075\043\000\220\114\074\372\243 2.925 -+\140\223\004\243\257\065\366\016\152\217\117\112\140\247\205\005 2.926 -+\154\106\241\217\364\307\166\343\241\131\127\367\161\262\304\156 2.927 -+\024\134\155\155\101\146\337\033\223\261\324\000\303\356\313\317 2.928 -+\074\075\041\200\251\137\143\145\374\335\340\137\244\364\053\360 2.929 -+\205\161\101\324\147\045\373\032\261\227\256\326\231\202\023\101 2.930 -+\322\156\245\033\231\047\200\347\013\251\250\000 2.931 -+END 2.932 -+ 2.933 -+# Trust for Certificate "CAcert.org Class 3 Root CA" 2.934 -+CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST 2.935 -+CKA_TOKEN CK_BBOOL CK_TRUE 2.936 -+CKA_PRIVATE CK_BBOOL CK_FALSE 2.937 -+CKA_MODIFIABLE CK_BBOOL CK_FALSE 2.938 -+CKA_LABEL UTF8 "CAcert.org Class 3 Root CA" 2.939 -+CKA_CERT_SHA1_HASH MULTILINE_OCTAL 2.940 -+\333\114\102\151\007\077\351\302\243\175\211\012\134\033\030\304 2.941 -+\030\116\052\055 2.942 -+END 2.943 -+CKA_CERT_MD5_HASH MULTILINE_OCTAL 2.944 -+\163\077\065\124\035\104\311\351\132\112\357\121\255\003\006\266 2.945 -+END 2.946 -+CKA_ISSUER MULTILINE_OCTAL 2.947 -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 2.948 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 2.949 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 2.950 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 2.951 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 2.952 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 2.953 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 2.954 -+\100\143\141\143\145\162\164\056\157\162\147 2.955 -+END 2.956 -+CKA_SERIAL_NUMBER MULTILINE_OCTAL 2.957 -+\002\001\001 2.958 -+END 2.959 -+CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.960 -+CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.961 -+CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.962 -+CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE 2.963 -+ 2.964 -+# 2.965 -+# Certificate "Software in the Public Interest, Inc. Root CA (2008)" 2.966 -+# 2.967 -+CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE 2.968 -+CKA_TOKEN CK_BBOOL CK_TRUE 2.969 -+CKA_PRIVATE CK_BBOOL CK_FALSE 2.970 -+CKA_MODIFIABLE CK_BBOOL CK_FALSE 2.971 -+CKA_LABEL UTF8 "Software in the Public Interest, Inc. Root CA (2008)" 2.972 -+CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 2.973 -+CKA_SUBJECT MULTILINE_OCTAL 2.974 -+\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123 2.975 -+\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141 2.976 -+\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144 2.977 -+\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125 2.978 -+\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040 2.979 -+\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162 2.980 -+\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157 2.981 -+\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004 2.982 -+\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101 2.983 -+\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206 2.984 -+\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163 2.985 -+\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147 2.986 -+END 2.987 -+CKA_ID UTF8 "0" 2.988 -+CKA_ISSUER MULTILINE_OCTAL 2.989 -+\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123 2.990 -+\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141 2.991 -+\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144 2.992 -+\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125 2.993 -+\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040 2.994 -+\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162 2.995 -+\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157 2.996 -+\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004 2.997 -+\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101 2.998 -+\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206 2.999 -+\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163 2.1000 -+\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147 2.1001 -+END 2.1002 -+CKA_SERIAL_NUMBER MULTILINE_OCTAL 2.1003 -+\002\011\000\350\216\266\311\370\052\024\050 2.1004 -+END 2.1005 -+CKA_VALUE MULTILINE_OCTAL 2.1006 -+\060\202\010\016\060\202\005\366\240\003\002\001\002\002\011\000 2.1007 -+\350\216\266\311\370\052\024\050\060\015\006\011\052\206\110\206 2.1008 -+\367\015\001\001\005\005\000\060\201\274\061\013\060\011\006\003 2.1009 -+\125\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010 2.1010 -+\023\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125 2.1011 -+\004\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163 2.1012 -+\061\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167 2.1013 -+\141\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151 2.1014 -+\143\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003 2.1015 -+\125\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061 2.1016 -+\036\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146 2.1017 -+\151\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061 2.1018 -+\045\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026 2.1019 -+\150\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151 2.1020 -+\156\143\056\157\162\147\060\036\027\015\060\070\060\065\061\063 2.1021 -+\060\070\060\067\065\066\132\027\015\061\070\060\065\061\061\060 2.1022 -+\070\060\067\065\066\132\060\201\274\061\013\060\011\006\003\125 2.1023 -+\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010\023 2.1024 -+\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125\004 2.1025 -+\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163\061 2.1026 -+\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167\141 2.1027 -+\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151\143 2.1028 -+\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003\125 2.1029 -+\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061\036 2.1030 -+\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146\151 2.1031 -+\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061\045 2.1032 -+\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026\150 2.1033 -+\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151\156 2.1034 -+\143\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110 2.1035 -+\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002 2.1036 -+\012\002\202\002\001\000\334\066\346\107\102\302\304\121\165\051 2.1037 -+\207\100\303\330\216\041\006\322\030\116\353\357\040\275\220\074 2.1038 -+\205\020\023\214\051\133\224\143\366\364\055\361\006\102\221\271 2.1039 -+\031\304\102\151\010\277\213\066\105\352\050\005\063\111\110\240 2.1040 -+\047\103\223\065\212\101\330\170\263\360\357\263\156\055\335\321 2.1041 -+\313\175\352\364\165\046\323\076\220\072\356\327\347\054\004\265 2.1042 -+\174\341\365\174\305\116\357\167\275\134\242\223\063\222\316\175 2.1043 -+\201\110\317\153\265\042\054\010\203\375\323\325\317\073\055\375 2.1044 -+\265\111\220\133\366\255\115\023\312\336\323\246\235\123\121\161 2.1045 -+\143\106\370\112\026\134\230\356\055\155\232\026\241\166\220\342 2.1046 -+\140\103\231\326\211\326\154\056\172\230\262\013\003\054\343\172 2.1047 -+\117\307\335\343\314\343\112\152\215\171\122\372\364\301\257\056 2.1048 -+\217\052\010\313\033\051\202\222\162\103\274\316\210\251\252\247 2.1049 -+\212\121\103\125\205\232\067\003\170\223\310\360\275\264\101\310 2.1050 -+\007\102\232\313\065\227\172\212\201\145\336\035\124\010\001\361 2.1051 -+\144\134\267\027\032\121\274\036\303\131\207\166\030\026\230\356 2.1052 -+\277\366\147\201\213\006\065\305\113\155\131\031\307\322\306\110 2.1053 -+\276\156\024\050\203\112\020\234\033\365\157\274\251\216\365\151 2.1054 -+\376\262\301\125\314\347\024\311\371\133\024\123\121\007\352\316 2.1055 -+\075\344\117\050\037\074\141\011\327\063\322\156\247\156\324\307 2.1056 -+\023\011\157\153\135\024\356\235\211\033\245\152\362\366\370\320 2.1057 -+\162\216\352\162\037\057\064\152\051\012\305\012\354\034\100\205 2.1058 -+\022\367\246\245\323\117\255\300\205\214\114\174\163\040\314\123 2.1059 -+\030\361\262\130\114\001\365\277\352\144\325\134\071\305\316\154 2.1060 -+\314\123\132\126\272\101\017\045\337\153\120\266\307\212\240\275 2.1061 -+\002\302\305\073\125\245\262\144\042\204\121\050\126\256\061\356 2.1062 -+\136\373\013\026\115\106\005\221\200\104\355\254\155\360\127\250 2.1063 -+\372\353\141\110\240\313\033\263\037\216\315\305\041\167\003\204 2.1064 -+\036\374\254\243\103\010\143\214\355\371\047\357\264\260\135\147 2.1065 -+\326\117\355\320\213\076\135\133\311\221\275\226\002\204\075\305 2.1066 -+\115\274\102\077\164\375\074\135\254\134\110\066\136\207\061\057 2.1067 -+\030\154\304\150\356\241\213\311\131\320\030\343\000\200\263\124 2.1068 -+\047\056\231\360\025\123\002\003\001\000\001\243\202\002\017\060 2.1069 -+\202\002\013\060\035\006\003\125\035\016\004\026\004\024\064\161 2.1070 -+\321\070\327\025\066\203\107\153\327\067\144\102\073\216\215\122 2.1071 -+\235\253\060\201\361\006\003\125\035\043\004\201\351\060\201\346 2.1072 -+\200\024\064\161\321\070\327\025\066\203\107\153\327\067\144\102 2.1073 -+\073\216\215\122\235\253\241\201\302\244\201\277\060\201\274\061 2.1074 -+\013\060\011\006\003\125\004\006\023\002\125\123\061\020\060\016 2.1075 -+\006\003\125\004\010\023\007\111\156\144\151\141\156\141\061\025 2.1076 -+\060\023\006\003\125\004\007\023\014\111\156\144\151\141\156\141 2.1077 -+\160\157\154\151\163\061\050\060\046\006\003\125\004\012\023\037 2.1078 -+\123\157\146\164\167\141\162\145\040\151\156\040\164\150\145\040 2.1079 -+\120\165\142\154\151\143\040\111\156\164\145\162\145\163\164\061 2.1080 -+\023\060\021\006\003\125\004\013\023\012\150\157\163\164\155\141 2.1081 -+\163\164\145\162\061\036\060\034\006\003\125\004\003\023\025\103 2.1082 -+\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150\157 2.1083 -+\162\151\164\171\061\045\060\043\006\011\052\206\110\206\367\015 2.1084 -+\001\011\001\026\026\150\157\163\164\155\141\163\164\145\162\100 2.1085 -+\163\160\151\055\151\156\143\056\157\162\147\202\011\000\350\216 2.1086 -+\266\311\370\052\024\050\060\017\006\003\125\035\023\001\001\377 2.1087 -+\004\005\060\003\001\001\377\060\021\006\011\140\206\110\001\206 2.1088 -+\370\102\001\001\004\004\003\002\000\007\060\011\006\003\125\035 2.1089 -+\022\004\002\060\000\060\056\006\011\140\206\110\001\206\370\102 2.1090 -+\001\015\004\041\026\037\123\157\146\164\167\141\162\145\040\151 2.1091 -+\156\040\164\150\145\040\120\165\142\154\151\143\040\111\156\164 2.1092 -+\145\162\145\163\164\060\060\006\011\140\206\110\001\206\370\102 2.1093 -+\001\004\004\043\026\041\150\164\164\160\163\072\057\057\143\141 2.1094 -+\056\163\160\151\055\151\156\143\056\157\162\147\057\143\141\055 2.1095 -+\143\162\154\056\160\145\155\060\062\006\011\140\206\110\001\206 2.1096 -+\370\102\001\003\004\045\026\043\150\164\164\160\163\072\057\057 2.1097 -+\143\141\056\163\160\151\055\151\156\143\056\157\162\147\057\143 2.1098 -+\145\162\164\055\143\162\154\056\160\145\155\060\041\006\003\125 2.1099 -+\035\021\004\032\060\030\201\026\150\157\163\164\155\141\163\164 2.1100 -+\145\162\100\163\160\151\055\151\156\143\056\157\162\147\060\016 2.1101 -+\006\003\125\035\017\001\001\377\004\004\003\002\001\006\060\015 2.1102 -+\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002 2.1103 -+\001\000\264\315\275\340\271\352\262\003\053\176\062\351\336\162 2.1104 -+\077\311\113\202\136\235\342\257\125\011\242\014\124\350\317\030 2.1105 -+\074\050\040\035\251\273\003\002\057\122\071\042\371\027\317\255 2.1106 -+\147\220\263\003\177\330\025\343\153\176\273\233\126\001\257\065 2.1107 -+\324\332\271\307\147\027\233\324\325\016\067\263\040\101\056\014 2.1108 -+\001\304\133\371\145\076\302\141\350\322\360\152\225\160\303\306 2.1109 -+\157\325\065\244\254\131\162\341\211\337\241\240\235\044\275\051 2.1110 -+\171\351\141\052\331\323\036\311\106\244\010\170\101\222\162\017 2.1111 -+\253\024\165\355\011\360\242\360\134\357\303\012\142\040\267\302 2.1112 -+\050\146\256\114\057\056\217\105\143\046\226\360\356\061\346\213 2.1113 -+\125\233\252\072\371\202\071\035\210\074\342\007\165\032\341\017 2.1114 -+\261\060\274\161\062\322\072\376\372\241\211\363\103\054\326\162 2.1115 -+\304\171\247\025\110\005\300\330\055\162\002\343\313\075\026\152 2.1116 -+\272\311\270\021\020\342\111\205\314\226\107\140\005\045\056\357 2.1117 -+\165\131\063\365\107\031\026\357\332\154\137\007\310\246\120\266 2.1118 -+\035\313\146\064\045\374\146\203\353\305\266\060\101\370\106\104 2.1119 -+\142\250\301\014\124\346\352\114\132\050\346\256\306\267\376\177 2.1120 -+\073\226\250\056\356\307\150\076\335\000\075\051\257\052\143\253 2.1121 -+\137\356\111\052\055\305\334\373\321\306\323\321\227\126\122\206 2.1122 -+\266\224\353\324\140\121\267\374\036\233\314\002\233\324\037\217 2.1123 -+\371\112\217\266\056\050\073\027\314\305\246\005\343\322\323\265 2.1124 -+\306\003\311\341\110\102\233\313\077\344\027\340\376\015\001\225 2.1125 -+\011\272\270\015\161\344\011\160\167\102\330\115\341\102\251\140 2.1126 -+\203\327\027\211\103\322\324\335\247\030\266\253\324\044\045\207 2.1127 -+\265\324\342\374\056\042\151\275\255\150\054\377\162\265\230\252 2.1128 -+\006\234\347\052\152\270\241\223\166\316\260\363\177\234\341\340 2.1129 -+\117\270\330\206\106\245\063\002\054\045\141\067\052\222\310\254 2.1130 -+\201\164\150\143\207\063\166\275\005\177\136\325\325\002\155\275 2.1131 -+\257\377\052\132\252\111\354\230\171\107\123\221\366\016\064\132 2.1132 -+\311\245\306\353\262\343\305\254\266\240\160\065\273\310\121\151 2.1133 -+\320\362\265\242\062\156\274\077\240\067\071\174\161\066\246\005 2.1134 -+\337\014\022\344\026\247\305\326\313\143\243\225\160\077\346\004 2.1135 -+\243\140 2.1136 -+END 2.1137 -+ 2.1138 -+# Trust for Certificate "Software in the Public Interest, Inc. Root CA (2008)" 2.1139 -+CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST 2.1140 -+CKA_TOKEN CK_BBOOL CK_TRUE 2.1141 -+CKA_PRIVATE CK_BBOOL CK_FALSE 2.1142 -+CKA_MODIFIABLE CK_BBOOL CK_FALSE 2.1143 -+CKA_LABEL UTF8 "Software in the Public Interest, Inc. Root CA (2008)" 2.1144 -+CKA_CERT_SHA1_HASH MULTILINE_OCTAL 2.1145 -+\257\160\210\103\203\202\002\025\315\141\306\274\354\375\067\044 2.1146 -+\251\220\103\034 2.1147 -+END 2.1148 -+CKA_CERT_MD5_HASH MULTILINE_OCTAL 2.1149 -+\052\107\237\140\273\203\164\157\001\003\327\013\015\366\015\170 2.1150 -+END 2.1151 -+CKA_ISSUER MULTILINE_OCTAL 2.1152 -+\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123 2.1153 -+\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141 2.1154 -+\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144 2.1155 -+\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125 2.1156 -+\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040 2.1157 -+\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162 2.1158 -+\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157 2.1159 -+\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004 2.1160 -+\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101 2.1161 -+\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206 2.1162 -+\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163 2.1163 -+\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147 2.1164 -+END 2.1165 -+CKA_SERIAL_NUMBER MULTILINE_OCTAL 2.1166 -+\002\011\000\350\216\266\311\370\052\024\050 2.1167 -+END 2.1168 -+CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.1169 -+CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.1170 -+CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR 2.1171 -+CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/nss/stuff/nss-3.14.1-standalone-1.patch Tue Mar 05 22:43:12 2013 +0100 3.3 @@ -0,0 +1,243 @@ 3.4 +Submitted By: Armin K. <krejzi at email dot com> 3.5 +Date: 2012-12-31 3.6 +Initial Package Version: 3.14.1 3.7 +Upstream Status: Not applicable 3.8 +Origin: Based on dj's original patch, rediffed for 3.14.1 3.9 +Description: Adds auto-generated nss.pc and nss-config script, and allows 3.10 + building without nspr in the source tree. 3.11 + 3.12 +--- nss.orig/mozilla/security/nss/config/Makefile 1970-01-01 01:00:00.000000000 +0100 3.13 ++++ nss/mozilla/security/nss/config/Makefile 2012-12-31 13:27:51.694572567 +0100 3.14 +@@ -0,0 +1,40 @@ 3.15 ++CORE_DEPTH = ../.. 3.16 ++DEPTH = ../.. 3.17 ++ 3.18 ++include $(CORE_DEPTH)/coreconf/config.mk 3.19 ++ 3.20 ++NSS_MAJOR_VERSION = `grep "NSS_VMAJOR" ../lib/nss/nss.h | awk '{print $$3}'` 3.21 ++NSS_MINOR_VERSION = `grep "NSS_VMINOR" ../lib/nss/nss.h | awk '{print $$3}'` 3.22 ++NSS_PATCH_VERSION = `grep "NSS_VPATCH" ../lib/nss/nss.h | awk '{print $$3}'` 3.23 ++PREFIX = /usr 3.24 ++ 3.25 ++all: export libs 3.26 ++ 3.27 ++export: 3.28 ++ # Create the nss.pc file 3.29 ++ mkdir -p $(DIST)/lib/pkgconfig 3.30 ++ sed -e "s,@prefix@,$(PREFIX)," \ 3.31 ++ -e "s,@exec_prefix@,\$${prefix}," \ 3.32 ++ -e "s,@libdir@,\$${prefix}/lib," \ 3.33 ++ -e "s,@includedir@,\$${prefix}/include/nss," \ 3.34 ++ -e "s,@NSS_MAJOR_VERSION@,$(NSS_MAJOR_VERSION),g" \ 3.35 ++ -e "s,@NSS_MINOR_VERSION@,$(NSS_MINOR_VERSION)," \ 3.36 ++ -e "s,@NSS_PATCH_VERSION@,$(NSS_PATCH_VERSION)," \ 3.37 ++ nss.pc.in > nss.pc 3.38 ++ chmod 0644 nss.pc 3.39 ++ ln -sf ../../../../security/nss/config/nss.pc $(DIST)/lib/pkgconfig 3.40 ++ 3.41 ++ # Create the nss-config script 3.42 ++ mkdir -p $(DIST)/bin 3.43 ++ sed -e "s,@prefix@,$(PREFIX)," \ 3.44 ++ -e "s,@NSS_MAJOR_VERSION@,$(NSS_MAJOR_VERSION)," \ 3.45 ++ -e "s,@NSS_MINOR_VERSION@,$(NSS_MINOR_VERSION)," \ 3.46 ++ -e "s,@NSS_PATCH_VERSION@,$(NSS_PATCH_VERSION)," \ 3.47 ++ nss-config.in > nss-config 3.48 ++ chmod 0755 nss-config 3.49 ++ ln -sf ../../../security/nss/config/nss-config $(DIST)/bin 3.50 ++ 3.51 ++libs: 3.52 ++ 3.53 ++dummy: all export libs 3.54 ++ 3.55 +--- nss.orig/mozilla/security/nss/config/nss-config.in 1970-01-01 01:00:00.000000000 +0100 3.56 ++++ nss/mozilla/security/nss/config/nss-config.in 2012-12-31 13:27:51.695572567 +0100 3.57 +@@ -0,0 +1,153 @@ 3.58 ++#!/bin/sh 3.59 ++ 3.60 ++prefix=@prefix@ 3.61 ++ 3.62 ++major_version=@NSS_MAJOR_VERSION@ 3.63 ++minor_version=@NSS_MINOR_VERSION@ 3.64 ++patch_version=@NSS_PATCH_VERSION@ 3.65 ++ 3.66 ++usage() 3.67 ++{ 3.68 ++ cat <<EOF 3.69 ++Usage: nss-config [OPTIONS] [LIBRARIES] 3.70 ++Options: 3.71 ++ [--prefix[=DIR]] 3.72 ++ [--exec-prefix[=DIR]] 3.73 ++ [--includedir[=DIR]] 3.74 ++ [--libdir[=DIR]] 3.75 ++ [--version] 3.76 ++ [--libs] 3.77 ++ [--cflags] 3.78 ++Dynamic Libraries: 3.79 ++ nss 3.80 ++ nssutil 3.81 ++ smime 3.82 ++ ssl 3.83 ++ softokn 3.84 ++EOF 3.85 ++ exit $1 3.86 ++} 3.87 ++ 3.88 ++if test $# -eq 0; then 3.89 ++ usage 1 1>&2 3.90 ++fi 3.91 ++ 3.92 ++lib_nss=yes 3.93 ++lib_nssutil=yes 3.94 ++lib_smime=yes 3.95 ++lib_ssl=yes 3.96 ++lib_softokn=yes 3.97 ++ 3.98 ++while test $# -gt 0; do 3.99 ++ case "$1" in 3.100 ++ -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; 3.101 ++ *) optarg= ;; 3.102 ++ esac 3.103 ++ 3.104 ++ case $1 in 3.105 ++ --prefix=*) 3.106 ++ prefix=$optarg 3.107 ++ ;; 3.108 ++ --prefix) 3.109 ++ echo_prefix=yes 3.110 ++ ;; 3.111 ++ --exec-prefix=*) 3.112 ++ exec_prefix=$optarg 3.113 ++ ;; 3.114 ++ --exec-prefix) 3.115 ++ echo_exec_prefix=yes 3.116 ++ ;; 3.117 ++ --includedir=*) 3.118 ++ includedir=$optarg 3.119 ++ ;; 3.120 ++ --includedir) 3.121 ++ echo_includedir=yes 3.122 ++ ;; 3.123 ++ --libdir=*) 3.124 ++ libdir=$optarg 3.125 ++ ;; 3.126 ++ --libdir) 3.127 ++ echo_libdir=yes 3.128 ++ ;; 3.129 ++ --version) 3.130 ++ echo ${major_version}.${minor_version}.${patch_version} 3.131 ++ ;; 3.132 ++ --cflags) 3.133 ++ echo_cflags=yes 3.134 ++ ;; 3.135 ++ --libs) 3.136 ++ echo_libs=yes 3.137 ++ ;; 3.138 ++ nss) 3.139 ++ lib_nss=yes 3.140 ++ ;; 3.141 ++ nssutil) 3.142 ++ lib_nssutil=yes 3.143 ++ ;; 3.144 ++ smime) 3.145 ++ lib_smime=yes 3.146 ++ ;; 3.147 ++ ssl) 3.148 ++ lib_ssl=yes 3.149 ++ ;; 3.150 ++ softokn) 3.151 ++ lib_softokn=yes 3.152 ++ ;; 3.153 ++ *) 3.154 ++ usage 1 1>&2 3.155 ++ ;; 3.156 ++ esac 3.157 ++ shift 3.158 ++done 3.159 ++ 3.160 ++# Set variables that may be dependent upon other variables 3.161 ++if test -z "$exec_prefix"; then 3.162 ++ exec_prefix=`pkg-config --variable=exec_prefix nss` 3.163 ++fi 3.164 ++if test -z "$includedir"; then 3.165 ++ includedir=`pkg-config --variable=includedir nss` 3.166 ++fi 3.167 ++if test -z "$libdir"; then 3.168 ++ libdir=`pkg-config --variable=libdir nss` 3.169 ++fi 3.170 ++ 3.171 ++if test "$echo_prefix" = "yes"; then 3.172 ++ echo $prefix 3.173 ++fi 3.174 ++ 3.175 ++if test "$echo_exec_prefix" = "yes"; then 3.176 ++ echo $exec_prefix 3.177 ++fi 3.178 ++ 3.179 ++if test "$echo_includedir" = "yes"; then 3.180 ++ echo $includedir 3.181 ++fi 3.182 ++ 3.183 ++if test "$echo_libdir" = "yes"; then 3.184 ++ echo $libdir 3.185 ++fi 3.186 ++ 3.187 ++if test "$echo_cflags" = "yes"; then 3.188 ++ echo -I$includedir 3.189 ++fi 3.190 ++ 3.191 ++if test "$echo_libs" = "yes"; then 3.192 ++ libdirs="-L$libdir" 3.193 ++ if test -n "$lib_nss"; then 3.194 ++ libdirs="$libdirs -lnss${major_version}" 3.195 ++ fi 3.196 ++ if test -n "$lib_nssutil"; then 3.197 ++ libdirs="$libdirs -lnssutil${major_version}" 3.198 ++ fi 3.199 ++ if test -n "$lib_smime"; then 3.200 ++ libdirs="$libdirs -lsmime${major_version}" 3.201 ++ fi 3.202 ++ if test -n "$lib_ssl"; then 3.203 ++ libdirs="$libdirs -lssl${major_version}" 3.204 ++ fi 3.205 ++ if test -n "$lib_softokn"; then 3.206 ++ libdirs="$libdirs -lsoftokn${major_version}" 3.207 ++ fi 3.208 ++ echo $libdirs 3.209 ++fi 3.210 ++ 3.211 +--- nss.orig/mozilla/security/nss/config/nss.pc.in 1970-01-01 01:00:00.000000000 +0100 3.212 ++++ nss/mozilla/security/nss/config/nss.pc.in 2012-12-31 13:27:51.695572567 +0100 3.213 +@@ -0,0 +1,12 @@ 3.214 ++prefix=@prefix@ 3.215 ++exec_prefix=@exec_prefix@ 3.216 ++libdir=@libdir@ 3.217 ++includedir=@includedir@ 3.218 ++ 3.219 ++Name: NSS 3.220 ++Description: Network Security Services 3.221 ++Version: @NSS_MAJOR_VERSION@.@NSS_MINOR_VERSION@.@NSS_PATCH_VERSION@ 3.222 ++Requires: nspr >= 4.8 3.223 ++Libs: -L@libdir@ -lnss@NSS_MAJOR_VERSION@ -lnssutil@NSS_MAJOR_VERSION@ -lsmime@NSS_MAJOR_VERSION@ -lssl@NSS_MAJOR_VERSION@ -lsoftokn@NSS_MAJOR_VERSION@ 3.224 ++Cflags: -I${includedir} 3.225 ++ 3.226 +--- nss.orig/mozilla/security/nss/Makefile 2012-11-14 02:14:07.000000000 +0100 3.227 ++++ nss/mozilla/security/nss/Makefile 2012-12-31 13:27:51.696572567 +0100 3.228 +@@ -44,7 +44,7 @@ 3.229 + # (7) Execute "local" rules. (OPTIONAL). # 3.230 + ####################################################################### 3.231 + 3.232 +-nss_build_all: build_coreconf build_nspr build_dbm all 3.233 ++nss_build_all: build_coreconf build_dbm all 3.234 + 3.235 + nss_clean_all: clobber_coreconf clobber_nspr clobber_dbm clobber 3.236 + 3.237 +--- nss.orig/mozilla/security/nss/manifest.mn 2012-03-20 15:46:49.000000000 +0100 3.238 ++++ nss/mozilla/security/nss/manifest.mn 2012-12-31 13:27:51.696572567 +0100 3.239 +@@ -10,6 +10,6 @@ 3.240 + 3.241 + RELEASE = nss 3.242 + 3.243 +-DIRS = lib cmd 3.244 ++DIRS = lib cmd config 3.245 + 3.246 +
4.1 --- a/nss/stuff/nss-config.in Tue Mar 05 22:39:47 2013 +0100 4.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 4.3 @@ -1,145 +0,0 @@ 4.4 -#!/bin/sh 4.5 - 4.6 -prefix=@prefix@ 4.7 - 4.8 -major_version=@MOD_MAJOR_VERSION@ 4.9 -minor_version=@MOD_MINOR_VERSION@ 4.10 -patch_version=@MOD_PATCH_VERSION@ 4.11 - 4.12 -usage() 4.13 -{ 4.14 - cat <<EOF 4.15 -Usage: nss-config [OPTIONS] [LIBRARIES] 4.16 -Options: 4.17 - [--prefix[=DIR]] 4.18 - [--exec-prefix[=DIR]] 4.19 - [--includedir[=DIR]] 4.20 - [--libdir[=DIR]] 4.21 - [--version] 4.22 - [--libs] 4.23 - [--cflags] 4.24 -Dynamic Libraries: 4.25 - nss 4.26 - nssutil 4.27 - ssl 4.28 - smime 4.29 -EOF 4.30 - exit $1 4.31 -} 4.32 - 4.33 -if test $# -eq 0; then 4.34 - usage 1 1>&2 4.35 -fi 4.36 - 4.37 -lib_ssl=yes 4.38 -lib_smime=yes 4.39 -lib_nss=yes 4.40 -lib_nssutil=yes 4.41 - 4.42 -while test $# -gt 0; do 4.43 - case "$1" in 4.44 - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; 4.45 - *) optarg= ;; 4.46 - esac 4.47 - 4.48 - case $1 in 4.49 - --prefix=*) 4.50 - prefix=$optarg 4.51 - ;; 4.52 - --prefix) 4.53 - echo_prefix=yes 4.54 - ;; 4.55 - --exec-prefix=*) 4.56 - exec_prefix=$optarg 4.57 - ;; 4.58 - --exec-prefix) 4.59 - echo_exec_prefix=yes 4.60 - ;; 4.61 - --includedir=*) 4.62 - includedir=$optarg 4.63 - ;; 4.64 - --includedir) 4.65 - echo_includedir=yes 4.66 - ;; 4.67 - --libdir=*) 4.68 - libdir=$optarg 4.69 - ;; 4.70 - --libdir) 4.71 - echo_libdir=yes 4.72 - ;; 4.73 - --version) 4.74 - echo ${major_version}.${minor_version}.${patch_version} 4.75 - ;; 4.76 - --cflags) 4.77 - echo_cflags=yes 4.78 - ;; 4.79 - --libs) 4.80 - echo_libs=yes 4.81 - ;; 4.82 - ssl) 4.83 - lib_ssl=yes 4.84 - ;; 4.85 - smime) 4.86 - lib_smime=yes 4.87 - ;; 4.88 - nss) 4.89 - lib_nss=yes 4.90 - ;; 4.91 - nssutil) 4.92 - lib_nssutil=yes 4.93 - ;; 4.94 - *) 4.95 - usage 1 1>&2 4.96 - ;; 4.97 - esac 4.98 - shift 4.99 -done 4.100 - 4.101 -# Set variables that may be dependent upon other variables 4.102 -if test -z "$exec_prefix"; then 4.103 - exec_prefix=`pkg-config --variable=exec_prefix nss` 4.104 -fi 4.105 -if test -z "$includedir"; then 4.106 - includedir=`pkg-config --variable=includedir nss` 4.107 -fi 4.108 -if test -z "$libdir"; then 4.109 - libdir=`pkg-config --variable=libdir nss` 4.110 -fi 4.111 - 4.112 -if test "$echo_prefix" = "yes"; then 4.113 - echo $prefix 4.114 -fi 4.115 - 4.116 -if test "$echo_exec_prefix" = "yes"; then 4.117 - echo $exec_prefix 4.118 -fi 4.119 - 4.120 -if test "$echo_includedir" = "yes"; then 4.121 - echo $includedir 4.122 -fi 4.123 - 4.124 -if test "$echo_libdir" = "yes"; then 4.125 - echo $libdir 4.126 -fi 4.127 - 4.128 -if test "$echo_cflags" = "yes"; then 4.129 - echo -I$includedir 4.130 -fi 4.131 - 4.132 -if test "$echo_libs" = "yes"; then 4.133 - libdirs="-Wl,-rpath-link,$libdir -L$libdir" 4.134 - if test -n "$lib_ssl"; then 4.135 - libdirs="$libdirs -lssl${major_version}" 4.136 - fi 4.137 - if test -n "$lib_smime"; then 4.138 - libdirs="$libdirs -lsmime${major_version}" 4.139 - fi 4.140 - if test -n "$lib_nss"; then 4.141 - libdirs="$libdirs -lnss${major_version}" 4.142 - fi 4.143 - if test -n "$lib_nssutil"; then 4.144 - libdirs="$libdirs -lnssutil${major_version}" 4.145 - fi 4.146 - echo $libdirs 4.147 -fi 4.148 -
5.1 --- a/nss/stuff/nss-no-rpath.patch Tue Mar 05 22:39:47 2013 +0100 5.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 5.3 @@ -1,14 +0,0 @@ 5.4 ---- ./mozilla/security/nss/cmd/platlibs.mk.withrpath 2007-02-19 07:17:06.000000000 +0100 5.5 -+++ ./mozilla/security/nss/cmd/platlibs.mk 2007-02-19 07:18:07.000000000 +0100 5.6 -@@ -52,9 +52,9 @@ 5.7 - 5.8 - ifeq ($(OS_ARCH), Linux) 5.9 - ifeq ($(USE_64), 1) 5.10 --EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:$$ORIGIN/../lib' 5.11 -+#EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:$$ORIGIN/../lib' 5.12 - else 5.13 --EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib' 5.14 -+#EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib' 5.15 - endif 5.16 - endif 5.17 -
6.1 --- a/nss/stuff/nss-nolocalsql.patch Tue Mar 05 22:39:47 2013 +0100 6.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 6.3 @@ -1,52 +0,0 @@ 6.4 -diff -up ./mozilla/security/nss/lib/Makefile.nolocalsql ./mozilla/security/nss/lib/Makefile 6.5 ---- ./mozilla/security/nss/lib/Makefile.nolocalsql 2010-02-27 16:40:25.891777537 -0800 6.6 -+++ ./mozilla/security/nss/lib/Makefile 2010-02-27 16:41:59.175902327 -0800 6.7 -@@ -62,11 +62,11 @@ ifndef USE_SYSTEM_ZLIB 6.8 - ZLIB_SRCDIR = zlib # Add the zlib directory to DIRS. 6.9 - endif 6.10 - 6.11 --ifndef MOZILLA_CLIENT 6.12 --ifndef NSS_USE_SYSTEM_SQLITE 6.13 --SQLITE_SRCDIR = sqlite # Add the sqlite directory to DIRS. 6.14 --endif 6.15 --endif 6.16 -+#ifndef MOZILLA_CLIENT 6.17 -+#ifndef NSS_USE_SYSTEM_SQLITE 6.18 -+#SQLITE_SRCDIR = sqlite # Add the sqlite directory to DIRS. 6.19 -+#endif 6.20 -+#endif 6.21 - 6.22 - ifndef MOZILLA_CLIENT 6.23 - ifeq ($(OS_ARCH),Linux) 6.24 -diff -up ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn.nolocalsql ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn 6.25 ---- ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn.nolocalsql 2010-02-27 16:44:24.998777709 -0800 6.26 -+++ ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn 2010-02-27 16:45:08.533803472 -0800 6.27 -@@ -46,9 +46,9 @@ MAPFILE = $(OBJDIR)/nssdbm.def 6.28 - 6.29 - DEFINES += -DSHLIB_SUFFIX=\"$(DLL_SUFFIX)\" -DSHLIB_PREFIX=\"$(DLL_PREFIX)\" -DSOFTOKEN_LIB_NAME=\"$(notdir $(SHARED_LIBRARY))\" 6.30 - 6.31 --ifdef MOZILLA_CLIENT 6.32 --INCLUDES += -I$(DIST)/include/sqlite3 6.33 --endif 6.34 -+#ifdef MOZILLA_CLIENT 6.35 -+#INCLUDES += -I$(DIST)/include/sqlite3 6.36 -+#endif 6.37 - 6.38 - CSRCS = \ 6.39 - dbmshim.c \ 6.40 -diff -up ./mozilla/security/nss/lib/softoken/manifest.mn.nolocalsql ./mozilla/security/nss/lib/softoken/manifest.mn 6.41 ---- ./mozilla/security/nss/lib/softoken/manifest.mn.nolocalsql 2010-02-27 16:42:52.213902231 -0800 6.42 -+++ ./mozilla/security/nss/lib/softoken/manifest.mn 2010-02-27 16:43:34.040776788 -0800 6.43 -@@ -47,9 +47,9 @@ MAPFILE = $(OBJDIR)/softokn.def 6.44 - 6.45 - DEFINES += -DSHLIB_SUFFIX=\"$(DLL_SUFFIX)\" -DSHLIB_PREFIX=\"$(DLL_PREFIX)\" -DSOFTOKEN_LIB_NAME=\"$(notdir $(SHARED_LIBRARY))\" -DSHLIB_VERSION=\"$(LIBRARY_VERSION)\" 6.46 - 6.47 --ifdef MOZILLA_CLIENT 6.48 --INCLUDES += -I$(DIST)/include/sqlite3 6.49 --endif 6.50 -+#ifdef MOZILLA_CLIENT 6.51 -+#INCLUDES += -I$(DIST)/include/sqlite3 6.52 -+#endif 6.53 - 6.54 - EXPORTS = \ 6.55 - secmodt.h \
7.1 --- a/nss/stuff/nss.pc.in Tue Mar 05 22:39:47 2013 +0100 7.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 7.3 @@ -1,11 +0,0 @@ 7.4 -prefix=%prefix% 7.5 -exec_prefix=%exec_prefix% 7.6 -libdir=%libdir% 7.7 -includedir=%includedir% 7.8 - 7.9 -Name: NSS 7.10 -Description: Network Security Services 7.11 -Version: %NSS_VERSION% 7.12 -Requires: nspr >= %NSPR_VERSION% 7.13 -Libs: -lssl3 -lsmime3 -lnss3 -lnssutil3 7.14 -Cflags: -I${includedir}
8.1 --- a/nss/stuff/ssl-renegotiate-transitional.patch Tue Mar 05 22:39:47 2013 +0100 8.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 8.3 @@ -1,21 +0,0 @@ 8.4 -Enable transitional scheme for ssl renegotiation: 8.5 - 8.6 -(from mozilla/security/nss/lib/ssl/ssl.h) 8.7 -Disallow unsafe renegotiation in server sockets only, but allow clients 8.8 -to continue to renegotiate with vulnerable servers. 8.9 -This value should only be used during the transition period when few 8.10 -servers have been upgraded. 8.11 - 8.12 -diff --git a/mozilla/security/nss/lib/ssl/sslsock.c b/mozilla/security/nss/lib/ssl/sslsock.c 8.13 -index f1d1921..c074360 100644 8.14 ---- a/mozilla/security/nss/lib/ssl/sslsock.c 8.15 -+++ b/mozilla/security/nss/lib/ssl/sslsock.c 8.16 -@@ -181,7 +181,7 @@ static sslOptions ssl_defaults = { 8.17 - PR_FALSE, /* noLocks */ 8.18 - PR_FALSE, /* enableSessionTickets */ 8.19 - PR_FALSE, /* enableDeflate */ 8.20 -- 2, /* enableRenegotiation (default: requires extension) */ 8.21 -+ 3, /* enableRenegotiation (default: transitional) */ 8.22 - PR_FALSE, /* requireSafeNegotiation */ 8.23 - }; 8.24 -