mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 08:07:12 -06:00
4.44 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
804edc5756
commit
d9666cf046
30
CPP/7zip/Crypto/Hash/Sha256.h
Executable file
30
CPP/7zip/Crypto/Hash/Sha256.h
Executable file
@@ -0,0 +1,30 @@
|
||||
// Crypto/Sha256.h
|
||||
|
||||
#ifndef __CRYPTO_SHA256_H
|
||||
#define __CRYPTO_SHA256_H
|
||||
|
||||
#include "Common/Types.h"
|
||||
|
||||
namespace NCrypto {
|
||||
namespace NSha256 {
|
||||
|
||||
class CContext
|
||||
{
|
||||
static const UInt32 K[64];
|
||||
|
||||
UInt32 _state[8];
|
||||
UInt64 _count;
|
||||
Byte _buffer[64];
|
||||
static void Transform(UInt32 *digest, const UInt32 *data);
|
||||
void WriteByteBlock();
|
||||
public:
|
||||
enum {DIGESTSIZE = 32};
|
||||
CContext() { Init(); } ;
|
||||
void Init();
|
||||
void Update(const Byte *data, size_t size);
|
||||
void Final(Byte *digest);
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user