Home
last modified time | relevance | path

Searched refs:spn (Results 1 – 7 of 7) sorted by relevance

/external/chromium/net/http/
Dhttp_auth_handler_negotiate_unittest.cc232 EXPECT_EQ(L"HTTP/alias", auth_handler->spn()); in TEST_F()
234 EXPECT_EQ(L"HTTP@alias", auth_handler->spn()); in TEST_F()
251 EXPECT_EQ(L"HTTP/alias", auth_handler->spn()); in TEST_F()
253 EXPECT_EQ(L"HTTP@alias", auth_handler->spn()); in TEST_F()
270 EXPECT_EQ(L"HTTP/alias:500", auth_handler->spn()); in TEST_F()
272 EXPECT_EQ(L"HTTP@alias:500", auth_handler->spn()); in TEST_F()
289 EXPECT_EQ(L"HTTP/canonical.example.com", auth_handler->spn()); in TEST_F()
291 EXPECT_EQ(L"HTTP@canonical.example.com", auth_handler->spn()); in TEST_F()
308 EXPECT_EQ(L"HTTP/canonical.example.com", auth_handler->spn()); in TEST_F()
310 EXPECT_EQ(L"HTTP@canonical.example.com", auth_handler->spn()); in TEST_F()
Dhttp_auth_sspi_win.cc255 const std::wstring& spn, in GenerateAuthToken() argument
270 spn, in GenerateAuthToken()
316 const std::wstring& spn, in GetNextSecurityToken() argument
369 const_cast<wchar_t *>(spn.c_str()), // pszTargetName in GetNextSecurityToken()
Dhttp_auth_sspi_win.h147 const std::wstring& spn,
159 const std::wstring& spn,
Dhttp_auth_gssapi_posix.h240 const std::wstring& spn,
249 int GetNextSecurityToken(const std::wstring& spn,
Dhttp_auth_gssapi_posix.cc714 const std::wstring& spn, in GenerateAuthToken() argument
726 int rv = GetNextSecurityToken(spn, &input_token, &output_token); in GenerateAuthToken()
837 int HttpAuthGSSAPI::GetNextSecurityToken(const std::wstring& spn, in GetNextSecurityToken() argument
842 std::string spn_principal = WideToASCII(spn); in GetNextSecurityToken()
Dhttp_auth_handler_negotiate.h106 const std::wstring& spn() const { return spn_; } in spn() function
/external/chromium/third_party/libjingle/source/talk/base/
Dhttpcommon.cc872 char out_buf[MAX_MESSAGE], spn[MAX_SPN]; in HttpAuthenticate() local
877 0, &len, spn) != ERROR_SUCCESS) { in HttpAuthenticate()
882 sprintfn(spn, MAX_SPN, "HTTP/%s", server.ToString().c_str()); in HttpAuthenticate()
938 …ret = InitializeSecurityContextA(&neg->cred, &neg->ctx, spn, flags, 0, SECURITY_NATIVE_DREP, &in_b… in HttpAuthenticate()
1013 …ret = InitializeSecurityContextA(&cred, 0, spn, flags, 0, SECURITY_NATIVE_DREP, 0, 0, &ctx, &out_b… in HttpAuthenticate()