/* * 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 namespace Botan { using namespace Botan; /** * TLS Handshake Hash */ class BOTAN_DLL HandshakeHash { public: void update(const byte in[], u32bit length) { data += std::make_pair(in, length); } void update(const MemoryRegion& in) { data += in; } void update(byte in) { data.push_back(in); } SecureVector final(); SecureVector final_ssl3(const MemoryRegion&); private: SecureVector data; }; } #endif