HomeSort by relevance Sort by last modified time
    Searched defs:CRLSet (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/cert/
crl_set.h 24 // A CRLSet is a structure that lists the serial numbers of revoked
27 class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> {
35 // Parse parses the bytes in |data| and, on success, puts a new CRLSet in
38 scoped_refptr<CRLSet>* out_crl_set);
54 // specified in the CRLSet.
57 // ApplyDelta returns a new CRLSet in |out_crl_set| that is the result of
60 scoped_refptr<CRLSet>* out_crl_set);
68 // and serializing a CRLSet is a lossless operation - the resulting bytes
82 // crls returns the internal state of this CRLSet. It should only be used i
    [all...]
crl_set.cc 48 CRLSet::CRLSet()
53 CRLSet::~CRLSet() {
56 // CRLSet format:
70 // ContentType (string): "CRLSet" or "CRLSetDelta" (magic value)
72 // contains the sequence number of the base CRLSet.
75 // A delta CRLSet is similar to a CRLSet:
113 // A delta CRLSet applies to a specific CRL set as given in th
    [all...]

Completed in 799 milliseconds