Files
easy7zip/7zip/Crypto/7zAES/SHA256.h
Igor Pavlov 02516d3fce 4.33 beta
2016-05-28 00:15:46 +01:00

31 lines
495 B
C++
Executable File

// Crypto/SHA256.h
#ifndef __CRYPTO_SHA256_H
#define __CRYPTO_SHA256_H
#include "Common/Types.h"
namespace NCrypto {
namespace NSHA256 {
class SHA256
{
static const UInt32 K[64];
UInt32 m_digest[8];
UInt64 m_count;
Byte _buffer[64];
static void Transform(UInt32 *digest, const UInt32 *data);
void WriteByteBlock();
public:
enum {DIGESTSIZE = 32};
SHA256() { Init(); } ;
void Init();
void Update(const Byte *data, size_t size);
void Final(Byte *digest);
};
}}
#endif