├── .config └── dotnet-tools.json ├── .copilot-agent.yml ├── .editorconfig ├── .gitattributes ├── .github ├── COPILOT_AGENT_README.md ├── agents │ └── copilot-agent.yml ├── dependabot.yml └── workflows │ └── dotnetcore.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── AGENTS.md ├── Directory.Build.props ├── Directory.Packages.props ├── FORMATS.md ├── LICENSE.txt ├── NuGet.config ├── README.md ├── SharpCompress.sln ├── SharpCompress.sln.DotSettings ├── SharpCompress.snk ├── USAGE.md ├── global.json ├── reference ├── APPNOTE.TXT ├── RAR 5.0 archive format.htm └── unrar │ ├── UnRAR.vcxproj │ ├── UnRARDll.vcxproj │ ├── acknow.txt │ ├── arccmt.cpp │ ├── archive.cpp │ ├── archive.hpp │ ├── arcread.cpp │ ├── array.hpp │ ├── blake2s.cpp │ ├── blake2s.hpp │ ├── blake2s_sse.cpp │ ├── blake2sp.cpp │ ├── cmddata.cpp │ ├── cmddata.hpp │ ├── coder.cpp │ ├── coder.hpp │ ├── compress.hpp │ ├── consio.cpp │ ├── consio.hpp │ ├── crc.cpp │ ├── crc.hpp │ ├── crypt.cpp │ ├── crypt.hpp │ ├── crypt1.cpp │ ├── crypt2.cpp │ ├── crypt3.cpp │ ├── crypt5.cpp │ ├── dll.cpp │ ├── dll.def │ ├── dll.hpp │ ├── dll.rc │ ├── encname.cpp │ ├── encname.hpp │ ├── errhnd.cpp │ ├── errhnd.hpp │ ├── extinfo.cpp │ ├── extinfo.hpp │ ├── extract.cpp │ ├── extract.hpp │ ├── filcreat.cpp │ ├── filcreat.hpp │ ├── file.cpp │ ├── file.hpp │ ├── filefn.cpp │ ├── filefn.hpp │ ├── filestr.cpp │ ├── filestr.hpp │ ├── find.cpp │ ├── find.hpp │ ├── getbits.cpp │ ├── getbits.hpp │ ├── global.cpp │ ├── global.hpp │ ├── hardlinks.cpp │ ├── hash.cpp │ ├── hash.hpp │ ├── headers.cpp │ ├── headers.hpp │ ├── headers5.hpp │ ├── isnt.cpp │ ├── isnt.hpp │ ├── license.txt │ ├── list.cpp │ ├── list.hpp │ ├── loclang.hpp │ ├── log.cpp │ ├── log.hpp │ ├── makefile │ ├── match.cpp │ ├── match.hpp │ ├── model.cpp │ ├── model.hpp │ ├── options.cpp │ ├── options.hpp │ ├── os.hpp │ ├── pathfn.cpp │ ├── pathfn.hpp │ ├── qopen.cpp │ ├── qopen.hpp │ ├── rar.cpp │ ├── rar.hpp │ ├── rardefs.hpp │ ├── rarlang.hpp │ ├── raros.hpp │ ├── rarpch.cpp │ ├── rartypes.hpp │ ├── rarvm.cpp │ ├── rarvm.hpp │ ├── rawint.hpp │ ├── rawread.cpp │ ├── rawread.hpp │ ├── rdwrfn.cpp │ ├── rdwrfn.hpp │ ├── readme.txt │ ├── recvol.cpp │ ├── recvol.hpp │ ├── recvol3.cpp │ ├── recvol5.cpp │ ├── resource.cpp │ ├── resource.hpp │ ├── rijndael.cpp │ ├── rijndael.hpp │ ├── rs.cpp │ ├── rs.hpp │ ├── rs16.cpp │ ├── rs16.hpp │ ├── savepos.hpp │ ├── scantree.cpp │ ├── scantree.hpp │ ├── secpassword.cpp │ ├── secpassword.hpp │ ├── sha1.cpp │ ├── sha1.hpp │ ├── sha256.cpp │ ├── sha256.hpp │ ├── smallfn.cpp │ ├── smallfn.hpp │ ├── strfn.cpp │ ├── strfn.hpp │ ├── strlist.cpp │ ├── strlist.hpp │ ├── suballoc.cpp │ ├── suballoc.hpp │ ├── system.cpp │ ├── system.hpp │ ├── threadmisc.cpp │ ├── threadpool.cpp │ ├── threadpool.hpp │ ├── timefn.cpp │ ├── timefn.hpp │ ├── ui.cpp │ ├── ui.hpp │ ├── uicommon.cpp │ ├── uiconsole.cpp │ ├── uisilent.cpp │ ├── ulinks.cpp │ ├── unicode.cpp │ ├── unicode.hpp │ ├── unpack.cpp │ ├── unpack.hpp │ ├── unpack15.cpp │ ├── unpack20.cpp │ ├── unpack30.cpp │ ├── unpack50.cpp │ ├── unpack50frag.cpp │ ├── unpack50mt.cpp │ ├── unpackinline.cpp │ ├── uowners.cpp │ ├── version.hpp │ ├── volume.cpp │ ├── volume.hpp │ ├── win32acl.cpp │ ├── win32lnk.cpp │ └── win32stm.cpp ├── src └── SharpCompress │ ├── Algorithms │ └── Adler32.cs │ ├── Archives │ ├── AbstractArchive.cs │ ├── AbstractWritableArchive.cs │ ├── ArchiveFactory.cs │ ├── ArchiveVolumeFactory.cs │ ├── AutoArchiveFactory.cs │ ├── GZip │ │ ├── GZipArchive.cs │ │ ├── GZipArchiveEntry.cs │ │ └── GZipWritableArchiveEntry.cs │ ├── IArchive.cs │ ├── IArchiveEntry.cs │ ├── IArchiveEntryExtensions.cs │ ├── IArchiveExtensions.cs │ ├── IArchiveExtractionListener.cs │ ├── IArchiveFactory.cs │ ├── IMultiArchiveFactory.cs │ ├── IWritableArchive.cs │ ├── IWritableArchiveEntry.cs │ ├── IWritableArchiveExtensions.cs │ ├── IWriteableArchiveFactory.cs │ ├── Rar │ │ ├── FileInfoRarArchiveVolume.cs │ │ ├── FileInfoRarFilePart.cs │ │ ├── RarArchive.Extensions.cs │ │ ├── RarArchive.cs │ │ ├── RarArchiveEntry.cs │ │ ├── RarArchiveEntryFactory.cs │ │ ├── RarArchiveVolumeFactory.cs │ │ ├── SeekableFilePart.cs │ │ └── StreamRarArchiveVolume.cs │ ├── SevenZip │ │ ├── SevenZipArchive.cs │ │ └── SevenZipArchiveEntry.cs │ ├── Tar │ │ ├── TarArchive.cs │ │ ├── TarArchiveEntry.cs │ │ └── TarWritableArchiveEntry.cs │ └── Zip │ │ ├── ZipArchive.cs │ │ ├── ZipArchiveEntry.cs │ │ ├── ZipArchiveVolumeFactory.cs │ │ └── ZipWritableArchiveEntry.cs │ ├── AssemblyInfo.cs │ ├── Common │ ├── Arc │ │ ├── ArcEntry.cs │ │ ├── ArcEntryHeader.cs │ │ ├── ArcFilePart.cs │ │ └── ArcVolume.cs │ ├── ArchiveEncoding.cs │ ├── ArchiveExtractionEventArgs.cs │ ├── ArchiveType.cs │ ├── Arj │ │ ├── ArjEntry.cs │ │ ├── ArjFilePart.cs │ │ ├── ArjVolume.cs │ │ └── Headers │ │ │ ├── ArjHeader.cs │ │ │ ├── ArjLocalHeader.cs │ │ │ ├── ArjMainHeader.cs │ │ │ ├── CompressionMethod.cs │ │ │ ├── DosDateTime.cs │ │ │ ├── FileType.cs │ │ │ └── HostOS.cs │ ├── CompressedBytesReadEventArgs.cs │ ├── CompressionType.cs │ ├── Entry.cs │ ├── EntryStream.cs │ ├── ExtractionMethods.cs │ ├── ExtractionOptions.cs │ ├── FilePart.cs │ ├── FilePartExtractionBeginEventArgs.cs │ ├── FlagUtility.cs │ ├── GZip │ │ ├── GZipEntry.cs │ │ ├── GZipFilePart.cs │ │ └── GZipVolume.cs │ ├── IEntry.Extensions.cs │ ├── IEntry.cs │ ├── IExtractionListener.cs │ ├── IVolume.cs │ ├── OptionsBase.cs │ ├── Rar │ │ ├── CryptKey3.cs │ │ ├── CryptKey5.cs │ │ ├── Headers │ │ │ ├── AVHeader.cs │ │ │ ├── ArchiveCryptHeader.cs │ │ │ ├── ArchiveHeader.cs │ │ │ ├── CommentHeader.cs │ │ │ ├── EndArchiveHeader.cs │ │ │ ├── FileHeader.cs │ │ │ ├── FileNameDecoder.cs │ │ │ ├── Flags.cs │ │ │ ├── IRarHeader.cs │ │ │ ├── MarkHeader.cs │ │ │ ├── NewSubHeaderType.cs │ │ │ ├── ProtectHeader.cs │ │ │ ├── RarHeader.cs │ │ │ ├── RarHeaderFactory.cs │ │ │ └── SignHeader.cs │ │ ├── ICryptKey.cs │ │ ├── Rar5CryptoInfo.cs │ │ ├── RarCrcBinaryReader.cs │ │ ├── RarCryptoBinaryReader.cs │ │ ├── RarCryptoWrapper.cs │ │ ├── RarEntry.cs │ │ ├── RarFilePart.cs │ │ └── RarVolume.cs │ ├── ReaderExtractionEventArgs.cs │ ├── SevenZip │ │ ├── ArchiveDatabase.cs │ │ ├── ArchiveReader.cs │ │ ├── CBindPair.cs │ │ ├── CCoderInfo.cs │ │ ├── CFileItem.cs │ │ ├── CFolder.cs │ │ ├── CMethodId.cs │ │ ├── CStreamSwitch.cs │ │ ├── DataReader.cs │ │ ├── SevenZipEntry.cs │ │ ├── SevenZipFilePart.cs │ │ └── SevenZipVolume.cs │ ├── SharpCompressException.cs │ ├── Tar │ │ ├── Headers │ │ │ ├── EntryType.cs │ │ │ └── TarHeader.cs │ │ ├── TarEntry.cs │ │ ├── TarFilePart.cs │ │ ├── TarHeaderFactory.cs │ │ ├── TarReadOnlySubStream.cs │ │ └── TarVolume.cs │ ├── Volume.cs │ └── Zip │ │ ├── Headers │ │ ├── DirectoryEndHeader.cs │ │ ├── DirectoryEntryHeader.cs │ │ ├── HeaderFlags.cs │ │ ├── IgnoreHeader.cs │ │ ├── LocalEntryHeader.cs │ │ ├── LocalEntryHeaderExtraFactory.cs │ │ ├── SplitHeader.cs │ │ ├── Zip64DirectoryEndHeader.cs │ │ ├── Zip64DirectoryEndLocatorHeader.cs │ │ ├── ZipFileEntry.cs │ │ ├── ZipHeader.cs │ │ └── ZipHeaderType.cs │ │ ├── PkwareTraditionalCryptoStream.cs │ │ ├── PkwareTraditionalEncryptionData.cs │ │ ├── SeekableZipFilePart.cs │ │ ├── SeekableZipHeaderFactory.cs │ │ ├── StreamingZipFilePart.cs │ │ ├── StreamingZipHeaderFactory.cs │ │ ├── WinzipAesCryptoStream.cs │ │ ├── WinzipAesEncryptionData.cs │ │ ├── WinzipAesKeySize.cs │ │ ├── ZipCompressionMethod.cs │ │ ├── ZipEntry.cs │ │ ├── ZipFilePart.cs │ │ ├── ZipHeaderFactory.cs │ │ └── ZipVolume.cs │ ├── Compressors │ ├── ADC │ │ ├── ADCBase.cs │ │ └── ADCStream.cs │ ├── ArcLzw │ │ ├── ArcLzwStream.cs │ │ └── BitReader.cs │ ├── Arj │ │ ├── BitReader.cs │ │ ├── HistoryIterator.cs │ │ ├── HuffmanTree.cs │ │ ├── ILhaDecoderConfig.cs │ │ ├── IRingBuffer.cs │ │ ├── LHDecoderStream.cs │ │ ├── Lh5DecoderCfg.cs │ │ ├── Lh7DecoderCfg.cs │ │ ├── LhaStream.cs │ │ └── RingBuffer.cs │ ├── BZip2 │ │ ├── BZip2Constants.cs │ │ ├── BZip2Stream.cs │ │ ├── CBZip2InputStream.cs │ │ ├── CBZip2OutputStream.cs │ │ └── CRC.cs │ ├── CompressionMode.cs │ ├── Deflate │ │ ├── CRC32.cs │ │ ├── DeflateManager.cs │ │ ├── DeflateStream.cs │ │ ├── FlushType.cs │ │ ├── GZipStream.cs │ │ ├── InfTree.cs │ │ ├── Inflate.cs │ │ ├── Tree.cs │ │ ├── Zlib.cs │ │ ├── ZlibBaseStream.cs │ │ ├── ZlibCodec.cs │ │ ├── ZlibConstants.cs │ │ └── ZlibStream.cs │ ├── Deflate64 │ │ ├── BlockType.cs │ │ ├── Deflate64Stream.cs │ │ ├── DeflateInput.cs │ │ ├── FastEncoderStatus.cs │ │ ├── HuffmanTree.cs │ │ ├── InflaterManaged.cs │ │ ├── InflaterState.cs │ │ ├── InputBuffer.cs │ │ ├── Match.cs │ │ ├── MatchState.cs │ │ └── OutputWindow.cs │ ├── Explode │ │ ├── ExplodeStream.cs │ │ └── HuftTree.cs │ ├── Filters │ │ ├── BCJ2Filter.cs │ │ ├── BCJFilter.cs │ │ ├── BCJFilterARM.cs │ │ ├── BCJFilterARM64.cs │ │ ├── BCJFilterARMT.cs │ │ ├── BCJFilterIA64.cs │ │ ├── BCJFilterPPC.cs │ │ ├── BCJFilterRISCV.cs │ │ ├── BCJFilterSPARC.cs │ │ ├── BranchExecFilter.cs │ │ ├── DeltaFilter.cs │ │ └── Filter.cs │ ├── LZMA │ │ ├── AesDecoderStream.cs │ │ ├── Bcj2DecoderStream.cs │ │ ├── BitVector.cs │ │ ├── CRC.cs │ │ ├── DecoderStream.cs │ │ ├── ICoder.cs │ │ ├── LZ │ │ │ ├── LzBinTree.cs │ │ │ ├── LzInWindow.cs │ │ │ └── LzOutWindow.cs │ │ ├── LZipStream.cs │ │ ├── Log.cs │ │ ├── LzmaBase.cs │ │ ├── LzmaDecoder.cs │ │ ├── LzmaEncoder.cs │ │ ├── LzmaEncoderProperties.cs │ │ ├── LzmaStream.cs │ │ ├── RangeCoder │ │ │ ├── RangeCoder.cs │ │ │ ├── RangeCoderBit.cs │ │ │ └── RangeCoderBitTree.cs │ │ ├── Registry.cs │ │ └── Utilites │ │ │ ├── CrcBuilderStream.cs │ │ │ ├── CrcCheckStream.cs │ │ │ ├── IPasswordProvider.cs │ │ │ └── Utils.cs │ ├── Lzw │ │ ├── LzwConstants.cs │ │ └── LzwStream.cs │ ├── PPMd │ │ ├── H │ │ │ ├── FreqData.cs │ │ │ ├── ModelPPM.cs │ │ │ ├── PPMContext.cs │ │ │ ├── Pointer.cs │ │ │ ├── RangeCoder.cs │ │ │ ├── RarMemBlock.cs │ │ │ ├── RarNode.cs │ │ │ ├── SEE2Context.cs │ │ │ ├── State.cs │ │ │ ├── StateRef.cs │ │ │ └── SubAllocator.cs │ │ ├── I1 │ │ │ ├── Allocator.cs │ │ │ ├── Coder.cs │ │ │ ├── MemoryNode.cs │ │ │ ├── Model.cs │ │ │ ├── ModelRestorationMethod.cs │ │ │ ├── Pointer.cs │ │ │ ├── PpmContext.cs │ │ │ ├── PpmState.cs │ │ │ └── See2Context.cs │ │ ├── PpmdProperties.cs │ │ ├── PpmdStream.cs │ │ └── PpmdVersion.cs │ ├── RLE90 │ │ ├── RLE.cs │ │ └── RunLength90Stream.cs │ ├── Rar │ │ ├── IRarUnpack.cs │ │ ├── MultiVolumeReadOnlyStream.cs │ │ ├── RarBLAKE2spStream.cs │ │ ├── RarCRC.cs │ │ ├── RarCrcStream.cs │ │ ├── RarStream.cs │ │ ├── UnpackV1 │ │ │ ├── Decode │ │ │ │ ├── AudioVariables.cs │ │ │ │ ├── BitDecode.cs │ │ │ │ ├── CodeType.cs │ │ │ │ ├── Decode.cs │ │ │ │ ├── DistDecode.cs │ │ │ │ ├── FilterType.cs │ │ │ │ ├── LitDecode.cs │ │ │ │ ├── LowDistDecode.cs │ │ │ │ ├── MultDecode.cs │ │ │ │ ├── PackDef.cs │ │ │ │ └── RepDecode.cs │ │ │ ├── PPM │ │ │ │ └── BlockTypes.cs │ │ │ ├── Unpack.cs │ │ │ ├── Unpack15.cs │ │ │ ├── Unpack20.cs │ │ │ ├── Unpack50.cs │ │ │ ├── UnpackFilter.cs │ │ │ ├── UnpackInline.cs │ │ │ └── UnpackUtility.cs │ │ ├── UnpackV2017 │ │ │ ├── BitInput.getbits_cpp.cs │ │ │ ├── BitInput.getbits_hpp.cs │ │ │ ├── FragmentedWindow.unpack50frag_cpp.cs │ │ │ ├── PackDef.compress_hpp.cs │ │ │ ├── Unpack.cs │ │ │ ├── Unpack.rawint_hpp.cs │ │ │ ├── Unpack.unpack15_cpp.cs │ │ │ ├── Unpack.unpack20_cpp.cs │ │ │ ├── Unpack.unpack50_cpp.cs │ │ │ ├── Unpack.unpack_cpp.cs │ │ │ ├── Unpack.unpackinline_cpp.cs │ │ │ ├── notes.txt │ │ │ └── unpack_hpp.cs │ │ └── VM │ │ │ ├── BitInput.cs │ │ │ ├── RarVM.cs │ │ │ ├── VMCmdFlags.cs │ │ │ ├── VMCommands.cs │ │ │ ├── VMFlags.cs │ │ │ ├── VMOpType.cs │ │ │ ├── VMPreparedCommand.cs │ │ │ ├── VMPreparedOperand.cs │ │ │ ├── VMPreparedProgram.cs │ │ │ ├── VMStandardFilterSignature.cs │ │ │ └── VMStandardFilters.cs │ ├── Reduce │ │ └── ReduceStream.cs │ ├── Shrink │ │ ├── BitStream.cs │ │ ├── HwUnshrink.cs │ │ └── ShrinkStream.cs │ ├── Squeezed │ │ ├── BitReader.cs │ │ └── SqueezedStream.cs │ ├── Xz │ │ ├── BinaryUtils.cs │ │ ├── CheckType.cs │ │ ├── Crc32.cs │ │ ├── Crc64.cs │ │ ├── Filters │ │ │ ├── ArmFilter.cs │ │ │ ├── ArmThumbFilter.cs │ │ │ ├── BlockFilter.cs │ │ │ ├── IA64Filter.cs │ │ │ ├── Lzma2Filter.cs │ │ │ ├── PowerPCFilter.cs │ │ │ ├── SparcFilter.cs │ │ │ └── X86Filter.cs │ │ ├── MultiByteIntegers.cs │ │ ├── ReadOnlyStream.cs │ │ ├── XZBlock.cs │ │ ├── XZFooter.cs │ │ ├── XZHeader.cs │ │ ├── XZIndex.cs │ │ ├── XZIndexMarkerReachedException.cs │ │ ├── XZIndexRecord.cs │ │ ├── XZReadOnlyStream.cs │ │ └── XZStream.cs │ └── ZStandard │ │ ├── ZStandardStream.cs │ │ └── ZstandardConstants.cs │ ├── Crypto │ ├── BlockTransformer.cs │ └── Crc32Stream.cs │ ├── Factories │ ├── ArcFactory.cs │ ├── ArjFactory.cs │ ├── Factory.cs │ ├── GZipFactory.cs │ ├── IFactory.cs │ ├── RarFactory.cs │ ├── SevenZipFactory.cs │ ├── TarFactory.cs │ ├── ZStandardFactory.cs │ └── ZipFactory.cs │ ├── IO │ ├── BufferedSubStream.cs │ ├── DataDescriptorStream.cs │ ├── IStreamStack.cs │ ├── ListeningStream.cs │ ├── MarkingBinaryReader.cs │ ├── ReadOnlySubStream.cs │ ├── SharpCompressStream.cs │ ├── SourceStream.cs │ └── StreamingMode.cs │ ├── LazyReadOnlyCollection.cs │ ├── NotNullExtensions.cs │ ├── Polyfills │ ├── StreamExtensions.cs │ └── StringExtensions.cs │ ├── Readers │ ├── AbstractReader.cs │ ├── Arc │ │ └── ArcReader.cs │ ├── Arj │ │ ├── ArjReader.cs │ │ ├── MultiVolumeArjReader.cs │ │ └── SingleVolumeArjReader.cs │ ├── GZip │ │ └── GZipReader.cs │ ├── IReader.cs │ ├── IReaderExtensions.cs │ ├── IReaderExtractionListener.cs │ ├── IReaderFactory.cs │ ├── Rar │ │ ├── MultiVolumeRarReader.cs │ │ ├── NonSeekableStreamFilePart.cs │ │ ├── RarReader.cs │ │ ├── RarReaderEntry.cs │ │ ├── RarReaderVolume.cs │ │ └── SingleVolumeRarReader.cs │ ├── ReaderFactory.cs │ ├── ReaderOptions.cs │ ├── ReaderProgress.cs │ ├── Tar │ │ └── TarReader.cs │ └── Zip │ │ └── ZipReader.cs │ ├── SharpCompress.csproj │ ├── SharpCompress.pfx │ ├── Utility.cs │ ├── Writers │ ├── AbstractWriter.cs │ ├── GZip │ │ ├── GZipWriter.cs │ │ └── GZipWriterOptions.cs │ ├── IWriter.cs │ ├── IWriterExtensions.cs │ ├── IWriterFactory.cs │ ├── Tar │ │ ├── TarWriter.cs │ │ └── TarWriterOptions.cs │ ├── WriterFactory.cs │ ├── WriterOptions.cs │ └── Zip │ │ ├── ZipCentralDirectoryEntry.cs │ │ ├── ZipWriter.cs │ │ ├── ZipWriterEntryOptions.cs │ │ └── ZipWriterOptions.cs │ └── packages.lock.json └── tests ├── SharpCompress.Performance ├── JetbrainsProfiler.cs ├── LargeMemoryStream.cs ├── Program.cs ├── SharpCompress.Performance.csproj └── packages.lock.json ├── SharpCompress.Test ├── ADCTest.cs ├── AdcAsyncTest.cs ├── Arc │ └── ArcReaderTests.cs ├── ArchiveTests.cs ├── Arj │ └── ArjReaderTests.cs ├── BZip2 │ ├── BZip2ReaderTests.cs │ └── BZip2StreamAsyncTests.cs ├── ExceptionHierarchyTests.cs ├── ExtractionTests.cs ├── Filters │ └── BranchExecTests.cs ├── GZip │ ├── AsyncTests.cs │ ├── GZipArchiveAsyncTests.cs │ ├── GZipArchiveDirectoryTests.cs │ ├── GZipArchiveTests.cs │ ├── GZipReaderAsyncTests.cs │ ├── GZipReaderTests.cs │ ├── GZipWriterAsyncTests.cs │ ├── GZipWriterDirectoryTests.cs │ └── GZipWriterTests.cs ├── Mocks │ ├── FlushOnDisposeStream.cs │ ├── ForwardOnlyStream.cs │ └── TestStream.cs ├── OperatingSystemExtensions.cs ├── Rar │ ├── RarArchiveAsyncTests.cs │ ├── RarArchiveTests.cs │ ├── RarCRCTest.cs │ ├── RarHeaderFactoryTest.cs │ ├── RarReaderAsyncTests.cs │ └── RarReaderTests.cs ├── ReaderTests.cs ├── SevenZip │ └── SevenZipArchiveTests.cs ├── SharpCompress.Test.csproj ├── SharpCompress.Test.snk ├── Streams │ ├── LzmaStreamAsyncTests.cs │ ├── LzmaStreamTests.cs │ ├── RewindableStreamAsyncTest.cs │ ├── RewindableStreamTest.cs │ ├── SharpCompressStreamAsyncTests.cs │ ├── SharpCompressStreamTest.cs │ ├── ZLibBaseStreamAsyncTests.cs │ └── ZlibBaseStreamTests.cs ├── Tar │ ├── TarArchiveAsyncTests.cs │ ├── TarArchiveDirectoryTests.cs │ ├── TarArchiveTests.cs │ ├── TarReaderAsyncTests.cs │ ├── TarReaderTests.cs │ ├── TarWriterAsyncTests.cs │ ├── TarWriterDirectoryTests.cs │ └── TarWriterTests.cs ├── TestBase.cs ├── UtilityTests.cs ├── WriterTests.cs ├── Xz │ ├── Crc32Tests.cs │ ├── Crc64Tests.cs │ ├── Filters │ │ ├── BCJTests.cs │ │ └── Lzma2Tests.cs │ ├── XZBlockAsyncTests.cs │ ├── XZBlockTests.cs │ ├── XZHeaderAsyncTests.cs │ ├── XZHeaderTests.cs │ ├── XZIndexAsyncTests.cs │ ├── XZIndexTests.cs │ ├── XZStreamAsyncTests.cs │ ├── XZStreamTests.cs │ └── XZTestsBase.cs ├── Zip │ ├── TestPseudoTextStream.cs │ ├── Zip64AsyncTests.cs │ ├── Zip64Tests.cs │ ├── Zip64VersionConsistencyTests.cs │ ├── ZipArchiveAsyncTests.cs │ ├── ZipArchiveDirectoryTests.cs │ ├── ZipArchiveTests.cs │ ├── ZipMemoryArchiveWithCrcAsyncTests.cs │ ├── ZipMemoryArchiveWithCrcTests.cs │ ├── ZipReaderAsyncTests.cs │ ├── ZipReaderTests.cs │ ├── ZipWriterAsyncTests.cs │ ├── ZipWriterDirectoryTests.cs │ └── ZipWriterTests.cs └── packages.lock.json └── TestArchives ├── Archives ├── 64bitstream.zip.7z ├── 7Zip.ARM.7z ├── 7Zip.ARM64.7z ├── 7Zip.ARMT.7z ├── 7Zip.BCJ.7z ├── 7Zip.BCJ2.7z ├── 7Zip.BZip2.7z ├── 7Zip.BZip2.split.001 ├── 7Zip.BZip2.split.002 ├── 7Zip.BZip2.split.003 ├── 7Zip.BZip2.split.004 ├── 7Zip.BZip2.split.005 ├── 7Zip.BZip2.split.006 ├── 7Zip.BZip2.split.007 ├── 7Zip.Copy.7z ├── 7Zip.Filters.7z ├── 7Zip.IA64.7z ├── 7Zip.LZMA.7z ├── 7Zip.LZMA.Aes.7z ├── 7Zip.LZMA2.7z ├── 7Zip.LZMA2.Aes.7z ├── 7Zip.LZMA2.exe ├── 7Zip.PPC.7z ├── 7Zip.PPMd.7z ├── 7Zip.RISCV.7z ├── 7Zip.SPARC.7z ├── 7Zip.Tar.tar ├── 7Zip.Tar.tar.7z ├── 7Zip.ZSTD.7z ├── 7Zip.ZSTD.Split.7z.001 ├── 7Zip.ZSTD.Split.7z.002 ├── 7Zip.ZSTD.Split.7z.003 ├── 7Zip.ZSTD.Split.7z.004 ├── 7Zip.ZSTD.Split.7z.005 ├── 7Zip.ZSTD.Split.7z.006 ├── 7Zip.delta.7z ├── 7Zip.delta.distance.7z ├── 7Zip.encryptedFiles.7z ├── 7Zip.eos.7z ├── 7Zip.nonsolid.7z ├── 7Zip.solid.1block.7z ├── 7Zip.solid.7z ├── Arc.crunched.arc ├── Arc.crunched.largefile.arc ├── Arc.squashed.arc ├── Arc.squashed.largefile.arc ├── Arc.squeezed.arc ├── Arc.squeezed.largefile.arc ├── Arc.uncompressed.arc ├── Arc.uncompressed.largefile.arc ├── Arj.encrypted.arj ├── Arj.method1.arj ├── Arj.method1.largefile.arj ├── Arj.method2.arj ├── Arj.method2.largefile.arj ├── Arj.method3.arj ├── Arj.method3.largefile.arj ├── Arj.method4.arj ├── Arj.method4.largefile.arj ├── Arj.store.arj ├── Arj.store.largefile.arj ├── Arj.store.split.a01 ├── Arj.store.split.a02 ├── Arj.store.split.a03 ├── Arj.store.split.a04 ├── Arj.store.split.a05 ├── Arj.store.split.arj ├── DotNetZip-obhg3mhx.tmp ├── Infozip.nocomp.multi.z01 ├── Infozip.nocomp.multi.zip ├── Issue_685.zip ├── Original.7z.001 ├── Original.7z.002 ├── Original.7z.003 ├── Original.7z.004 ├── Original.7z.005 ├── Original.7z.006 ├── Original.7z.007 ├── PrePostHeaders.zip ├── Rar.Audio_program.rar ├── Rar.Encrypted.rar ├── Rar.EncryptedParts.part01.rar ├── Rar.EncryptedParts.part02.rar ├── Rar.EncryptedParts.part03.rar ├── Rar.EncryptedParts.part04.rar ├── Rar.EncryptedParts.part05.rar ├── Rar.EncryptedParts.part06.rar ├── Rar.comment.rar ├── Rar.encrypted_filesAndHeader.rar ├── Rar.encrypted_filesOnly.rar ├── Rar.jpeg.jpg ├── Rar.multi.part01.rar ├── Rar.multi.part02.rar ├── Rar.multi.part03.rar ├── Rar.multi.part04.rar ├── Rar.multi.part05.rar ├── Rar.multi.part06.rar ├── Rar.multi.solid.part01.rar ├── Rar.multi.solid.part02.rar ├── Rar.multi.solid.part03.rar ├── Rar.multi.solid.part04.rar ├── Rar.multi.solid.part05.rar ├── Rar.multi.solid.part06.rar ├── Rar.none.rar ├── Rar.rar ├── Rar.solid.rar ├── Rar.test_invalid_exttime.rar ├── Rar15.rar ├── Rar2.multi.r00 ├── Rar2.multi.r01 ├── Rar2.multi.r02 ├── Rar2.multi.r03 ├── Rar2.multi.r04 ├── Rar2.multi.r05 ├── Rar2.multi.rar ├── Rar2.rar ├── Rar4.multi.part01.rar ├── Rar4.multi.part02.rar ├── Rar4.multi.part03.rar ├── Rar4.multi.part04.rar ├── Rar4.multi.part05.rar ├── Rar4.multi.part06.rar ├── Rar4.multi.part07.rar ├── Rar4.rar ├── Rar4.split.001 ├── Rar4.split.002 ├── Rar4.split.003 ├── Rar4.split.004 ├── Rar4.split.005 ├── Rar4.split.006 ├── Rar5.comment.rar ├── Rar5.crc_blake2.rar ├── Rar5.encrypted_filesAndHeader.rar ├── Rar5.encrypted_filesOnly.rar ├── Rar5.multi.part01.rar ├── Rar5.multi.part02.rar ├── Rar5.multi.part03.rar ├── Rar5.multi.part04.rar ├── Rar5.multi.part05.rar ├── Rar5.multi.part06.rar ├── Rar5.none.rar ├── Rar5.rar ├── Rar5.solid.rar ├── Tar.ContainsRar.tar ├── Tar.ContainsTarGz.tar ├── Tar.Empty.tar ├── Tar.LongPathsWithLongNameExtension.tar ├── Tar.mod.tar ├── Tar.noEmptyDirs.tar ├── Tar.noEmptyDirs.tar.bz2 ├── Tar.noEmptyDirs.tar.lz ├── Tar.oldgnu.tar.gz ├── Tar.tar ├── Tar.tar.Z ├── Tar.tar.bz2 ├── Tar.tar.gz ├── Tar.tar.lz ├── Tar.tar.xz ├── Tar.tar.zst ├── TarCorrupted.tar ├── TarWithSymlink.tar.gz ├── WinZip26.nocomp.multi.z01 ├── WinZip26.nocomp.multi.zip ├── WinZip26.nocomp.multi.zipx ├── WinZip26.nocomp.multi.zx01 ├── WinZip26.zip ├── WinZip26_BZip2.zipx ├── WinZip26_LZMA.zipx ├── WinZip27_XZ.zipx ├── WinZip27_ZSTD.zipx ├── Zip.644.zip ├── Zip.EntryComment.zip ├── Zip.Evil.zip ├── Zip.LongComment.zip ├── Zip.UnicodePathExtra.zip ├── Zip.badlocalextra.zip ├── Zip.bzip2.dd.zip ├── Zip.bzip2.noEmptyDirs.zip ├── Zip.bzip2.pkware.zip ├── Zip.bzip2.zip ├── Zip.deflate.WinzipAES.zip ├── Zip.deflate.WinzipAES2.zip ├── Zip.deflate.dd-.zip ├── Zip.deflate.dd.zip ├── Zip.deflate.mod.zip ├── Zip.deflate.mod2.zip ├── Zip.deflate.noEmptyDirs.zip ├── Zip.deflate.pkware.zip ├── Zip.deflate.split.001 ├── Zip.deflate.split.002 ├── Zip.deflate.split.003 ├── Zip.deflate.split.004 ├── Zip.deflate.split.005 ├── Zip.deflate.split.006 ├── Zip.deflate.zip ├── Zip.deflate64.zip ├── Zip.implode.zip ├── Zip.lzma.WinzipAES.zip ├── Zip.lzma.dd.zip ├── Zip.lzma.noEmptyDirs.zip ├── Zip.lzma.zip ├── Zip.none.datadescriptors.zip ├── Zip.none.encrypted.zip ├── Zip.none.issue86.zip ├── Zip.none.noEmptyDirs.zip ├── Zip.none.zip ├── Zip.ppmd.dd.zip ├── Zip.ppmd.noEmptyDirs.zip ├── Zip.ppmd.zip ├── Zip.reduce1.zip ├── Zip.reduce2.zip ├── Zip.reduce3.zip ├── Zip.reduce4.zip ├── Zip.shrink.zip ├── Zip.uncompressed.zip ├── Zip.zip64.compressedonly.zip ├── Zip.zip64.zip ├── Zip.zipx ├── adc_compressed.bin ├── adc_decompressed.bin ├── false.positive.tar ├── test_477.zip ├── ustar with long names.tar ├── very long filename.tar └── zipcrypto.zip ├── MiscTest ├── alice29.txt ├── news.txt └── test.dat ├── Original ├── exe │ └── test.exe ├── jpg │ └── test.jpg └── тест.txt ├── SharpCompress.AES.zip ├── SharpCompress.Encrypted.zip └── SharpCompress.Encrypted2.zip /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.copilot-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.copilot-agent.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/COPILOT_AGENT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.github/COPILOT_AGENT_README.md -------------------------------------------------------------------------------- /.github/agents/copilot-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.github/agents/copilot-agent.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/AGENTS.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /FORMATS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/FORMATS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/README.md -------------------------------------------------------------------------------- /SharpCompress.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/SharpCompress.sln -------------------------------------------------------------------------------- /SharpCompress.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/SharpCompress.sln.DotSettings -------------------------------------------------------------------------------- /SharpCompress.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/SharpCompress.snk -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/USAGE.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/global.json -------------------------------------------------------------------------------- /reference/APPNOTE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/APPNOTE.TXT -------------------------------------------------------------------------------- /reference/RAR 5.0 archive format.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/RAR 5.0 archive format.htm -------------------------------------------------------------------------------- /reference/unrar/UnRAR.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/UnRAR.vcxproj -------------------------------------------------------------------------------- /reference/unrar/UnRARDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/UnRARDll.vcxproj -------------------------------------------------------------------------------- /reference/unrar/acknow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/acknow.txt -------------------------------------------------------------------------------- /reference/unrar/arccmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/arccmt.cpp -------------------------------------------------------------------------------- /reference/unrar/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/archive.cpp -------------------------------------------------------------------------------- /reference/unrar/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/archive.hpp -------------------------------------------------------------------------------- /reference/unrar/arcread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/arcread.cpp -------------------------------------------------------------------------------- /reference/unrar/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/array.hpp -------------------------------------------------------------------------------- /reference/unrar/blake2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/blake2s.cpp -------------------------------------------------------------------------------- /reference/unrar/blake2s.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/blake2s.hpp -------------------------------------------------------------------------------- /reference/unrar/blake2s_sse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/blake2s_sse.cpp -------------------------------------------------------------------------------- /reference/unrar/blake2sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/blake2sp.cpp -------------------------------------------------------------------------------- /reference/unrar/cmddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/cmddata.cpp -------------------------------------------------------------------------------- /reference/unrar/cmddata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/cmddata.hpp -------------------------------------------------------------------------------- /reference/unrar/coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/coder.cpp -------------------------------------------------------------------------------- /reference/unrar/coder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/coder.hpp -------------------------------------------------------------------------------- /reference/unrar/compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/compress.hpp -------------------------------------------------------------------------------- /reference/unrar/consio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/consio.cpp -------------------------------------------------------------------------------- /reference/unrar/consio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/consio.hpp -------------------------------------------------------------------------------- /reference/unrar/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crc.cpp -------------------------------------------------------------------------------- /reference/unrar/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crc.hpp -------------------------------------------------------------------------------- /reference/unrar/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crypt.cpp -------------------------------------------------------------------------------- /reference/unrar/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crypt.hpp -------------------------------------------------------------------------------- /reference/unrar/crypt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crypt1.cpp -------------------------------------------------------------------------------- /reference/unrar/crypt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crypt2.cpp -------------------------------------------------------------------------------- /reference/unrar/crypt3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crypt3.cpp -------------------------------------------------------------------------------- /reference/unrar/crypt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/crypt5.cpp -------------------------------------------------------------------------------- /reference/unrar/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/dll.cpp -------------------------------------------------------------------------------- /reference/unrar/dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/dll.def -------------------------------------------------------------------------------- /reference/unrar/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/dll.hpp -------------------------------------------------------------------------------- /reference/unrar/dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/dll.rc -------------------------------------------------------------------------------- /reference/unrar/encname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/encname.cpp -------------------------------------------------------------------------------- /reference/unrar/encname.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/encname.hpp -------------------------------------------------------------------------------- /reference/unrar/errhnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/errhnd.cpp -------------------------------------------------------------------------------- /reference/unrar/errhnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/errhnd.hpp -------------------------------------------------------------------------------- /reference/unrar/extinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/extinfo.cpp -------------------------------------------------------------------------------- /reference/unrar/extinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/extinfo.hpp -------------------------------------------------------------------------------- /reference/unrar/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/extract.cpp -------------------------------------------------------------------------------- /reference/unrar/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/extract.hpp -------------------------------------------------------------------------------- /reference/unrar/filcreat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/filcreat.cpp -------------------------------------------------------------------------------- /reference/unrar/filcreat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/filcreat.hpp -------------------------------------------------------------------------------- /reference/unrar/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/file.cpp -------------------------------------------------------------------------------- /reference/unrar/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/file.hpp -------------------------------------------------------------------------------- /reference/unrar/filefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/filefn.cpp -------------------------------------------------------------------------------- /reference/unrar/filefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/filefn.hpp -------------------------------------------------------------------------------- /reference/unrar/filestr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/filestr.cpp -------------------------------------------------------------------------------- /reference/unrar/filestr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/filestr.hpp -------------------------------------------------------------------------------- /reference/unrar/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/find.cpp -------------------------------------------------------------------------------- /reference/unrar/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/find.hpp -------------------------------------------------------------------------------- /reference/unrar/getbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/getbits.cpp -------------------------------------------------------------------------------- /reference/unrar/getbits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/getbits.hpp -------------------------------------------------------------------------------- /reference/unrar/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/global.cpp -------------------------------------------------------------------------------- /reference/unrar/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/global.hpp -------------------------------------------------------------------------------- /reference/unrar/hardlinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/hardlinks.cpp -------------------------------------------------------------------------------- /reference/unrar/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/hash.cpp -------------------------------------------------------------------------------- /reference/unrar/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/hash.hpp -------------------------------------------------------------------------------- /reference/unrar/headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/headers.cpp -------------------------------------------------------------------------------- /reference/unrar/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/headers.hpp -------------------------------------------------------------------------------- /reference/unrar/headers5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/headers5.hpp -------------------------------------------------------------------------------- /reference/unrar/isnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/isnt.cpp -------------------------------------------------------------------------------- /reference/unrar/isnt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/isnt.hpp -------------------------------------------------------------------------------- /reference/unrar/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/license.txt -------------------------------------------------------------------------------- /reference/unrar/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/list.cpp -------------------------------------------------------------------------------- /reference/unrar/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/list.hpp -------------------------------------------------------------------------------- /reference/unrar/loclang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/loclang.hpp -------------------------------------------------------------------------------- /reference/unrar/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/log.cpp -------------------------------------------------------------------------------- /reference/unrar/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/log.hpp -------------------------------------------------------------------------------- /reference/unrar/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/makefile -------------------------------------------------------------------------------- /reference/unrar/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/match.cpp -------------------------------------------------------------------------------- /reference/unrar/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/match.hpp -------------------------------------------------------------------------------- /reference/unrar/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/model.cpp -------------------------------------------------------------------------------- /reference/unrar/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/model.hpp -------------------------------------------------------------------------------- /reference/unrar/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/options.cpp -------------------------------------------------------------------------------- /reference/unrar/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/options.hpp -------------------------------------------------------------------------------- /reference/unrar/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/os.hpp -------------------------------------------------------------------------------- /reference/unrar/pathfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/pathfn.cpp -------------------------------------------------------------------------------- /reference/unrar/pathfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/pathfn.hpp -------------------------------------------------------------------------------- /reference/unrar/qopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/qopen.cpp -------------------------------------------------------------------------------- /reference/unrar/qopen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/qopen.hpp -------------------------------------------------------------------------------- /reference/unrar/rar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rar.cpp -------------------------------------------------------------------------------- /reference/unrar/rar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rar.hpp -------------------------------------------------------------------------------- /reference/unrar/rardefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rardefs.hpp -------------------------------------------------------------------------------- /reference/unrar/rarlang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rarlang.hpp -------------------------------------------------------------------------------- /reference/unrar/raros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/raros.hpp -------------------------------------------------------------------------------- /reference/unrar/rarpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rarpch.cpp -------------------------------------------------------------------------------- /reference/unrar/rartypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rartypes.hpp -------------------------------------------------------------------------------- /reference/unrar/rarvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rarvm.cpp -------------------------------------------------------------------------------- /reference/unrar/rarvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rarvm.hpp -------------------------------------------------------------------------------- /reference/unrar/rawint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rawint.hpp -------------------------------------------------------------------------------- /reference/unrar/rawread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rawread.cpp -------------------------------------------------------------------------------- /reference/unrar/rawread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rawread.hpp -------------------------------------------------------------------------------- /reference/unrar/rdwrfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rdwrfn.cpp -------------------------------------------------------------------------------- /reference/unrar/rdwrfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rdwrfn.hpp -------------------------------------------------------------------------------- /reference/unrar/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/readme.txt -------------------------------------------------------------------------------- /reference/unrar/recvol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/recvol.cpp -------------------------------------------------------------------------------- /reference/unrar/recvol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/recvol.hpp -------------------------------------------------------------------------------- /reference/unrar/recvol3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/recvol3.cpp -------------------------------------------------------------------------------- /reference/unrar/recvol5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/recvol5.cpp -------------------------------------------------------------------------------- /reference/unrar/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/resource.cpp -------------------------------------------------------------------------------- /reference/unrar/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/resource.hpp -------------------------------------------------------------------------------- /reference/unrar/rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rijndael.cpp -------------------------------------------------------------------------------- /reference/unrar/rijndael.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rijndael.hpp -------------------------------------------------------------------------------- /reference/unrar/rs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rs.cpp -------------------------------------------------------------------------------- /reference/unrar/rs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rs.hpp -------------------------------------------------------------------------------- /reference/unrar/rs16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rs16.cpp -------------------------------------------------------------------------------- /reference/unrar/rs16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/rs16.hpp -------------------------------------------------------------------------------- /reference/unrar/savepos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/savepos.hpp -------------------------------------------------------------------------------- /reference/unrar/scantree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/scantree.cpp -------------------------------------------------------------------------------- /reference/unrar/scantree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/scantree.hpp -------------------------------------------------------------------------------- /reference/unrar/secpassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/secpassword.cpp -------------------------------------------------------------------------------- /reference/unrar/secpassword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/secpassword.hpp -------------------------------------------------------------------------------- /reference/unrar/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/sha1.cpp -------------------------------------------------------------------------------- /reference/unrar/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/sha1.hpp -------------------------------------------------------------------------------- /reference/unrar/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/sha256.cpp -------------------------------------------------------------------------------- /reference/unrar/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/sha256.hpp -------------------------------------------------------------------------------- /reference/unrar/smallfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/smallfn.cpp -------------------------------------------------------------------------------- /reference/unrar/smallfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/smallfn.hpp -------------------------------------------------------------------------------- /reference/unrar/strfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/strfn.cpp -------------------------------------------------------------------------------- /reference/unrar/strfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/strfn.hpp -------------------------------------------------------------------------------- /reference/unrar/strlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/strlist.cpp -------------------------------------------------------------------------------- /reference/unrar/strlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/strlist.hpp -------------------------------------------------------------------------------- /reference/unrar/suballoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/suballoc.cpp -------------------------------------------------------------------------------- /reference/unrar/suballoc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/suballoc.hpp -------------------------------------------------------------------------------- /reference/unrar/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/system.cpp -------------------------------------------------------------------------------- /reference/unrar/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/system.hpp -------------------------------------------------------------------------------- /reference/unrar/threadmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/threadmisc.cpp -------------------------------------------------------------------------------- /reference/unrar/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/threadpool.cpp -------------------------------------------------------------------------------- /reference/unrar/threadpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/threadpool.hpp -------------------------------------------------------------------------------- /reference/unrar/timefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/timefn.cpp -------------------------------------------------------------------------------- /reference/unrar/timefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/timefn.hpp -------------------------------------------------------------------------------- /reference/unrar/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/ui.cpp -------------------------------------------------------------------------------- /reference/unrar/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/ui.hpp -------------------------------------------------------------------------------- /reference/unrar/uicommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/uicommon.cpp -------------------------------------------------------------------------------- /reference/unrar/uiconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/uiconsole.cpp -------------------------------------------------------------------------------- /reference/unrar/uisilent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/uisilent.cpp -------------------------------------------------------------------------------- /reference/unrar/ulinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/ulinks.cpp -------------------------------------------------------------------------------- /reference/unrar/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unicode.cpp -------------------------------------------------------------------------------- /reference/unrar/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unicode.hpp -------------------------------------------------------------------------------- /reference/unrar/unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack.cpp -------------------------------------------------------------------------------- /reference/unrar/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack.hpp -------------------------------------------------------------------------------- /reference/unrar/unpack15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack15.cpp -------------------------------------------------------------------------------- /reference/unrar/unpack20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack20.cpp -------------------------------------------------------------------------------- /reference/unrar/unpack30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack30.cpp -------------------------------------------------------------------------------- /reference/unrar/unpack50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack50.cpp -------------------------------------------------------------------------------- /reference/unrar/unpack50frag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack50frag.cpp -------------------------------------------------------------------------------- /reference/unrar/unpack50mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpack50mt.cpp -------------------------------------------------------------------------------- /reference/unrar/unpackinline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/unpackinline.cpp -------------------------------------------------------------------------------- /reference/unrar/uowners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/uowners.cpp -------------------------------------------------------------------------------- /reference/unrar/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/version.hpp -------------------------------------------------------------------------------- /reference/unrar/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/volume.cpp -------------------------------------------------------------------------------- /reference/unrar/volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/volume.hpp -------------------------------------------------------------------------------- /reference/unrar/win32acl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/win32acl.cpp -------------------------------------------------------------------------------- /reference/unrar/win32lnk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/win32lnk.cpp -------------------------------------------------------------------------------- /reference/unrar/win32stm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/reference/unrar/win32stm.cpp -------------------------------------------------------------------------------- /src/SharpCompress/Algorithms/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Algorithms/Adler32.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/AbstractArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/AbstractArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/AbstractWritableArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/AbstractWritableArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/ArchiveFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/ArchiveFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/ArchiveVolumeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/ArchiveVolumeFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/AutoArchiveFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/AutoArchiveFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/GZip/GZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/GZip/GZipArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/GZip/GZipArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/GZip/GZipArchiveEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IArchiveEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IArchiveEntryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IArchiveEntryExtensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IArchiveExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IArchiveExtensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IArchiveFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IArchiveFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IMultiArchiveFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IMultiArchiveFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IWritableArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IWritableArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IWritableArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IWritableArchiveEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/IWriteableArchiveFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/IWriteableArchiveFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Rar/FileInfoRarFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Rar/FileInfoRarFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Rar/RarArchive.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Rar/RarArchive.Extensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Rar/RarArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Rar/RarArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Rar/RarArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Rar/RarArchiveEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Rar/SeekableFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Rar/SeekableFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/SevenZip/SevenZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/SevenZip/SevenZipArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Tar/TarArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Tar/TarArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Tar/TarArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Tar/TarArchiveEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Zip/ZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Zip/ZipArchive.cs -------------------------------------------------------------------------------- /src/SharpCompress/Archives/Zip/ZipArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Archives/Zip/ZipArchiveEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arc/ArcEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arc/ArcEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arc/ArcEntryHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arc/ArcEntryHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arc/ArcFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arc/ArcFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arc/ArcVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arc/ArcVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/ArchiveEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/ArchiveEncoding.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/ArchiveExtractionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/ArchiveExtractionEventArgs.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/ArchiveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/ArchiveType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/ArjEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/ArjEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/ArjFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/ArjFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/ArjVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/ArjVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/Headers/ArjHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/Headers/ArjHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/Headers/ArjLocalHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/Headers/ArjLocalHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/Headers/ArjMainHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/Headers/ArjMainHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/Headers/DosDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/Headers/DosDateTime.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/Headers/FileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/Headers/FileType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Arj/Headers/HostOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Arj/Headers/HostOS.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/CompressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/CompressionType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Entry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/EntryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/EntryStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/ExtractionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/ExtractionMethods.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/ExtractionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/ExtractionOptions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/FilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/FilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/FlagUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/FlagUtility.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/GZip/GZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/GZip/GZipEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/GZip/GZipFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/GZip/GZipFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/GZip/GZipVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/GZip/GZipVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/IEntry.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/IEntry.Extensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/IEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/IEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/IExtractionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/IExtractionListener.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/IVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/IVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/OptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/OptionsBase.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/CryptKey3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/CryptKey3.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/CryptKey5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/CryptKey5.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/AVHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/AVHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/ArchiveHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/ArchiveHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/CommentHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/CommentHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/FileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/FileHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/FileNameDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/FileNameDecoder.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/Flags.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/IRarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/IRarHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/MarkHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/MarkHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/ProtectHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/ProtectHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/RarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/RarHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Headers/SignHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Headers/SignHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/ICryptKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/ICryptKey.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/Rar5CryptoInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/Rar5CryptoInfo.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/RarCrcBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/RarCrcBinaryReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/RarCryptoBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/RarCryptoBinaryReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/RarCryptoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/RarCryptoWrapper.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/RarEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/RarEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/RarFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/RarFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Rar/RarVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Rar/RarVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/ReaderExtractionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/ReaderExtractionEventArgs.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/ArchiveDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/ArchiveDatabase.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/ArchiveReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/ArchiveReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/CBindPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/CBindPair.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/CCoderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/CCoderInfo.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/CFileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/CFileItem.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/CFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/CFolder.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/CMethodId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/CMethodId.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/CStreamSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/CStreamSwitch.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/DataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/DataReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/SevenZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/SevenZipEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/SevenZipFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/SevenZipFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SevenZip/SevenZipVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SevenZip/SevenZipVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/SharpCompressException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/SharpCompressException.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Tar/Headers/EntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Tar/Headers/EntryType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Tar/Headers/TarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Tar/Headers/TarHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Tar/TarEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Tar/TarEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Tar/TarFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Tar/TarFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Tar/TarHeaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Tar/TarHeaderFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Tar/TarReadOnlySubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Tar/TarReadOnlySubStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Tar/TarVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Tar/TarVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Volume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/Headers/HeaderFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/Headers/HeaderFlags.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/Headers/IgnoreHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/Headers/IgnoreHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/Headers/SplitHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/Headers/SplitHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/Headers/ZipFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/Headers/ZipFileEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/Headers/ZipHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/Headers/ZipHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/Headers/ZipHeaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/Headers/ZipHeaderType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/SeekableZipFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/SeekableZipFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/StreamingZipFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/StreamingZipFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/WinzipAesCryptoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/WinzipAesCryptoStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/WinzipAesEncryptionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/WinzipAesEncryptionData.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/WinzipAesKeySize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/WinzipAesKeySize.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/ZipCompressionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/ZipCompressionMethod.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/ZipEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/ZipFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/ZipFilePart.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/ZipHeaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/ZipHeaderFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Common/Zip/ZipVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Common/Zip/ZipVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/ADC/ADCBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/ADC/ADCBase.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/ADC/ADCStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/ADC/ADCStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/ArcLzw/ArcLzwStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/ArcLzw/ArcLzwStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/ArcLzw/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/ArcLzw/BitReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/BitReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/HistoryIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/HistoryIterator.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/HuffmanTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/HuffmanTree.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/ILhaDecoderConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/ILhaDecoderConfig.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/IRingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/IRingBuffer.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/LHDecoderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/LHDecoderStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/Lh5DecoderCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/Lh5DecoderCfg.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/Lh7DecoderCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/Lh7DecoderCfg.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/LhaStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/LhaStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Arj/RingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Arj/RingBuffer.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/BZip2/BZip2Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/BZip2/BZip2Constants.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/BZip2/BZip2Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/BZip2/BZip2Stream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/BZip2/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/BZip2/CRC.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/CompressionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/CompressionMode.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/CRC32.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/DeflateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/DeflateManager.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/DeflateStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/DeflateStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/FlushType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/FlushType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/GZipStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/InfTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/InfTree.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/Inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/Inflate.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/Tree.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/Zlib.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/ZlibBaseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/ZlibBaseStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/ZlibCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/ZlibCodec.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/ZlibConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/ZlibConstants.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate/ZlibStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate/ZlibStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate64/BlockType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate64/BlockType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate64/DeflateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate64/DeflateInput.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate64/HuffmanTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate64/HuffmanTree.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate64/InputBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate64/InputBuffer.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate64/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate64/Match.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate64/MatchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate64/MatchState.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Deflate64/OutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Deflate64/OutputWindow.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Explode/ExplodeStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Explode/ExplodeStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Explode/HuftTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Explode/HuftTree.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJ2Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJ2Filter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilterARM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilterARM.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilterARM64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilterARM64.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilterARMT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilterARMT.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilterIA64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilterIA64.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilterPPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilterPPC.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilterRISCV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilterRISCV.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/BCJFilterSPARC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/BCJFilterSPARC.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/DeltaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/DeltaFilter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Filters/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Filters/Filter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/AesDecoderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/AesDecoderStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/Bcj2DecoderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/Bcj2DecoderStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/BitVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/BitVector.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/CRC.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/DecoderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/DecoderStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/ICoder.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LZipStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/Log.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/LzmaStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/LzmaStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/Registry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/LZMA/Utilites/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/LZMA/Utilites/Utils.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Lzw/LzwConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Lzw/LzwConstants.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Lzw/LzwStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Lzw/LzwStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/FreqData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/FreqData.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/ModelPPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/ModelPPM.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/PPMContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/PPMContext.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/Pointer.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/RangeCoder.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/RarMemBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/RarMemBlock.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/RarNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/RarNode.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/SEE2Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/SEE2Context.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/State.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/StateRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/StateRef.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/H/SubAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/H/SubAllocator.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/Allocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/Allocator.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/Coder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/Coder.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/MemoryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/MemoryNode.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/Model.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/Pointer.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/PpmContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/PpmContext.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/PpmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/PpmState.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/I1/See2Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/I1/See2Context.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/PpmdProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/PpmdProperties.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/PpmdStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/PpmdStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/PPMd/PpmdVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/PPMd/PpmdVersion.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/RLE90/RLE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/RLE90/RLE.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/IRarUnpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/IRarUnpack.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/RarBLAKE2spStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/RarBLAKE2spStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/RarCRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/RarCRC.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/RarCrcStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/RarCrcStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/RarStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/RarStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/UnpackV1/Unpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/UnpackV1/Unpack.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/UnpackV1/Unpack15.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/UnpackV1/Unpack15.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/UnpackV1/Unpack20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/UnpackV1/Unpack20.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/UnpackV1/Unpack50.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/UnpackV1/Unpack50.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/UnpackV2017/Unpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/UnpackV2017/Unpack.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/UnpackV2017/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/UnpackV2017/notes.txt -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/VM/BitInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/VM/BitInput.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/VM/RarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/VM/RarVM.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/VM/VMCmdFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/VM/VMCmdFlags.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/VM/VMCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/VM/VMCommands.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/VM/VMFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/VM/VMFlags.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Rar/VM/VMOpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Rar/VM/VMOpType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Reduce/ReduceStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Reduce/ReduceStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Shrink/BitStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Shrink/BitStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Shrink/HwUnshrink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Shrink/HwUnshrink.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Shrink/ShrinkStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Shrink/ShrinkStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Squeezed/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Squeezed/BitReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/BinaryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/BinaryUtils.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/CheckType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/CheckType.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Crc32.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Crc64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Crc64.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Filters/ArmFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Filters/ArmFilter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Filters/BlockFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Filters/BlockFilter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Filters/IA64Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Filters/IA64Filter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Filters/Lzma2Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Filters/Lzma2Filter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Filters/SparcFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Filters/SparcFilter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/Filters/X86Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/Filters/X86Filter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/MultiByteIntegers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/MultiByteIntegers.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/ReadOnlyStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/ReadOnlyStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/XZBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/XZBlock.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/XZFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/XZFooter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/XZHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/XZHeader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/XZIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/XZIndex.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/XZIndexRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/XZIndexRecord.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/XZReadOnlyStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/XZReadOnlyStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Compressors/Xz/XZStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Compressors/Xz/XZStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Crypto/BlockTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Crypto/BlockTransformer.cs -------------------------------------------------------------------------------- /src/SharpCompress/Crypto/Crc32Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Crypto/Crc32Stream.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/ArcFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/ArcFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/ArjFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/ArjFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/Factory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/GZipFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/GZipFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/IFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/IFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/RarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/RarFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/SevenZipFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/SevenZipFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/TarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/TarFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/ZStandardFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/ZStandardFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Factories/ZipFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Factories/ZipFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/BufferedSubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/BufferedSubStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/DataDescriptorStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/DataDescriptorStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/IStreamStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/IStreamStack.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/ListeningStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/ListeningStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/MarkingBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/MarkingBinaryReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/ReadOnlySubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/ReadOnlySubStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/SharpCompressStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/SharpCompressStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/SourceStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/SourceStream.cs -------------------------------------------------------------------------------- /src/SharpCompress/IO/StreamingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/IO/StreamingMode.cs -------------------------------------------------------------------------------- /src/SharpCompress/LazyReadOnlyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/LazyReadOnlyCollection.cs -------------------------------------------------------------------------------- /src/SharpCompress/NotNullExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/NotNullExtensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Polyfills/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Polyfills/StreamExtensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Polyfills/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Polyfills/StringExtensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/AbstractReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/AbstractReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Arc/ArcReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Arc/ArcReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Arj/ArjReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Arj/ArjReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Arj/MultiVolumeArjReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Arj/MultiVolumeArjReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Arj/SingleVolumeArjReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Arj/SingleVolumeArjReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/GZip/GZipReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/GZip/GZipReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/IReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/IReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/IReaderExtensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/IReaderExtractionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/IReaderExtractionListener.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/IReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/IReaderFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Rar/MultiVolumeRarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Rar/MultiVolumeRarReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Rar/RarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Rar/RarReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Rar/RarReaderEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Rar/RarReaderEntry.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Rar/RarReaderVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Rar/RarReaderVolume.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Rar/SingleVolumeRarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Rar/SingleVolumeRarReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/ReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/ReaderFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/ReaderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/ReaderOptions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/ReaderProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/ReaderProgress.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Tar/TarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Tar/TarReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/Readers/Zip/ZipReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Readers/Zip/ZipReader.cs -------------------------------------------------------------------------------- /src/SharpCompress/SharpCompress.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/SharpCompress.csproj -------------------------------------------------------------------------------- /src/SharpCompress/SharpCompress.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/SharpCompress.pfx -------------------------------------------------------------------------------- /src/SharpCompress/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Utility.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/AbstractWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/AbstractWriter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/GZip/GZipWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/GZip/GZipWriter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/GZip/GZipWriterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/GZip/GZipWriterOptions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/IWriter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/IWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/IWriterExtensions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/IWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/IWriterFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/Tar/TarWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/Tar/TarWriter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/Tar/TarWriterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/Tar/TarWriterOptions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/WriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/WriterFactory.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/WriterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/WriterOptions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/Zip/ZipWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/Zip/ZipWriter.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/Zip/ZipWriterEntryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/Zip/ZipWriterEntryOptions.cs -------------------------------------------------------------------------------- /src/SharpCompress/Writers/Zip/ZipWriterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/Writers/Zip/ZipWriterOptions.cs -------------------------------------------------------------------------------- /src/SharpCompress/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/src/SharpCompress/packages.lock.json -------------------------------------------------------------------------------- /tests/SharpCompress.Performance/JetbrainsProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Performance/JetbrainsProfiler.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Performance/LargeMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Performance/LargeMemoryStream.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Performance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Performance/Program.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Performance/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Performance/packages.lock.json -------------------------------------------------------------------------------- /tests/SharpCompress.Test/ADCTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/ADCTest.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/AdcAsyncTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/AdcAsyncTest.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Arc/ArcReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Arc/ArcReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/ArchiveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/ArchiveTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Arj/ArjReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Arj/ArjReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/BZip2/BZip2ReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/BZip2/BZip2ReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/BZip2/BZip2StreamAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/BZip2/BZip2StreamAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/ExceptionHierarchyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/ExceptionHierarchyTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/ExtractionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/ExtractionTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Filters/BranchExecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Filters/BranchExecTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/GZip/AsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/GZip/AsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/GZip/GZipArchiveAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/GZip/GZipArchiveAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/GZip/GZipArchiveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/GZip/GZipArchiveTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/GZip/GZipReaderAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/GZip/GZipReaderAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/GZip/GZipReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/GZip/GZipReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/GZip/GZipWriterAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/GZip/GZipWriterAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/GZip/GZipWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/GZip/GZipWriterTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Mocks/FlushOnDisposeStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Mocks/FlushOnDisposeStream.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Mocks/ForwardOnlyStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Mocks/ForwardOnlyStream.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Mocks/TestStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Mocks/TestStream.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/OperatingSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/OperatingSystemExtensions.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Rar/RarArchiveAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Rar/RarArchiveAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Rar/RarArchiveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Rar/RarArchiveTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Rar/RarCRCTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Rar/RarCRCTest.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Rar/RarHeaderFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Rar/RarHeaderFactoryTest.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Rar/RarReaderAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Rar/RarReaderAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Rar/RarReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Rar/RarReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/ReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/ReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/SharpCompress.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/SharpCompress.Test.csproj -------------------------------------------------------------------------------- /tests/SharpCompress.Test/SharpCompress.Test.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/SharpCompress.Test.snk -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Streams/LzmaStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Streams/LzmaStreamTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Streams/ZlibBaseStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Streams/ZlibBaseStreamTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Tar/TarArchiveAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Tar/TarArchiveAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Tar/TarArchiveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Tar/TarArchiveTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Tar/TarReaderAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Tar/TarReaderAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Tar/TarReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Tar/TarReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Tar/TarWriterAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Tar/TarWriterAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Tar/TarWriterDirectoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Tar/TarWriterDirectoryTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Tar/TarWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Tar/TarWriterTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/TestBase.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/UtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/UtilityTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/WriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/WriterTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/Crc32Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/Crc32Tests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/Crc64Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/Crc64Tests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/Filters/BCJTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/Filters/BCJTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/Filters/Lzma2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/Filters/Lzma2Tests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZBlockAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZBlockAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZBlockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZBlockTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZHeaderAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZHeaderAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZHeaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZHeaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZIndexAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZIndexAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZIndexTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZStreamAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZStreamAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZStreamTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Xz/XZTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Xz/XZTestsBase.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/TestPseudoTextStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/TestPseudoTextStream.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/Zip64AsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/Zip64AsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/Zip64Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/Zip64Tests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/ZipArchiveAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/ZipArchiveAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/ZipArchiveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/ZipArchiveTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/ZipReaderAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/ZipReaderAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/ZipReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/ZipReaderTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/ZipWriterAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/ZipWriterAsyncTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/ZipWriterDirectoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/ZipWriterDirectoryTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/Zip/ZipWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/Zip/ZipWriterTests.cs -------------------------------------------------------------------------------- /tests/SharpCompress.Test/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/SharpCompress.Test/packages.lock.json -------------------------------------------------------------------------------- /tests/TestArchives/Archives/64bitstream.zip.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/64bitstream.zip.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ARM.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ARM.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ARM64.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ARM64.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ARMT.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ARMT.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BCJ.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BCJ.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BCJ2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BCJ2.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.split.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.split.001 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.split.002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.split.002 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.split.003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.split.003 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.split.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.split.004 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.split.005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.split.005 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.split.006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.split.006 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.BZip2.split.007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.BZip2.split.007 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.Copy.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.Copy.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.Filters.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.Filters.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.IA64.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.IA64.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.LZMA.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.LZMA.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.LZMA.Aes.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.LZMA.Aes.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.LZMA2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.LZMA2.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.LZMA2.Aes.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.LZMA2.Aes.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.LZMA2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.LZMA2.exe -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.PPC.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.PPC.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.PPMd.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.PPMd.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.RISCV.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.RISCV.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.SPARC.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.SPARC.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.Tar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.Tar.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.Tar.tar.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.Tar.tar.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ZSTD.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ZSTD.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.001 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.002 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.003 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.004 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.005 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.ZSTD.Split.7z.006 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.delta.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.delta.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.delta.distance.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.delta.distance.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.encryptedFiles.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.encryptedFiles.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.eos.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.eos.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.nonsolid.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.nonsolid.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.solid.1block.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.solid.1block.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/7Zip.solid.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/7Zip.solid.7z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arc.crunched.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arc.crunched.arc -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arc.crunched.largefile.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arc.crunched.largefile.arc -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arc.squashed.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arc.squashed.arc -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arc.squashed.largefile.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arc.squashed.largefile.arc -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arc.squeezed.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arc.squeezed.arc -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arc.squeezed.largefile.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arc.squeezed.largefile.arc -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arc.uncompressed.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arc.uncompressed.arc -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.encrypted.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.encrypted.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method1.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method1.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method1.largefile.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method1.largefile.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method2.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method2.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method2.largefile.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method2.largefile.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method3.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method3.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method3.largefile.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method3.largefile.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method4.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method4.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.method4.largefile.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.method4.largefile.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.largefile.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.largefile.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.split.a01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.split.a01 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.split.a02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.split.a02 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.split.a03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.split.a03 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.split.a04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.split.a04 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.split.a05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.split.a05 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Arj.store.split.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Arj.store.split.arj -------------------------------------------------------------------------------- /tests/TestArchives/Archives/DotNetZip-obhg3mhx.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Infozip.nocomp.multi.z01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Infozip.nocomp.multi.z01 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Infozip.nocomp.multi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Infozip.nocomp.multi.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Issue_685.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Issue_685.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Original.7z.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Original.7z.001 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Original.7z.002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Original.7z.002 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Original.7z.003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Original.7z.003 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Original.7z.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Original.7z.004 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Original.7z.005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Original.7z.005 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Original.7z.006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Original.7z.006 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Original.7z.007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Original.7z.007 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/PrePostHeaders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/PrePostHeaders.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.Audio_program.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.Audio_program.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.Encrypted.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.Encrypted.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.comment.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.comment.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.encrypted_filesOnly.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.encrypted_filesOnly.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.jpeg.jpg -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.part01.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.part01.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.part02.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.part02.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.part03.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.part03.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.part04.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.part04.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.part05.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.part05.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.part06.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.part06.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.solid.part01.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.solid.part01.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.solid.part02.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.solid.part02.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.solid.part03.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.solid.part03.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.solid.part04.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.solid.part04.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.solid.part05.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.solid.part05.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.multi.solid.part06.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.multi.solid.part06.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.none.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.none.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar.solid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar.solid.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar15.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar15.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.multi.r00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.multi.r00 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.multi.r01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.multi.r01 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.multi.r02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.multi.r02 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.multi.r03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.multi.r03 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.multi.r04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.multi.r04 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.multi.r05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.multi.r05 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.multi.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.multi.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar2.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.multi.part01.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.multi.part01.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.multi.part02.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.multi.part02.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.multi.part03.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.multi.part03.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.multi.part04.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.multi.part04.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.multi.part05.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.multi.part05.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.multi.part06.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.multi.part06.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.multi.part07.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.multi.part07.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.split.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.split.001 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.split.002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.split.002 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.split.003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.split.003 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.split.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.split.004 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.split.005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.split.005 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar4.split.006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar4.split.006 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.comment.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.comment.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.crc_blake2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.crc_blake2.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.multi.part01.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.multi.part01.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.multi.part02.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.multi.part02.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.multi.part03.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.multi.part03.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.multi.part04.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.multi.part04.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.multi.part05.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.multi.part05.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.multi.part06.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.multi.part06.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.none.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.none.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Rar5.solid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Rar5.solid.rar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.ContainsRar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.ContainsRar.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.ContainsTarGz.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.ContainsTarGz.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.Empty.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.Empty.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.mod.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.mod.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.noEmptyDirs.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.noEmptyDirs.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.noEmptyDirs.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.noEmptyDirs.tar.bz2 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.noEmptyDirs.tar.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.noEmptyDirs.tar.lz -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.oldgnu.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.oldgnu.tar.gz -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.tar.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.tar.Z -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.tar.bz2 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.tar.gz -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.tar.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.tar.lz -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.tar.xz -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Tar.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Tar.tar.zst -------------------------------------------------------------------------------- /tests/TestArchives/Archives/TarCorrupted.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/TarCorrupted.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/TarWithSymlink.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/TarWithSymlink.tar.gz -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip26.nocomp.multi.z01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip26.nocomp.multi.z01 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip26.nocomp.multi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip26.nocomp.multi.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip26.nocomp.multi.zipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip26.nocomp.multi.zipx -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip26.nocomp.multi.zx01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip26.nocomp.multi.zx01 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip26.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip26.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip26_BZip2.zipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip26_BZip2.zipx -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip26_LZMA.zipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip26_LZMA.zipx -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip27_XZ.zipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip27_XZ.zipx -------------------------------------------------------------------------------- /tests/TestArchives/Archives/WinZip27_ZSTD.zipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/WinZip27_ZSTD.zipx -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.644.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.644.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.EntryComment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.EntryComment.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.Evil.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.Evil.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.LongComment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.LongComment.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.UnicodePathExtra.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.UnicodePathExtra.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.badlocalextra.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.badlocalextra.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.bzip2.dd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.bzip2.dd.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.bzip2.noEmptyDirs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.bzip2.noEmptyDirs.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.bzip2.pkware.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.bzip2.pkware.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.bzip2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.bzip2.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.WinzipAES.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.WinzipAES.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.dd-.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.dd-.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.dd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.dd.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.mod.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.mod.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.mod2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.mod2.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.pkware.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.pkware.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.split.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.split.001 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.split.002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.split.002 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.split.003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.split.003 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.split.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.split.004 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.split.005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.split.005 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.split.006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.split.006 -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.deflate64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.deflate64.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.implode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.implode.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.lzma.WinzipAES.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.lzma.WinzipAES.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.lzma.dd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.lzma.dd.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.lzma.noEmptyDirs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.lzma.noEmptyDirs.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.lzma.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.lzma.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.none.encrypted.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.none.encrypted.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.none.issue86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.none.issue86.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.none.noEmptyDirs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.none.noEmptyDirs.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.none.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.none.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.ppmd.dd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.ppmd.dd.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.ppmd.noEmptyDirs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.ppmd.noEmptyDirs.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.ppmd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.ppmd.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.reduce1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.reduce1.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.reduce2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.reduce2.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.reduce3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.reduce3.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.reduce4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.reduce4.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.shrink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.shrink.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.uncompressed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.uncompressed.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.zip64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.zip64.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/Zip.zipx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/Zip.zipx -------------------------------------------------------------------------------- /tests/TestArchives/Archives/adc_compressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/adc_compressed.bin -------------------------------------------------------------------------------- /tests/TestArchives/Archives/adc_decompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/adc_decompressed.bin -------------------------------------------------------------------------------- /tests/TestArchives/Archives/false.positive.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/false.positive.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/test_477.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/test_477.zip -------------------------------------------------------------------------------- /tests/TestArchives/Archives/ustar with long names.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/ustar with long names.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/very long filename.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/very long filename.tar -------------------------------------------------------------------------------- /tests/TestArchives/Archives/zipcrypto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Archives/zipcrypto.zip -------------------------------------------------------------------------------- /tests/TestArchives/MiscTest/alice29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/MiscTest/alice29.txt -------------------------------------------------------------------------------- /tests/TestArchives/MiscTest/news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/MiscTest/news.txt -------------------------------------------------------------------------------- /tests/TestArchives/MiscTest/test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/MiscTest/test.dat -------------------------------------------------------------------------------- /tests/TestArchives/Original/exe/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Original/exe/test.exe -------------------------------------------------------------------------------- /tests/TestArchives/Original/jpg/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Original/jpg/test.jpg -------------------------------------------------------------------------------- /tests/TestArchives/Original/тест.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/Original/тест.txt -------------------------------------------------------------------------------- /tests/TestArchives/SharpCompress.AES.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/SharpCompress.AES.zip -------------------------------------------------------------------------------- /tests/TestArchives/SharpCompress.Encrypted.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/SharpCompress.Encrypted.zip -------------------------------------------------------------------------------- /tests/TestArchives/SharpCompress.Encrypted2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamhathcock/sharpcompress/HEAD/tests/TestArchives/SharpCompress.Encrypted2.zip --------------------------------------------------------------------------------