My Project
Loading...
Searching...
No Matches
compress.h
1
39WOLFSSL_API int wc_Compress(byte*, word32, const byte*, word32, word32);
40
72WOLFSSL_API int wc_DeCompress(byte*, word32, const byte*, word32);
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
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