2 MD4 Digest Wrapper Implementation which does not provide real capabilities.
4 Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #include "InternalCryptLib.h"
18 Retrieves the size, in bytes, of the context buffer required for MD4 hash
21 Return zero to indicate this interface is not supported.
23 @retval 0 This interface is not supported.
37 Initializes user-supplied memory pointed by Md4Context as MD4 hash context for
40 Return FALSE to indicate this interface is not supported.
42 @param[out] Md4Context Pointer to MD4 context being initialized.
44 @retval FALSE This interface is not supported.
58 Makes a copy of an existing MD4 context.
60 Return FALSE to indicate this interface is not supported.
62 @param[in] Md4Context Pointer to MD4 context being copied.
63 @param[out] NewMd4Context Pointer to new MD4 context.
65 @retval FALSE This interface is not supported.
71 IN CONST VOID
*Md4Context
,
72 OUT VOID
*NewMd4Context
80 Digests the input data and updates MD4 context.
82 Return FALSE to indicate this interface is not supported.
84 @param[in, out] Md4Context Pointer to the MD4 context.
85 @param[in] Data Pointer to the buffer containing the data to be hashed.
86 @param[in] DataSize Size of Data buffer in bytes.
88 @retval FALSE This interface is not supported.
94 IN OUT VOID
*Md4Context
,
104 Completes computation of the MD4 digest value.
106 Return FALSE to indicate this interface is not supported.
108 @param[in, out] Md4Context Pointer to the MD4 context.
109 @param[out] HashValue Pointer to a buffer that receives the MD4 digest
112 @retval FALSE This interface is not supported.
118 IN OUT VOID
*Md4Context
,