Lines Matching refs:tbs_crl
74 const TbsCrl& tbs_crl, in VerifyCRL() argument
88 ConstDataSpanFromString(crl.tbs_crl()), in VerifyCRL()
95 if (!DateTimeFromSeconds(tbs_crl.not_before_seconds(), ¬_before)) { in VerifyCRL()
99 if (!DateTimeFromSeconds(tbs_crl.not_after_seconds(), ¬_after)) { in VerifyCRL()
127 for (const auto& range : tbs_crl.revoked_serial_number_ranges()) { in VerifyCRL()
140 CastCRL::CastCRL(const TbsCrl& tbs_crl, const DateTime& overall_not_after) { in CastCRL() argument
144 DateTimeFromSeconds(tbs_crl.not_before_seconds(), ¬_before_); in CastCRL()
145 DateTimeFromSeconds(tbs_crl.not_after_seconds(), ¬_after_); in CastCRL()
151 for (const auto& hash : tbs_crl.revoked_public_key_hashes()) { in CastCRL()
156 for (const auto& range : tbs_crl.revoked_serial_number_ranges()) { in CastCRL()
231 TbsCrl tbs_crl; in ParseAndVerifyCRL() local
232 if (!tbs_crl.ParseFromString(crl.tbs_crl())) { in ParseAndVerifyCRL()
236 if (tbs_crl.version() != kCrlVersion0) { in ParseAndVerifyCRL()
238 << tbs_crl.version(); in ParseAndVerifyCRL()
242 if (!VerifyCRL(crl, tbs_crl, time, trust_store, &overall_not_after)) { in ParseAndVerifyCRL()
246 return std::make_unique<CastCRL>(tbs_crl, overall_not_after); in ParseAndVerifyCRL()