Symbol: BHttpAuthentication
headers/private/netservices/HttpAuthentication.h
48
class BHttpAuthentication {
headers/private/netservices/HttpAuthentication.h
50
BHttpAuthentication();
headers/private/netservices/HttpAuthentication.h
51
BHttpAuthentication(const BString& username,
headers/private/netservices/HttpAuthentication.h
53
BHttpAuthentication(
headers/private/netservices/HttpAuthentication.h
54
const BHttpAuthentication& other);
headers/private/netservices/HttpAuthentication.h
55
BHttpAuthentication& operator=(
headers/private/netservices/HttpAuthentication.h
56
const BHttpAuthentication& other);
headers/private/netservices/UrlContext.h
31
const BHttpAuthentication& authentication);
headers/private/netservices/UrlContext.h
37
BHttpAuthentication& GetAuthentication(const BUrl& url);
headers/private/netservices2/HttpRequest.h
101
const BHttpAuthentication* Authentication() const noexcept;
headers/private/netservices2/HttpRequest.h
111
void SetAuthentication(const BHttpAuthentication& authentication);
src/apps/haikudepot/server/WebAppInterface.cpp
1009
BHttpAuthentication authentication;
src/kits/network/libnetservices/HttpAuthentication.cpp
101
BHttpAuthentication::SetUserName(const BString& username)
src/kits/network/libnetservices/HttpAuthentication.cpp
110
BHttpAuthentication::SetPassword(const BString& password)
src/kits/network/libnetservices/HttpAuthentication.cpp
119
BHttpAuthentication::SetToken(const BString& token)
src/kits/network/libnetservices/HttpAuthentication.cpp
128
BHttpAuthentication::SetMethod(BHttpAuthenticationMethod method)
src/kits/network/libnetservices/HttpAuthentication.cpp
137
BHttpAuthentication::Initialize(const BString& wwwAuthenticate)
src/kits/network/libnetservices/HttpAuthentication.cpp
237
BHttpAuthentication::UserName() const
src/kits/network/libnetservices/HttpAuthentication.cpp
245
BHttpAuthentication::Password() const
src/kits/network/libnetservices/HttpAuthentication.cpp
253
BHttpAuthentication::Method() const
src/kits/network/libnetservices/HttpAuthentication.cpp
261
BHttpAuthentication::Authorization(const BUrl& url, const BString& method) const
src/kits/network/libnetservices/HttpAuthentication.cpp
326
BHttpAuthentication::Base64Encode(const BString& string)
src/kits/network/libnetservices/HttpAuthentication.cpp
365
BHttpAuthentication::Base64Decode(const BString& string)
src/kits/network/libnetservices/HttpAuthentication.cpp
401
BHttpAuthentication::_DigestResponse(const BString& uri, const BString& method) const
src/kits/network/libnetservices/HttpAuthentication.cpp
42
BHttpAuthentication::BHttpAuthentication()
src/kits/network/libnetservices/HttpAuthentication.cpp
451
BHttpAuthentication::_H(const BString& value) const
src/kits/network/libnetservices/HttpAuthentication.cpp
483
BHttpAuthentication::_KD(const BString& secret, const BString& data) const
src/kits/network/libnetservices/HttpAuthentication.cpp
49
BHttpAuthentication::BHttpAuthentication(const BString& username, const BString& password)
src/kits/network/libnetservices/HttpAuthentication.cpp
58
BHttpAuthentication::BHttpAuthentication(const BHttpAuthentication& other)
src/kits/network/libnetservices/HttpAuthentication.cpp
77
BHttpAuthentication& BHttpAuthentication::operator=(
src/kits/network/libnetservices/HttpAuthentication.cpp
78
const BHttpAuthentication& other)
src/kits/network/libnetservices/HttpRequest.cpp
1009
BHttpAuthentication& authentication = fContext->GetAuthentication(fUrl);
src/kits/network/libnetservices/HttpRequest.cpp
499
BHttpAuthentication* authentication
src/kits/network/libnetservices/HttpRequest.cpp
506
BHttpAuthentication newAuth;
src/kits/network/libnetservices/UrlContext.cpp
115
BHttpAuthentication&
src/kits/network/libnetservices/UrlContext.cpp
121
BHttpAuthentication* authentication = NULL;
src/kits/network/libnetservices/UrlContext.cpp
22
SynchronizedHashMap<BPrivate::HashString, BHttpAuthentication*> {};
src/kits/network/libnetservices/UrlContext.cpp
38
fAuthenticationMap->Put(HashString("", 0), new BHttpAuthentication());
src/kits/network/libnetservices/UrlContext.cpp
65
const BHttpAuthentication& authentication)
src/kits/network/libnetservices/UrlContext.cpp
73
BHttpAuthentication* previous = fAuthenticationMap->Get(hostHash);
src/kits/network/libnetservices/UrlContext.cpp
78
BHttpAuthentication* copy
src/kits/network/libnetservices/UrlContext.cpp
79
= new(std::nothrow) BHttpAuthentication(authentication);
src/kits/network/libnetservices2/HttpRequest.cpp
169
std::optional<BHttpAuthentication> authentication;
src/kits/network/libnetservices2/HttpRequest.cpp
226
const BHttpAuthentication*
src/kits/network/libnetservices2/HttpRequest.cpp
299
BHttpRequest::SetAuthentication(const BHttpAuthentication& authentication)