zlib.h

来自「含有多种公开密钥算法、多种块加密、多种数据流加密、多种HASH函数、多种Chec」· C头文件 代码 · 共 56 行

H
56
字号
/************************************************** Zlib Compressor Header File                    ** (C) 1999-2002 The Botan Project                **************************************************/#include <botan/filter.h>#ifndef BOTAN_EXT_ZLIB_H__#define BOTAN_EXT_ZLIB_H__namespace Botan {class Zlib_Compression : public Filter   {   public:      void write(const byte input[], u32bit length);      void start_msg();      void end_msg();      void flush();      Zlib_Compression(u32bit l = 6) : level((l >= 9) ? 9 : l) { zlib = 0; }      ~Zlib_Compression() { clear(); }   private:      static const u32bit BUFFERSIZE = DEFAULT_BUFFERSIZE;      void clear();      const u32bit level;      SecureBuffer<byte, BUFFERSIZE> buffer;      struct zlib_stream_wrapper* zlib;   };class Zlib_Decompression : public Filter   {   public:      void write(const byte input[], u32bit length);      void start_msg();      void end_msg();      Zlib_Decompression() { zlib = 0; no_writes = true; }      ~Zlib_Decompression() { clear(); }   private:      static const u32bit BUFFERSIZE = DEFAULT_BUFFERSIZE;      void clear();      SecureBuffer<byte, BUFFERSIZE> buffer;      struct zlib_stream_wrapper* zlib;      bool no_writes;   };// DEPRECATED ALIASEStypedef Zlib_Compression Zlib_Compress;typedef Zlib_Decompression Zlib_Decompress;}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?