TlsAuthentication.h 566 B

1234567891011121314151617181920212223
  1. /** @file
  2. This file defines TlsCaCertificate variable.
  3. Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef __TLS_AUTHENTICATION_H__
  7. #define __TLS_AUTHENTICATION_H__
  8. // Private variable for CA Certificate configuration
  9. //
  10. #define EFI_TLS_CA_CERTIFICATE_GUID \
  11. { \
  12. 0xfd2340D0, 0x3dab, 0x4349, { 0xa6, 0xc7, 0x3b, 0x4f, 0x12, 0xb4, 0x8e, 0xae } \
  13. }
  14. #define EFI_TLS_CA_CERTIFICATE_VARIABLE L"TlsCaCertificate"
  15. extern EFI_GUID gEfiTlsCaCertificateGuid;
  16. #endif