aboutsummaryrefslogtreecommitdiff
path: root/crates/rsli/src/compress/lzh.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat: обновить методы обработки данных и ↵Valentin Popov24 hours1-15/+15
| | | | улучшить обработку ошибок в библиотеке
* fix: обработка выхода за пределы индекса ↵Valentin Popov3 days1-19/+25
| | | | сортировки в архиве и улучшение декодирования LZSS с поддержкой XOR
* Implement LZSS decompression with optional XOR decryptionValentin Popov3 days1-0/+292
- Added `lzss_decompress_simple` function for LZSS decompression in `lzss.rs`. - Introduced `XorState` struct and `xor_stream` function for XOR decryption in `xor.rs`. - Updated `mod.rs` to include new LZSS and XOR modules. - Refactored `parse_library` function in `parse.rs` to utilize the new XOR decryption functionality. - Cleaned up and organized code in `lib.rs` by removing redundant functions and structures. - Added tests for new functionality in `tests.rs`.