blob: 8a142c192631bdc916dee2107a46f2ac3c2e08fe (
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
47
48
49
50
51
|
/*
* Lzma Compressor
* (C) 2001 Peter J Jones
* 2001-2007 Jack Lloyd
* 2012 Vojtech Kral
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_LZMA_H__
#define BOTAN_LZMA_H__
#include <botan/compression.h>
namespace Botan {
/**
* LZMA Compression
*/
class BOTAN_DLL LZMA_Compression : public Stream_Compression
{
public:
/**
* @param level how much effort to use on compressing (0 to 9);
* higher levels are slower but tend to give better
* compression
*/
LZMA_Compression(size_t level = 6) : m_level(level) {}
std::string name() const override { return "LZMA_Compression"; }
private:
Compression_Stream* make_stream() const;
const size_t m_level;
};
/**
* LZMA Deccompression
*/
class BOTAN_DLL LZMA_Decompression : public Stream_Decompression
{
public:
std::string name() const override { return "LZMA_Decompression"; }
private:
Compression_Stream* make_stream() const;
};
}
#endif
|