aboutsummaryrefslogtreecommitdiffstats
path: root/src/kdf/sslv3/prf_ssl3.h
blob: 951ccfe923e4ede5b6440ffff439c86c23f74619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*************************************************
* SSLv3 PRF Header File                          *
* (C) 1999-2007 Jack Lloyd                       *
*************************************************/

#ifndef BOTAN_SSLV3_PRF_H__
#define BOTAN_SSLV3_PRF_H__

#include <botan/pk_util.h>

namespace Botan {

/*************************************************
* SSL3 PRF                                       *
*************************************************/
class BOTAN_DLL SSL3_PRF : public KDF
   {
   public:
      SecureVector<byte> derive(u32bit, const byte[], u32bit,
                                const byte[], u32bit) const;
   };

}

#endif