Home
last modified time | relevance | path

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

/openbmc/bmcweb/include/
H A Dauthentication.hpp264 const persistent_data::AuthConfigMethods& authMethodsConfig = in authenticate() local
270 if (authMethodsConfig.tls) in authenticate()
277 if (sessionOut == nullptr && authMethodsConfig.xtoken) in authenticate()
284 if (sessionOut == nullptr && authMethodsConfig.cookie) in authenticate()
293 if (sessionOut == nullptr && authMethodsConfig.sessionToken) in authenticate()
300 if (sessionOut == nullptr && authMethodsConfig.basic) in authenticate()
H A Dsessions.hpp417 bool isTLSchanged = (authMethodsConfig.tls != config.tls); in updateAuthMethodsConfig()
418 authMethodsConfig = config; in updateAuthMethodsConfig()
430 return authMethodsConfig; in getAuthMethodsConfig()
491 AuthConfigMethods authMethodsConfig; member in persistent_data::SessionStore
/openbmc/bmcweb/redfish-core/lib/
H A Daccount_service.hpp866 persistent_data::AuthConfigMethods& authMethodsConfig = in handleAuthMethodsPatch() local
879 authMethodsConfig.basic = *auth.basicAuth; in handleAuthMethodsPatch()
891 authMethodsConfig.cookie = *auth.cookie; in handleAuthMethodsPatch()
903 authMethodsConfig.sessionToken = *auth.sessionToken; in handleAuthMethodsPatch()
915 authMethodsConfig.xtoken = *auth.xToken; in handleAuthMethodsPatch()
927 authMethodsConfig.tls = *auth.tls; in handleAuthMethodsPatch()
930 if (!authMethodsConfig.basic && !authMethodsConfig.cookie && in handleAuthMethodsPatch()
931 !authMethodsConfig.sessionToken && !authMethodsConfig.xtoken && in handleAuthMethodsPatch()
932 !authMethodsConfig.tls) in handleAuthMethodsPatch()
941 authMethodsConfig); in handleAuthMethodsPatch()
[all …]
/openbmc/bmcweb/http/
H A Dmutual_tls.cpp162 const persistent_data::AuthConfigMethods& authMethodsConfig = in getUsernameFromCert() local
164 switch (authMethodsConfig.mTLSCommonNameParsingMode) in getUsernameFromCert()