diff options
author | lloyd <[email protected]> | 2009-11-17 07:19:37 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-17 07:19:37 +0000 |
commit | e00b46cf9c1dcb364ebb7d5968d6ff9dcd600c4e (patch) | |
tree | 8ffb8d032f06bbcb7ab376c7469751a25b556dca /src/codec/zlib/zlib.h | |
parent | a98a9ff5f95bd4dca9c1eda11e27e712c869cd66 (diff) |
Move most code that relies heavily on Filters into src/filters.
Remove support for (unused) modset settings.
Move tss, fpe, cryptobox, and aont to new dir constructs
Diffstat (limited to 'src/codec/zlib/zlib.h')
-rw-r--r-- | src/codec/zlib/zlib.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/src/codec/zlib/zlib.h b/src/codec/zlib/zlib.h deleted file mode 100644 index 4a7f3bc80..000000000 --- a/src/codec/zlib/zlib.h +++ /dev/null @@ -1,58 +0,0 @@ -/* -* Zlib Compressor -* (C) 2001 Peter J Jones -* 2001-2007 Jack Lloyd -* -* Distributed under the terms of the Botan license -*/ - -#ifndef BOTAN_ZLIB_H__ -#define BOTAN_ZLIB_H__ - -#include <botan/filter.h> - -namespace Botan { - -/* -* Zlib Compression Filter -*/ -class BOTAN_DLL Zlib_Compression : public Filter - { - public: - void write(const byte input[], u32bit length); - void start_msg(); - void end_msg(); - - void flush(); - - Zlib_Compression(u32bit = 6); - ~Zlib_Compression() { clear(); } - private: - void clear(); - const u32bit level; - SecureVector<byte> buffer; - class Zlib_Stream* zlib; - }; - -/* -* Zlib Decompression Filter -*/ -class BOTAN_DLL Zlib_Decompression : public Filter - { - public: - void write(const byte input[], u32bit length); - void start_msg(); - void end_msg(); - - Zlib_Decompression(); - ~Zlib_Decompression() { clear(); } - private: - void clear(); - SecureVector<byte> buffer; - class Zlib_Stream* zlib; - bool no_writes; - }; - -} - -#endif |