azure-sdk-for-cpp/sdk/attestation/azure-security-attestation/test/ut/attestation_collateral.hpp
Rick Winter b54d509c72
Use standard syntax for MIT license (#4786)
* Use standard syntax for MIT license

* Stop appending "All rights reserved"
2023-07-12 22:37:36 -07:00

18 lines
492 B
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <azure/core/base64.hpp>
namespace Azure { namespace Security { namespace Attestation { namespace Test {
class AttestationCollateral {
public:
static std::vector<uint8_t> OpenEnclaveReport();
static std::vector<uint8_t> SgxQuote();
static std::vector<uint8_t> RunTimeData();
static std::string GetMinimalPolicy();
};
}}}} // namespace Azure::Security::Attestation::Test