/* * SSLv3 PRF * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #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: SecureVector derive(u32bit, const byte[], u32bit, const byte[], u32bit) const; }; } #endif