Home | History | Annotate | Download | only in cert

Lines Matching defs:CRLSet

20 // A CRLSet is a structure that lists the serial numbers of revoked
23 // CRLSetStorage is responsible for creating CRLSet instances.
24 class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> {
46 // specified in the CRLSet.
59 // crls returns the internal state of this CRLSet. It should only be used in
63 // EmptyCRLSetForTesting returns a valid, but empty, CRLSet for unit tests.
64 static CRLSet* EmptyCRLSetForTesting();
66 // ExpiredCRLSetForTesting returns a expired, empty CRLSet for unit tests.
67 static CRLSet* ExpiredCRLSetForTesting();
69 // ForTesting returns a CRLSet for testing. If |is_expired| is true, calling
71 // the CRLSet will cover certificates issued by that SPKI. If |serial_number|
74 static CRLSet* ForTesting(bool is_expired,
79 CRLSet();
80 ~CRLSet();
82 friend class base::RefCountedThreadSafe<CRLSet>;
88 // CRLSet should be considered stale, or 0 if no such time was given.