aboutsummaryrefslogtreecommitdiff
path: root/CPP/7zip/Crypto/HmacSha256.h
blob: 4039c0cedaf4d45aa79555ec97e54fd0632718c7 (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
// HmacSha256.h
// Implements HMAC-SHA-256 (RFC2104, FIPS-198)

#ifndef ZIP7_INC_CRYPTO_HMAC_SHA256_H
#define ZIP7_INC_CRYPTO_HMAC_SHA256_H

#include "../../../C/Sha256.h"

namespace NCrypto {
namespace NSha256 {

const unsigned kBlockSize = SHA256_BLOCK_SIZE;
const unsigned kDigestSize = SHA256_DIGEST_SIZE;

class CHmac
{
  CSha256 _sha;
  CSha256 _sha2;
public:
  void SetKey(const Byte *key, size_t keySize);
  void Update(const Byte *data, size_t dataSize) { Sha256_Update(&_sha, data, dataSize); }
  void Final(Byte *mac);
};

}}

#endif