24 lines
828 B
C
24 lines
828 B
C
/** @file
|
|
Defination GUID of H2O hash algorithm guid
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2017, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef __H2O_HASH_ALGORITHM_GUID__
|
|
#define __H2O_HASH_ALGORITHM_GUID__
|
|
|
|
#define H2O_HASH_ALGORITHM_SM3_GUID \
|
|
{ 0x81C2649A, 0x9577, 0x46B5, { 0x93, 0xB3, 0x94, 0x7E, 0x2A, 0x20, 0x7D, 0x78 }}
|
|
|
|
extern EFI_GUID gH2OHashAlgorithmSm3Guid;
|
|
|
|
#endif
|