Botan
2.19.3
Crypto and TLS for C&
src
lib
tls
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
14
namespace
Botan
{
15
16
namespace
TLS {
17
18
/**
19
* TLS Handshake Hash
20
*/
21
class
Handshake_Hash
final
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
(
Protocol_Version
version,
31
const
std::string& mac_algo)
const
;
32
33
const
std::vector<uint8_t>&
get_contents
()
const
{
return
m_data; }
34
35
void
reset
() { m_data.clear(); }
36
private
:
37
std::vector<uint8_t> m_data;
38
};
39
40
}
41
42
}
43
44
#endif
Botan::TLS::Handshake_Hash
Definition
tls_handshake_hash.h:22
Botan::TLS::Handshake_Hash::get_contents
const std::vector< uint8_t > & get_contents() const
Definition
tls_handshake_hash.h:33
Botan::TLS::Handshake_Hash::update
void update(const uint8_t in[], size_t length)
Definition
tls_handshake_hash.h:24
Botan::TLS::Handshake_Hash::reset
void reset()
Definition
tls_handshake_hash.h:35
Botan::TLS::Handshake_Hash::update
void update(const std::vector< uint8_t > &in)
Definition
tls_handshake_hash.h:27
Botan::TLS::Protocol_Version
Definition
tls_version.h:22
final
int(* final)(unsigned char *, CTX *)
Definition
commoncrypto_hash.cpp:29
Botan
Definition
alg_id.cpp:13
Botan::secure_vector
std::vector< T, secure_allocator< T > > secure_vector
Definition
secmem.h:65
Generated by
1.9.8