Home
last modified time | relevance | path

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

/openbmc/bmcweb/include/
H A Dauthentication.hpp263 const persistent_data::AuthConfigMethods& authMethodsConfig = in authenticate() local
269 if (authMethodsConfig.tls) in authenticate()
276 if (sessionOut == nullptr && authMethodsConfig.xtoken) in authenticate()
283 if (sessionOut == nullptr && authMethodsConfig.cookie) in authenticate()
292 if (sessionOut == nullptr && authMethodsConfig.sessionToken) in authenticate()
299 if (sessionOut == nullptr && authMethodsConfig.basic) in authenticate()
H A Dsessions.hpp407 bool isTLSchanged = (authMethodsConfig.tls != config.tls); in updateAuthMethodsConfig()
408 authMethodsConfig = config; in updateAuthMethodsConfig()
420 return authMethodsConfig; in getAuthMethodsConfig()
481 AuthConfigMethods authMethodsConfig; member in persistent_data::SessionStore
/openbmc/bmcweb/redfish-core/lib/
H A Daccount_service.hpp870 persistent_data::AuthConfigMethods& authMethodsConfig = in handleAuthMethodsPatch() local
883 authMethodsConfig.basic = *auth.basicAuth; in handleAuthMethodsPatch()
895 authMethodsConfig.cookie = *auth.cookie; in handleAuthMethodsPatch()
907 authMethodsConfig.sessionToken = *auth.sessionToken; in handleAuthMethodsPatch()
919 authMethodsConfig.xtoken = *auth.xToken; in handleAuthMethodsPatch()
931 authMethodsConfig.tls = *auth.tls; in handleAuthMethodsPatch()
934 if (!authMethodsConfig.basic && !authMethodsConfig.cookie && in handleAuthMethodsPatch()
935 !authMethodsConfig.sessionToken && !authMethodsConfig.xtoken && in handleAuthMethodsPatch()
936 !authMethodsConfig.tls) in handleAuthMethodsPatch()
945 authMethodsConfig); in handleAuthMethodsPatch()
[all …]
/openbmc/bmcweb/http/
H A Dmutual_tls.cpp147 const persistent_data::AuthConfigMethods& authMethodsConfig = in getUsernameFromCert() local
149 switch (authMethodsConfig.mTLSCommonNameParsingMode) in getUsernameFromCert()