Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Sha256.h « Hash « Crypto « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4788f416d0654e87f5f75b76931bb08cf80e25d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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