Home
last modified time | relevance | path

Searched refs:authMethodsConfig (Results 1 – 4 of 4) sorted by relevance

/openbmc/bmcweb/include/
H A Dauthentication.hpp248 const persistent_data::AuthConfigMethods& authMethodsConfig = in authenticate() local
254 if (authMethodsConfig.tls) in authenticate()
261 if (sessionOut == nullptr && authMethodsConfig.xtoken) in authenticate()
268 if (sessionOut == nullptr && authMethodsConfig.cookie) in authenticate()
277 if (sessionOut == nullptr && authMethodsConfig.sessionToken) in authenticate()
284 if (sessionOut == nullptr && authMethodsConfig.basic) in authenticate()
H A Dsessions.hpp406 bool isTLSchanged = (authMethodsConfig.tls != config.tls); in updateAuthMethodsConfig()
407 authMethodsConfig = config; in updateAuthMethodsConfig()
418 return authMethodsConfig; in getAuthMethodsConfig()
479 AuthConfigMethods authMethodsConfig; member in persistent_data::SessionStore
/openbmc/bmcweb/redfish-core/lib/
H A Daccount_service.hpp865 authMethodsConfig.basic = *auth.basicAuth; in handleAuthMethodsPatch()
877 authMethodsConfig.cookie = *auth.cookie; in handleAuthMethodsPatch()
901 authMethodsConfig.xtoken = *auth.xToken; in handleAuthMethodsPatch()
913 authMethodsConfig.tls = *auth.tls; in handleAuthMethodsPatch()
916 if (!authMethodsConfig.basic && !authMethodsConfig.cookie && in handleAuthMethodsPatch()
917 !authMethodsConfig.sessionToken && !authMethodsConfig.xtoken && in handleAuthMethodsPatch()
918 !authMethodsConfig.tls) in handleAuthMethodsPatch()
927 authMethodsConfig); in handleAuthMethodsPatch()
1365 !authMethodsConfig.tlsStrict; in handleAccountServiceGet()
1396 authMethodsConfig.basic; in handleAccountServiceGet()
[all …]
/openbmc/bmcweb/http/
H A Dmutual_tls.cpp30 const persistent_data::AuthConfigMethods& authMethodsConfig = in getUsernameFromCommonName() local
32 switch (authMethodsConfig.mTLSCommonNameParsingMode) in getUsernameFromCommonName()