/external/openscreen/cast/test/ |
D | make_crl_tests.cc | 41 TbsCrl MakeTbsCrl(uint64_t not_before, in MakeTbsCrl() argument 47 tbs_crl.set_not_before_seconds(not_before); in MakeTbsCrl() 138 std::chrono::seconds not_before = DateTimeToSeconds(july2019); in CastMain() local 140 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() 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() 208 TbsCrl tbs_crl = MakeTbsCrl(not_before.count(), not_after.count(), in CastMain() [all …]
|
/external/openscreen/cast/sender/channel/ |
D | cast_auth_util_unittest.cc | 301 DateTime not_before; in TEST_F() local 303 ASSERT_TRUE(GetCertValidTimeRange(tls_cert, ¬_before, ¬_after)); in TEST_F() 305 ASSERT_TRUE(ConvertTimeSeconds(not_before, &x)); in TEST_F() 319 DateTime not_before; in TEST_F() local 321 ASSERT_TRUE(GetCertValidTimeRange(tls_cert, ¬_before, ¬_after)); in TEST_F() 323 ASSERT_TRUE(ConvertTimeSeconds(not_before, &x)); in TEST_F() 340 DateTime not_before; in TEST_F() local 342 ASSERT_TRUE(GetCertValidTimeRange(tls_cert, ¬_before, ¬_after)); in TEST_F()
|
D | cast_auth_util.cc | 194 DateTime not_before; in VerifyTLSCertificateValidity() local 196 if (!GetCertValidTimeRange(peer_cert, ¬_before, ¬_after)) { in VerifyTLSCertificateValidity() 210 if (verification_time_exploded < not_before) { in VerifyTLSCertificateValidity()
|
/external/openscreen/cast/common/certificate/ |
D | cast_crl.cc | 94 DateTime not_before; in VerifyCRL() local 95 if (!DateTimeFromSeconds(tbs_crl.not_before_seconds(), ¬_before)) { in VerifyCRL() 102 if ((time < not_before) || (not_after < time)) { in VerifyCRL()
|
D | cast_cert_validator_internal.cc | 94 DateTime not_before; in VerifyCertTime() local 96 if (!GetCertValidTimeRange(cert, ¬_before, ¬_after)) { in VerifyCertTime() 100 if ((time < not_before) || (not_after < time)) { in VerifyCertTime() 357 DateTime* not_before, in GetCertValidTimeRange() argument 366 return ParseAsn1GeneralizedTime(not_before_asn1.get(), not_before) && in GetCertValidTimeRange()
|
D | cast_cert_validator_internal.h | 61 DateTime* not_before,
|
/external/nos/host/generic/nugget/proto/nugget/app/keymaster/ |
D | keymaster.options | 16 nugget.app.keymaster.StartAttestKeyRequest.not_before max_size:15
|
D | keymaster.proto | 213 bytes not_before = 5; // strftime('%Y%m%d%H%M%SZ') [15 octects] field 545 bytes not_before = 5; // strftime('%y%m%d%H%M%SZ') [15 octects] field
|
/external/webrtc/rtc_base/ |
D | ssl_identity.h | 94 time_t not_before; // Absolute time since epoch in seconds. member
|
D | rtc_certificate_unittest.cc | 75 params.not_before = 0; in GenerateCertificateWithExpires()
|
D | openssl_identity.cc | 237 params.not_before = now + kCertificateWindowInSeconds; 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 370 client_params.not_before = now + not_before; in ResetIdentitiesWithValidity() 377 server_params.not_before = now + not_before; in ResetIdentitiesWithValidity()
|
D | openssl_certificate.cc | 99 if (!X509_time_adj(X509_get_notBefore(x509), params.not_before, &epoch_off) || in MakeCertificate()
|
/external/wpa_supplicant_8/src/tls/ |
D | x509v3.h | 60 os_time_t not_before; member
|
D | x509v3.c | 731 &cert->not_before) < 0) { in x509_parse_validity() 750 (unsigned long) cert->not_before, in x509_parse_validity() 2212 (unsigned long) cert->not_before || in x509_certificate_chain_validate() 2217 now.sec, cert->not_before, cert->not_after); in x509_certificate_chain_validate()
|
/external/autotest/client/cros/power/ |
D | power_suspend.py | 293 def _hwclock_ts(self, not_before): argument 305 if not_before is None or seconds >= not_before:
|
/external/scapy/scapy/layers/tls/ |
D | cert.py | 581 self.notBefore_str = tbsCert.validity.not_before.pretty_time 582 notBefore = tbsCert.validity.not_before.val
|
/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/cryptography/tests/x509/ |
D | test_x509.py | 1754 not_before = parsed['tbs_certificate']['validity']['not_before'] 1756 assert not_before.chosen.tag == 23 # UTCTime 2054 not_before = parsed['tbs_certificate']['validity']['not_before'] 2056 assert not_before.chosen.tag == 23 # UTCTime
|
/external/python/pyopenssl/tests/ |
D | test_crypto.py | 1866 not_before = datetime.strptime( 1870 assert not_before_min <= not_before <= not_before_max
|