aboutsummaryrefslogtreecommitdiffstats
path: root/src/kdf/ssl_prf/prf_ssl3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kdf/ssl_prf/prf_ssl3.h')
-rw-r--r--src/kdf/ssl_prf/prf_ssl3.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/kdf/ssl_prf/prf_ssl3.h b/src/kdf/ssl_prf/prf_ssl3.h
new file mode 100644
index 000000000..b8f498832
--- /dev/null
+++ b/src/kdf/ssl_prf/prf_ssl3.h
@@ -0,0 +1,25 @@
+/*************************************************
+* SSLv3 PRF Header File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_SSLV3_PRF_H__
+#define BOTAN_SSLV3_PRF_H__
+
+#include <botan/kdf.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