X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=CryptoPkg%2FApplication%2FCryptest%2FDhVerify.c;h=6384a8a697c9b331b678a6e64c0ec98c3b3ab50a;hp=455d85b6d2e7c643b75a7af075d4cc74d90bd75e;hb=5b7c22450591a9e20ff54b970c11087ccfff563d;hpb=a8c4464502aabcbda7032daddc772a1bc7386bdf diff --git a/CryptoPkg/Application/Cryptest/DhVerify.c b/CryptoPkg/Application/Cryptest/DhVerify.c index 455d85b6d2..6384a8a697 100644 --- a/CryptoPkg/Application/Cryptest/DhVerify.c +++ b/CryptoPkg/Application/Cryptest/DhVerify.c @@ -1,7 +1,7 @@ -/** @file +/** @file Application for Diffie-Hellman Primitives Validation. -Copyright (c) 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.
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 @@ -41,6 +41,14 @@ ValidateCryptDh ( Print (L"\nUEFI-OpenSSL DH Engine Testing:\n"); + // + // Initialize Key Length + // + PublicKey1Length = sizeof (PublicKey1); + PublicKey2Length = sizeof (PublicKey2); + Key1Length = sizeof (Key1); + Key2Length = sizeof (Key2); + // // Generate & Initialize DH Context // @@ -114,4 +122,4 @@ ValidateCryptDh ( Print (L"[Pass]\n"); return EFI_SUCCESS; -} +} \ No newline at end of file