Home | History | Annotate | Download | only in base

Lines Matching refs:username

748   const std::string& username, const CryptString& password,
767 if (username.empty())
773 //std::string decoded = username + ":" + password;
774 size_t len = username.size() + password.GetLength() + 2;
776 size_t pos = strcpyn(sensitive, len, username.data(), username.size());
793 if (username.empty())
817 //std::string A1 = username + ":" + realm + ":" + password;
818 size_t len = username.size() + realm.size() + password.GetLength() + 3;
820 size_t pos = strcpyn(sensitive, len, username.data(), username.size());
846 ss << " username=" << quote(username);
909 bool specify_credentials = !username.empty();
962 std::string::size_type pos = username.find('\\');
965 std::min(sizeof(userbuf) - 1, username.size()));
966 memcpy(userbuf, username.c_str(), auth_id.UserLength);
976 std::min(sizeof(userbuf) - 1, username.size() - pos - 1));
977 memcpy(userbuf, username.c_str() + pos + 1, auth_id.UserLength);
981 memcpy(domainbuf, username.c_str(), auth_id.DomainLength);