~ubuntu-branches/ubuntu/quantal/nss/quantal-updates

« back to all changes in this revision

Viewing changes to mozilla/security/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crl.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-03-25 13:46:06 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100325134606-bl6liuok2w9l7snv
Tags: 3.12.6-0ubuntu1
* New upstream release 3.12.6 RTM (NSS_3_12_6_RTM)
  - fixes CVE-2009-3555 aka US-CERT VU#120541
* Adjust patches to changed upstream code base
  - update debian/patches/38_kbsd.patch
  - update debian/patches/38_mips64_build.patch
  - update debian/patches/85_security_load.patch
* Remove patches that are merged upstream
  - delete debian/patches/91_nonexec_stack.patch
  - update debian/patches/series
* Bump nspr dependency to 4.8
  - update debian/control
* Add new symbols for 3.12.6
  - update debian/libnss3-1d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        PKIX_Boolean crlNumberAbsent;
59
59
        PKIX_List *crlEntryList; /* list of PKIX_PL_CRLEntry */
60
60
        PKIX_List *critExtOids;
 
61
        SECItem *adoptedDerCrl;
 
62
        SECItem *derGenName; /* der of general name which was used
 
63
                              * to download the crl. */
61
64
};
62
65
 
63
66
/* see source file for function documentation */
65
68
PKIX_Error *pkix_pl_CRL_RegisterSelf(void *plContext);
66
69
 
67
70
PKIX_Error *
68
 
pkix_pl_CRL_CreateWithSignedCRL(
69
 
        CERTSignedCrl *nssSignedCrl,
70
 
        PKIX_PL_CRL **pCrl,
71
 
        void *plContext);
 
71
pkix_pl_CRL_CreateWithSignedCRL(CERTSignedCrl *nssSignedCrl,
 
72
                                SECItem *derCrl,
 
73
                                SECItem *derGenName,
 
74
                                PKIX_PL_CRL **pCrl,
 
75
                                void *plContext);
72
76
 
73
 
PKIX_Error *
74
 
pkix_pl_CRL_CreateToList(SECItem *derCrlItem, PKIX_List *crlList,
75
 
                         void *plContext);
76
77
#ifdef __cplusplus
77
78
}
78
79
#endif