mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
f61e14f554
- For NT6.0+, NTDLL exports those hash APIs that ADVAPI32 thunks forward to - Fix undocumented context structure layout and content - Add apitests to verify both of hash result and structure content
31 lines
435 B
C
31 lines
435 B
C
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#include <ntdef.h>
|
|
|
|
/* SHA Context Structure Declaration */
|
|
typedef struct
|
|
{
|
|
UCHAR Buffer[64];
|
|
ULONG State[5];
|
|
ULONG Count[2];
|
|
} SHA_CTX, *PSHA_CTX;
|
|
|
|
VOID NTAPI
|
|
A_SHAInit(PSHA_CTX Context);
|
|
|
|
VOID NTAPI
|
|
A_SHAUpdate(PSHA_CTX Context, const unsigned char *Buffer, ULONG BufferSize);
|
|
|
|
VOID NTAPI
|
|
A_SHAFinal(PSHA_CTX Context, PULONG Result);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|