/** * TLS Handshake Hash Source File * (C) 2004-2006 Jack Lloyd * * Released under the terms of the Botan license */ #ifndef BOTAN_HANDSHAKE_HASH__ #define BOTAN_HANDSHAKE_HASH__ #include namespace Botan { using namespace Botan; /** * TLS Handshake Hash */ class BOTAN_DLL HandshakeHash { public: void update(const byte in[], u32bit length) { data.append(in, length); } void update(const MemoryRegion& in) { update(in.begin(), in.size()); } void update(byte in) { update(&in, 1); } SecureVector final(); SecureVector final_ssl3(const MemoryRegion&); private: SecureVector data; }; } #endif