11#include "azure/identity/detail/client_credential_core.hpp"
14#include <azure/core/credentials/credentials.hpp>
15#include <azure/core/credentials/token_credential_options.hpp>
16#include <azure/core/internal/unique_handle.hpp>
17#include <azure/core/url.hpp>
23namespace Azure {
namespace Identity {
28#pragma GCC diagnostic push
29#pragma GCC diagnostic ignored "-Wattributes"
33 class TokenCredentialImpl;
35 void FreePrivateKeyImpl(
void* pkey);
37 template <
typename>
struct UniquePrivateKeyHelper;
38 template <>
struct UniquePrivateKeyHelper<void*>
40 static void FreePrivateKey(
void* pkey) { FreePrivateKeyImpl(pkey); }
41 using type = Azure::Core::_internal::BasicUniqueHandle<void, FreePrivateKey>;
44 using UniquePrivateKey = Azure::Core::_internal::UniqueHandle<void*, UniquePrivateKeyHelper>;
63 std::string
AuthorityHost = _detail::DefaultOptionValues::GetAuthorityHost();
90 _detail::TokenCache m_tokenCache;
91 _detail::ClientCredentialCore m_clientCredentialCore;
92 std::unique_ptr<_detail::TokenCredentialImpl> m_tokenCredentialImpl;
93 std::string m_requestBody;
94 std::string m_tokenPayloadStaticPart;
95 std::string m_tokenHeaderEncoded;
96 _detail::UniquePrivateKey m_pkey;
100 std::string
const& clientId,
101 std::string
const& clientCertificatePath,
102 std::string
const& authorityHost,
103 std::vector<std::string> additionallyAllowedTenants,
104 bool sendCertificateChain,
105 Core::Credentials::TokenCredentialOptions
const& options);
108 std::string tenantId,
109 std::string
const& clientId,
110 std::string
const& clientCertificate,
111 std::string
const& privateKey,
112 std::string
const& authorityHost,
113 std::vector<std::string> additionallyAllowedTenants,
114 bool sendCertificateChain,
115 Core::Credentials::TokenCredentialOptions
const& options);
128 std::string tenantId,
129 std::string
const& clientId,
130 std::string
const& clientCertificatePath,
131 Core::Credentials::TokenCredentialOptions
const& options
132 = Core::Credentials::TokenCredentialOptions());
146 std::string tenantId,
147 std::string
const& clientId,
148 std::string
const& clientCertificate,
149 std::string
const& privateKey,
162 std::string tenantId,
163 std::string
const& clientId,
164 std::string
const& clientCertificatePath,
181 Core::Credentials::AccessToken
GetToken(
182 Core::Credentials::TokenRequestContext
const& tokenRequestContext,
183 Core::Context
const& context)
const override;
187#pragma GCC diagnostic pop
Client Certificate Credential authenticates with the Azure services using a Tenant ID,...
Definition client_certificate_credential.hpp:88
Core::Credentials::AccessToken GetToken(Core::Credentials::TokenRequestContext const &tokenRequestContext, Core::Context const &context) const override
Gets an authentication token.
Definition client_certificate_credential.cpp:678
~ClientCertificateCredential() override
Destructs ClientCertificateCredential.
Options for client certificate authentication.
Definition client_certificate_credential.hpp:52
bool SendCertificateChain
SendCertificateChain controls whether the credential sends the public certificate chain in the x5c he...
Definition client_certificate_credential.hpp:80
std::vector< std::string > AdditionallyAllowedTenants
For multi-tenant applications, specifies additional tenants for which the credential may acquire toke...
Definition client_certificate_credential.hpp:70
std::string AuthorityHost
Authentication authority URL.
Definition client_certificate_credential.hpp:63