Loading [MathJax]/extensions/tex2jax.js
azure-identity
All Classes Files Functions Variables Typedefs Pages
client_certificate_credential.hpp
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
9#pragma once
10
11#include "azure/identity/detail/client_credential_core.hpp"
13
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>
18
19#include <memory>
20#include <string>
21#include <vector>
22
23namespace Azure { namespace Identity {
24
25#if defined(__GNUC__)
26// 'Azure::Identity::ClientCertificateCredential' declared with greater visibility than the type of
27// its field 'Azure::Identity::ClientCertificateCredential::m_pkey' [-Wattributes].
28#pragma GCC diagnostic push
29#pragma GCC diagnostic ignored "-Wattributes"
30#endif
31
32 namespace _detail {
33 class TokenCredentialImpl;
34
35 void FreePrivateKeyImpl(void* pkey);
36
37 template <typename> struct UniquePrivateKeyHelper;
38 template <> struct UniquePrivateKeyHelper<void*>
39 {
40 static void FreePrivateKey(void* pkey) { FreePrivateKeyImpl(pkey); }
41 using type = Azure::Core::_internal::BasicUniqueHandle<void, FreePrivateKey>;
42 };
43
44 using UniquePrivateKey = Azure::Core::_internal::UniqueHandle<void*, UniquePrivateKeyHelper>;
45 } // namespace _detail
46
51 struct ClientCertificateCredentialOptions final : public Core::Credentials::TokenCredentialOptions
52 {
63 std::string AuthorityHost = _detail::DefaultOptionValues::GetAuthorityHost();
64
70 std::vector<std::string> AdditionallyAllowedTenants;
71
81 };
82
88 class ClientCertificateCredential final : public Core::Credentials::TokenCredential {
89 private:
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;
97
99 std::string tenantId,
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);
106
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);
116
117 public:
128 std::string tenantId,
129 std::string const& clientId,
130 std::string const& clientCertificatePath,
131 Core::Credentials::TokenCredentialOptions const& options
132 = Core::Credentials::TokenCredentialOptions());
133
146 std::string tenantId,
147 std::string const& clientId,
148 std::string const& clientCertificate,
149 std::string const& privateKey,
150 ClientCertificateCredentialOptions const& options = {});
151
162 std::string tenantId,
163 std::string const& clientId,
164 std::string const& clientCertificatePath,
166
172
181 Core::Credentials::AccessToken GetToken(
182 Core::Credentials::TokenRequestContext const& tokenRequestContext,
183 Core::Context const& context) const override;
184 };
185
186#if defined(__GNUC__)
187#pragma GCC diagnostic pop
188#endif
189
190}} // namespace Azure::Identity
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
Token cache.