Home
last modified time | relevance | path

Searched refs:TrustStore (Results 1 – 17 of 17) sorted by relevance

/external/openscreen/cast/test/
Ddevice_auth_test.cc49 TrustStore* fake_crl_trust_store, in RunAuthTest()
53 TrustStore fake_trust_store; in RunAuthTest()
146 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
153 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
160 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
167 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
174 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
182 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
190 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
197 TrustStore::CreateInstanceFromPemFile(data_path_ + "crl_root.pem"); in TEST_F()
/external/openscreen/cast/common/certificate/
Dcast_crl_unittest.cc38 TrustStore* cast_trust_store) { in TestVerifyCertificate()
55 TrustStore* crl_trust_store) { in TestVerifyCRL()
75 TrustStore* cast_trust_store, in TestVerifyRevocation()
76 TrustStore* crl_trust_store) { in TestVerifyRevocation()
99 std::unique_ptr<TrustStore> crl_trust_store; in RunTest()
100 std::unique_ptr<TrustStore> cast_trust_store; in RunTest()
102 crl_trust_store = std::make_unique<TrustStore>(); in RunTest()
103 cast_trust_store = std::make_unique<TrustStore>(); in RunTest()
104 *crl_trust_store = TrustStore::CreateInstanceFromPemFile( in RunTest()
106 *cast_trust_store = TrustStore::CreateInstanceFromPemFile( in RunTest()
Dcast_trust_store.h28 explicit CastTrustStore(TrustStore trust_store);
33 TrustStore* trust_store() { return &trust_store_; } in trust_store()
37 TrustStore trust_store_;
Dcast_cert_validator_internal.h18 struct TrustStore { struct
31 static TrustStore CreateInstanceFromPemFile(absl::string_view file_path);
73 TrustStore* trust_store);
Dcast_crl.cc49 TrustStore* trust_store() { return &trust_store_; } in trust_store()
58 TrustStore trust_store_;
76 TrustStore* trust_store, in VerifyCRL()
222 TrustStore* trust_store) { in ParseAndVerifyCRL()
Dcast_cert_validator.h45 struct TrustStore;
113 TrustStore* trust_store = nullptr);
Dcast_trust_store.cc60 store_->trust_store_ = TrustStore::CreateInstanceFromPemFile(file_path); in CreateInstanceFromPemFile()
73 CastTrustStore::CastTrustStore(TrustStore trust_store) in CastTrustStore()
Dcast_crl.h74 struct TrustStore;
89 TrustStore* trust_store = nullptr);
Dcast_cert_validator_internal.cc371 TrustStore TrustStore::CreateInstanceFromPemFile(absl::string_view file_path) { in CreateInstanceFromPemFile()
372 TrustStore store; in CreateInstanceFromPemFile()
400 TrustStore* trust_store) { in FindCertificatePath()
Dcast_cert_validator_unittest.cc56 TrustStore* trust_store; in RunTest()
57 std::unique_ptr<TrustStore> fake_trust_store; in RunTest()
75 fake_trust_store = std::make_unique<TrustStore>(); in RunTest()
Dcast_cert_validator.cc138 TrustStore* trust_store) { in VerifyDeviceCert()
/external/openscreen/cast/sender/channel/
Dcast_auth_util.h29 struct TrustStore;
70 TrustStore* cast_trust_store,
71 TrustStore* crl_trust_store,
95 TrustStore* cast_trust_store,
96 TrustStore* crl_trust_store,
Dcast_auth_util.cc230 TrustStore* cast_trust_store,
231 TrustStore* crl_trust_store,
240 TrustStore* cast_trust_store, in AuthenticateChallengeReplyImpl()
241 TrustStore* crl_trust_store, in AuthenticateChallengeReplyImpl()
299 TrustStore* cast_trust_store, in AuthenticateChallengeReplyForTest()
300 TrustStore* crl_trust_store, in AuthenticateChallengeReplyForTest()
328 TrustStore* cast_trust_store, in VerifyCredentialsImpl()
329 TrustStore* crl_trust_store, in VerifyCredentialsImpl()
404 TrustStore* cast_trust_store, in VerifyCredentialsForTest()
405 TrustStore* crl_trust_store, in VerifyCredentialsForTest()
Dcast_auth_util_unittest.cc370 TrustStore* cast_trust_store, in TestVerifyRevocation()
371 TrustStore* crl_trust_store) { in TestVerifyRevocation()
396 TrustStore crl_trust_store; in RunTest()
397 TrustStore cast_trust_store; in RunTest()
399 crl_trust_store = TrustStore::CreateInstanceFromPemFile( in RunTest()
401 cast_trust_store = TrustStore::CreateInstanceFromPemFile( in RunTest()
/external/openscreen/cast/receiver/channel/testing/
Ddevice_auth_test_helpers.h21 TrustStore* fake_trust_store,
Ddevice_auth_test_helpers.cc19 TrustStore* fake_trust_store, in InitStaticCredentialsFromFiles()
/external/openscreen/cast/receiver/
Dapplication_agent_unittest.cc54 TrustStore fake_trust_store; in TestCredentialsProvider()