blob: 9cdf603ab1b25d895659f6c81fa201d3ab6d9518 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*************************************************
* DataSink Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_DATA_SINK_H__
#define BOTAN_DATA_SINK_H__
#include <botan/filter.h>
#include <iosfwd>
namespace Botan {
/*************************************************
* Generic DataSink Interface *
*************************************************/
class DataSink : public Filter
{
public:
bool attachable() { return false; }
DataSink() {}
virtual ~DataSink() {}
private:
DataSink& operator=(const DataSink&) { return (*this); }
DataSink(const DataSink&);
};
/*************************************************
* Stream-Based DataSink *
*************************************************/
class DataSink_Stream : public DataSink
{
public:
void write(const byte[], u32bit);
DataSink_Stream(std::ostream&);
DataSink_Stream(const std::string&, bool = false);
~DataSink_Stream();
private:
const std::string fsname;
std::ostream* sink;
bool owns;
};
}
#endif
|