Searched refs:authHeader (Results 1 – 1 of 1) sorted by relevance
23 const boost::asio::ip::address& clientIp, std::string_view authHeader) in performBasicAuth() argument27 if (!authHeader.starts_with("Basic ")) in performBasicAuth()32 std::string_view param = authHeader.substr(strlen("Basic ")); in performBasicAuth()90 performTokenAuth(std::string_view authHeader) in performTokenAuth() argument93 if (!authHeader.starts_with("Token ")) in performTokenAuth()97 std::string_view token = authHeader.substr(strlen("Token ")); in performTokenAuth()273 std::string_view authHeader = reqHeader["Authorization"]; in authenticate() local274 BMCWEB_LOG_DEBUG("authHeader={}", authHeader); in authenticate()279 sessionOut = performTokenAuth(authHeader); in authenticate()286 sessionOut = performBasicAuth(ipAddress, authHeader); in authenticate()