├── .github └── workflows │ ├── codeql-analysis.yml │ └── main.yml ├── .travis.yml ├── BWT.c ├── BWT.h ├── CRC.h ├── CRC.m ├── CSBlockStreamHandle.h ├── CSBlockStreamHandle.m ├── CSByteStreamHandle.h ├── CSByteStreamHandle.m ├── CSBzip2Handle.h ├── CSBzip2Handle.m ├── CSCommandLineParser.h ├── CSCommandLineParser.m ├── CSFileHandle.h ├── CSFileHandle.m ├── CSHandle.h ├── CSHandle.m ├── CSHexDump.m ├── CSInputBuffer.h ├── CSInputBuffer.m ├── CSJSONPrinter.h ├── CSJSONPrinter.m ├── CSMemoryHandle.h ├── CSMemoryHandle.m ├── CSMultiFileHandle.h ├── CSMultiFileHandle.m ├── CSMultiHandle.h ├── CSMultiHandle.m ├── CSSegmentedHandle.h ├── CSSegmentedHandle.m ├── CSStreamHandle.h ├── CSStreamHandle.m ├── CSSubHandle.h ├── CSSubHandle.m ├── CSZlibHandle.h ├── CSZlibHandle.m ├── CarrylessRangeCoder.h ├── CarrylessRangeCoder.m ├── Checksums.h ├── Checksums.m ├── ClangAnalyser.h ├── CommandLineCommon.h ├── CommandLineCommon.m ├── Crypto ├── aes.h ├── aes_modes.c ├── aescrypt.c ├── aeskey.c ├── aesopt.h ├── aestab.c ├── aestab.h ├── brg_endian.h ├── des.c ├── des.h ├── hmac_sha1.c ├── hmac_sha1.h ├── hmac_sha256.c ├── hmac_sha256.h ├── md5.c ├── md5.h ├── pbkdf2_hmac_sha256.c ├── pbkdf2_hmac_sha256.h ├── sha.c └── sha.h ├── English.lproj └── InfoPlist.strings ├── Extra ├── lsar.1 ├── lsar.bash_completion ├── unar.1 └── unar.bash_completion ├── Info.plist ├── LICENSE ├── LZSS.c ├── LZSS.h ├── LZW.c ├── LZW.h ├── Makefile.common ├── Makefile.freebsd ├── Makefile.legacy ├── Makefile.linux ├── Makefile.windows ├── NSDateXAD.h ├── NSDateXAD.m ├── NSStringPrinting.h ├── NSStringPrinting.m ├── NumberParsing.h ├── NumberParsing.m ├── PDF ├── CCITTHandle.h ├── CCITTHandle.m ├── LZWHandle.h ├── LZWHandle.m ├── NSDictionaryNumberExtension.h ├── NSDictionaryNumberExtension.m ├── PDFEncryptionHandler.h ├── PDFEncryptionHandler.m ├── PDFEncryptionUtils.h ├── PDFEncryptionUtils.m ├── PDFParser.h ├── PDFParser.m ├── PDFStream.h └── PDFStream.m ├── PPMd ├── Context.c ├── Context.h ├── Dependencies ├── Fuzzer.c ├── Makefile ├── PPMd.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── RangeCoder.c ├── RangeCoder.h ├── SimpleDecompressor.c ├── SubAllocator.h ├── SubAllocatorBrimstone.c ├── SubAllocatorBrimstone.h ├── SubAllocatorVariantG.c ├── SubAllocatorVariantG.h ├── SubAllocatorVariantH.c ├── SubAllocatorVariantH.h ├── SubAllocatorVariantI.c ├── SubAllocatorVariantI.h ├── VariantG.c ├── VariantG.h ├── VariantH.c ├── VariantH.h ├── VariantI.c └── VariantI.h ├── Progress.h ├── Progress.m ├── RARAudioDecoder.c ├── RARAudioDecoder.h ├── RARBug.c ├── RARBug.h ├── RARVirtualMachine.c ├── RARVirtualMachine.h ├── README.md ├── Realloc.h ├── Scanning.h ├── Scanning.m ├── StuffItXEnglishDictionary.c ├── StuffItXUtilities.h ├── StuffItXUtilities.m ├── WinZipJPEG ├── ArithmeticDecoder.c ├── ArithmeticDecoder.h ├── Decompressor.c ├── Decompressor.h ├── Dependencies ├── InputStream.h ├── JPEG.c ├── JPEG.h ├── LZMA.h ├── Makefile ├── RawDecoder.c └── Test.c ├── Windows ├── Foundation.1.0.dll ├── bin │ └── libtoolstub.pl ├── include │ ├── bzlib.h │ ├── regex.h │ ├── zconf.h │ └── zlib.h ├── lib │ ├── libbz2.a │ └── libz.a └── regex.c ├── XAD7ZipAESHandle.h ├── XAD7ZipAESHandle.m ├── XAD7ZipBCJ2Handle.h ├── XAD7ZipBCJ2Handle.m ├── XAD7ZipBranchHandles.h ├── XAD7ZipBranchHandles.m ├── XAD7ZipParser.h ├── XAD7ZipParser.m ├── XADALZipParser.h ├── XADALZipParser.m ├── XADARCCrunchHandle.h ├── XADARCCrunchHandle.m ├── XADARCCrushHandle.h ├── XADARCCrushHandle.m ├── XADARCDistillHandle.h ├── XADARCDistillHandle.m ├── XADARCParser.h ├── XADARCParser.m ├── XADARJFastestHandle.h ├── XADARJFastestHandle.m ├── XADARJParser.h ├── XADARJParser.m ├── XADAppleDouble.h ├── XADAppleDouble.m ├── XADAppleSingleParser.h ├── XADAppleSingleParser.m ├── XADArParser.h ├── XADArParser.m ├── XADArchive.h ├── XADArchive.m ├── XADArchiveParser.h ├── XADArchiveParser.m ├── XADArchiveParserDescriptions.h ├── XADArchiveParserDescriptions.m ├── XADBinHexParser.h ├── XADBinHexParser.m ├── XADBlockHandle.h ├── XADBlockHandle.m ├── XADBzip2Parser.h ├── XADBzip2Parser.m ├── XADCABBlockHandle.h ├── XADCABBlockHandle.m ├── XADCABBlockReader.h ├── XADCABBlockReader.m ├── XADCABParser.h ├── XADCABParser.m ├── XADCFBFParser.h ├── XADCFBFParser.m ├── XADCRCHandle.h ├── XADCRCHandle.m ├── XADCRCSuffixHandle.h ├── XADCRCSuffixHandle.m ├── XADChecksumHandle.h ├── XADChecksumHandle.m ├── XADCompactProLZHHandle.h ├── XADCompactProLZHHandle.m ├── XADCompactProParser.h ├── XADCompactProParser.m ├── XADCompactProRLEHandle.h ├── XADCompactProRLEHandle.m ├── XADCompressHandle.h ├── XADCompressHandle.m ├── XADCompressParser.h ├── XADCompressParser.m ├── XADCpioParser.h ├── XADCpioParser.m ├── XADCrunchHandles.h ├── XADCrunchHandles.m ├── XADCrunchParser.h ├── XADCrunchParser.m ├── XADDeflateHandle.h ├── XADDeflateHandle.m ├── XADDeltaHandle.h ├── XADDeltaHandle.m ├── XADDiskDoublerADnHandle.h ├── XADDiskDoublerADnHandle.m ├── XADDiskDoublerDDnHandle.h ├── XADDiskDoublerDDnHandle.m ├── XADDiskDoublerMethod2Handle.h ├── XADDiskDoublerMethod2Handle.m ├── XADDiskDoublerParser.h ├── XADDiskDoublerParser.m ├── XADException.h ├── XADException.m ├── XADFastLZSSHandle.h ├── XADFastLZSSHandle.m ├── XADGzipParser.h ├── XADGzipParser.m ├── XADISO9660Parser.h ├── XADISO9660Parser.m ├── XADLArcHandles.h ├── XADLArcHandles.m ├── XADLBRParser.h ├── XADLBRParser.m ├── XADLZHDynamicHandle.h ├── XADLZHDynamicHandle.m ├── XADLZHOldHandles.h ├── XADLZHOldHandles.m ├── XADLZHParser.h ├── XADLZHParser.m ├── XADLZHSFXParsers.h ├── XADLZHSFXParsers.m ├── XADLZHStaticHandle.h ├── XADLZHStaticHandle.m ├── XADLZMA2Handle.h ├── XADLZMA2Handle.m ├── XADLZMAAloneParser.h ├── XADLZMAAloneParser.m ├── XADLZMAHandle.h ├── XADLZMAHandle.m ├── XADLZSSHandle.h ├── XADLZSSHandle.m ├── XADLZXHandle.h ├── XADLZXHandle.m ├── XADLZXParser.h ├── XADLZXParser.m ├── XADLibXADIOHandle.h ├── XADLibXADIOHandle.m ├── XADLibXADParser.h ├── XADLibXADParser.m ├── XADMD5Handle.h ├── XADMD5Handle.m ├── XADMSLZXHandle.h ├── XADMSLZXHandle.m ├── XADMSZipHandle.h ├── XADMSZipHandle.m ├── XADMacArchiveParser.h ├── XADMacArchiveParser.m ├── XADMacBinaryParser.h ├── XADMacBinaryParser.m ├── XADMaster.h ├── XADMaster.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── XADMaster.xcscheme │ └── XADMasterTests.xcscheme ├── XADMasterTests ├── CRCCalculationTests.m ├── Info.plist ├── RAR │ └── XADRARParserTests.m ├── Stuffit │ ├── StuffitFixtures │ │ ├── 1234567.sit.bin │ │ └── 123456789012.sit.bin │ └── StuffitTests.m ├── WARC │ ├── WARCFixtures │ │ ├── warc-example-1.0 │ │ └── warc-example-1.1 │ └── XADWARCParserTests.m ├── XADArchiveParserTests.m ├── XADPlatformOSXTests.m ├── XADRAR5ParserTests.m ├── XADSFXDetectionParserTests.m ├── XADZipParserTests.m ├── XADZippedBzip2LeakTests.m └── eicar.bz ├── XADMaster_Prefix.pch ├── XADNDSParser.h ├── XADNDSParser.m ├── XADNSAParser.h ├── XADNSAParser.m ├── XADNSISBzip2Handle.h ├── XADNSISBzip2Handle.m ├── XADNSISParser.h ├── XADNSISParser.m ├── XADNowCompressHandle.h ├── XADNowCompressHandle.m ├── XADNowCompressParser.h ├── XADNowCompressParser.m ├── XADPDFParser.h ├── XADPDFParser.m ├── XADPMArc1Handle.h ├── XADPMArc1Handle.m ├── XADPNGWriter.h ├── XADPNGWriter.m ├── XADPPMdHandles.h ├── XADPPMdHandles.m ├── XADPPMdParser.h ├── XADPPMdParser.m ├── XADPackItParser.h ├── XADPackItParser.m ├── XADPaddedBlockHandle.h ├── XADPaddedBlockHandle.m ├── XADPath.h ├── XADPath.m ├── XADPlatform.h ├── XADPlatformLinux.m ├── XADPlatformMacOSX.m ├── XADPlatformWindows.m ├── XADPlatformiOS.m ├── XADPowerPackerParser.h ├── XADPowerPackerParser.m ├── XADPrefixCode.h ├── XADPrefixCode.m ├── XADQuantumHandle.h ├── XADQuantumHandle.m ├── XADRAR13CryptHandle.h ├── XADRAR13CryptHandle.m ├── XADRAR15CryptHandle.h ├── XADRAR15CryptHandle.m ├── XADRAR15Handle.h ├── XADRAR15Handle.m ├── XADRAR20CryptHandle.h ├── XADRAR20CryptHandle.m ├── XADRAR20Handle.h ├── XADRAR20Handle.m ├── XADRAR30Handle.h ├── XADRAR30Handle.m ├── XADRAR50Handle.h ├── XADRAR50Handle.m ├── XADRAR5Parser.h ├── XADRAR5Parser.m ├── XADRARAESHandle.h ├── XADRARAESHandle.m ├── XADRARFilters.h ├── XADRARFilters.m ├── XADRARInputHandle.h ├── XADRARInputHandle.m ├── XADRARParser.h ├── XADRARParser.m ├── XADRARVirtualMachine.h ├── XADRARVirtualMachine.m ├── XADRC4Handle.h ├── XADRC4Handle.m ├── XADRLE90Handle.h ├── XADRLE90Handle.m ├── XADRPMParser.h ├── XADRPMParser.m ├── XADRegex.h ├── XADRegex.m ├── XADResourceFork.h ├── XADResourceFork.m ├── XADSARParser.h ├── XADSARParser.m ├── XADSHA1Handle.h ├── XADSHA1Handle.m ├── XADSWFGeometry.h ├── XADSWFGeometry.m ├── XADSWFParser.h ├── XADSWFParser.m ├── XADSWFTagParser.h ├── XADSWFTagParser.m ├── XADSimpleUnarchiver.h ├── XADSimpleUnarchiver.m ├── XADSkipHandle.h ├── XADSkipHandle.m ├── XADSplitFileParser.h ├── XADSplitFileParser.m ├── XADSqueezeHandle.h ├── XADSqueezeHandle.m ├── XADSqueezeParser.h ├── XADSqueezeParser.m ├── XADStacLZSHandle.h ├── XADStacLZSHandle.m ├── XADString.h ├── XADString.m ├── XADStringCFString.m ├── XADStringICU.m ├── XADStringIconv.m ├── XADStringWindows.m ├── XADStuffIt13Handle.h ├── XADStuffIt13Handle.m ├── XADStuffIt5Parser.h ├── XADStuffIt5Parser.m ├── XADStuffItArsenicHandle.h ├── XADStuffItArsenicHandle.m ├── XADStuffItDESHandle.h ├── XADStuffItDESHandle.m ├── XADStuffItHuffmanHandle.h ├── XADStuffItHuffmanHandle.m ├── XADStuffItOldHandles.h ├── XADStuffItOldHandles.m ├── XADStuffItParser.h ├── XADStuffItParser.m ├── XADStuffItSplitParser.h ├── XADStuffItSplitParser.m ├── XADStuffItXBlendHandle.h ├── XADStuffItXBlendHandle.m ├── XADStuffItXBlockHandle.h ├── XADStuffItXBlockHandle.m ├── XADStuffItXCyanideHandle.h ├── XADStuffItXCyanideHandle.m ├── XADStuffItXDarkhorseHandle.h ├── XADStuffItXDarkhorseHandle.m ├── XADStuffItXEnglishHandle.h ├── XADStuffItXEnglishHandle.m ├── XADStuffItXIronHandle.h ├── XADStuffItXIronHandle.m ├── XADStuffItXParser.h ├── XADStuffItXParser.m ├── XADStuffItXX86Handle.h ├── XADStuffItXX86Handle.m ├── XADTarParser.h ├── XADTarParser.m ├── XADTarSparseHandle.h ├── XADTarSparseHandle.m ├── XADUnarchiver.h ├── XADUnarchiver.m ├── XADUnarchiverOldMacOSX.m ├── XADWARCParser.h ├── XADWARCParser.m ├── XADWinZipAESHandle.h ├── XADWinZipAESHandle.m ├── XADWinZipJPEGHandle.h ├── XADWinZipJPEGHandle.m ├── XADWinZipWavPackHandle.h ├── XADWinZipWavPackHandle.m ├── XADXARParser.h ├── XADXARParser.m ├── XADXORHandle.h ├── XADXORHandle.m ├── XADXORSumHandle.h ├── XADXORSumHandle.m ├── XADXZHandle.h ├── XADXZHandle.m ├── XADXZParser.h ├── XADXZParser.m ├── XADZipCryptHandle.h ├── XADZipCryptHandle.m ├── XADZipImplodeHandle.h ├── XADZipImplodeHandle.m ├── XADZipParser.h ├── XADZipParser.m ├── XADZipParserStructures.h ├── XADZipSFXParsers.h ├── XADZipSFXParsers.m ├── XADZipShrinkHandle.h ├── XADZipShrinkHandle.m ├── XADZooParser.h ├── XADZooParser.m ├── libxad ├── all.c ├── clientfunc.c ├── clients.c ├── clients │ ├── AMPK.c │ ├── Ace.c │ ├── CrunchDisk.c │ ├── DCS.c │ ├── DMS.c │ ├── FS_Amiga.c │ ├── FS_FAT.c │ ├── FS_SOS.c │ ├── IFF-CDAF.c │ ├── LhA.c │ ├── LhF.c │ ├── MDC.c │ ├── MXM-SimpleArc.c │ ├── PackDev.c │ ├── PackDisk.c │ ├── SuperDuper3.c │ ├── Tar.c │ ├── Zoom.c │ ├── xDisk.c │ ├── xMash.c │ ├── xadCRC_1021.c │ ├── xadIO.c │ ├── xadIO.h │ ├── xadIO_Compress.c │ └── xadIO_XPK.c ├── config.h ├── copymem.c ├── crc.c ├── dates.c ├── debug.c ├── diskfile.c ├── diskunarc.c ├── error.c ├── filename.c ├── fileunarc.c ├── gpl.txt ├── hook.c ├── hook_diskarc.c ├── hook_mem.c ├── hook_splitted.c ├── hook_stream.c ├── include │ ├── ConvertE.c │ ├── SDI_compiler.h │ ├── functions.h │ ├── privdefs.h │ ├── version.h │ └── xadmaster.h ├── info.c ├── lgpl.txt ├── objects.c ├── protection.c └── unix │ ├── emulation.c │ ├── emulation.h │ ├── hook_fh.c │ ├── init.c │ └── xadClient.h ├── lsar.m ├── lzma ├── Bra.c ├── Bra.h ├── Bra86.c ├── BraIA64.c ├── Lzma2Dec.c ├── Lzma2Dec.h ├── LzmaDec.c ├── LzmaDec.h └── Types.h ├── unar.m └── wavpack ├── common_utils.c ├── decorr_utils.c ├── entropy_utils.c ├── open_legacy.c ├── open_utils.c ├── read_words.c ├── tags.c ├── unpack.c ├── unpack_floats.c ├── unpack_seek.c ├── unpack_utils.c ├── wavpack.h ├── wavpack_local.h └── wavpack_version.h /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/.travis.yml -------------------------------------------------------------------------------- /BWT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/BWT.c -------------------------------------------------------------------------------- /BWT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/BWT.h -------------------------------------------------------------------------------- /CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CRC.h -------------------------------------------------------------------------------- /CRC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CRC.m -------------------------------------------------------------------------------- /CSBlockStreamHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSBlockStreamHandle.h -------------------------------------------------------------------------------- /CSBlockStreamHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSBlockStreamHandle.m -------------------------------------------------------------------------------- /CSByteStreamHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSByteStreamHandle.h -------------------------------------------------------------------------------- /CSByteStreamHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSByteStreamHandle.m -------------------------------------------------------------------------------- /CSBzip2Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSBzip2Handle.h -------------------------------------------------------------------------------- /CSBzip2Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSBzip2Handle.m -------------------------------------------------------------------------------- /CSCommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSCommandLineParser.h -------------------------------------------------------------------------------- /CSCommandLineParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSCommandLineParser.m -------------------------------------------------------------------------------- /CSFileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSFileHandle.h -------------------------------------------------------------------------------- /CSFileHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSFileHandle.m -------------------------------------------------------------------------------- /CSHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSHandle.h -------------------------------------------------------------------------------- /CSHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSHandle.m -------------------------------------------------------------------------------- /CSHexDump.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSHexDump.m -------------------------------------------------------------------------------- /CSInputBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSInputBuffer.h -------------------------------------------------------------------------------- /CSInputBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSInputBuffer.m -------------------------------------------------------------------------------- /CSJSONPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSJSONPrinter.h -------------------------------------------------------------------------------- /CSJSONPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSJSONPrinter.m -------------------------------------------------------------------------------- /CSMemoryHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSMemoryHandle.h -------------------------------------------------------------------------------- /CSMemoryHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSMemoryHandle.m -------------------------------------------------------------------------------- /CSMultiFileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSMultiFileHandle.h -------------------------------------------------------------------------------- /CSMultiFileHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSMultiFileHandle.m -------------------------------------------------------------------------------- /CSMultiHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSMultiHandle.h -------------------------------------------------------------------------------- /CSMultiHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSMultiHandle.m -------------------------------------------------------------------------------- /CSSegmentedHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSSegmentedHandle.h -------------------------------------------------------------------------------- /CSSegmentedHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSSegmentedHandle.m -------------------------------------------------------------------------------- /CSStreamHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSStreamHandle.h -------------------------------------------------------------------------------- /CSStreamHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSStreamHandle.m -------------------------------------------------------------------------------- /CSSubHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSSubHandle.h -------------------------------------------------------------------------------- /CSSubHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSSubHandle.m -------------------------------------------------------------------------------- /CSZlibHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSZlibHandle.h -------------------------------------------------------------------------------- /CSZlibHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CSZlibHandle.m -------------------------------------------------------------------------------- /CarrylessRangeCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CarrylessRangeCoder.h -------------------------------------------------------------------------------- /CarrylessRangeCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CarrylessRangeCoder.m -------------------------------------------------------------------------------- /Checksums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Checksums.h -------------------------------------------------------------------------------- /Checksums.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Checksums.m -------------------------------------------------------------------------------- /ClangAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/ClangAnalyser.h -------------------------------------------------------------------------------- /CommandLineCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CommandLineCommon.h -------------------------------------------------------------------------------- /CommandLineCommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/CommandLineCommon.m -------------------------------------------------------------------------------- /Crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/aes.h -------------------------------------------------------------------------------- /Crypto/aes_modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/aes_modes.c -------------------------------------------------------------------------------- /Crypto/aescrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/aescrypt.c -------------------------------------------------------------------------------- /Crypto/aeskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/aeskey.c -------------------------------------------------------------------------------- /Crypto/aesopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/aesopt.h -------------------------------------------------------------------------------- /Crypto/aestab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/aestab.c -------------------------------------------------------------------------------- /Crypto/aestab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/aestab.h -------------------------------------------------------------------------------- /Crypto/brg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/brg_endian.h -------------------------------------------------------------------------------- /Crypto/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/des.c -------------------------------------------------------------------------------- /Crypto/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/des.h -------------------------------------------------------------------------------- /Crypto/hmac_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/hmac_sha1.c -------------------------------------------------------------------------------- /Crypto/hmac_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/hmac_sha1.h -------------------------------------------------------------------------------- /Crypto/hmac_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/hmac_sha256.c -------------------------------------------------------------------------------- /Crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/hmac_sha256.h -------------------------------------------------------------------------------- /Crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/md5.c -------------------------------------------------------------------------------- /Crypto/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/md5.h -------------------------------------------------------------------------------- /Crypto/pbkdf2_hmac_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/pbkdf2_hmac_sha256.c -------------------------------------------------------------------------------- /Crypto/pbkdf2_hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/pbkdf2_hmac_sha256.h -------------------------------------------------------------------------------- /Crypto/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/sha.c -------------------------------------------------------------------------------- /Crypto/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Crypto/sha.h -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Extra/lsar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Extra/lsar.1 -------------------------------------------------------------------------------- /Extra/lsar.bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Extra/lsar.bash_completion -------------------------------------------------------------------------------- /Extra/unar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Extra/unar.1 -------------------------------------------------------------------------------- /Extra/unar.bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Extra/unar.bash_completion -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /LZSS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/LZSS.c -------------------------------------------------------------------------------- /LZSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/LZSS.h -------------------------------------------------------------------------------- /LZW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/LZW.c -------------------------------------------------------------------------------- /LZW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/LZW.h -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Makefile.common -------------------------------------------------------------------------------- /Makefile.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Makefile.freebsd -------------------------------------------------------------------------------- /Makefile.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Makefile.legacy -------------------------------------------------------------------------------- /Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Makefile.linux -------------------------------------------------------------------------------- /Makefile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Makefile.windows -------------------------------------------------------------------------------- /NSDateXAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/NSDateXAD.h -------------------------------------------------------------------------------- /NSDateXAD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/NSDateXAD.m -------------------------------------------------------------------------------- /NSStringPrinting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/NSStringPrinting.h -------------------------------------------------------------------------------- /NSStringPrinting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/NSStringPrinting.m -------------------------------------------------------------------------------- /NumberParsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/NumberParsing.h -------------------------------------------------------------------------------- /NumberParsing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/NumberParsing.m -------------------------------------------------------------------------------- /PDF/CCITTHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/CCITTHandle.h -------------------------------------------------------------------------------- /PDF/CCITTHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/CCITTHandle.m -------------------------------------------------------------------------------- /PDF/LZWHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/LZWHandle.h -------------------------------------------------------------------------------- /PDF/LZWHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/LZWHandle.m -------------------------------------------------------------------------------- /PDF/NSDictionaryNumberExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/NSDictionaryNumberExtension.h -------------------------------------------------------------------------------- /PDF/NSDictionaryNumberExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/NSDictionaryNumberExtension.m -------------------------------------------------------------------------------- /PDF/PDFEncryptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFEncryptionHandler.h -------------------------------------------------------------------------------- /PDF/PDFEncryptionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFEncryptionHandler.m -------------------------------------------------------------------------------- /PDF/PDFEncryptionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFEncryptionUtils.h -------------------------------------------------------------------------------- /PDF/PDFEncryptionUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFEncryptionUtils.m -------------------------------------------------------------------------------- /PDF/PDFParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFParser.h -------------------------------------------------------------------------------- /PDF/PDFParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFParser.m -------------------------------------------------------------------------------- /PDF/PDFStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFStream.h -------------------------------------------------------------------------------- /PDF/PDFStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PDF/PDFStream.m -------------------------------------------------------------------------------- /PPMd/Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/Context.c -------------------------------------------------------------------------------- /PPMd/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/Context.h -------------------------------------------------------------------------------- /PPMd/Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/Dependencies -------------------------------------------------------------------------------- /PPMd/Fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/Fuzzer.c -------------------------------------------------------------------------------- /PPMd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/Makefile -------------------------------------------------------------------------------- /PPMd/PPMd.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/PPMd.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PPMd/PPMd.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/PPMd.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PPMd/RangeCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/RangeCoder.c -------------------------------------------------------------------------------- /PPMd/RangeCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/RangeCoder.h -------------------------------------------------------------------------------- /PPMd/SimpleDecompressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SimpleDecompressor.c -------------------------------------------------------------------------------- /PPMd/SubAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocator.h -------------------------------------------------------------------------------- /PPMd/SubAllocatorBrimstone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorBrimstone.c -------------------------------------------------------------------------------- /PPMd/SubAllocatorBrimstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorBrimstone.h -------------------------------------------------------------------------------- /PPMd/SubAllocatorVariantG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorVariantG.c -------------------------------------------------------------------------------- /PPMd/SubAllocatorVariantG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorVariantG.h -------------------------------------------------------------------------------- /PPMd/SubAllocatorVariantH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorVariantH.c -------------------------------------------------------------------------------- /PPMd/SubAllocatorVariantH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorVariantH.h -------------------------------------------------------------------------------- /PPMd/SubAllocatorVariantI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorVariantI.c -------------------------------------------------------------------------------- /PPMd/SubAllocatorVariantI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/SubAllocatorVariantI.h -------------------------------------------------------------------------------- /PPMd/VariantG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/VariantG.c -------------------------------------------------------------------------------- /PPMd/VariantG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/VariantG.h -------------------------------------------------------------------------------- /PPMd/VariantH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/VariantH.c -------------------------------------------------------------------------------- /PPMd/VariantH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/VariantH.h -------------------------------------------------------------------------------- /PPMd/VariantI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/VariantI.c -------------------------------------------------------------------------------- /PPMd/VariantI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/PPMd/VariantI.h -------------------------------------------------------------------------------- /Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Progress.h -------------------------------------------------------------------------------- /Progress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Progress.m -------------------------------------------------------------------------------- /RARAudioDecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/RARAudioDecoder.c -------------------------------------------------------------------------------- /RARAudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/RARAudioDecoder.h -------------------------------------------------------------------------------- /RARBug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/RARBug.c -------------------------------------------------------------------------------- /RARBug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/RARBug.h -------------------------------------------------------------------------------- /RARVirtualMachine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/RARVirtualMachine.c -------------------------------------------------------------------------------- /RARVirtualMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/RARVirtualMachine.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/README.md -------------------------------------------------------------------------------- /Realloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Realloc.h -------------------------------------------------------------------------------- /Scanning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Scanning.h -------------------------------------------------------------------------------- /Scanning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Scanning.m -------------------------------------------------------------------------------- /StuffItXEnglishDictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/StuffItXEnglishDictionary.c -------------------------------------------------------------------------------- /StuffItXUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/StuffItXUtilities.h -------------------------------------------------------------------------------- /StuffItXUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/StuffItXUtilities.m -------------------------------------------------------------------------------- /WinZipJPEG/ArithmeticDecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/ArithmeticDecoder.c -------------------------------------------------------------------------------- /WinZipJPEG/ArithmeticDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/ArithmeticDecoder.h -------------------------------------------------------------------------------- /WinZipJPEG/Decompressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/Decompressor.c -------------------------------------------------------------------------------- /WinZipJPEG/Decompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/Decompressor.h -------------------------------------------------------------------------------- /WinZipJPEG/Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/Dependencies -------------------------------------------------------------------------------- /WinZipJPEG/InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/InputStream.h -------------------------------------------------------------------------------- /WinZipJPEG/JPEG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/JPEG.c -------------------------------------------------------------------------------- /WinZipJPEG/JPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/JPEG.h -------------------------------------------------------------------------------- /WinZipJPEG/LZMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/LZMA.h -------------------------------------------------------------------------------- /WinZipJPEG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/Makefile -------------------------------------------------------------------------------- /WinZipJPEG/RawDecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/RawDecoder.c -------------------------------------------------------------------------------- /WinZipJPEG/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/WinZipJPEG/Test.c -------------------------------------------------------------------------------- /Windows/Foundation.1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/Foundation.1.0.dll -------------------------------------------------------------------------------- /Windows/bin/libtoolstub.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/bin/libtoolstub.pl -------------------------------------------------------------------------------- /Windows/include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/include/bzlib.h -------------------------------------------------------------------------------- /Windows/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/include/regex.h -------------------------------------------------------------------------------- /Windows/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/include/zconf.h -------------------------------------------------------------------------------- /Windows/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/include/zlib.h -------------------------------------------------------------------------------- /Windows/lib/libbz2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/lib/libbz2.a -------------------------------------------------------------------------------- /Windows/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/lib/libz.a -------------------------------------------------------------------------------- /Windows/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/Windows/regex.c -------------------------------------------------------------------------------- /XAD7ZipAESHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipAESHandle.h -------------------------------------------------------------------------------- /XAD7ZipAESHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipAESHandle.m -------------------------------------------------------------------------------- /XAD7ZipBCJ2Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipBCJ2Handle.h -------------------------------------------------------------------------------- /XAD7ZipBCJ2Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipBCJ2Handle.m -------------------------------------------------------------------------------- /XAD7ZipBranchHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipBranchHandles.h -------------------------------------------------------------------------------- /XAD7ZipBranchHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipBranchHandles.m -------------------------------------------------------------------------------- /XAD7ZipParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipParser.h -------------------------------------------------------------------------------- /XAD7ZipParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XAD7ZipParser.m -------------------------------------------------------------------------------- /XADALZipParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADALZipParser.h -------------------------------------------------------------------------------- /XADALZipParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADALZipParser.m -------------------------------------------------------------------------------- /XADARCCrunchHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCCrunchHandle.h -------------------------------------------------------------------------------- /XADARCCrunchHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCCrunchHandle.m -------------------------------------------------------------------------------- /XADARCCrushHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCCrushHandle.h -------------------------------------------------------------------------------- /XADARCCrushHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCCrushHandle.m -------------------------------------------------------------------------------- /XADARCDistillHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCDistillHandle.h -------------------------------------------------------------------------------- /XADARCDistillHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCDistillHandle.m -------------------------------------------------------------------------------- /XADARCParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCParser.h -------------------------------------------------------------------------------- /XADARCParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARCParser.m -------------------------------------------------------------------------------- /XADARJFastestHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARJFastestHandle.h -------------------------------------------------------------------------------- /XADARJFastestHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARJFastestHandle.m -------------------------------------------------------------------------------- /XADARJParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARJParser.h -------------------------------------------------------------------------------- /XADARJParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADARJParser.m -------------------------------------------------------------------------------- /XADAppleDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADAppleDouble.h -------------------------------------------------------------------------------- /XADAppleDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADAppleDouble.m -------------------------------------------------------------------------------- /XADAppleSingleParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADAppleSingleParser.h -------------------------------------------------------------------------------- /XADAppleSingleParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADAppleSingleParser.m -------------------------------------------------------------------------------- /XADArParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArParser.h -------------------------------------------------------------------------------- /XADArParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArParser.m -------------------------------------------------------------------------------- /XADArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArchive.h -------------------------------------------------------------------------------- /XADArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArchive.m -------------------------------------------------------------------------------- /XADArchiveParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArchiveParser.h -------------------------------------------------------------------------------- /XADArchiveParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArchiveParser.m -------------------------------------------------------------------------------- /XADArchiveParserDescriptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArchiveParserDescriptions.h -------------------------------------------------------------------------------- /XADArchiveParserDescriptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADArchiveParserDescriptions.m -------------------------------------------------------------------------------- /XADBinHexParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADBinHexParser.h -------------------------------------------------------------------------------- /XADBinHexParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADBinHexParser.m -------------------------------------------------------------------------------- /XADBlockHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADBlockHandle.h -------------------------------------------------------------------------------- /XADBlockHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADBlockHandle.m -------------------------------------------------------------------------------- /XADBzip2Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADBzip2Parser.h -------------------------------------------------------------------------------- /XADBzip2Parser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADBzip2Parser.m -------------------------------------------------------------------------------- /XADCABBlockHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCABBlockHandle.h -------------------------------------------------------------------------------- /XADCABBlockHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCABBlockHandle.m -------------------------------------------------------------------------------- /XADCABBlockReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCABBlockReader.h -------------------------------------------------------------------------------- /XADCABBlockReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCABBlockReader.m -------------------------------------------------------------------------------- /XADCABParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCABParser.h -------------------------------------------------------------------------------- /XADCABParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCABParser.m -------------------------------------------------------------------------------- /XADCFBFParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCFBFParser.h -------------------------------------------------------------------------------- /XADCFBFParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCFBFParser.m -------------------------------------------------------------------------------- /XADCRCHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCRCHandle.h -------------------------------------------------------------------------------- /XADCRCHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCRCHandle.m -------------------------------------------------------------------------------- /XADCRCSuffixHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCRCSuffixHandle.h -------------------------------------------------------------------------------- /XADCRCSuffixHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCRCSuffixHandle.m -------------------------------------------------------------------------------- /XADChecksumHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADChecksumHandle.h -------------------------------------------------------------------------------- /XADChecksumHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADChecksumHandle.m -------------------------------------------------------------------------------- /XADCompactProLZHHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompactProLZHHandle.h -------------------------------------------------------------------------------- /XADCompactProLZHHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompactProLZHHandle.m -------------------------------------------------------------------------------- /XADCompactProParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompactProParser.h -------------------------------------------------------------------------------- /XADCompactProParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompactProParser.m -------------------------------------------------------------------------------- /XADCompactProRLEHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompactProRLEHandle.h -------------------------------------------------------------------------------- /XADCompactProRLEHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompactProRLEHandle.m -------------------------------------------------------------------------------- /XADCompressHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompressHandle.h -------------------------------------------------------------------------------- /XADCompressHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompressHandle.m -------------------------------------------------------------------------------- /XADCompressParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompressParser.h -------------------------------------------------------------------------------- /XADCompressParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCompressParser.m -------------------------------------------------------------------------------- /XADCpioParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCpioParser.h -------------------------------------------------------------------------------- /XADCpioParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCpioParser.m -------------------------------------------------------------------------------- /XADCrunchHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCrunchHandles.h -------------------------------------------------------------------------------- /XADCrunchHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCrunchHandles.m -------------------------------------------------------------------------------- /XADCrunchParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCrunchParser.h -------------------------------------------------------------------------------- /XADCrunchParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADCrunchParser.m -------------------------------------------------------------------------------- /XADDeflateHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDeflateHandle.h -------------------------------------------------------------------------------- /XADDeflateHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDeflateHandle.m -------------------------------------------------------------------------------- /XADDeltaHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDeltaHandle.h -------------------------------------------------------------------------------- /XADDeltaHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDeltaHandle.m -------------------------------------------------------------------------------- /XADDiskDoublerADnHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerADnHandle.h -------------------------------------------------------------------------------- /XADDiskDoublerADnHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerADnHandle.m -------------------------------------------------------------------------------- /XADDiskDoublerDDnHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerDDnHandle.h -------------------------------------------------------------------------------- /XADDiskDoublerDDnHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerDDnHandle.m -------------------------------------------------------------------------------- /XADDiskDoublerMethod2Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerMethod2Handle.h -------------------------------------------------------------------------------- /XADDiskDoublerMethod2Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerMethod2Handle.m -------------------------------------------------------------------------------- /XADDiskDoublerParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerParser.h -------------------------------------------------------------------------------- /XADDiskDoublerParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADDiskDoublerParser.m -------------------------------------------------------------------------------- /XADException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADException.h -------------------------------------------------------------------------------- /XADException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADException.m -------------------------------------------------------------------------------- /XADFastLZSSHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADFastLZSSHandle.h -------------------------------------------------------------------------------- /XADFastLZSSHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADFastLZSSHandle.m -------------------------------------------------------------------------------- /XADGzipParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADGzipParser.h -------------------------------------------------------------------------------- /XADGzipParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADGzipParser.m -------------------------------------------------------------------------------- /XADISO9660Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADISO9660Parser.h -------------------------------------------------------------------------------- /XADISO9660Parser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADISO9660Parser.m -------------------------------------------------------------------------------- /XADLArcHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLArcHandles.h -------------------------------------------------------------------------------- /XADLArcHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLArcHandles.m -------------------------------------------------------------------------------- /XADLBRParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLBRParser.h -------------------------------------------------------------------------------- /XADLBRParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLBRParser.m -------------------------------------------------------------------------------- /XADLZHDynamicHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHDynamicHandle.h -------------------------------------------------------------------------------- /XADLZHDynamicHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHDynamicHandle.m -------------------------------------------------------------------------------- /XADLZHOldHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHOldHandles.h -------------------------------------------------------------------------------- /XADLZHOldHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHOldHandles.m -------------------------------------------------------------------------------- /XADLZHParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHParser.h -------------------------------------------------------------------------------- /XADLZHParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHParser.m -------------------------------------------------------------------------------- /XADLZHSFXParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHSFXParsers.h -------------------------------------------------------------------------------- /XADLZHSFXParsers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHSFXParsers.m -------------------------------------------------------------------------------- /XADLZHStaticHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHStaticHandle.h -------------------------------------------------------------------------------- /XADLZHStaticHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZHStaticHandle.m -------------------------------------------------------------------------------- /XADLZMA2Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZMA2Handle.h -------------------------------------------------------------------------------- /XADLZMA2Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZMA2Handle.m -------------------------------------------------------------------------------- /XADLZMAAloneParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZMAAloneParser.h -------------------------------------------------------------------------------- /XADLZMAAloneParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZMAAloneParser.m -------------------------------------------------------------------------------- /XADLZMAHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZMAHandle.h -------------------------------------------------------------------------------- /XADLZMAHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZMAHandle.m -------------------------------------------------------------------------------- /XADLZSSHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZSSHandle.h -------------------------------------------------------------------------------- /XADLZSSHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZSSHandle.m -------------------------------------------------------------------------------- /XADLZXHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZXHandle.h -------------------------------------------------------------------------------- /XADLZXHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZXHandle.m -------------------------------------------------------------------------------- /XADLZXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZXParser.h -------------------------------------------------------------------------------- /XADLZXParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLZXParser.m -------------------------------------------------------------------------------- /XADLibXADIOHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLibXADIOHandle.h -------------------------------------------------------------------------------- /XADLibXADIOHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLibXADIOHandle.m -------------------------------------------------------------------------------- /XADLibXADParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLibXADParser.h -------------------------------------------------------------------------------- /XADLibXADParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADLibXADParser.m -------------------------------------------------------------------------------- /XADMD5Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMD5Handle.h -------------------------------------------------------------------------------- /XADMD5Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMD5Handle.m -------------------------------------------------------------------------------- /XADMSLZXHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMSLZXHandle.h -------------------------------------------------------------------------------- /XADMSLZXHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMSLZXHandle.m -------------------------------------------------------------------------------- /XADMSZipHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMSZipHandle.h -------------------------------------------------------------------------------- /XADMSZipHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMSZipHandle.m -------------------------------------------------------------------------------- /XADMacArchiveParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMacArchiveParser.h -------------------------------------------------------------------------------- /XADMacArchiveParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMacArchiveParser.m -------------------------------------------------------------------------------- /XADMacBinaryParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMacBinaryParser.h -------------------------------------------------------------------------------- /XADMacBinaryParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMacBinaryParser.m -------------------------------------------------------------------------------- /XADMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMaster.h -------------------------------------------------------------------------------- /XADMaster.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMaster.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XADMaster.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMaster.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XADMaster.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMaster.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /XADMaster.xcodeproj/xcshareddata/xcschemes/XADMaster.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMaster.xcodeproj/xcshareddata/xcschemes/XADMaster.xcscheme -------------------------------------------------------------------------------- /XADMaster.xcodeproj/xcshareddata/xcschemes/XADMasterTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMaster.xcodeproj/xcshareddata/xcschemes/XADMasterTests.xcscheme -------------------------------------------------------------------------------- /XADMasterTests/CRCCalculationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/CRCCalculationTests.m -------------------------------------------------------------------------------- /XADMasterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/Info.plist -------------------------------------------------------------------------------- /XADMasterTests/RAR/XADRARParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/RAR/XADRARParserTests.m -------------------------------------------------------------------------------- /XADMasterTests/Stuffit/StuffitFixtures/1234567.sit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/Stuffit/StuffitFixtures/1234567.sit.bin -------------------------------------------------------------------------------- /XADMasterTests/Stuffit/StuffitFixtures/123456789012.sit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/Stuffit/StuffitFixtures/123456789012.sit.bin -------------------------------------------------------------------------------- /XADMasterTests/Stuffit/StuffitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/Stuffit/StuffitTests.m -------------------------------------------------------------------------------- /XADMasterTests/WARC/WARCFixtures/warc-example-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/WARC/WARCFixtures/warc-example-1.0 -------------------------------------------------------------------------------- /XADMasterTests/WARC/WARCFixtures/warc-example-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/WARC/WARCFixtures/warc-example-1.1 -------------------------------------------------------------------------------- /XADMasterTests/WARC/XADWARCParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/WARC/XADWARCParserTests.m -------------------------------------------------------------------------------- /XADMasterTests/XADArchiveParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/XADArchiveParserTests.m -------------------------------------------------------------------------------- /XADMasterTests/XADPlatformOSXTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/XADPlatformOSXTests.m -------------------------------------------------------------------------------- /XADMasterTests/XADRAR5ParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/XADRAR5ParserTests.m -------------------------------------------------------------------------------- /XADMasterTests/XADSFXDetectionParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/XADSFXDetectionParserTests.m -------------------------------------------------------------------------------- /XADMasterTests/XADZipParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/XADZipParserTests.m -------------------------------------------------------------------------------- /XADMasterTests/XADZippedBzip2LeakTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/XADZippedBzip2LeakTests.m -------------------------------------------------------------------------------- /XADMasterTests/eicar.bz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMasterTests/eicar.bz -------------------------------------------------------------------------------- /XADMaster_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADMaster_Prefix.pch -------------------------------------------------------------------------------- /XADNDSParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNDSParser.h -------------------------------------------------------------------------------- /XADNDSParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNDSParser.m -------------------------------------------------------------------------------- /XADNSAParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNSAParser.h -------------------------------------------------------------------------------- /XADNSAParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNSAParser.m -------------------------------------------------------------------------------- /XADNSISBzip2Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNSISBzip2Handle.h -------------------------------------------------------------------------------- /XADNSISBzip2Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNSISBzip2Handle.m -------------------------------------------------------------------------------- /XADNSISParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNSISParser.h -------------------------------------------------------------------------------- /XADNSISParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNSISParser.m -------------------------------------------------------------------------------- /XADNowCompressHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNowCompressHandle.h -------------------------------------------------------------------------------- /XADNowCompressHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNowCompressHandle.m -------------------------------------------------------------------------------- /XADNowCompressParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNowCompressParser.h -------------------------------------------------------------------------------- /XADNowCompressParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADNowCompressParser.m -------------------------------------------------------------------------------- /XADPDFParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPDFParser.h -------------------------------------------------------------------------------- /XADPDFParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPDFParser.m -------------------------------------------------------------------------------- /XADPMArc1Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPMArc1Handle.h -------------------------------------------------------------------------------- /XADPMArc1Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPMArc1Handle.m -------------------------------------------------------------------------------- /XADPNGWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPNGWriter.h -------------------------------------------------------------------------------- /XADPNGWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPNGWriter.m -------------------------------------------------------------------------------- /XADPPMdHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPPMdHandles.h -------------------------------------------------------------------------------- /XADPPMdHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPPMdHandles.m -------------------------------------------------------------------------------- /XADPPMdParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPPMdParser.h -------------------------------------------------------------------------------- /XADPPMdParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPPMdParser.m -------------------------------------------------------------------------------- /XADPackItParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPackItParser.h -------------------------------------------------------------------------------- /XADPackItParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPackItParser.m -------------------------------------------------------------------------------- /XADPaddedBlockHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPaddedBlockHandle.h -------------------------------------------------------------------------------- /XADPaddedBlockHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPaddedBlockHandle.m -------------------------------------------------------------------------------- /XADPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPath.h -------------------------------------------------------------------------------- /XADPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPath.m -------------------------------------------------------------------------------- /XADPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPlatform.h -------------------------------------------------------------------------------- /XADPlatformLinux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPlatformLinux.m -------------------------------------------------------------------------------- /XADPlatformMacOSX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPlatformMacOSX.m -------------------------------------------------------------------------------- /XADPlatformWindows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPlatformWindows.m -------------------------------------------------------------------------------- /XADPlatformiOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPlatformiOS.m -------------------------------------------------------------------------------- /XADPowerPackerParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPowerPackerParser.h -------------------------------------------------------------------------------- /XADPowerPackerParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPowerPackerParser.m -------------------------------------------------------------------------------- /XADPrefixCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPrefixCode.h -------------------------------------------------------------------------------- /XADPrefixCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADPrefixCode.m -------------------------------------------------------------------------------- /XADQuantumHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADQuantumHandle.h -------------------------------------------------------------------------------- /XADQuantumHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADQuantumHandle.m -------------------------------------------------------------------------------- /XADRAR13CryptHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR13CryptHandle.h -------------------------------------------------------------------------------- /XADRAR13CryptHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR13CryptHandle.m -------------------------------------------------------------------------------- /XADRAR15CryptHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR15CryptHandle.h -------------------------------------------------------------------------------- /XADRAR15CryptHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR15CryptHandle.m -------------------------------------------------------------------------------- /XADRAR15Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR15Handle.h -------------------------------------------------------------------------------- /XADRAR15Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR15Handle.m -------------------------------------------------------------------------------- /XADRAR20CryptHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR20CryptHandle.h -------------------------------------------------------------------------------- /XADRAR20CryptHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR20CryptHandle.m -------------------------------------------------------------------------------- /XADRAR20Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR20Handle.h -------------------------------------------------------------------------------- /XADRAR20Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR20Handle.m -------------------------------------------------------------------------------- /XADRAR30Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR30Handle.h -------------------------------------------------------------------------------- /XADRAR30Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR30Handle.m -------------------------------------------------------------------------------- /XADRAR50Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR50Handle.h -------------------------------------------------------------------------------- /XADRAR50Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR50Handle.m -------------------------------------------------------------------------------- /XADRAR5Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR5Parser.h -------------------------------------------------------------------------------- /XADRAR5Parser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRAR5Parser.m -------------------------------------------------------------------------------- /XADRARAESHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARAESHandle.h -------------------------------------------------------------------------------- /XADRARAESHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARAESHandle.m -------------------------------------------------------------------------------- /XADRARFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARFilters.h -------------------------------------------------------------------------------- /XADRARFilters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARFilters.m -------------------------------------------------------------------------------- /XADRARInputHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARInputHandle.h -------------------------------------------------------------------------------- /XADRARInputHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARInputHandle.m -------------------------------------------------------------------------------- /XADRARParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARParser.h -------------------------------------------------------------------------------- /XADRARParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARParser.m -------------------------------------------------------------------------------- /XADRARVirtualMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARVirtualMachine.h -------------------------------------------------------------------------------- /XADRARVirtualMachine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRARVirtualMachine.m -------------------------------------------------------------------------------- /XADRC4Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRC4Handle.h -------------------------------------------------------------------------------- /XADRC4Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRC4Handle.m -------------------------------------------------------------------------------- /XADRLE90Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRLE90Handle.h -------------------------------------------------------------------------------- /XADRLE90Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRLE90Handle.m -------------------------------------------------------------------------------- /XADRPMParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRPMParser.h -------------------------------------------------------------------------------- /XADRPMParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRPMParser.m -------------------------------------------------------------------------------- /XADRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRegex.h -------------------------------------------------------------------------------- /XADRegex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADRegex.m -------------------------------------------------------------------------------- /XADResourceFork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADResourceFork.h -------------------------------------------------------------------------------- /XADResourceFork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADResourceFork.m -------------------------------------------------------------------------------- /XADSARParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSARParser.h -------------------------------------------------------------------------------- /XADSARParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSARParser.m -------------------------------------------------------------------------------- /XADSHA1Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSHA1Handle.h -------------------------------------------------------------------------------- /XADSHA1Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSHA1Handle.m -------------------------------------------------------------------------------- /XADSWFGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSWFGeometry.h -------------------------------------------------------------------------------- /XADSWFGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSWFGeometry.m -------------------------------------------------------------------------------- /XADSWFParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSWFParser.h -------------------------------------------------------------------------------- /XADSWFParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSWFParser.m -------------------------------------------------------------------------------- /XADSWFTagParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSWFTagParser.h -------------------------------------------------------------------------------- /XADSWFTagParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSWFTagParser.m -------------------------------------------------------------------------------- /XADSimpleUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSimpleUnarchiver.h -------------------------------------------------------------------------------- /XADSimpleUnarchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSimpleUnarchiver.m -------------------------------------------------------------------------------- /XADSkipHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSkipHandle.h -------------------------------------------------------------------------------- /XADSkipHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSkipHandle.m -------------------------------------------------------------------------------- /XADSplitFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSplitFileParser.h -------------------------------------------------------------------------------- /XADSplitFileParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSplitFileParser.m -------------------------------------------------------------------------------- /XADSqueezeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSqueezeHandle.h -------------------------------------------------------------------------------- /XADSqueezeHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSqueezeHandle.m -------------------------------------------------------------------------------- /XADSqueezeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSqueezeParser.h -------------------------------------------------------------------------------- /XADSqueezeParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADSqueezeParser.m -------------------------------------------------------------------------------- /XADStacLZSHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStacLZSHandle.h -------------------------------------------------------------------------------- /XADStacLZSHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStacLZSHandle.m -------------------------------------------------------------------------------- /XADString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADString.h -------------------------------------------------------------------------------- /XADString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADString.m -------------------------------------------------------------------------------- /XADStringCFString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStringCFString.m -------------------------------------------------------------------------------- /XADStringICU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStringICU.m -------------------------------------------------------------------------------- /XADStringIconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStringIconv.m -------------------------------------------------------------------------------- /XADStringWindows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStringWindows.m -------------------------------------------------------------------------------- /XADStuffIt13Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffIt13Handle.h -------------------------------------------------------------------------------- /XADStuffIt13Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffIt13Handle.m -------------------------------------------------------------------------------- /XADStuffIt5Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffIt5Parser.h -------------------------------------------------------------------------------- /XADStuffIt5Parser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffIt5Parser.m -------------------------------------------------------------------------------- /XADStuffItArsenicHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItArsenicHandle.h -------------------------------------------------------------------------------- /XADStuffItArsenicHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItArsenicHandle.m -------------------------------------------------------------------------------- /XADStuffItDESHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItDESHandle.h -------------------------------------------------------------------------------- /XADStuffItDESHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItDESHandle.m -------------------------------------------------------------------------------- /XADStuffItHuffmanHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItHuffmanHandle.h -------------------------------------------------------------------------------- /XADStuffItHuffmanHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItHuffmanHandle.m -------------------------------------------------------------------------------- /XADStuffItOldHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItOldHandles.h -------------------------------------------------------------------------------- /XADStuffItOldHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItOldHandles.m -------------------------------------------------------------------------------- /XADStuffItParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItParser.h -------------------------------------------------------------------------------- /XADStuffItParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItParser.m -------------------------------------------------------------------------------- /XADStuffItSplitParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItSplitParser.h -------------------------------------------------------------------------------- /XADStuffItSplitParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItSplitParser.m -------------------------------------------------------------------------------- /XADStuffItXBlendHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXBlendHandle.h -------------------------------------------------------------------------------- /XADStuffItXBlendHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXBlendHandle.m -------------------------------------------------------------------------------- /XADStuffItXBlockHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXBlockHandle.h -------------------------------------------------------------------------------- /XADStuffItXBlockHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXBlockHandle.m -------------------------------------------------------------------------------- /XADStuffItXCyanideHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXCyanideHandle.h -------------------------------------------------------------------------------- /XADStuffItXCyanideHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXCyanideHandle.m -------------------------------------------------------------------------------- /XADStuffItXDarkhorseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXDarkhorseHandle.h -------------------------------------------------------------------------------- /XADStuffItXDarkhorseHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXDarkhorseHandle.m -------------------------------------------------------------------------------- /XADStuffItXEnglishHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXEnglishHandle.h -------------------------------------------------------------------------------- /XADStuffItXEnglishHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXEnglishHandle.m -------------------------------------------------------------------------------- /XADStuffItXIronHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXIronHandle.h -------------------------------------------------------------------------------- /XADStuffItXIronHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXIronHandle.m -------------------------------------------------------------------------------- /XADStuffItXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXParser.h -------------------------------------------------------------------------------- /XADStuffItXParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXParser.m -------------------------------------------------------------------------------- /XADStuffItXX86Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXX86Handle.h -------------------------------------------------------------------------------- /XADStuffItXX86Handle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADStuffItXX86Handle.m -------------------------------------------------------------------------------- /XADTarParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADTarParser.h -------------------------------------------------------------------------------- /XADTarParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADTarParser.m -------------------------------------------------------------------------------- /XADTarSparseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADTarSparseHandle.h -------------------------------------------------------------------------------- /XADTarSparseHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADTarSparseHandle.m -------------------------------------------------------------------------------- /XADUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADUnarchiver.h -------------------------------------------------------------------------------- /XADUnarchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADUnarchiver.m -------------------------------------------------------------------------------- /XADUnarchiverOldMacOSX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADUnarchiverOldMacOSX.m -------------------------------------------------------------------------------- /XADWARCParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWARCParser.h -------------------------------------------------------------------------------- /XADWARCParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWARCParser.m -------------------------------------------------------------------------------- /XADWinZipAESHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWinZipAESHandle.h -------------------------------------------------------------------------------- /XADWinZipAESHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWinZipAESHandle.m -------------------------------------------------------------------------------- /XADWinZipJPEGHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWinZipJPEGHandle.h -------------------------------------------------------------------------------- /XADWinZipJPEGHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWinZipJPEGHandle.m -------------------------------------------------------------------------------- /XADWinZipWavPackHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWinZipWavPackHandle.h -------------------------------------------------------------------------------- /XADWinZipWavPackHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADWinZipWavPackHandle.m -------------------------------------------------------------------------------- /XADXARParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXARParser.h -------------------------------------------------------------------------------- /XADXARParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXARParser.m -------------------------------------------------------------------------------- /XADXORHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXORHandle.h -------------------------------------------------------------------------------- /XADXORHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXORHandle.m -------------------------------------------------------------------------------- /XADXORSumHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXORSumHandle.h -------------------------------------------------------------------------------- /XADXORSumHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXORSumHandle.m -------------------------------------------------------------------------------- /XADXZHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXZHandle.h -------------------------------------------------------------------------------- /XADXZHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXZHandle.m -------------------------------------------------------------------------------- /XADXZParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXZParser.h -------------------------------------------------------------------------------- /XADXZParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADXZParser.m -------------------------------------------------------------------------------- /XADZipCryptHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipCryptHandle.h -------------------------------------------------------------------------------- /XADZipCryptHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipCryptHandle.m -------------------------------------------------------------------------------- /XADZipImplodeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipImplodeHandle.h -------------------------------------------------------------------------------- /XADZipImplodeHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipImplodeHandle.m -------------------------------------------------------------------------------- /XADZipParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipParser.h -------------------------------------------------------------------------------- /XADZipParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipParser.m -------------------------------------------------------------------------------- /XADZipParserStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipParserStructures.h -------------------------------------------------------------------------------- /XADZipSFXParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipSFXParsers.h -------------------------------------------------------------------------------- /XADZipSFXParsers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipSFXParsers.m -------------------------------------------------------------------------------- /XADZipShrinkHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipShrinkHandle.h -------------------------------------------------------------------------------- /XADZipShrinkHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZipShrinkHandle.m -------------------------------------------------------------------------------- /XADZooParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZooParser.h -------------------------------------------------------------------------------- /XADZooParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/XADZooParser.m -------------------------------------------------------------------------------- /libxad/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/all.c -------------------------------------------------------------------------------- /libxad/clientfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clientfunc.c -------------------------------------------------------------------------------- /libxad/clients.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients.c -------------------------------------------------------------------------------- /libxad/clients/AMPK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/AMPK.c -------------------------------------------------------------------------------- /libxad/clients/Ace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/Ace.c -------------------------------------------------------------------------------- /libxad/clients/CrunchDisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/CrunchDisk.c -------------------------------------------------------------------------------- /libxad/clients/DCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/DCS.c -------------------------------------------------------------------------------- /libxad/clients/DMS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/DMS.c -------------------------------------------------------------------------------- /libxad/clients/FS_Amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/FS_Amiga.c -------------------------------------------------------------------------------- /libxad/clients/FS_FAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/FS_FAT.c -------------------------------------------------------------------------------- /libxad/clients/FS_SOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/FS_SOS.c -------------------------------------------------------------------------------- /libxad/clients/IFF-CDAF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/IFF-CDAF.c -------------------------------------------------------------------------------- /libxad/clients/LhA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/LhA.c -------------------------------------------------------------------------------- /libxad/clients/LhF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/LhF.c -------------------------------------------------------------------------------- /libxad/clients/MDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/MDC.c -------------------------------------------------------------------------------- /libxad/clients/MXM-SimpleArc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/MXM-SimpleArc.c -------------------------------------------------------------------------------- /libxad/clients/PackDev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/PackDev.c -------------------------------------------------------------------------------- /libxad/clients/PackDisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/PackDisk.c -------------------------------------------------------------------------------- /libxad/clients/SuperDuper3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/SuperDuper3.c -------------------------------------------------------------------------------- /libxad/clients/Tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/Tar.c -------------------------------------------------------------------------------- /libxad/clients/Zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/Zoom.c -------------------------------------------------------------------------------- /libxad/clients/xDisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/xDisk.c -------------------------------------------------------------------------------- /libxad/clients/xMash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/xMash.c -------------------------------------------------------------------------------- /libxad/clients/xadCRC_1021.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/xadCRC_1021.c -------------------------------------------------------------------------------- /libxad/clients/xadIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/xadIO.c -------------------------------------------------------------------------------- /libxad/clients/xadIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/xadIO.h -------------------------------------------------------------------------------- /libxad/clients/xadIO_Compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/xadIO_Compress.c -------------------------------------------------------------------------------- /libxad/clients/xadIO_XPK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/clients/xadIO_XPK.c -------------------------------------------------------------------------------- /libxad/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/config.h -------------------------------------------------------------------------------- /libxad/copymem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/copymem.c -------------------------------------------------------------------------------- /libxad/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/crc.c -------------------------------------------------------------------------------- /libxad/dates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/dates.c -------------------------------------------------------------------------------- /libxad/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/debug.c -------------------------------------------------------------------------------- /libxad/diskfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/diskfile.c -------------------------------------------------------------------------------- /libxad/diskunarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/diskunarc.c -------------------------------------------------------------------------------- /libxad/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/error.c -------------------------------------------------------------------------------- /libxad/filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/filename.c -------------------------------------------------------------------------------- /libxad/fileunarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/fileunarc.c -------------------------------------------------------------------------------- /libxad/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/gpl.txt -------------------------------------------------------------------------------- /libxad/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/hook.c -------------------------------------------------------------------------------- /libxad/hook_diskarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/hook_diskarc.c -------------------------------------------------------------------------------- /libxad/hook_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/hook_mem.c -------------------------------------------------------------------------------- /libxad/hook_splitted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/hook_splitted.c -------------------------------------------------------------------------------- /libxad/hook_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/hook_stream.c -------------------------------------------------------------------------------- /libxad/include/ConvertE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/include/ConvertE.c -------------------------------------------------------------------------------- /libxad/include/SDI_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/include/SDI_compiler.h -------------------------------------------------------------------------------- /libxad/include/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/include/functions.h -------------------------------------------------------------------------------- /libxad/include/privdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/include/privdefs.h -------------------------------------------------------------------------------- /libxad/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/include/version.h -------------------------------------------------------------------------------- /libxad/include/xadmaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/include/xadmaster.h -------------------------------------------------------------------------------- /libxad/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/info.c -------------------------------------------------------------------------------- /libxad/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/lgpl.txt -------------------------------------------------------------------------------- /libxad/objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/objects.c -------------------------------------------------------------------------------- /libxad/protection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/protection.c -------------------------------------------------------------------------------- /libxad/unix/emulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/unix/emulation.c -------------------------------------------------------------------------------- /libxad/unix/emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/unix/emulation.h -------------------------------------------------------------------------------- /libxad/unix/hook_fh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/unix/hook_fh.c -------------------------------------------------------------------------------- /libxad/unix/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/unix/init.c -------------------------------------------------------------------------------- /libxad/unix/xadClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/libxad/unix/xadClient.h -------------------------------------------------------------------------------- /lsar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lsar.m -------------------------------------------------------------------------------- /lzma/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/Bra.c -------------------------------------------------------------------------------- /lzma/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/Bra.h -------------------------------------------------------------------------------- /lzma/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/Bra86.c -------------------------------------------------------------------------------- /lzma/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/BraIA64.c -------------------------------------------------------------------------------- /lzma/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/Lzma2Dec.c -------------------------------------------------------------------------------- /lzma/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/Lzma2Dec.h -------------------------------------------------------------------------------- /lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/LzmaDec.c -------------------------------------------------------------------------------- /lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/LzmaDec.h -------------------------------------------------------------------------------- /lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/lzma/Types.h -------------------------------------------------------------------------------- /unar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/unar.m -------------------------------------------------------------------------------- /wavpack/common_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/common_utils.c -------------------------------------------------------------------------------- /wavpack/decorr_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/decorr_utils.c -------------------------------------------------------------------------------- /wavpack/entropy_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/entropy_utils.c -------------------------------------------------------------------------------- /wavpack/open_legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/open_legacy.c -------------------------------------------------------------------------------- /wavpack/open_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/open_utils.c -------------------------------------------------------------------------------- /wavpack/read_words.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/read_words.c -------------------------------------------------------------------------------- /wavpack/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/tags.c -------------------------------------------------------------------------------- /wavpack/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/unpack.c -------------------------------------------------------------------------------- /wavpack/unpack_floats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/unpack_floats.c -------------------------------------------------------------------------------- /wavpack/unpack_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/unpack_seek.c -------------------------------------------------------------------------------- /wavpack/unpack_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/unpack_utils.c -------------------------------------------------------------------------------- /wavpack/wavpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/wavpack.h -------------------------------------------------------------------------------- /wavpack/wavpack_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/wavpack_local.h -------------------------------------------------------------------------------- /wavpack/wavpack_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacPaw/XADMaster/HEAD/wavpack/wavpack_version.h --------------------------------------------------------------------------------