mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
19 lines
536 B
C
19 lines
536 B
C
|
/**
|
||
|
* Author......: See docs/credits.txt
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#ifndef _EXT_LZMA_H
|
||
|
|
||
|
#include "lzma_sdk/Alloc.h"
|
||
|
#include "lzma_sdk/LzmaDec.h"
|
||
|
#include "lzma_sdk/Lzma2Dec.h"
|
||
|
|
||
|
int hc_lzma1_decompress (const unsigned char *in, SizeT *in_len, unsigned char *out, SizeT *out_len, const char *props);
|
||
|
int hc_lzma2_decompress (const unsigned char *in, SizeT *in_len, unsigned char *out, SizeT *out_len, const char *props);
|
||
|
|
||
|
void *hc_lzma_alloc (void *p, size_t size);
|
||
|
void hc_lzma_free (void *p, void *address);
|
||
|
|
||
|
#endif // _EXT_LZMA_H
|