]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Efi/Protocol/Hash/Hash.c
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Efi / Protocol / Hash / Hash.c
CommitLineData
3eb9473e 1/*++\r
2\r
f57387d5
HT
3 Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>\r
4 This program and the accompanying materials \r
3eb9473e 5 are licensed and made available under the terms and conditions of the BSD License \r
6 which accompanies this distribution. The full text of the license may be found at \r
7 http://opensource.org/licenses/bsd-license.php \r
8\r
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 Hash.c\r
15 \r
16Abstract: \r
17 EFI_HASH_SERVICE_BINDING_PROTOCOL as defined in UEFI 2.0.\r
18 EFI_HASH_PROTOCOL as defined in UEFI 2.0.\r
19 The EFI Hash Service Binding Protocol is used to locate hashing services support \r
20 provided by a driver and create and destroy instances of the EFI Hash Protocol \r
21 so that a multiple drivers can use the underlying hashing services.\r
22 The EFI Service Binding Protocol defines the generic Service Binding Protocol functions.\r
23\r
24Revision History\r
25--*/\r
26\r
27#include "EfiSpec.h"\r
28#include EFI_PROTOCOL_DEFINITION (Hash)\r
29\r
30EFI_GUID gEfiHashServiceBindingProtocolGuid = EFI_HASH_SERVICE_BINDING_PROTOCOL;\r
31EFI_GUID gEfiHashProtocolGuid = EFI_HASH_PROTOCOL_GUID;\r
32EFI_GUID gEfiHashAlgorithmSha1Guid = EFI_HASH_ALGORITHM_SHA1_GUID;\r
33EFI_GUID gEfiHashAlgorithmSha224Guid = EFI_HASH_ALGORITHM_SHA224_GUID;\r
34EFI_GUID gEfiHashAlgorithmSha256Guid = EFI_HASH_ALGORITHM_SHA256_GUID;\r
35EFI_GUID gEfiHashAlgorithmSha384Guid = EFI_HASH_ALGORITHM_SHA384_GUID;\r
36EFI_GUID gEfiHashAlgorithmSha512Guid = EFI_HASH_ALGORITHM_SHA512_GUID;\r
37EFI_GUID gEfiHashAlgorithmMD5Guid = EFI_HASH_ALGORTIHM_MD5_GUID;\r
38\r
39EFI_GUID_STRING(&gEfiHashProtocolGuid, "Hash protoco", "UEFI 2.0 Hash protocol");\r
40EFI_GUID_STRING(&gEfiHashServiceBindingProtocolGuid, "Hash service binding protoco", "UEFI 2.0 Hash service binding protocol");\r