/external/openscreen/cast/test/ |
D | make_crl_tests.cc | 42 uint64_t not_after, in MakeTbsCrl() argument 48 tbs_crl.set_not_after_seconds(not_after); in MakeTbsCrl() 139 std::chrono::seconds not_after = DateTimeToSeconds(july2020); in CastMain() local 140 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() 151 std::chrono::seconds not_after = DateTimeToSeconds(august2019); in CastMain() local 152 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() 160 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() 169 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() 178 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() 193 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() [all …]
|
/external/openscreen/cast/common/certificate/ |
D | cast_crl.cc | 98 DateTime not_after; in VerifyCRL() local 99 if (!DateTimeFromSeconds(tbs_crl.not_after_seconds(), ¬_after)) { in VerifyCRL() 102 if ((time < not_before) || (not_after < time)) { in VerifyCRL() 109 *overall_not_after = not_after; in VerifyCRL()
|
D | cast_cert_validator_internal.cc | 95 DateTime not_after; in VerifyCertTime() local 96 if (!GetCertValidTimeRange(cert, ¬_before, ¬_after)) { in VerifyCertTime() 100 if ((time < not_before) || (not_after < time)) { in VerifyCertTime() 358 DateTime* not_after) { in GetCertValidTimeRange() argument 367 ParseAsn1GeneralizedTime(not_after_asn1.get(), not_after); in GetCertValidTimeRange()
|
D | cast_cert_validator_internal.h | 62 DateTime* not_after);
|
/external/openscreen/cast/sender/channel/ |
D | cast_auth_util_unittest.cc | 302 DateTime not_after; in TEST_F() local 303 ASSERT_TRUE(GetCertValidTimeRange(tls_cert, ¬_before, ¬_after)); in TEST_F() 320 DateTime not_after; in TEST_F() local 321 ASSERT_TRUE(GetCertValidTimeRange(tls_cert, ¬_before, ¬_after)); in TEST_F() 341 DateTime not_after; in TEST_F() local 342 ASSERT_TRUE(GetCertValidTimeRange(tls_cert, ¬_before, ¬_after)); in TEST_F() 344 ASSERT_TRUE(ConvertTimeSeconds(not_after, &x)); in TEST_F()
|
D | cast_auth_util.cc | 195 DateTime not_after; in VerifyTLSCertificateValidity() local 196 if (!GetCertValidTimeRange(peer_cert, ¬_before, ¬_after)) { in VerifyTLSCertificateValidity() 215 if (not_after < verification_time_exploded) { in VerifyTLSCertificateValidity() 219 if (lifetime_limit_exploded < not_after) { in VerifyTLSCertificateValidity()
|
/external/rust/crates/tokio/src/time/driver/ |
D | entry.rs | 166 unsafe fn mark_pending(&self, not_after: u64) -> Result<(), u64> { in mark_pending() 176 if cur_state > not_after { in mark_pending() 590 pub(super) unsafe fn mark_pending(&self, not_after: u64) -> Result<(), u64> { in mark_pending() 591 match self.inner.as_ref().state.mark_pending(not_after) { in mark_pending()
|
/external/nos/host/generic/nugget/proto/nugget/app/keymaster/ |
D | keymaster.options | 17 nugget.app.keymaster.StartAttestKeyRequest.not_after max_size:15
|
D | keymaster.proto | 214 bytes not_after = 6; // strftime('%Y%m%d%H%M%SZ') [15 octects] field 546 bytes not_after = 6; // strftime('%y%m%d%H%M%SZ') [15 octects] field
|
/external/webrtc/rtc_base/ |
D | ssl_identity.h | 95 time_t not_after; // Absolute time since epoch in seconds. member
|
D | rtc_certificate_unittest.cc | 76 params.not_after = static_cast<time_t>(expires_s); in GenerateCertificateWithExpires()
|
D | openssl_identity.cc | 238 params.not_after = now + certificate_lifetime; in CreateWithExpiration() 239 if (params.not_before > params.not_after) in CreateWithExpiration()
|
D | ssl_stream_adapter_unittest.cc | 354 void ResetIdentitiesWithValidity(int not_before, int not_after) { in ResetIdentitiesWithValidity() argument 371 client_params.not_after = now + not_after; in ResetIdentitiesWithValidity() 378 server_params.not_after = now + not_after; in ResetIdentitiesWithValidity()
|
D | openssl_certificate.cc | 100 !X509_time_adj(X509_get_notAfter(x509), params.not_after, &epoch_off)) { in MakeCertificate()
|
/external/wpa_supplicant_8/src/tls/ |
D | x509v3.h | 61 os_time_t not_after; member
|
D | x509v3.c | 743 &cert->not_after) < 0) { in x509_parse_validity() 751 (unsigned long) cert->not_after); in x509_parse_validity() 2214 (unsigned long) cert->not_after)) { in x509_certificate_chain_validate() 2217 now.sec, cert->not_before, cert->not_after); in x509_certificate_chain_validate()
|
/external/scapy/scapy/layers/tls/ |
D | cert.py | 591 self.notAfter_str = tbsCert.validity.not_after.pretty_time 592 notAfter = tbsCert.validity.not_after.val
|
/external/python/pyopenssl/tests/ |
D | test_ssl.py | 248 not_after = not_after_date.strftime("%Y%m%d%H%M%SZ").encode("ascii") 259 cacert.set_notAfter(not_after) 273 icert.set_notAfter(not_after) 287 scert.set_notAfter(not_after)
|
D | test_crypto.py | 1892 not_after = datetime.strptime( 1896 assert not_after_min <= not_after <= not_after_max
|
/external/scapy/test/ |
D | x509.uts | 85 tbs.validity.not_before == ASN1_UTC_TIME("060713073859Z") and tbs.validity.not_after == ASN1_UTC_TI…
|
/external/python/pyopenssl/src/OpenSSL/ |
D | crypto.py | 1370 not_after = datetime.datetime.strptime(time_string, "%Y%m%d%H%M%SZ") 1372 return not_after < datetime.datetime.utcnow()
|
/external/python/cryptography/tests/x509/ |
D | test_x509.py | 1755 not_after = parsed['tbs_certificate']['validity']['not_after'] 1757 assert not_after.chosen.tag == 24 # GeneralizedTime 2055 not_after = parsed['tbs_certificate']['validity']['not_after'] 2057 assert not_after.chosen.tag == 23 # UTCTime
|
/external/python/cryptography/docs/development/ |
D | test-vectors.rst | 217 UTCTime in its validity->not_after.
|