Lines Matching refs:authMethodsConfig

833     persistent_data::AuthConfigMethods& authMethodsConfig =  in handleAuthMethodsPatch()  local
846 authMethodsConfig.basic = *auth.basicAuth; in handleAuthMethodsPatch()
858 authMethodsConfig.cookie = *auth.cookie; in handleAuthMethodsPatch()
870 authMethodsConfig.sessionToken = *auth.sessionToken; in handleAuthMethodsPatch()
882 authMethodsConfig.xtoken = *auth.xToken; in handleAuthMethodsPatch()
894 authMethodsConfig.tls = *auth.tls; in handleAuthMethodsPatch()
897 if (!authMethodsConfig.basic && !authMethodsConfig.cookie && in handleAuthMethodsPatch()
898 !authMethodsConfig.sessionToken && !authMethodsConfig.xtoken && in handleAuthMethodsPatch()
899 !authMethodsConfig.tls) in handleAuthMethodsPatch()
908 authMethodsConfig); in handleAuthMethodsPatch()
1315 const persistent_data::AuthConfigMethods& authMethodsConfig = in handleAccountServiceGet() local
1332 json["HTTPBasicAuth"] = authMethodsConfig.basic in handleAccountServiceGet()
1342 clientCertificate["Enabled"] = authMethodsConfig.tls; in handleAccountServiceGet()
1344 !authMethodsConfig.tlsStrict; in handleAccountServiceGet()
1349 getCertificateMapping(authMethodsConfig.mTLSCommonNameParsingMode); in handleAccountServiceGet()
1375 authMethodsConfig.basic; in handleAccountServiceGet()
1377 authMethodsConfig.sessionToken; in handleAccountServiceGet()
1378 json["Oem"]["OpenBMC"]["AuthMethods"]["XToken"] = authMethodsConfig.xtoken; in handleAccountServiceGet()
1379 json["Oem"]["OpenBMC"]["AuthMethods"]["Cookie"] = authMethodsConfig.cookie; in handleAccountServiceGet()
1380 json["Oem"]["OpenBMC"]["AuthMethods"]["TLS"] = authMethodsConfig.tls; in handleAccountServiceGet()
1468 persistent_data::AuthConfigMethods& authMethodsConfig = in handleCertificateMappingAttributePatch() local
1470 authMethodsConfig.mTLSCommonNameParsingMode = parseMode; in handleCertificateMappingAttributePatch()
1492 persistent_data::AuthConfigMethods& authMethodsConfig = in handleRespondToUnauthenticatedClientsPatch() local
1496 authMethodsConfig.tlsStrict = !respondToUnauthenticatedClients; in handleRespondToUnauthenticatedClientsPatch()