Home
last modified time | relevance | path

Searched refs:revocation_time (Results 1 – 4 of 4) sorted by relevance

/external/python/cryptography/src/cryptography/x509/
Docsp.py115 next_update, revocation_time, revocation_reason): argument
142 if revocation_time is not None:
153 if not isinstance(revocation_time, datetime.datetime):
156 revocation_time = _convert_to_naive_utc_time(revocation_time)
157 if revocation_time < _EARLIEST_UTC_TIME:
171 self._revocation_time = revocation_time
184 next_update, revocation_time, revocation_reason): argument
190 revocation_time, revocation_reason
368 def revocation_time(self): member in OCSPResponse
/external/python/cryptography/tests/x509/
Dtest_ocsp.py380 assert resp.revocation_time is None
404 assert resp.revocation_time == revoked_date
445 assert resp.revocation_time == revoked_date
470 assert resp.revocation_time == revoked_date
613 assert resp.revocation_time is None
652 resp.revocation_time
676 assert resp.revocation_time == datetime.datetime(
/external/python/cryptography/docs/x509/
Docsp.rst217 …onse(cert, issuer, algorithm, cert_status, this_update, next_update, revocation_time, revocation_r…
248 :param revocation_time: A naïve :class:`datetime.datetime` object or
323 ... revocation_time=None, revocation_reason=None
507 .. attribute:: revocation_time
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Docsp.py229 def revocation_time(self): member in _OCSPResponse