Home
last modified time | relevance | path

Searched refs:not_before (Results 1 – 20 of 20) sorted by relevance

/external/openscreen/cast/test/
Dmake_crl_tests.cc41 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/
Dcast_auth_util_unittest.cc301 DateTime not_before; in TEST_F() local
303 ASSERT_TRUE(GetCertValidTimeRange(tls_cert, &not_before, &not_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, &not_before, &not_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, &not_before, &not_after)); in TEST_F()
Dcast_auth_util.cc194 DateTime not_before; in VerifyTLSCertificateValidity() local
196 if (!GetCertValidTimeRange(peer_cert, &not_before, &not_after)) { in VerifyTLSCertificateValidity()
210 if (verification_time_exploded < not_before) { in VerifyTLSCertificateValidity()
/external/openscreen/cast/common/certificate/
Dcast_crl.cc94 DateTime not_before; in VerifyCRL() local
95 if (!DateTimeFromSeconds(tbs_crl.not_before_seconds(), &not_before)) { in VerifyCRL()
102 if ((time < not_before) || (not_after < time)) { in VerifyCRL()
Dcast_cert_validator_internal.cc94 DateTime not_before; in VerifyCertTime() local
96 if (!GetCertValidTimeRange(cert, &not_before, &not_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()
Dcast_cert_validator_internal.h61 DateTime* not_before,
/external/nos/host/generic/nugget/proto/nugget/app/keymaster/
Dkeymaster.options16 nugget.app.keymaster.StartAttestKeyRequest.not_before max_size:15
Dkeymaster.proto213 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/
Dssl_identity.h94 time_t not_before; // Absolute time since epoch in seconds. member
Drtc_certificate_unittest.cc75 params.not_before = 0; in GenerateCertificateWithExpires()
Dopenssl_identity.cc237 params.not_before = now + kCertificateWindowInSeconds; in CreateWithExpiration()
239 if (params.not_before > params.not_after) in CreateWithExpiration()
Dssl_stream_adapter_unittest.cc354 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()
Dopenssl_certificate.cc99 if (!X509_time_adj(X509_get_notBefore(x509), params.not_before, &epoch_off) || in MakeCertificate()
/external/wpa_supplicant_8/src/tls/
Dx509v3.h60 os_time_t not_before; member
Dx509v3.c731 &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/
Dpower_suspend.py293 def _hwclock_ts(self, not_before): argument
305 if not_before is None or seconds >= not_before:
/external/scapy/scapy/layers/tls/
Dcert.py581 self.notBefore_str = tbsCert.validity.not_before.pretty_time
582 notBefore = tbsCert.validity.not_before.val
/external/scapy/test/
Dx509.uts85 tbs.validity.not_before == ASN1_UTC_TIME("060713073859Z") and tbs.validity.not_after == ASN1_UTC_TI…
/external/python/cryptography/tests/x509/
Dtest_x509.py1754 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/
Dtest_crypto.py1866 not_before = datetime.strptime(
1870 assert not_before_min <= not_before <= not_before_max