azure-sdk-for-cpp/sdk/attestation/azure-security-attestation/test/ut/crypto_test_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

17 lines
464 B
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <string>
namespace Azure { namespace Security { namespace Attestation { namespace Test {
class CryptoTestCollateral {
public:
static std::string TestEcdsPrivateKey();
static std::string TestEcdsPublicKey();
static std::string TestRsaPrivateKey();
static std::string TestRsaPublicKey();
};
}}}} // namespace Azure::Security::Attestation::Test