blob: 97cc8f933b4e54ead9816a2a9096bd20e92aeac6 (
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
|
/*************************************************
* SecureQueue Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_SECURE_QUEUE_H__
#define BOTAN_SECURE_QUEUE_H__
#include <botan/data_src.h>
#include <botan/filter.h>
namespace Botan {
/*************************************************
* SecureQueue *
*************************************************/
class SecureQueue : public Fanout_Filter, public DataSource
{
public:
void write(const byte[], u32bit);
u32bit read(byte[], u32bit);
u32bit peek(byte[], u32bit, u32bit = 0) const;
bool end_of_data() const;
u32bit size() const;
bool attachable() { return false; }
SecureQueue& operator=(const SecureQueue&);
SecureQueue();
SecureQueue(const SecureQueue&);
~SecureQueue() { destroy(); }
private:
void destroy();
class SecureQueueNode* head;
class SecureQueueNode* tail;
};
}
#endif
|