mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
333 B
17 lines
333 B
#ifndef _RAR_SHA256_
|
|
#define _RAR_SHA256_
|
|
|
|
#define SHA256_DIGEST_SIZE 32
|
|
|
|
typedef struct
|
|
{
|
|
uint32 H[8];
|
|
uint64 Count;
|
|
byte Buffer[64];
|
|
} sha256_context;
|
|
|
|
void sha256_init(sha256_context *ctx);
|
|
void sha256_process(sha256_context *ctx, const void *Data, size_t Size);
|
|
void sha256_done(sha256_context *ctx, byte *Digest);
|
|
|
|
#endif
|
|
|