71 lines
2.3 KiB
C++
71 lines
2.3 KiB
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
/**
|
|
* @brief This sample provides the code implementation to use the Attestation SDK client
|
|
* for C++ to retrieve the OpenID metadata for an endpoint..
|
|
*
|
|
* @remark The following environment variables must be set before running the sample.
|
|
* - ATTESTATION_AAD_URL: Points to an Attestation Service Instance in AAD mode.
|
|
* - ATTESTATION_ISOLATED_URL: Points to an Attestation Service Instance in Isolated mode.
|
|
* operations.
|
|
* - AZURE_TENANT_ID: Tenant ID for the Azure account.
|
|
* - AZURE_CLIENT_ID: The Client ID to authenticate the request.
|
|
* - AZURE_CLIENT_SECRET: The client secret.
|
|
*
|
|
*/
|
|
|
|
#include <azure/attestation.hpp>
|
|
|
|
#include <chrono>
|
|
#include <get_env.hpp>
|
|
#include <iostream>
|
|
#include <thread>
|
|
|
|
using namespace Azure::Security::Attestation;
|
|
using namespace Azure::Security::Attestation::Models;
|
|
using namespace std::chrono_literals;
|
|
|
|
int main()
|
|
{
|
|
try
|
|
{
|
|
// create client
|
|
AttestationClient const attestationClient(
|
|
AttestationClient::Create(GetEnvHelper::GetEnv("ATTESTATION_AAD_URL")));
|
|
|
|
// Retrieve the OpenId metadata from this attestation service instance.
|
|
Azure::Response<TokenValidationCertificateResult> const signingCertificates
|
|
= attestationClient.GetTokenValidationCertificates();
|
|
|
|
std::cout << "There are " << signingCertificates.Value.Signers.size() << "signing certificates."
|
|
<< std::endl;
|
|
for (const auto& certs : signingCertificates.Value.Signers)
|
|
{
|
|
std::cout << "Signing certificate chain:" << std::endl;
|
|
int certIndex = 1;
|
|
for (const auto& cert : *certs.CertificateChain)
|
|
{
|
|
std::cout << "Certificate " << certIndex << ": " << cert << std::endl;
|
|
certIndex += 1;
|
|
}
|
|
}
|
|
}
|
|
catch (Azure::Core::Credentials::AuthenticationException const& e)
|
|
{
|
|
std::cout << "Authentication Exception happened:" << std::endl << e.what() << std::endl;
|
|
return 1;
|
|
}
|
|
catch (Azure::Core::RequestFailedException const& e)
|
|
{
|
|
std::cout << "Request Failed Exception happened:" << std::endl << e.what() << std::endl;
|
|
if (e.RawResponse)
|
|
{
|
|
std::cout << "Error Code: " << e.ErrorCode << std::endl;
|
|
std::cout << "Error Message: " << e.Message << std::endl;
|
|
}
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|