Use standard syntax for MIT license (#4786)

* Use standard syntax for MIT license

* Stop appending "All rights reserved"
This commit is contained in:
Rick Winter 2023-07-12 22:37:36 -07:00 коммит произвёл GitHub
Родитель 894873c423
Коммит b54d509c72
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
948 изменённых файлов: 1905 добавлений и 1905 удалений

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake-modules")

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# Defines utility functions to create build targets for CI.
#

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# Defines utility functions to create code coverage targets with gcov.
# gcov html and xml report.

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# The option is added again just like from the main CMakeList
# to enable discovering the option directly from each project.

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# Creates custom targets for documentation generation if
# BUILD_DOCUMENTATION == YES

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
#

Просмотреть файл

@ -1,5 +1,5 @@
## Copyright (c) Microsoft Corporation. All rights reserved.
## SPDX-License-Identifier: MIT
## Copyright (c) Microsoft Corporation.
## Licensed under the MIT License.
############## TRANSPORT ADAPTER BUILD ######################
# Default: If no option is explicitly added, libcurl will be used for POSIX and WinHTTP for Windows #

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# We need to know an absolute path to our repo root to do things like referencing ./LICENSE.txt file.
set(AZ_ROOT_DIR "${CMAKE_CURRENT_LIST_DIR}/..")
@ -85,7 +85,7 @@ macro(az_vcpkg_export targetName macroNamePart dllImportExportHeaderPath)
az_vcpkg_portfile_prep(
"${targetName}"
"${vcpkgFile}"
"# Copyright (c) Microsoft Corporation. All rights reserved.\n# SPDX-License-Identifier: MIT\n\n"
"# Copyright (c) Microsoft Corporation.\n# Licensed under the MIT License.\n\n"
)
endforeach()

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# Sets ${AZ_LIBRARY_VERSION} in the parent context with the version value
# constructed from package_version.hpp. The package_version.hpp must follow

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# Instructs linker to generate map files and optimize build for minimal size
# Requires CMake version >= 3.13 to use add_link_options

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
macro(SetUpTestProxy subDir)

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.12)
project(get-env-helper LANGUAGES CXX)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// Since `getenv()` may generate warnings on MSVC, and is not available on UWP, sample code
// gets cluttered with insignificant nuances. This file makes it so that `std::getenv()` compiles

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "get_env.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.12)
project(service LANGUAGES CXX)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/service/client.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# Project set up
cmake_minimum_required(VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @file

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# vcpkg integration.
if(DEFINED ENV{VCPKG_ROOT} AND NOT DEFINED CMAKE_TOOLCHAIN_FILE)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides smoke test for the sdks to ensure side by side works properly

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake-modules")

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Includes all public headers from Azure Attestation SDK library.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @file

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @file

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @file

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @file

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#cspell: words sgxenclave
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "attestation_collateral.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <azure/core/base64.hpp>

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample shows how to instantiate an attestation administration client object using

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample demonstrates creating an attestation client using the Attestation SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Attestation SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Attestation SDK client

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample demonstrates using the Attestation Service SDK for C++ to add (and remove) a

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <azure/core/internal/strings.hpp>

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample demonstrates using the Attestation Service SDK for C++ to retrieve policy

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <memory>
#include <string>

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample demonstrates using the Attestation Service SDK for C++ to retrieve attestation

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief This sample provides the code implementation to use the Key Vault Certificates SDK client

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/attestation/attestation_administration_client.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/attestation/attestation_client.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/attestation/attestation_client_options.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "attestation_common_request.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Provides a wrapper class for the Azure Core Pipeline for all Attestation services where

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Azure::Core::Json::_internal::json Deserialization support functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Azure::Core::Json::_internal::json Deserialization support functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright(c) Microsoft Corporation.All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <ctime>

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <memory>

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright(c) Microsoft Corporation.All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Attestation client model support classes and functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Azure::Core::Json::_internal::json Deserialization support functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @brief Azure::Core::Json::_internal::json Deserialization support functions.

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @file

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#cspell: words tpmattestation
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "attestation_collateral.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <azure/core/base64.hpp>

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "attestation_collateral.hpp"
#include "azure/attestation/attestation_client.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "../src/private/crypto/inc/crypto.hpp"
#include "attestation_collateral.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright(c) Microsoft Corporation.All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "../../src/private/crypto/inc/crypto.hpp"
#include "crypto_test_collateral.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "crypto_test_collateral.hpp"
namespace Azure { namespace Security { namespace Attestation { namespace Test {

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include <string>

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// Define `min` and `max` as function-like macros before including all public
// headers to ensure that uses of those identifiers are defended against

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "../src/private/crypto/inc/crypto.hpp"
#include "attestation_collateral.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "../src/private/crypto/inc/crypto.hpp"
#include "attestation_collateral.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright(c) Microsoft Corporation.All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "../../src/private/attestation_client_models_private.hpp"
#include "../../src/private/attestation_client_private.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "attestation_collateral.hpp"
#include "azure/attestation/attestation_administration_client.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
@PACKAGE_INIT@

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
{
"name": "azure-security-attestation-cpp",

Просмотреть файл

@ -1,4 +1,4 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# IMPORTANT: Do not invoke this file directly. Please instead run eng/New-TestResources.ps1 from the repository root.

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cmake_minimum_required (VERSION 3.13)

Просмотреть файл

@ -1,5 +1,5 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# setting CMAKE_TOOLCHAIN_FILE must happen before creating the project
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake-modules")

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include "azure/core/amqp/cancellable.hpp"

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-Licence-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-Licence-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Просмотреть файл

@ -1,5 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше