summaryrefslogtreecommitdiffstats
path: root/old/botan/src/kdf/ssl_prf/prf_ssl3.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/src/kdf/ssl_prf/prf_ssl3.h')
-rw-r--r--old/botan/src/kdf/ssl_prf/prf_ssl3.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/old/botan/src/kdf/ssl_prf/prf_ssl3.h b/old/botan/src/kdf/ssl_prf/prf_ssl3.h
new file mode 100644
index 0000000..165fc7c
--- /dev/null
+++ b/old/botan/src/kdf/ssl_prf/prf_ssl3.h
@@ -0,0 +1,27 @@
+/*
+* 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 <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