compress.h
1 
39 WOLFSSL_API int wc_Compress(byte*, word32, const byte*, word32, word32);
40 
72 WOLFSSL_API int wc_DeCompress(byte*, word32, const byte*, word32);
WOLFSSL_API int wc_Compress(byte *, word32, const byte *, word32, word32)
This function compresses the given input data using Huffman coding and stores the output in out...
Definition: compress.c:125
WOLFSSL_API int wc_DeCompress(byte *, word32, const byte *, word32)
This function decompresses the given compressed data using Huffman coding and stores the output in ou...
Definition: compress.c:191