summaryrefslogtreecommitdiff
path: root/CryptoPkg/Application/Cryptest/Cryptest.c
diff options
context:
space:
mode:
Diffstat (limited to 'CryptoPkg/Application/Cryptest/Cryptest.c')
-rw-r--r--CryptoPkg/Application/Cryptest/Cryptest.c92
1 files changed, 0 insertions, 92 deletions
diff --git a/CryptoPkg/Application/Cryptest/Cryptest.c b/CryptoPkg/Application/Cryptest/Cryptest.c
deleted file mode 100644
index 79c1850e68..0000000000
--- a/CryptoPkg/Application/Cryptest/Cryptest.c
+++ /dev/null
@@ -1,92 +0,0 @@
-/** @file
- Application for Cryptographic Primitives Validation.
-
-Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
-This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#include "Cryptest.h"
-
-/**
- Entry Point of Cryptographic Validation Utility.
-
- @param ImageHandle The image handle of the UEFI Application.
- @param SystemTable A pointer to the EFI System Table.
-
- @retval EFI_SUCCESS The entry point is executed successfully.
- @retval other Some error occurs when executing this entry point.
-
-**/
-EFI_STATUS
-EFIAPI
-CryptestMain (
- IN EFI_HANDLE ImageHandle,
- IN EFI_SYSTEM_TABLE *SystemTable
- )
-{
- EFI_STATUS Status;
-
- Print (L"\nUEFI-OpenSSL Wrapper Cryptosystem Testing: \n");
- Print (L"-------------------------------------------- \n");
-
- RandomSeed (NULL, 0);
-
- Status = ValidateCryptDigest ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateCryptHmac ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateCryptBlockCipher ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateCryptRsa ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateCryptRsa2 ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateCryptPkcs7 ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateAuthenticode ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateTSCounterSignature ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateCryptDh ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- Status = ValidateCryptPrng ();
- if (EFI_ERROR (Status)) {
- return Status;
- }
-
- return EFI_SUCCESS;
-} \ No newline at end of file