Botan 3.0.0-alpha0
Crypto and TLS for C&
tls_handshake_hash.h
Go to the documentation of this file.
1/*
2* TLS Handshake Hash
3* (C) 2004-2006,2011,2012 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#ifndef BOTAN_TLS_HANDSHAKE_HASH_H_
9#define BOTAN_TLS_HANDSHAKE_HASH_H_
10
11#include <botan/secmem.h>
12#include <botan/tls_version.h>
13
14namespace Botan {
15
16namespace TLS {
17
18/**
19* TLS Handshake Hash
20*/
22 {
23 public:
24 void update(const uint8_t in[], size_t length)
25 { m_data += std::make_pair(in, length); }
26
27 void update(const std::vector<uint8_t>& in)
28 { m_data += in; }
29
30 secure_vector<uint8_t> final(const std::string& mac_algo) const;
31
32 const std::vector<uint8_t>& get_contents() const { return m_data; }
33
34 void reset() { m_data.clear(); }
35 private:
36 std::vector<uint8_t> m_data;
37 };
38
39}
40
41}
42
43#endif
const std::vector< uint8_t > & get_contents() const
void update(const uint8_t in[], size_t length)
void update(const std::vector< uint8_t > &in)
int(* final)(unsigned char *, CTX *)
Definition: alg_id.cpp:13
std::vector< T, secure_allocator< T > > secure_vector
Definition: secmem.h:65