diff options
Diffstat (limited to 'CryptoPkg/Library/BaseCryptLibNull/Hash/CryptMd5Null.c')
-rw-r--r-- | CryptoPkg/Library/BaseCryptLibNull/Hash/CryptMd5Null.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/CryptoPkg/Library/BaseCryptLibNull/Hash/CryptMd5Null.c b/CryptoPkg/Library/BaseCryptLibNull/Hash/CryptMd5Null.c index 34c539fe3a..893a2302a6 100644 --- a/CryptoPkg/Library/BaseCryptLibNull/Hash/CryptMd5Null.c +++ b/CryptoPkg/Library/BaseCryptLibNull/Hash/CryptMd5Null.c @@ -9,7 +9,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent #include "InternalCryptLib.h"
-
/**
Retrieves the size, in bytes, of the context buffer required for MD5 hash operations.
@@ -26,7 +25,6 @@ Md5GetContextSize ( return 0;
}
-
/**
Initializes user-supplied memory pointed by Md5Context as MD5 hash context for
subsequent use.
@@ -154,12 +152,12 @@ value (16 bytes). **/
BOOLEAN
EFIAPI
-Md5HashAll(
+Md5HashAll (
IN CONST VOID *Data,
IN UINTN DataSize,
OUT UINT8 *HashValue
-)
+ )
{
- ASSERT(FALSE);
+ ASSERT (FALSE);
return FALSE;
}
|