Home | History | Annotate | Download | only in Guid
      1 /** @file
      2   This file defines TlsCaCertificate variable.
      3 
      4 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
      5 This program and the accompanying materials are licensed and made available under
      6 the terms and conditions of the BSD License that accompanies this distribution.
      7 The full text of the license may be found at
      8 http://opensource.org/licenses/bsd-license.php.
      9 
     10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     12 
     13 **/
     14 
     15 #ifndef __TLS_AUTHENTICATION_H__
     16 #define __TLS_AUTHENTICATION_H__
     17 
     18 // Private variable for CA Certificate configuration
     19 //
     20 #define EFI_TLS_CA_CERTIFICATE_GUID \
     21   { \
     22     0xfd2340D0, 0x3dab, 0x4349, { 0xa6, 0xc7, 0x3b, 0x4f, 0x12, 0xb4, 0x8e, 0xae } \
     23   }
     24 
     25 #define EFI_TLS_CA_CERTIFICATE_VARIABLE       L"TlsCaCertificate"
     26 
     27 extern EFI_GUID gEfiTlsCaCertificateGuid;
     28 
     29 #endif
     30