This commit is contained in:
Eddy Ashton 2022-09-15 15:31:21 +01:00 коммит произвёл GitHub
Родитель f449530aad
Коммит c3695837a6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 3 удалений

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

@ -2,7 +2,7 @@ RPC API
=======
Application RPCs are exposed under ``/app`` and require authentication with a valid user identity.
You can read what application endpoints may look like, as generated by the :ref:`example C++ logging app <build_apps/example_cpp>`, in :doc:`/build_apps/example_rpc_api`.
You can read what application endpoints may look like, as generated by the :doc:`:example C++ logging app <build_apps/example_cpp>`, in :doc:`/build_apps/example_rpc_api`.
Built-ins
----------

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

@ -19,8 +19,9 @@ namespace ccf
QuoteFormat,
{{QuoteFormat::oe_sgx_v1, "OE_SGX_v1"},
{QuoteFormat::insecure_virtual, "Insecure_Virtual"},
{QuoteFormat::amd_sev_snp_v1, "AMD_SEV_SNP_v1"}})
{QuoteFormat::amd_sev_snp_v1, "AMD_SEV_SNP_v1"}});
/// Describes a quote (attestation) from trusted hardware
struct QuoteInfo
{
/// Quote format
@ -33,4 +34,4 @@ namespace ccf
DECLARE_JSON_TYPE(QuoteInfo);
DECLARE_JSON_REQUIRED_FIELDS(QuoteInfo, format, quote, endorsements);
}
}