Lines Matching refs:CRLSet
47 CRLSet::CRLSet()
52 CRLSet::~CRLSet() {
55 // CRLSet format:
69 // ContentType (string): "CRLSet" or "CRLSetDelta" (magic value)
71 // contains the sequence number of the base CRLSet.
74 // A delta CRLSet is similar to a CRLSet:
112 // A delta CRLSet applies to a specific CRL set as given in the
146 // kCurrentFileVersion is the version of the CRLSet file format that we
180 bool CRLSet::CopyBlockedSPKIsFromHeader(base::DictionaryValue* header_dict) {
202 bool CRLSet::Parse(base::StringPiece data, scoped_refptr<CRLSet>* out_crl_set) {
220 if (contents != "CRLSet")
241 scoped_refptr<CRLSet> crl_set(new CRLSet);
263 // accept. This bounds the number of CRLs in the CRLSet as well as the number
344 bool CRLSet::ApplyDelta(const base::StringPiece& in_data,
345 scoped_refptr<CRLSet>* out_crl_set) {
379 scoped_refptr<CRLSet> crl_set(new CRLSet);
439 bool CRLSet::GetIsDeltaUpdate(const base::StringPiece& in_data,
450 if (contents == "CRLSet") {
461 std::string CRLSet::Serialize() const {
465 "\"ContentType\":\"CRLSet\","
524 CRLSet::Result CRLSet::CheckSPKI(const base::StringPiece& spki_hash) const {
536 CRLSet::Result CRLSet::CheckSerial(
566 bool CRLSet::IsExpired() const {
574 uint32 CRLSet::sequence() const {
578 const CRLSet::CRLList& CRLSet::crls() const {
583 CRLSet* CRLSet::EmptyCRLSetForTesting() {
587 CRLSet* CRLSet::ExpiredCRLSetForTesting() {
592 CRLSet* CRLSet::ForTesting(bool is_expired,
595 CRLSet* crl_set = new CRLSet;