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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
/*
* Compression Transform
* (C) 2014 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_COMPRESSION_TRANSFORM_H__
#define BOTAN_COMPRESSION_TRANSFORM_H__
#include <botan/secmem.h>
#include <botan/scan_name.h>
namespace Botan {
class BOTAN_DLL Compression_Algorithm
{
public:
typedef SCAN_Name Spec;
/**
* Begin compressing. Most compression algorithms offer a tunable
* time/compression tradeoff parameter generally represented by
* an integer in the range of 1 to 9.
*
* If 0 or a value out of range is provided, a compression algorithm
* specific default is used.
*/
virtual void start(size_t comp_level = 0) = 0;
/**
* Process some data. Input must be in size update_granularity() byte blocks.
* @param blocks in/out parameter which will possibly be resized or swapped
* @param offset an offset into blocks to begin processing
* @param flush if true the compressor will be told to flush state
*/
virtual void update(secure_vector<byte>& buf, size_t offset = 0, bool flush = false) = 0;
/**
* Finish compressing
*
* @param final_block in/out parameter
* @param offset an offset into final_block to begin processing
*/
virtual void finish(secure_vector<byte>& final_block, size_t offset = 0) = 0;
virtual std::string name() const = 0;
/**
* Reset the state and abort the current message; start can be
* called again to process a new message.
*/
virtual void clear() = 0;
virtual ~Compression_Algorithm() {}
};
class BOTAN_DLL Decompression_Algorithm
{
public:
typedef SCAN_Name Spec;
/**
* Decompression does not support levels
*/
virtual void start() = 0;
virtual void update(secure_vector<byte>& buf, size_t offset = 0) = 0;
virtual void finish(secure_vector<byte>& final_block, size_t offset = 0) = 0;
virtual std::string name() const = 0;
virtual void clear() = 0;
virtual ~Decompression_Algorithm() {}
};
BOTAN_DLL Compression_Algorithm* make_compressor(const std::string& type);
BOTAN_DLL Decompression_Algorithm* make_decompressor(const std::string& type);
class Compression_Stream
{
public:
virtual ~Compression_Stream() {}
virtual void next_in(byte* b, size_t len) = 0;
virtual void next_out(byte* b, size_t len) = 0;
virtual size_t avail_in() const = 0;
virtual size_t avail_out() const = 0;
virtual u32bit run_flag() const = 0;
virtual u32bit flush_flag() const = 0;
virtual u32bit finish_flag() const = 0;
virtual bool run(u32bit flags) = 0;
};
class Stream_Compression : public Compression_Algorithm
{
public:
void update(secure_vector<byte>& buf, size_t offset, bool flush) final override;
void finish(secure_vector<byte>& buf, size_t offset) final override;
void clear() final override;
private:
void start(size_t level) final override;
void process(secure_vector<byte>& buf, size_t offset, u32bit flags);
virtual Compression_Stream* make_stream(size_t level) const = 0;
secure_vector<byte> m_buffer;
std::unique_ptr<Compression_Stream> m_stream;
};
class Stream_Decompression : public Decompression_Algorithm
{
public:
void update(secure_vector<byte>& buf, size_t offset) final override;
void finish(secure_vector<byte>& buf, size_t offset) final override;
void clear() final override;
private:
void start() final override;
void process(secure_vector<byte>& buf, size_t offset, u32bit flags);
virtual Compression_Stream* make_stream() const = 0;
secure_vector<byte> m_buffer;
std::unique_ptr<Compression_Stream> m_stream;
};
}
#endif
|