Vishal Bhoj | 82c8071 | 2015-12-15 21:13:33 +0530 | [diff] [blame^] | 1 | ## @file
|
| 2 | # Shell application that will test the crypto library.
|
| 3 | #
|
| 4 | # UEFI Application for the Validation of cryptography library (based on OpenSSL 0.9.8zb).
|
| 5 | #
|
| 6 | # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
|
| 7 | # This program and the accompanying materials
|
| 8 | # are licensed and made available under the terms and conditions of the BSD License
|
| 9 | # which accompanies this distribution. The full text of the license may be found at
|
| 10 | # http://opensource.org/licenses/bsd-license.php
|
| 11 | #
|
| 12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 14 | #
|
| 15 | ##
|
| 16 |
|
| 17 | [Defines]
|
| 18 | INF_VERSION = 0x00010005
|
| 19 | BASE_NAME = Cryptest
|
| 20 | MODULE_UNI_FILE = Cryptest.uni
|
| 21 | FILE_GUID = fb925ac7-192a-9567-8586-7c6f5f710607
|
| 22 | MODULE_TYPE = UEFI_APPLICATION
|
| 23 | VERSION_STRING = 1.0
|
| 24 | ENTRY_POINT = CryptestMain
|
| 25 |
|
| 26 | #
|
| 27 | # The following information is for reference only and not required by the build tools.
|
| 28 | #
|
| 29 | # VALID_ARCHITECTURES = IA32 X64 IPF
|
| 30 | #
|
| 31 |
|
| 32 | [Sources]
|
| 33 | Cryptest.h
|
| 34 | Cryptest.c
|
| 35 | HashVerify.c
|
| 36 | HmacVerify.c
|
| 37 | BlockCipherVerify.c
|
| 38 | RsaVerify.c
|
| 39 | RsaVerify2.c
|
| 40 | AuthenticodeVerify.c
|
| 41 | TSVerify.c
|
| 42 | DhVerify.c
|
| 43 | RandVerify.c
|
| 44 |
|
| 45 | [Packages]
|
| 46 | MdePkg/MdePkg.dec
|
| 47 | CryptoPkg/CryptoPkg.dec
|
| 48 |
|
| 49 | [LibraryClasses]
|
| 50 | UefiApplicationEntryPoint
|
| 51 | UefiLib
|
| 52 | BaseLib
|
| 53 | UefiBootServicesTableLib
|
| 54 | BaseMemoryLib
|
| 55 | DebugLib
|
| 56 | MemoryAllocationLib
|
| 57 | BaseCryptLib
|
| 58 |
|
| 59 | [UserExtensions.TianoCore."ExtraFiles"]
|
| 60 | CryptestExtra.uni
|
| 61 |
|