BHttpAuthentication
class BHttpAuthentication {
BHttpAuthentication();
BHttpAuthentication(const BString& username,
BHttpAuthentication(
const BHttpAuthentication& other);
BHttpAuthentication& operator=(
const BHttpAuthentication& other);
const BHttpAuthentication& authentication);
BHttpAuthentication& GetAuthentication(const BUrl& url);
const BHttpAuthentication* Authentication() const noexcept;
void SetAuthentication(const BHttpAuthentication& authentication);
BHttpAuthentication authentication;
BHttpAuthentication::SetUserName(const BString& username)
BHttpAuthentication::SetPassword(const BString& password)
BHttpAuthentication::SetToken(const BString& token)
BHttpAuthentication::SetMethod(BHttpAuthenticationMethod method)
BHttpAuthentication::Initialize(const BString& wwwAuthenticate)
BHttpAuthentication::UserName() const
BHttpAuthentication::Password() const
BHttpAuthentication::Method() const
BHttpAuthentication::Authorization(const BUrl& url, const BString& method) const
BHttpAuthentication::Base64Encode(const BString& string)
BHttpAuthentication::Base64Decode(const BString& string)
BHttpAuthentication::_DigestResponse(const BString& uri, const BString& method) const
BHttpAuthentication::BHttpAuthentication()
BHttpAuthentication::_H(const BString& value) const
BHttpAuthentication::_KD(const BString& secret, const BString& data) const
BHttpAuthentication::BHttpAuthentication(const BString& username, const BString& password)
BHttpAuthentication::BHttpAuthentication(const BHttpAuthentication& other)
BHttpAuthentication& BHttpAuthentication::operator=(
const BHttpAuthentication& other)
BHttpAuthentication& authentication = fContext->GetAuthentication(fUrl);
BHttpAuthentication* authentication
BHttpAuthentication newAuth;
BHttpAuthentication&
BHttpAuthentication* authentication = NULL;
SynchronizedHashMap<BPrivate::HashString, BHttpAuthentication*> {};
fAuthenticationMap->Put(HashString("", 0), new BHttpAuthentication());
const BHttpAuthentication& authentication)
BHttpAuthentication* previous = fAuthenticationMap->Get(hostHash);
BHttpAuthentication* copy
= new(std::nothrow) BHttpAuthentication(authentication);
std::optional<BHttpAuthentication> authentication;
const BHttpAuthentication*
BHttpRequest::SetAuthentication(const BHttpAuthentication& authentication)