/* * SSLv3 PRF * (C) 1999-2007 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_SSLV3_PRF_H__ #define BOTAN_SSLV3_PRF_H__ #include namespace Botan { /** * PRF used in SSLv3 */ class BOTAN_DLL SSL3_PRF : public KDF { public: secure_vector derive(size_t, const byte[], size_t, const byte[], size_t) const; std::string name() const { return "SSL3-PRF"; } KDF* clone() const { return new SSL3_PRF; } }; } #endif