summaryrefslogtreecommitdiff
path: root/libarchive/archive_blake2sp_ref.c
Commit message (Collapse)AuthorAgeFilesLines
* windows: include archive_platform.h first in blake2s sourcesBrad King2022-02-161-1/+2
| | | | | | | | Move the inclusion added by commit 90978db1 (windows: make sure we use the right calling convention for libc, 2021-10-13, v3.6.0~39^2~1) to be first. This is our convention in all other `.c` sources. It ensures that our configured `_WIN32_WINNT` value is defined before including any system headers.
* windows: make sure we use the right calling convention for libcDustin Howett2021-11-201-0/+1
|
* Remove windows warningsArnadu Botella2019-02-031-3/+3
|
* Added support for extraction of RAR v5 archivesGrzegorz Antoniak2018-09-251-0/+359
This is an initial implementation of a stream-oriented unpacker. Things that should work: - Extraction of any compression level (stored or compressed), file enumeration, skipping through files, - Support for any dictionary sizes, - CRC32 and BLAKE2sp checksums, - Solid archives, - Multi-volume archives (part001, part002, etc), - Solid multi-volume archives, - DELTA, x86 and ARM filter support: other filters are not used in version 5 of the format. Things that are missing from this implementation: - Encryption support, - NTFS ACL permission settings, - Parsing the Reed-Solomon recovery record.