You've already forked slimbootloader
mirror of
https://github.com/Dasharo/slimbootloader.git
synced 2026-03-06 15:26:20 -08:00
26 lines
409 B
C
26 lines
409 B
C
/** @file
|
|
|
|
Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
#ifndef _IPP_CRYPTO_PERF_LIB_H_
|
|
#define _IPP_CRYPTO_PERF_LIB_H_
|
|
|
|
#include <Library/CryptoLib.h>
|
|
|
|
/* function to Measure crypto performance data */
|
|
VOID
|
|
EFIAPI
|
|
CryptoPerfTest (
|
|
);
|
|
|
|
/* function to print performance data */
|
|
VOID
|
|
EFIAPI
|
|
CryptoPerfTestPrintResult (
|
|
);
|
|
|
|
#endif
|