hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/** @file
  This PPI provides Crypto services to PEIMs
 
  Copyright (C) Microsoft Corporation. All rights reserved.
  SPDX-License-Identifier: BSD-2-Clause-Patent
 
**/
 
#ifndef __EDKII_CRYPTO_PPI_H__
#define __EDKII_CRYPTO_PPI_H__
 
#include <Protocol/Crypto.h>
 
///
/// EDK II Crypto PPI is identical to EDK II Crypto Protocol
///
typedef EDKII_CRYPTO_PROTOCOL EDKII_CRYPTO_PPI;
 
extern GUID gEdkiiCryptoPpiGuid;
 
#endif