blob: ae3a8825f4a92fa71410dd3f94abf1dca973c1fa (
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
|
/*************************************************
* Pipe I/O Source File *
* (C) 1999-2006 The Botan Project *
*************************************************/
#include <botan/pipe.h>
#include <iostream>
namespace Botan {
/*************************************************
* Write data from a pipe into an ostream *
*************************************************/
std::ostream& operator<<(std::ostream& stream, Pipe& pipe)
{
SecureVector<byte> buffer(DEFAULT_BUFFERSIZE);
while(stream.good() && pipe.remaining())
{
u32bit got = pipe.read(buffer, buffer.size());
stream.write((const char*)buffer.begin(), got);
}
if(!stream.good())
throw Stream_IO_Error("Pipe output operator (iostream) has failed");
return stream;
}
/*************************************************
* Read data from an istream into a pipe *
*************************************************/
std::istream& operator>>(std::istream& stream, Pipe& pipe)
{
SecureVector<byte> buffer(DEFAULT_BUFFERSIZE);
while(stream.good())
{
stream.read((char*)buffer.begin(), buffer.size());
pipe.write(buffer, stream.gcount());
}
if(stream.bad() || (stream.fail() && !stream.eof()))
throw Stream_IO_Error("Pipe input operator (iostream) has failed");
return stream;
}
}
|