mirror of https://github.com/acidanthera/audk.git
CryptoPkg/OpensslLib: Fix few typos
Fix few typos in comments. Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Xiaoyu Lu <xiaoyux.lu@intel.com> Signed-off-by: Antoine Coeur <coeur@gmx.fr> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Jian J Wang <jian.j.wang@intel.com> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com> Message-Id: <20200207010831.9046-2-philmd@redhat.com>
This commit is contained in:
parent
4b026f0d5a
commit
7aa8af4576
|
@ -129,7 +129,7 @@ RandGetSeed128 (
|
||||||
AES_KEY AESKey;
|
AES_KEY AESKey;
|
||||||
|
|
||||||
//
|
//
|
||||||
// Chose an arbitary key and zero the feed_forward_value (FFV)
|
// Chose an arbitrary key and zero the feed_forward_value (FFV)
|
||||||
//
|
//
|
||||||
for (Index = 0; Index < 16; Index++) {
|
for (Index = 0; Index < 16; Index++) {
|
||||||
Key[Index] = (UINT8) Index;
|
Key[Index] = (UINT8) Index;
|
||||||
|
@ -287,7 +287,7 @@ int rand_pool_add_additional_data(RAND_POOL *pool)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Dummy Implememtation for UEFI
|
* Dummy Implementation for UEFI
|
||||||
*
|
*
|
||||||
* This is OpenSSL required interface.
|
* This is OpenSSL required interface.
|
||||||
*/
|
*/
|
||||||
|
@ -297,7 +297,7 @@ int rand_pool_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Dummy Implememtation for UEFI
|
* Dummy Implementation for UEFI
|
||||||
*
|
*
|
||||||
* This is OpenSSL required interface.
|
* This is OpenSSL required interface.
|
||||||
*/
|
*/
|
||||||
|
@ -306,7 +306,7 @@ void rand_pool_cleanup(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Dummy Implememtation for UEFI
|
* Dummy Implementation for UEFI
|
||||||
*
|
*
|
||||||
* This is OpenSSL required interface.
|
* This is OpenSSL required interface.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@ GetRandomNoise64 (
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Return FALSE will fallback to use PerformaceCounter to
|
// Return FALSE will fallback to use PerformanceCounter to
|
||||||
// generate noise.
|
// generate noise.
|
||||||
//
|
//
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in New Issue