Lines Matching refs:EapCredentials
51 static string ObjectID(const EapCredentials* e) { return "(eap_credentials)"; } in ObjectID()
54 const char EapCredentials::kStorageEapAnonymousIdentity[] =
56 const char EapCredentials::kStorageEapCACert[] = "EAP.CACert";
57 const char EapCredentials::kStorageEapCACertID[] = "EAP.CACertID";
58 const char EapCredentials::kStorageEapCACertNSS[] = "EAP.CACertNSS";
59 const char EapCredentials::kStorageEapCACertPEM[] = "EAP.CACertPEM";
60 const char EapCredentials::kStorageEapCertID[] = "EAP.CertID";
61 const char EapCredentials::kStorageEapClientCert[] = "EAP.ClientCert";
62 const char EapCredentials::kStorageEapEap[] = "EAP.EAP";
63 const char EapCredentials::kStorageEapIdentity[] = "EAP.Identity";
64 const char EapCredentials::kStorageEapInnerEap[] = "EAP.InnerEAP";
65 const char EapCredentials::kStorageEapKeyID[] = "EAP.KeyID";
66 const char EapCredentials::kStorageEapKeyManagement[] = "EAP.KeyMgmt";
67 const char EapCredentials::kStorageEapPIN[] = "EAP.PIN";
68 const char EapCredentials::kStorageEapPassword[] = "EAP.Password";
69 const char EapCredentials::kStorageEapPrivateKey[] = "EAP.PrivateKey";
70 const char EapCredentials::kStorageEapPrivateKeyPassword[] =
72 const char EapCredentials::kStorageEapSubjectMatch[] =
74 const char EapCredentials::kStorageEapUseProactiveKeyCaching[] =
76 const char EapCredentials::kStorageEapUseSystemCAs[] = "EAP.UseSystemCAs";
78 EapCredentials::EapCredentials() : use_system_cas_(true), in EapCredentials() function in shill::EapCredentials
81 EapCredentials::~EapCredentials() {} in ~EapCredentials()
84 void EapCredentials::PopulateSupplicantProperties( in PopulateSupplicantProperties()
171 void EapCredentials::PopulateWiMaxProperties(KeyValueStore* params) const { in PopulateWiMaxProperties()
184 void EapCredentials::InitPropertyStore(PropertyStore* store) { in InitPropertyStore()
193 &EapCredentials::GetKeyManagement, in InitPropertyStore()
194 &EapCredentials::SetKeyManagement); in InitPropertyStore()
197 &EapCredentials::SetEapPassword, in InitPropertyStore()
204 &EapCredentials::SetEapPrivateKeyPassword, in InitPropertyStore()
222 bool EapCredentials::IsEapAuthenticationProperty(const string property) { in IsEapAuthenticationProperty()
236 bool EapCredentials::IsConnectable() const { in IsConnectable()
282 bool EapCredentials::IsConnectableUsingPassphrase() const { in IsConnectableUsingPassphrase()
286 void EapCredentials::Load(StoreInterface* storage, const string& id) { in Load()
318 void EapCredentials::OutputConnectionMetrics( in OutputConnectionMetrics()
337 void EapCredentials::Save(StoreInterface* storage, const string& id, in Save()
438 void EapCredentials::Reset() { in Reset()
463 bool EapCredentials::SetEapPassword(const string& password, Error* /*error*/) { in SetEapPassword()
471 bool EapCredentials::SetEapPrivateKeyPassword(const string& password, in SetEapPrivateKeyPassword()
480 string EapCredentials::GetKeyManagement(Error* /*error*/) { in GetKeyManagement()
484 bool EapCredentials::SetKeyManagement(const std::string& key_management, in SetKeyManagement()
496 bool EapCredentials::ClientAuthenticationUsesCryptoToken() const { in ClientAuthenticationUsesCryptoToken()
502 void EapCredentials::HelpRegisterDerivedString( in HelpRegisterDerivedString()
505 string(EapCredentials::*get)(Error* error), in HelpRegisterDerivedString()
506 bool(EapCredentials::*set)(const string&, Error*)) { in HelpRegisterDerivedString()
509 StringAccessor(new CustomAccessor<EapCredentials, string>( in HelpRegisterDerivedString()
513 void EapCredentials::HelpRegisterWriteOnlyDerivedString( in HelpRegisterWriteOnlyDerivedString()
516 bool(EapCredentials::*set)(const string&, Error*), in HelpRegisterWriteOnlyDerivedString()
517 void(EapCredentials::*clear)(Error* error), in HelpRegisterWriteOnlyDerivedString()
522 new CustomWriteOnlyAccessor<EapCredentials, string>( in HelpRegisterWriteOnlyDerivedString()