aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl/tls_handshake_hash.h
blob: ceaa555848b09ee04b3b5b95c86a8878dd03a89a (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
31
32
33
34
35
36
37
38
39
40
/*
* TLS Handshake Hash
* (C) 2004-2006 Jack Lloyd
*
* Released under the terms of the Botan license
*/

#ifndef BOTAN_TLS_HANDSHAKE_HASH_H__
#define BOTAN_TLS_HANDSHAKE_HASH_H__

#include <botan/secmem.h>

namespace Botan {

using namespace Botan;

/**
* TLS Handshake Hash
*/
class BOTAN_DLL HandshakeHash
   {
   public:
      void update(const byte in[], size_t length)
         { data += std::make_pair(in, length); }

      void update(const MemoryRegion<byte>& in)
         { data += in; }

      void update(byte in)
         { data.push_back(in); }

      SecureVector<byte> final();
      SecureVector<byte> final_ssl3(const MemoryRegion<byte>&);
   private:
      SecureVector<byte> data;
   };

}

#endif