├── .clang-format ├── .github └── workflows │ ├── codeql-analysis.yml │ └── msbuild.yml ├── .gitignore ├── .gitmodules ├── .tgitconfig ├── CODE_OF_CONDUCT.md ├── CryptSync.sln ├── CryptSync.sln.DotSettings ├── LICENSE ├── README.md ├── Tests ├── Tests.vcxproj ├── Tests.vcxproj.filters ├── packages.config ├── stdafx.cpp ├── stdafx.h └── test.cpp ├── azure-pipelines.yml ├── base4k ├── base4k.c └── base4k.h ├── default.build ├── default.build.user.tmpl ├── lzma ├── 7Zip.vcxproj ├── 7Zip.vcxproj.filters ├── Asm │ ├── arm │ │ └── 7zCrcOpt.asm │ ├── arm64 │ │ ├── 7zAsm.S │ │ └── LzmaDecOpt.S │ └── x86 │ │ ├── 7zAsm.asm │ │ ├── 7zCrcOpt.asm │ │ ├── AesOpt.asm │ │ ├── LzFindOpt.asm │ │ ├── LzmaDecOpt.asm │ │ ├── Sha1Opt.asm │ │ ├── Sha256Opt.asm │ │ └── XzCrc64Opt.asm ├── C │ ├── 7z.h │ ├── 7zAlloc.c │ ├── 7zAlloc.h │ ├── 7zArcIn.c │ ├── 7zBuf.c │ ├── 7zBuf.h │ ├── 7zBuf2.c │ ├── 7zCrc.c │ ├── 7zCrc.h │ ├── 7zCrcOpt.c │ ├── 7zDec.c │ ├── 7zFile.c │ ├── 7zFile.h │ ├── 7zStream.c │ ├── 7zTypes.h │ ├── 7zVersion.h │ ├── 7zVersion.rc │ ├── 7zWindows.h │ ├── 7zip_gcc_c.mak │ ├── Aes.c │ ├── Aes.h │ ├── AesOpt.c │ ├── Alloc.c │ ├── Alloc.h │ ├── Asm_c.mak │ ├── Bcj2.c │ ├── Bcj2.h │ ├── Bcj2Enc.c │ ├── Blake2.h │ ├── Blake2s.c │ ├── Bra.c │ ├── Bra.h │ ├── Bra86.c │ ├── BraIA64.c │ ├── BwtSort.c │ ├── BwtSort.h │ ├── Compiler.h │ ├── CpuArch.c │ ├── CpuArch.h │ ├── Delta.c │ ├── Delta.h │ ├── DllSecur.c │ ├── DllSecur.h │ ├── HuffEnc.c │ ├── HuffEnc.h │ ├── LzFind.c │ ├── LzFind.h │ ├── LzFindMt.c │ ├── LzFindMt.h │ ├── LzFindOpt.c │ ├── LzHash.h │ ├── Lzma2Dec.c │ ├── Lzma2Dec.h │ ├── Lzma2DecMt.c │ ├── Lzma2DecMt.h │ ├── Lzma2Enc.c │ ├── Lzma2Enc.h │ ├── Lzma86.h │ ├── Lzma86Dec.c │ ├── Lzma86Enc.c │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── LzmaEnc.c │ ├── LzmaEnc.h │ ├── LzmaLib.c │ ├── LzmaLib.h │ ├── Md5.c │ ├── Md5.h │ ├── MtCoder.c │ ├── MtCoder.h │ ├── MtDec.c │ ├── MtDec.h │ ├── Ppmd.h │ ├── Ppmd7.c │ ├── Ppmd7.h │ ├── Ppmd7Dec.c │ ├── Ppmd7Enc.c │ ├── Ppmd7aDec.c │ ├── Ppmd8.c │ ├── Ppmd8.h │ ├── Ppmd8Dec.c │ ├── Ppmd8Enc.c │ ├── Precomp.h │ ├── RotateDefs.h │ ├── Sha1.c │ ├── Sha1.h │ ├── Sha1Opt.c │ ├── Sha256.c │ ├── Sha256.h │ ├── Sha256Opt.c │ ├── Sha3.c │ ├── Sha3.h │ ├── Sha512.c │ ├── Sha512.h │ ├── Sha512Opt.c │ ├── Sort.c │ ├── Sort.h │ ├── SwapBytes.c │ ├── SwapBytes.h │ ├── Threads.c │ ├── Threads.h │ ├── Util │ │ ├── 7z │ │ │ ├── 7z.dsp │ │ │ ├── 7z.dsw │ │ │ ├── 7zMain.c │ │ │ ├── Precomp.c │ │ │ ├── Precomp.h │ │ │ ├── makefile │ │ │ └── makefile.gcc │ │ ├── 7zipInstall │ │ │ ├── 7zip.ico │ │ │ ├── 7zipInstall.c │ │ │ ├── 7zipInstall.dsp │ │ │ ├── 7zipInstall.dsw │ │ │ ├── 7zipInstall.manifest │ │ │ ├── Precomp.c │ │ │ ├── Precomp.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ └── resource.rc │ │ ├── 7zipUninstall │ │ │ ├── 7zipUninstall.c │ │ │ ├── 7zipUninstall.dsp │ │ │ ├── 7zipUninstall.dsw │ │ │ ├── 7zipUninstall.ico │ │ │ ├── 7zipUninstall.manifest │ │ │ ├── Precomp.c │ │ │ ├── Precomp.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ └── resource.rc │ │ ├── Lzma │ │ │ ├── LzmaUtil.c │ │ │ ├── LzmaUtil.dsp │ │ │ ├── LzmaUtil.dsw │ │ │ ├── Precomp.h │ │ │ ├── makefile │ │ │ └── makefile.gcc │ │ ├── LzmaLib │ │ │ ├── LzmaLib.def │ │ │ ├── LzmaLib.dsp │ │ │ ├── LzmaLib.dsw │ │ │ ├── LzmaLibExports.c │ │ │ ├── Precomp.c │ │ │ ├── Precomp.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ └── SfxSetup │ │ │ ├── Precomp.c │ │ │ ├── Precomp.h │ │ │ ├── SfxSetup.c │ │ │ ├── SfxSetup.dsp │ │ │ ├── SfxSetup.dsw │ │ │ ├── makefile │ │ │ ├── makefile_con │ │ │ ├── resource.rc │ │ │ └── setup.ico │ ├── Xxh64.c │ ├── Xxh64.h │ ├── Xz.c │ ├── Xz.h │ ├── XzCrc64.c │ ├── XzCrc64.h │ ├── XzCrc64Opt.c │ ├── XzDec.c │ ├── XzEnc.c │ ├── XzEnc.h │ ├── XzIn.c │ ├── ZstdDec.c │ ├── ZstdDec.h │ ├── var_clang.mak │ ├── var_clang_arm64.mak │ ├── var_clang_x64.mak │ ├── var_clang_x86.mak │ ├── var_gcc.mak │ ├── var_gcc_arm64.mak │ ├── var_gcc_x64.mak │ ├── var_gcc_x86.mak │ ├── var_mac_arm64.mak │ ├── var_mac_x64.mak │ ├── warn_clang.mak │ ├── warn_clang_mac.mak │ └── warn_gcc.mak ├── CPP │ ├── 7zip │ │ ├── 7zip.mak │ │ ├── 7zip_gcc.mak │ │ ├── Aes.mak │ │ ├── Archive │ │ │ ├── 7z │ │ │ │ ├── 7z.dsp │ │ │ │ ├── 7z.dsw │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ ├── 7zDecode.cpp │ │ │ │ ├── 7zDecode.h │ │ │ │ ├── 7zEncode.cpp │ │ │ │ ├── 7zEncode.h │ │ │ │ ├── 7zExtract.cpp │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ ├── 7zHandler.cpp │ │ │ │ ├── 7zHandler.h │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ ├── 7zHeader.cpp │ │ │ │ ├── 7zHeader.h │ │ │ │ ├── 7zIn.cpp │ │ │ │ ├── 7zIn.h │ │ │ │ ├── 7zItem.h │ │ │ │ ├── 7zOut.cpp │ │ │ │ ├── 7zOut.h │ │ │ │ ├── 7zProperties.cpp │ │ │ │ ├── 7zProperties.h │ │ │ │ ├── 7zRegister.cpp │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ ├── 7zSpecStream.h │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ ├── 7zUpdate.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ ├── ApfsHandler.cpp │ │ │ ├── ApmHandler.cpp │ │ │ ├── ArHandler.cpp │ │ │ ├── Archive.def │ │ │ ├── Archive2.def │ │ │ ├── ArchiveExports.cpp │ │ │ ├── ArjHandler.cpp │ │ │ ├── AvbHandler.cpp │ │ │ ├── Base64Handler.cpp │ │ │ ├── Bz2Handler.cpp │ │ │ ├── Cab │ │ │ │ ├── CabBlockInStream.cpp │ │ │ │ ├── CabBlockInStream.h │ │ │ │ ├── CabHandler.cpp │ │ │ │ ├── CabHandler.h │ │ │ │ ├── CabHeader.cpp │ │ │ │ ├── CabHeader.h │ │ │ │ ├── CabIn.cpp │ │ │ │ ├── CabIn.h │ │ │ │ ├── CabItem.h │ │ │ │ ├── CabRegister.cpp │ │ │ │ └── StdAfx.h │ │ │ ├── Chm │ │ │ │ ├── ChmHandler.cpp │ │ │ │ ├── ChmHandler.h │ │ │ │ ├── ChmIn.cpp │ │ │ │ ├── ChmIn.h │ │ │ │ └── StdAfx.h │ │ │ ├── ComHandler.cpp │ │ │ ├── Common │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ ├── CoderMixer2.h │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ ├── DummyOutStream.h │ │ │ │ ├── FindSignature.cpp │ │ │ │ ├── FindSignature.h │ │ │ │ ├── HandlerOut.cpp │ │ │ │ ├── HandlerOut.h │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ ├── ItemNameUtils.h │ │ │ │ ├── MultiStream.cpp │ │ │ │ ├── MultiStream.h │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ ├── OutStreamWithSha1.cpp │ │ │ │ ├── OutStreamWithSha1.h │ │ │ │ ├── ParseProperties.cpp │ │ │ │ ├── ParseProperties.h │ │ │ │ └── StdAfx.h │ │ │ ├── CpioHandler.cpp │ │ │ ├── CramfsHandler.cpp │ │ │ ├── DeflateProps.cpp │ │ │ ├── DeflateProps.h │ │ │ ├── DllExports.cpp │ │ │ ├── DllExports2.cpp │ │ │ ├── DmgHandler.cpp │ │ │ ├── ElfHandler.cpp │ │ │ ├── ExtHandler.cpp │ │ │ ├── FatHandler.cpp │ │ │ ├── FlvHandler.cpp │ │ │ ├── GptHandler.cpp │ │ │ ├── GzHandler.cpp │ │ │ ├── HandlerCont.cpp │ │ │ ├── HandlerCont.h │ │ │ ├── HfsHandler.cpp │ │ │ ├── HfsHandler.h │ │ │ ├── IArchive.h │ │ │ ├── Icons │ │ │ │ ├── 7z.ico │ │ │ │ ├── apfs.ico │ │ │ │ ├── arj.ico │ │ │ │ ├── bz2.ico │ │ │ │ ├── cab.ico │ │ │ │ ├── cpio.ico │ │ │ │ ├── deb.ico │ │ │ │ ├── dmg.ico │ │ │ │ ├── fat.ico │ │ │ │ ├── gz.ico │ │ │ │ ├── hfs.ico │ │ │ │ ├── iso.ico │ │ │ │ ├── lzh.ico │ │ │ │ ├── lzma.ico │ │ │ │ ├── ntfs.ico │ │ │ │ ├── rar.ico │ │ │ │ ├── rpm.ico │ │ │ │ ├── split.ico │ │ │ │ ├── squashfs.ico │ │ │ │ ├── tar.ico │ │ │ │ ├── vhd.ico │ │ │ │ ├── wim.ico │ │ │ │ ├── xar.ico │ │ │ │ ├── xz.ico │ │ │ │ ├── z.ico │ │ │ │ ├── zip.ico │ │ │ │ └── zst.ico │ │ │ ├── IhexHandler.cpp │ │ │ ├── Iso │ │ │ │ ├── IsoHandler.cpp │ │ │ │ ├── IsoHandler.h │ │ │ │ ├── IsoHeader.cpp │ │ │ │ ├── IsoHeader.h │ │ │ │ ├── IsoIn.cpp │ │ │ │ ├── IsoIn.h │ │ │ │ ├── IsoItem.h │ │ │ │ ├── IsoRegister.cpp │ │ │ │ └── StdAfx.h │ │ │ ├── LpHandler.cpp │ │ │ ├── LvmHandler.cpp │ │ │ ├── LzhHandler.cpp │ │ │ ├── LzmaHandler.cpp │ │ │ ├── MachoHandler.cpp │ │ │ ├── MbrHandler.cpp │ │ │ ├── MslzHandler.cpp │ │ │ ├── MubHandler.cpp │ │ │ ├── Nsis │ │ │ │ ├── NsisDecode.cpp │ │ │ │ ├── NsisDecode.h │ │ │ │ ├── NsisHandler.cpp │ │ │ │ ├── NsisHandler.h │ │ │ │ ├── NsisIn.cpp │ │ │ │ ├── NsisIn.h │ │ │ │ ├── NsisRegister.cpp │ │ │ │ └── StdAfx.h │ │ │ ├── NtfsHandler.cpp │ │ │ ├── PeHandler.cpp │ │ │ ├── PpmdHandler.cpp │ │ │ ├── QcowHandler.cpp │ │ │ ├── Rar │ │ │ │ ├── Rar5Handler.cpp │ │ │ │ ├── Rar5Handler.h │ │ │ │ ├── RarHandler.cpp │ │ │ │ ├── RarHandler.h │ │ │ │ ├── RarHeader.h │ │ │ │ ├── RarItem.h │ │ │ │ ├── RarVol.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ │ ├── RpmHandler.cpp │ │ │ ├── SparseHandler.cpp │ │ │ ├── SplitHandler.cpp │ │ │ ├── SquashfsHandler.cpp │ │ │ ├── StdAfx.h │ │ │ ├── SwfHandler.cpp │ │ │ ├── Tar │ │ │ │ ├── StdAfx.h │ │ │ │ ├── TarHandler.cpp │ │ │ │ ├── TarHandler.h │ │ │ │ ├── TarHandlerOut.cpp │ │ │ │ ├── TarHeader.cpp │ │ │ │ ├── TarHeader.h │ │ │ │ ├── TarIn.cpp │ │ │ │ ├── TarIn.h │ │ │ │ ├── TarItem.h │ │ │ │ ├── TarOut.cpp │ │ │ │ ├── TarOut.h │ │ │ │ ├── TarRegister.cpp │ │ │ │ ├── TarUpdate.cpp │ │ │ │ └── TarUpdate.h │ │ │ ├── Udf │ │ │ │ ├── StdAfx.h │ │ │ │ ├── UdfHandler.cpp │ │ │ │ ├── UdfHandler.h │ │ │ │ ├── UdfIn.cpp │ │ │ │ └── UdfIn.h │ │ │ ├── UefiHandler.cpp │ │ │ ├── VdiHandler.cpp │ │ │ ├── VhdHandler.cpp │ │ │ ├── VhdxHandler.cpp │ │ │ ├── VmdkHandler.cpp │ │ │ ├── Wim │ │ │ │ ├── StdAfx.h │ │ │ │ ├── WimHandler.cpp │ │ │ │ ├── WimHandler.h │ │ │ │ ├── WimHandlerOut.cpp │ │ │ │ ├── WimIn.cpp │ │ │ │ ├── WimIn.h │ │ │ │ └── WimRegister.cpp │ │ │ ├── XarHandler.cpp │ │ │ ├── XzHandler.cpp │ │ │ ├── XzHandler.h │ │ │ ├── ZHandler.cpp │ │ │ ├── Zip │ │ │ │ ├── StdAfx.h │ │ │ │ ├── ZipAddCommon.cpp │ │ │ │ ├── ZipAddCommon.h │ │ │ │ ├── ZipCompressionMode.h │ │ │ │ ├── ZipHandler.cpp │ │ │ │ ├── ZipHandler.h │ │ │ │ ├── ZipHandlerOut.cpp │ │ │ │ ├── ZipHeader.h │ │ │ │ ├── ZipIn.cpp │ │ │ │ ├── ZipIn.h │ │ │ │ ├── ZipItem.cpp │ │ │ │ ├── ZipItem.h │ │ │ │ ├── ZipOut.cpp │ │ │ │ ├── ZipOut.h │ │ │ │ ├── ZipRegister.cpp │ │ │ │ ├── ZipUpdate.cpp │ │ │ │ └── ZipUpdate.h │ │ │ ├── ZstdHandler.cpp │ │ │ └── makefile │ │ ├── Asm.mak │ │ ├── Bundles │ │ │ ├── Alone │ │ │ │ ├── Alone.dsp │ │ │ │ ├── Alone.dsw │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── Alone2 │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── Alone7z │ │ │ │ ├── Alone.dsp │ │ │ │ ├── Alone.dsw │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── Fm │ │ │ │ ├── FM.dsp │ │ │ │ ├── FM.dsw │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ ├── Format7z │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ ├── Format7zExtract │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ ├── Format7zExtractR │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ ├── Format7zF │ │ │ │ ├── Arc.mak │ │ │ │ ├── Arc_gcc.mak │ │ │ │ ├── Format7z.dsp │ │ │ │ ├── Format7z.dsw │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── Format7zR │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ ├── LzmaCon │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ ├── LzmaCon.dsp │ │ │ │ ├── LzmaCon.dsw │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── SFXCon │ │ │ │ ├── 7z.ico │ │ │ │ ├── SFXCon.dsp │ │ │ │ ├── SFXCon.dsw │ │ │ │ ├── SfxCon.cpp │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── SFXSetup │ │ │ │ ├── ExtractCallbackSfx.cpp │ │ │ │ ├── ExtractCallbackSfx.h │ │ │ │ ├── ExtractEngine.cpp │ │ │ │ ├── ExtractEngine.h │ │ │ │ ├── SFXSetup.dsp │ │ │ │ ├── SFXSetup.dsw │ │ │ │ ├── SfxSetup.cpp │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ └── setup.ico │ │ │ ├── SFXWin │ │ │ │ ├── 7z.ico │ │ │ │ ├── SFXWin.dsp │ │ │ │ ├── SFXWin.dsw │ │ │ │ ├── SfxWin.cpp │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ └── resource.rc │ │ │ └── makefile │ │ ├── Common │ │ │ ├── CWrappers.cpp │ │ │ ├── CWrappers.h │ │ │ ├── CreateCoder.cpp │ │ │ ├── CreateCoder.h │ │ │ ├── FilePathAutoRename.cpp │ │ │ ├── FilePathAutoRename.h │ │ │ ├── FileStreams.cpp │ │ │ ├── FileStreams.h │ │ │ ├── FilterCoder.cpp │ │ │ ├── FilterCoder.h │ │ │ ├── InBuffer.cpp │ │ │ ├── InBuffer.h │ │ │ ├── InOutTempBuffer.cpp │ │ │ ├── InOutTempBuffer.h │ │ │ ├── LimitedStreams.cpp │ │ │ ├── LimitedStreams.h │ │ │ ├── LockedStream.cpp │ │ │ ├── LockedStream.h │ │ │ ├── MemBlocks.cpp │ │ │ ├── MemBlocks.h │ │ │ ├── MethodId.cpp │ │ │ ├── MethodId.h │ │ │ ├── MethodProps.cpp │ │ │ ├── MethodProps.h │ │ │ ├── MultiOutStream.cpp │ │ │ ├── MultiOutStream.h │ │ │ ├── OffsetStream.cpp │ │ │ ├── OffsetStream.h │ │ │ ├── OutBuffer.cpp │ │ │ ├── OutBuffer.h │ │ │ ├── OutMemStream.cpp │ │ │ ├── OutMemStream.h │ │ │ ├── ProgressMt.cpp │ │ │ ├── ProgressMt.h │ │ │ ├── ProgressUtils.cpp │ │ │ ├── ProgressUtils.h │ │ │ ├── PropId.cpp │ │ │ ├── RegisterArc.h │ │ │ ├── RegisterCodec.h │ │ │ ├── StdAfx.h │ │ │ ├── StreamBinder.cpp │ │ │ ├── StreamBinder.h │ │ │ ├── StreamObjects.cpp │ │ │ ├── StreamObjects.h │ │ │ ├── StreamUtils.cpp │ │ │ ├── StreamUtils.h │ │ │ ├── UniqBlocks.cpp │ │ │ ├── UniqBlocks.h │ │ │ ├── VirtThread.cpp │ │ │ └── VirtThread.h │ │ ├── Compress │ │ │ ├── BZip2Const.h │ │ │ ├── BZip2Crc.cpp │ │ │ ├── BZip2Crc.h │ │ │ ├── BZip2Decoder.cpp │ │ │ ├── BZip2Decoder.h │ │ │ ├── BZip2Encoder.cpp │ │ │ ├── BZip2Encoder.h │ │ │ ├── BZip2Register.cpp │ │ │ ├── Bcj2Coder.cpp │ │ │ ├── Bcj2Coder.h │ │ │ ├── Bcj2Register.cpp │ │ │ ├── BcjCoder.cpp │ │ │ ├── BcjCoder.h │ │ │ ├── BcjRegister.cpp │ │ │ ├── BitlDecoder.cpp │ │ │ ├── BitlDecoder.h │ │ │ ├── BitlEncoder.h │ │ │ ├── BitmDecoder.h │ │ │ ├── BitmEncoder.h │ │ │ ├── BranchMisc.cpp │ │ │ ├── BranchMisc.h │ │ │ ├── BranchRegister.cpp │ │ │ ├── ByteSwap.cpp │ │ │ ├── Codec.def │ │ │ ├── CodecExports.cpp │ │ │ ├── CopyCoder.cpp │ │ │ ├── CopyCoder.h │ │ │ ├── CopyRegister.cpp │ │ │ ├── Deflate64Register.cpp │ │ │ ├── DeflateConst.h │ │ │ ├── DeflateDecoder.cpp │ │ │ ├── DeflateDecoder.h │ │ │ ├── DeflateEncoder.cpp │ │ │ ├── DeflateEncoder.h │ │ │ ├── DeflateRegister.cpp │ │ │ ├── DeltaFilter.cpp │ │ │ ├── DllExports2Compress.cpp │ │ │ ├── DllExportsCompress.cpp │ │ │ ├── HuffmanDecoder.h │ │ │ ├── ImplodeDecoder.cpp │ │ │ ├── ImplodeDecoder.h │ │ │ ├── ImplodeHuffmanDecoder.cpp │ │ │ ├── ImplodeHuffmanDecoder.h │ │ │ ├── LzOutWindow.cpp │ │ │ ├── LzOutWindow.h │ │ │ ├── LzfseDecoder.cpp │ │ │ ├── LzfseDecoder.h │ │ │ ├── LzhDecoder.cpp │ │ │ ├── LzhDecoder.h │ │ │ ├── Lzma2Decoder.cpp │ │ │ ├── Lzma2Decoder.h │ │ │ ├── Lzma2Encoder.cpp │ │ │ ├── Lzma2Encoder.h │ │ │ ├── Lzma2Register.cpp │ │ │ ├── LzmaDecoder.cpp │ │ │ ├── LzmaDecoder.h │ │ │ ├── LzmaEncoder.cpp │ │ │ ├── LzmaEncoder.h │ │ │ ├── LzmaRegister.cpp │ │ │ ├── LzmsDecoder.cpp │ │ │ ├── LzmsDecoder.h │ │ │ ├── Lzx.h │ │ │ ├── LzxDecoder.cpp │ │ │ ├── LzxDecoder.h │ │ │ ├── Mtf8.h │ │ │ ├── PpmdDecoder.cpp │ │ │ ├── PpmdDecoder.h │ │ │ ├── PpmdEncoder.cpp │ │ │ ├── PpmdEncoder.h │ │ │ ├── PpmdRegister.cpp │ │ │ ├── PpmdZip.cpp │ │ │ ├── PpmdZip.h │ │ │ ├── QuantumDecoder.cpp │ │ │ ├── QuantumDecoder.h │ │ │ ├── Rar1Decoder.cpp │ │ │ ├── Rar1Decoder.h │ │ │ ├── Rar2Decoder.cpp │ │ │ ├── Rar2Decoder.h │ │ │ ├── Rar3Decoder.cpp │ │ │ ├── Rar3Decoder.h │ │ │ ├── Rar3Vm.cpp │ │ │ ├── Rar3Vm.h │ │ │ ├── Rar5Decoder.cpp │ │ │ ├── Rar5Decoder.h │ │ │ ├── RarCodecsRegister.cpp │ │ │ ├── ShrinkDecoder.cpp │ │ │ ├── ShrinkDecoder.h │ │ │ ├── StdAfx.h │ │ │ ├── XpressDecoder.cpp │ │ │ ├── XpressDecoder.h │ │ │ ├── XzDecoder.cpp │ │ │ ├── XzDecoder.h │ │ │ ├── XzEncoder.cpp │ │ │ ├── XzEncoder.h │ │ │ ├── ZDecoder.cpp │ │ │ ├── ZDecoder.h │ │ │ ├── ZlibDecoder.cpp │ │ │ ├── ZlibDecoder.h │ │ │ ├── ZlibEncoder.cpp │ │ │ ├── ZlibEncoder.h │ │ │ ├── ZstdDecoder.cpp │ │ │ ├── ZstdDecoder.h │ │ │ └── makefile │ │ ├── Crc.mak │ │ ├── Crc64.mak │ │ ├── Crypto │ │ │ ├── 7zAes.cpp │ │ │ ├── 7zAes.h │ │ │ ├── 7zAesRegister.cpp │ │ │ ├── Codec.def │ │ │ ├── HmacSha1.cpp │ │ │ ├── HmacSha1.h │ │ │ ├── HmacSha256.cpp │ │ │ ├── HmacSha256.h │ │ │ ├── MyAes.cpp │ │ │ ├── MyAes.h │ │ │ ├── MyAesReg.cpp │ │ │ ├── Pbkdf2HmacSha1.cpp │ │ │ ├── Pbkdf2HmacSha1.h │ │ │ ├── RandGen.cpp │ │ │ ├── RandGen.h │ │ │ ├── Rar20Crypto.cpp │ │ │ ├── Rar20Crypto.h │ │ │ ├── Rar5Aes.cpp │ │ │ ├── Rar5Aes.h │ │ │ ├── RarAes.cpp │ │ │ ├── RarAes.h │ │ │ ├── Sha1Cls.h │ │ │ ├── StdAfx.h │ │ │ ├── WzAes.cpp │ │ │ ├── WzAes.h │ │ │ ├── ZipCrypto.cpp │ │ │ ├── ZipCrypto.h │ │ │ ├── ZipStrong.cpp │ │ │ └── ZipStrong.h │ │ ├── GuiCommon.rc │ │ ├── Guid.txt │ │ ├── ICoder.h │ │ ├── IDecl.h │ │ ├── IPassword.h │ │ ├── IProgress.h │ │ ├── IStream.h │ │ ├── LzFindOpt.mak │ │ ├── LzmaDec.mak │ │ ├── LzmaDec_gcc.mak │ │ ├── MyVersion.h │ │ ├── MyVersionInfo.rc │ │ ├── PropID.h │ │ ├── Sha1.mak │ │ ├── Sha256.mak │ │ ├── SubBuild.mak │ │ ├── UI │ │ │ ├── Agent │ │ │ │ ├── Agent.cpp │ │ │ │ ├── Agent.h │ │ │ │ ├── AgentOut.cpp │ │ │ │ ├── AgentProxy.cpp │ │ │ │ ├── AgentProxy.h │ │ │ │ ├── ArchiveFolder.cpp │ │ │ │ ├── ArchiveFolderOpen.cpp │ │ │ │ ├── ArchiveFolderOut.cpp │ │ │ │ ├── IFolderArchive.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── UpdateCallbackAgent.cpp │ │ │ │ └── UpdateCallbackAgent.h │ │ │ ├── Client7z │ │ │ │ ├── Client7z.cpp │ │ │ │ ├── Client7z.dsp │ │ │ │ ├── Client7z.dsw │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── Common │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ ├── ArchiveName.cpp │ │ │ │ ├── ArchiveName.h │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ ├── Bench.cpp │ │ │ │ ├── Bench.h │ │ │ │ ├── CompressCall.cpp │ │ │ │ ├── CompressCall.h │ │ │ │ ├── CompressCall2.cpp │ │ │ │ ├── DefaultName.cpp │ │ │ │ ├── DefaultName.h │ │ │ │ ├── DirItem.h │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ ├── EnumDirItems.h │ │ │ │ ├── ExitCode.h │ │ │ │ ├── Extract.cpp │ │ │ │ ├── Extract.h │ │ │ │ ├── ExtractMode.h │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ ├── HashCalc.cpp │ │ │ │ ├── HashCalc.h │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ ├── LoadCodecs.h │ │ │ │ ├── OpenArchive.cpp │ │ │ │ ├── OpenArchive.h │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ ├── PropIDUtils.h │ │ │ │ ├── Property.h │ │ │ │ ├── SetProperties.cpp │ │ │ │ ├── SetProperties.h │ │ │ │ ├── SortUtils.cpp │ │ │ │ ├── SortUtils.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── TempFiles.cpp │ │ │ │ ├── TempFiles.h │ │ │ │ ├── Update.cpp │ │ │ │ ├── Update.h │ │ │ │ ├── UpdateAction.cpp │ │ │ │ ├── UpdateAction.h │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ ├── UpdateCallback.h │ │ │ │ ├── UpdatePair.cpp │ │ │ │ ├── UpdatePair.h │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ ├── UpdateProduce.h │ │ │ │ ├── WorkDir.cpp │ │ │ │ ├── WorkDir.h │ │ │ │ ├── ZipRegistry.cpp │ │ │ │ └── ZipRegistry.h │ │ │ ├── Console │ │ │ │ ├── BenchCon.cpp │ │ │ │ ├── BenchCon.h │ │ │ │ ├── Console.dsp │ │ │ │ ├── Console.dsw │ │ │ │ ├── Console.mak │ │ │ │ ├── Console.manifest │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ ├── ConsoleClose.h │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ ├── HashCon.cpp │ │ │ │ ├── HashCon.h │ │ │ │ ├── List.cpp │ │ │ │ ├── List.h │ │ │ │ ├── Main.cpp │ │ │ │ ├── MainAr.cpp │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ ├── PercentPrinter.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ ├── UserInputUtils.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.gcc │ │ │ │ └── resource.rc │ │ │ ├── Explorer │ │ │ │ ├── 7-zip.dll.manifest │ │ │ │ ├── ContextMenu.cpp │ │ │ │ ├── ContextMenu.h │ │ │ │ ├── ContextMenuFlags.h │ │ │ │ ├── DllExportsExplorer.cpp │ │ │ │ ├── Explorer.def │ │ │ │ ├── Explorer.dsp │ │ │ │ ├── Explorer.dsw │ │ │ │ ├── MenuLogo.bmp │ │ │ │ ├── MyExplorerCommand.h │ │ │ │ ├── MyMessages.cpp │ │ │ │ ├── MyMessages.h │ │ │ │ ├── RegistryContextMenu.cpp │ │ │ │ ├── RegistryContextMenu.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ └── resource2.rc │ │ │ ├── Far │ │ │ │ ├── ExtractEngine.cpp │ │ │ │ ├── ExtractEngine.h │ │ │ │ ├── Far.cpp │ │ │ │ ├── Far.def │ │ │ │ ├── Far.dsp │ │ │ │ ├── Far.dsw │ │ │ │ ├── FarPlugin.h │ │ │ │ ├── FarUtils.cpp │ │ │ │ ├── FarUtils.h │ │ │ │ ├── Messages.h │ │ │ │ ├── OverwriteDialogFar.cpp │ │ │ │ ├── OverwriteDialogFar.h │ │ │ │ ├── Plugin.cpp │ │ │ │ ├── Plugin.h │ │ │ │ ├── PluginCommon.cpp │ │ │ │ ├── PluginDelete.cpp │ │ │ │ ├── PluginRead.cpp │ │ │ │ ├── PluginWrite.cpp │ │ │ │ ├── ProgressBox.cpp │ │ │ │ ├── ProgressBox.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── UpdateCallbackFar.cpp │ │ │ │ ├── UpdateCallbackFar.h │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ ├── FileManager │ │ │ │ ├── 7zFM.exe.manifest │ │ │ │ ├── 7zipLogo.ico │ │ │ │ ├── AboutDialog.cpp │ │ │ │ ├── AboutDialog.h │ │ │ │ ├── AboutDialog.rc │ │ │ │ ├── AboutDialogRes.h │ │ │ │ ├── Add.bmp │ │ │ │ ├── Add2.bmp │ │ │ │ ├── AltStreamsFolder.cpp │ │ │ │ ├── AltStreamsFolder.h │ │ │ │ ├── App.cpp │ │ │ │ ├── App.h │ │ │ │ ├── AppState.h │ │ │ │ ├── BrowseDialog.cpp │ │ │ │ ├── BrowseDialog.h │ │ │ │ ├── BrowseDialog.rc │ │ │ │ ├── BrowseDialog2.cpp │ │ │ │ ├── BrowseDialog2.h │ │ │ │ ├── BrowseDialog2.rc │ │ │ │ ├── BrowseDialog2Res.h │ │ │ │ ├── BrowseDialogRes.h │ │ │ │ ├── ClassDefs.cpp │ │ │ │ ├── ComboDialog.cpp │ │ │ │ ├── ComboDialog.h │ │ │ │ ├── ComboDialog.rc │ │ │ │ ├── ComboDialogRes.h │ │ │ │ ├── Copy.bmp │ │ │ │ ├── Copy2.bmp │ │ │ │ ├── CopyDialog.cpp │ │ │ │ ├── CopyDialog.h │ │ │ │ ├── CopyDialog.rc │ │ │ │ ├── CopyDialogRes.h │ │ │ │ ├── Delete.bmp │ │ │ │ ├── Delete2.bmp │ │ │ │ ├── DialogSize.h │ │ │ │ ├── EditDialog.cpp │ │ │ │ ├── EditDialog.h │ │ │ │ ├── EditDialog.rc │ │ │ │ ├── EditDialogRes.h │ │ │ │ ├── EditPage.cpp │ │ │ │ ├── EditPage.h │ │ │ │ ├── EditPage.rc │ │ │ │ ├── EditPage2.rc │ │ │ │ ├── EditPageRes.h │ │ │ │ ├── EnumFormatEtc.cpp │ │ │ │ ├── EnumFormatEtc.h │ │ │ │ ├── Extract.bmp │ │ │ │ ├── Extract2.bmp │ │ │ │ ├── ExtractCallback.cpp │ │ │ │ ├── ExtractCallback.h │ │ │ │ ├── FM.cpp │ │ │ │ ├── FM.dsp │ │ │ │ ├── FM.dsw │ │ │ │ ├── FM.ico │ │ │ │ ├── FM.mak │ │ │ │ ├── FSDrives.cpp │ │ │ │ ├── FSDrives.h │ │ │ │ ├── FSFolder.cpp │ │ │ │ ├── FSFolder.h │ │ │ │ ├── FSFolderCopy.cpp │ │ │ │ ├── FileFolderPluginOpen.cpp │ │ │ │ ├── FileFolderPluginOpen.h │ │ │ │ ├── FilePlugins.cpp │ │ │ │ ├── FilePlugins.h │ │ │ │ ├── FoldersPage.cpp │ │ │ │ ├── FoldersPage.h │ │ │ │ ├── FoldersPage.rc │ │ │ │ ├── FoldersPage2.rc │ │ │ │ ├── FoldersPageRes.h │ │ │ │ ├── FormatUtils.cpp │ │ │ │ ├── FormatUtils.h │ │ │ │ ├── HelpUtils.cpp │ │ │ │ ├── HelpUtils.h │ │ │ │ ├── IFolder.h │ │ │ │ ├── Info.bmp │ │ │ │ ├── Info2.bmp │ │ │ │ ├── LangPage.cpp │ │ │ │ ├── LangPage.h │ │ │ │ ├── LangPage.rc │ │ │ │ ├── LangPageRes.h │ │ │ │ ├── LangUtils.cpp │ │ │ │ ├── LangUtils.h │ │ │ │ ├── LinkDialog.cpp │ │ │ │ ├── LinkDialog.h │ │ │ │ ├── LinkDialog.rc │ │ │ │ ├── LinkDialogRes.h │ │ │ │ ├── ListViewDialog.cpp │ │ │ │ ├── ListViewDialog.h │ │ │ │ ├── ListViewDialog.rc │ │ │ │ ├── ListViewDialogRes.h │ │ │ │ ├── MemDialog.cpp │ │ │ │ ├── MemDialog.h │ │ │ │ ├── MemDialog.rc │ │ │ │ ├── MemDialogRes.h │ │ │ │ ├── MenuPage.cpp │ │ │ │ ├── MenuPage.h │ │ │ │ ├── MenuPage.rc │ │ │ │ ├── MenuPage2.rc │ │ │ │ ├── MenuPageRes.h │ │ │ │ ├── MessagesDialog.cpp │ │ │ │ ├── MessagesDialog.h │ │ │ │ ├── MessagesDialog.rc │ │ │ │ ├── MessagesDialogRes.h │ │ │ │ ├── Move.bmp │ │ │ │ ├── Move2.bmp │ │ │ │ ├── MyCom2.h │ │ │ │ ├── MyLoadMenu.cpp │ │ │ │ ├── MyLoadMenu.h │ │ │ │ ├── MyWindowsNew.h │ │ │ │ ├── NetFolder.cpp │ │ │ │ ├── NetFolder.h │ │ │ │ ├── OpenCallback.cpp │ │ │ │ ├── OpenCallback.h │ │ │ │ ├── OptionsDialog.cpp │ │ │ │ ├── OverwriteDialog.cpp │ │ │ │ ├── OverwriteDialog.h │ │ │ │ ├── OverwriteDialog.rc │ │ │ │ ├── OverwriteDialogRes.h │ │ │ │ ├── Panel.cpp │ │ │ │ ├── Panel.h │ │ │ │ ├── PanelCopy.cpp │ │ │ │ ├── PanelCrc.cpp │ │ │ │ ├── PanelDrag.cpp │ │ │ │ ├── PanelFolderChange.cpp │ │ │ │ ├── PanelItemOpen.cpp │ │ │ │ ├── PanelItems.cpp │ │ │ │ ├── PanelKey.cpp │ │ │ │ ├── PanelListNotify.cpp │ │ │ │ ├── PanelMenu.cpp │ │ │ │ ├── PanelOperations.cpp │ │ │ │ ├── PanelSelect.cpp │ │ │ │ ├── PanelSort.cpp │ │ │ │ ├── PanelSplitFile.cpp │ │ │ │ ├── PasswordDialog.cpp │ │ │ │ ├── PasswordDialog.h │ │ │ │ ├── PasswordDialog.rc │ │ │ │ ├── PasswordDialogRes.h │ │ │ │ ├── PluginInterface.h │ │ │ │ ├── PluginLoader.h │ │ │ │ ├── ProgramLocation.cpp │ │ │ │ ├── ProgramLocation.h │ │ │ │ ├── ProgressDialog.cpp │ │ │ │ ├── ProgressDialog.h │ │ │ │ ├── ProgressDialog.rc │ │ │ │ ├── ProgressDialog2.cpp │ │ │ │ ├── ProgressDialog2.h │ │ │ │ ├── ProgressDialog2.rc │ │ │ │ ├── ProgressDialog2Res.h │ │ │ │ ├── ProgressDialog2a.rc │ │ │ │ ├── ProgressDialogRes.h │ │ │ │ ├── PropertyName.cpp │ │ │ │ ├── PropertyName.h │ │ │ │ ├── PropertyName.rc │ │ │ │ ├── PropertyNameRes.h │ │ │ │ ├── RegistryAssociations.cpp │ │ │ │ ├── RegistryAssociations.h │ │ │ │ ├── RegistryPlugins.cpp │ │ │ │ ├── RegistryPlugins.h │ │ │ │ ├── RegistryUtils.cpp │ │ │ │ ├── RegistryUtils.h │ │ │ │ ├── RootFolder.cpp │ │ │ │ ├── RootFolder.h │ │ │ │ ├── SettingsPage.cpp │ │ │ │ ├── SettingsPage.h │ │ │ │ ├── SettingsPage.rc │ │ │ │ ├── SettingsPage2.rc │ │ │ │ ├── SettingsPageRes.h │ │ │ │ ├── SplitDialog.cpp │ │ │ │ ├── SplitDialog.h │ │ │ │ ├── SplitDialog.rc │ │ │ │ ├── SplitDialogRes.h │ │ │ │ ├── SplitUtils.cpp │ │ │ │ ├── SplitUtils.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── StringUtils.cpp │ │ │ │ ├── StringUtils.h │ │ │ │ ├── SysIconUtils.cpp │ │ │ │ ├── SysIconUtils.h │ │ │ │ ├── SystemPage.cpp │ │ │ │ ├── SystemPage.h │ │ │ │ ├── SystemPage.rc │ │ │ │ ├── SystemPageRes.h │ │ │ │ ├── Test.bmp │ │ │ │ ├── Test2.bmp │ │ │ │ ├── TextPairs.cpp │ │ │ │ ├── TextPairs.h │ │ │ │ ├── UpdateCallback100.cpp │ │ │ │ ├── UpdateCallback100.h │ │ │ │ ├── VerCtrl.cpp │ │ │ │ ├── ViewSettings.cpp │ │ │ │ ├── ViewSettings.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ ├── resourceGui.h │ │ │ │ └── resourceGui.rc │ │ │ ├── GUI │ │ │ │ ├── 7zG.exe.manifest │ │ │ │ ├── BenchmarkDialog.cpp │ │ │ │ ├── BenchmarkDialog.h │ │ │ │ ├── BenchmarkDialog.rc │ │ │ │ ├── BenchmarkDialogRes.h │ │ │ │ ├── CompressDialog.cpp │ │ │ │ ├── CompressDialog.h │ │ │ │ ├── CompressDialog.rc │ │ │ │ ├── CompressDialogRes.h │ │ │ │ ├── CompressOptionsDialog.rc │ │ │ │ ├── Extract.rc │ │ │ │ ├── ExtractDialog.cpp │ │ │ │ ├── ExtractDialog.h │ │ │ │ ├── ExtractDialog.rc │ │ │ │ ├── ExtractDialogRes.h │ │ │ │ ├── ExtractGUI.cpp │ │ │ │ ├── ExtractGUI.h │ │ │ │ ├── ExtractRes.h │ │ │ │ ├── FM.ico │ │ │ │ ├── GUI.cpp │ │ │ │ ├── GUI.dsp │ │ │ │ ├── GUI.dsw │ │ │ │ ├── HashGUI.cpp │ │ │ │ ├── HashGUI.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── UpdateCallbackGUI.cpp │ │ │ │ ├── UpdateCallbackGUI.h │ │ │ │ ├── UpdateCallbackGUI2.cpp │ │ │ │ ├── UpdateCallbackGUI2.h │ │ │ │ ├── UpdateGUI.cpp │ │ │ │ ├── UpdateGUI.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.rc │ │ │ │ ├── resource2.h │ │ │ │ ├── resource2.rc │ │ │ │ ├── resource3.h │ │ │ │ └── resource3.rc │ │ │ └── makefile │ │ ├── cmpl_clang.mak │ │ ├── cmpl_clang_arm64.mak │ │ ├── cmpl_clang_x64.mak │ │ ├── cmpl_clang_x86.mak │ │ ├── cmpl_gcc.mak │ │ ├── cmpl_gcc_arm.mak │ │ ├── cmpl_gcc_arm64.mak │ │ ├── cmpl_gcc_x64.mak │ │ ├── cmpl_gcc_x86.mak │ │ ├── cmpl_mac_arm64.mak │ │ ├── cmpl_mac_x64.mak │ │ ├── makefile │ │ ├── var_clang.mak │ │ ├── var_clang_arm64.mak │ │ ├── var_clang_x64.mak │ │ ├── var_clang_x86.mak │ │ ├── var_gcc.mak │ │ ├── var_gcc_arm.mak │ │ ├── var_gcc_arm64.mak │ │ ├── var_gcc_x64.mak │ │ ├── var_gcc_x86.mak │ │ ├── var_mac_arm64.mak │ │ ├── var_mac_x64.mak │ │ ├── warn_clang.mak │ │ ├── warn_clang_mac.mak │ │ └── warn_gcc.mak │ ├── Build.mak │ ├── Common │ │ ├── AutoPtr.h │ │ ├── CRC.cpp │ │ ├── C_FileIO.cpp │ │ ├── C_FileIO.h │ │ ├── CksumReg.cpp │ │ ├── ComTry.h │ │ ├── CommandLineParser.cpp │ │ ├── CommandLineParser.h │ │ ├── Common.h │ │ ├── Common0.h │ │ ├── CrcReg.cpp │ │ ├── Defs.h │ │ ├── DynLimBuf.cpp │ │ ├── DynLimBuf.h │ │ ├── DynamicBuffer.h │ │ ├── IntToString.cpp │ │ ├── IntToString.h │ │ ├── Lang.cpp │ │ ├── Lang.h │ │ ├── ListFileUtils.cpp │ │ ├── ListFileUtils.h │ │ ├── LzFindPrepare.cpp │ │ ├── Md5Reg.cpp │ │ ├── MyBuffer.h │ │ ├── MyBuffer2.h │ │ ├── MyCom.h │ │ ├── MyException.h │ │ ├── MyGuidDef.h │ │ ├── MyInitGuid.h │ │ ├── MyLinux.h │ │ ├── MyMap.cpp │ │ ├── MyMap.h │ │ ├── MyString.cpp │ │ ├── MyString.h │ │ ├── MyTypes.h │ │ ├── MyUnknown.h │ │ ├── MyVector.cpp │ │ ├── MyVector.h │ │ ├── MyWindows.cpp │ │ ├── MyWindows.h │ │ ├── MyXml.cpp │ │ ├── MyXml.h │ │ ├── NewHandler.cpp │ │ ├── NewHandler.h │ │ ├── Random.cpp │ │ ├── Random.h │ │ ├── Sha1Prepare.cpp │ │ ├── Sha1Reg.cpp │ │ ├── Sha256Prepare.cpp │ │ ├── Sha256Reg.cpp │ │ ├── Sha3Reg.cpp │ │ ├── Sha512Prepare.cpp │ │ ├── Sha512Reg.cpp │ │ ├── StdAfx.h │ │ ├── StdInStream.cpp │ │ ├── StdInStream.h │ │ ├── StdOutStream.cpp │ │ ├── StdOutStream.h │ │ ├── StringConvert.cpp │ │ ├── StringConvert.h │ │ ├── StringToInt.cpp │ │ ├── StringToInt.h │ │ ├── TextConfig.cpp │ │ ├── TextConfig.h │ │ ├── UTFConvert.cpp │ │ ├── UTFConvert.h │ │ ├── Wildcard.cpp │ │ ├── Wildcard.h │ │ ├── Xxh64Reg.cpp │ │ ├── XzCrc64Init.cpp │ │ └── XzCrc64Reg.cpp │ └── Windows │ │ ├── COM.cpp │ │ ├── COM.h │ │ ├── Clipboard.cpp │ │ ├── Clipboard.h │ │ ├── CommonDialog.cpp │ │ ├── CommonDialog.h │ │ ├── Console.cpp │ │ ├── Console.h │ │ ├── Control │ │ ├── ComboBox.cpp │ │ ├── ComboBox.h │ │ ├── CommandBar.h │ │ ├── Dialog.cpp │ │ ├── Dialog.h │ │ ├── Edit.h │ │ ├── ImageList.cpp │ │ ├── ImageList.h │ │ ├── ListView.cpp │ │ ├── ListView.h │ │ ├── ProgressBar.h │ │ ├── PropertyPage.cpp │ │ ├── PropertyPage.h │ │ ├── ReBar.h │ │ ├── Static.h │ │ ├── StatusBar.h │ │ ├── StdAfx.h │ │ ├── ToolBar.h │ │ ├── Trackbar.h │ │ ├── Window2.cpp │ │ └── Window2.h │ │ ├── DLL.cpp │ │ ├── DLL.h │ │ ├── Defs.h │ │ ├── ErrorMsg.cpp │ │ ├── ErrorMsg.h │ │ ├── FileDir.cpp │ │ ├── FileDir.h │ │ ├── FileFind.cpp │ │ ├── FileFind.h │ │ ├── FileIO.cpp │ │ ├── FileIO.h │ │ ├── FileLink.cpp │ │ ├── FileMapping.cpp │ │ ├── FileMapping.h │ │ ├── FileName.cpp │ │ ├── FileName.h │ │ ├── FileSystem.cpp │ │ ├── FileSystem.h │ │ ├── Handle.h │ │ ├── MemoryGlobal.cpp │ │ ├── MemoryGlobal.h │ │ ├── MemoryLock.cpp │ │ ├── MemoryLock.h │ │ ├── Menu.cpp │ │ ├── Menu.h │ │ ├── NationalTime.cpp │ │ ├── NationalTime.h │ │ ├── Net.cpp │ │ ├── Net.h │ │ ├── NtCheck.h │ │ ├── ProcessMessages.cpp │ │ ├── ProcessMessages.h │ │ ├── ProcessUtils.cpp │ │ ├── ProcessUtils.h │ │ ├── PropVariant.cpp │ │ ├── PropVariant.h │ │ ├── PropVariantConv.cpp │ │ ├── PropVariantConv.h │ │ ├── PropVariantUtils.cpp │ │ ├── PropVariantUtils.h │ │ ├── Registry.cpp │ │ ├── Registry.h │ │ ├── ResourceString.cpp │ │ ├── ResourceString.h │ │ ├── SecurityUtils.cpp │ │ ├── SecurityUtils.h │ │ ├── Shell.cpp │ │ ├── Shell.h │ │ ├── StdAfx.h │ │ ├── Synchronization.cpp │ │ ├── Synchronization.h │ │ ├── System.cpp │ │ ├── System.h │ │ ├── SystemInfo.cpp │ │ ├── SystemInfo.h │ │ ├── Thread.h │ │ ├── TimeUtils.cpp │ │ ├── TimeUtils.h │ │ ├── Window.cpp │ │ └── Window.h ├── DOC │ ├── 7zC.txt │ ├── 7zFormat.txt │ ├── 7zip.hhp │ ├── 7zip.wxs │ ├── License.txt │ ├── Methods.txt │ ├── copying.txt │ ├── lzma.txt │ ├── readme.txt │ ├── src-history.txt │ └── unRarLicense.txt ├── README.md └── Wrapper-CPP │ ├── ArchiveExtractCallback.cpp │ ├── ArchiveExtractCallback.h │ ├── ArchiveOpenCallback.cpp │ ├── ArchiveOpenCallback.h │ ├── ArchiveUpdateCallback.cpp │ ├── ArchiveUpdateCallback.h │ ├── C7Zip.cpp │ ├── C7Zip.h │ ├── CallbackBase.cpp │ ├── CallbackBase.h │ ├── DirFileEnum.cpp │ ├── DirFileEnum.h │ ├── GUIDs.cpp │ ├── GUIDs.h │ ├── Helper.cpp │ ├── Helper.h │ ├── InStreamWrapper.cpp │ ├── InStreamWrapper.h │ ├── OutStreamWrapper.cpp │ ├── OutStreamWrapper.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── notes ├── CryptSync.pdn ├── CryptSyncError.pdn ├── CryptSync_32.pdn ├── Design.txt ├── GitHub-socialpreview.png └── sync.pdn ├── src ├── AboutDlg.cpp ├── AboutDlg.h ├── COMPtrs.h ├── CryptSync.cpp ├── CryptSync.ico ├── CryptSync.rc ├── CryptSync.rc2 ├── CryptSync.vcxproj ├── CryptSync.vcxproj.filters ├── CryptSyncError.ico ├── FolderSync.cpp ├── FolderSync.h ├── Ignores.cpp ├── Ignores.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── PairAddDlg.cpp ├── PairAddDlg.h ├── Pairs.cpp ├── Pairs.h ├── PathWatcher.cpp ├── PathWatcher.h ├── Setup │ ├── Banner.jpg │ ├── Dialog.jpg │ ├── Setup.wxs │ ├── Setup64.wxs │ ├── SetupARM64.wxs │ ├── StefansTools_setupdialog.pdn │ ├── VersionNumberInclude.in.wxi │ └── setup.build ├── TextDlg.cpp ├── TextDlg.h ├── TrayWindow.cpp ├── TrayWindow.h ├── UpdateDlg.cpp ├── UpdateDlg.h ├── last │ └── version.h ├── resource.h ├── stdafx.cpp ├── stdafx.h └── version.in ├── tools ├── checkyear.js ├── coverity.bat ├── gpg.exe └── iconv.dll ├── version.build.in ├── version.txt └── versioninfo.build /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tgitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/.tgitconfig -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CryptSync.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/CryptSync.sln -------------------------------------------------------------------------------- /CryptSync.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/CryptSync.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/Tests/Tests.vcxproj -------------------------------------------------------------------------------- /Tests/Tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/Tests/Tests.vcxproj.filters -------------------------------------------------------------------------------- /Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/Tests/packages.config -------------------------------------------------------------------------------- /Tests/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/Tests/stdafx.cpp -------------------------------------------------------------------------------- /Tests/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/Tests/stdafx.h -------------------------------------------------------------------------------- /Tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/Tests/test.cpp -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /base4k/base4k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/base4k/base4k.c -------------------------------------------------------------------------------- /base4k/base4k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/base4k/base4k.h -------------------------------------------------------------------------------- /default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/default.build -------------------------------------------------------------------------------- /default.build.user.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/default.build.user.tmpl -------------------------------------------------------------------------------- /lzma/7Zip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/7Zip.vcxproj -------------------------------------------------------------------------------- /lzma/7Zip.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/7Zip.vcxproj.filters -------------------------------------------------------------------------------- /lzma/Asm/arm/7zCrcOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/arm/7zCrcOpt.asm -------------------------------------------------------------------------------- /lzma/Asm/arm64/7zAsm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/arm64/7zAsm.S -------------------------------------------------------------------------------- /lzma/Asm/arm64/LzmaDecOpt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/arm64/LzmaDecOpt.S -------------------------------------------------------------------------------- /lzma/Asm/x86/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/7zAsm.asm -------------------------------------------------------------------------------- /lzma/Asm/x86/7zCrcOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/7zCrcOpt.asm -------------------------------------------------------------------------------- /lzma/Asm/x86/AesOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/AesOpt.asm -------------------------------------------------------------------------------- /lzma/Asm/x86/LzFindOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/LzFindOpt.asm -------------------------------------------------------------------------------- /lzma/Asm/x86/LzmaDecOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/LzmaDecOpt.asm -------------------------------------------------------------------------------- /lzma/Asm/x86/Sha1Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/Sha1Opt.asm -------------------------------------------------------------------------------- /lzma/Asm/x86/Sha256Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/Sha256Opt.asm -------------------------------------------------------------------------------- /lzma/Asm/x86/XzCrc64Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Asm/x86/XzCrc64Opt.asm -------------------------------------------------------------------------------- /lzma/C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7z.h -------------------------------------------------------------------------------- /lzma/C/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zAlloc.c -------------------------------------------------------------------------------- /lzma/C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zAlloc.h -------------------------------------------------------------------------------- /lzma/C/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zArcIn.c -------------------------------------------------------------------------------- /lzma/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zBuf.c -------------------------------------------------------------------------------- /lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /lzma/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zBuf2.c -------------------------------------------------------------------------------- /lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /lzma/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zCrcOpt.c -------------------------------------------------------------------------------- /lzma/C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zDec.c -------------------------------------------------------------------------------- /lzma/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zFile.c -------------------------------------------------------------------------------- /lzma/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zFile.h -------------------------------------------------------------------------------- /lzma/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zStream.c -------------------------------------------------------------------------------- /lzma/C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zTypes.h -------------------------------------------------------------------------------- /lzma/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zVersion.h -------------------------------------------------------------------------------- /lzma/C/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zVersion.rc -------------------------------------------------------------------------------- /lzma/C/7zWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zWindows.h -------------------------------------------------------------------------------- /lzma/C/7zip_gcc_c.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/7zip_gcc_c.mak -------------------------------------------------------------------------------- /lzma/C/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Aes.c -------------------------------------------------------------------------------- /lzma/C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Aes.h -------------------------------------------------------------------------------- /lzma/C/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/AesOpt.c -------------------------------------------------------------------------------- /lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Alloc.c -------------------------------------------------------------------------------- /lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Alloc.h -------------------------------------------------------------------------------- /lzma/C/Asm_c.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Asm_c.mak -------------------------------------------------------------------------------- /lzma/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Bcj2.c -------------------------------------------------------------------------------- /lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /lzma/C/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Bcj2Enc.c -------------------------------------------------------------------------------- /lzma/C/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Blake2.h -------------------------------------------------------------------------------- /lzma/C/Blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Blake2s.c -------------------------------------------------------------------------------- /lzma/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Bra.c -------------------------------------------------------------------------------- /lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Bra.h -------------------------------------------------------------------------------- /lzma/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Bra86.c -------------------------------------------------------------------------------- /lzma/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/BraIA64.c -------------------------------------------------------------------------------- /lzma/C/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/BwtSort.c -------------------------------------------------------------------------------- /lzma/C/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/BwtSort.h -------------------------------------------------------------------------------- /lzma/C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Compiler.h -------------------------------------------------------------------------------- /lzma/C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/CpuArch.c -------------------------------------------------------------------------------- /lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/CpuArch.h -------------------------------------------------------------------------------- /lzma/C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Delta.c -------------------------------------------------------------------------------- /lzma/C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Delta.h -------------------------------------------------------------------------------- /lzma/C/DllSecur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/DllSecur.c -------------------------------------------------------------------------------- /lzma/C/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/DllSecur.h -------------------------------------------------------------------------------- /lzma/C/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/HuffEnc.c -------------------------------------------------------------------------------- /lzma/C/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/HuffEnc.h -------------------------------------------------------------------------------- /lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzFind.c -------------------------------------------------------------------------------- /lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzFind.h -------------------------------------------------------------------------------- /lzma/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzFindMt.c -------------------------------------------------------------------------------- /lzma/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzFindMt.h -------------------------------------------------------------------------------- /lzma/C/LzFindOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzFindOpt.c -------------------------------------------------------------------------------- /lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzHash.h -------------------------------------------------------------------------------- /lzma/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma2Dec.c -------------------------------------------------------------------------------- /lzma/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma2Dec.h -------------------------------------------------------------------------------- /lzma/C/Lzma2DecMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma2DecMt.c -------------------------------------------------------------------------------- /lzma/C/Lzma2DecMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma2DecMt.h -------------------------------------------------------------------------------- /lzma/C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma2Enc.c -------------------------------------------------------------------------------- /lzma/C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma2Enc.h -------------------------------------------------------------------------------- /lzma/C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma86.h -------------------------------------------------------------------------------- /lzma/C/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma86Dec.c -------------------------------------------------------------------------------- /lzma/C/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Lzma86Enc.c -------------------------------------------------------------------------------- /lzma/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzmaDec.c -------------------------------------------------------------------------------- /lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /lzma/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzmaEnc.c -------------------------------------------------------------------------------- /lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /lzma/C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzmaLib.c -------------------------------------------------------------------------------- /lzma/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/LzmaLib.h -------------------------------------------------------------------------------- /lzma/C/Md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Md5.c -------------------------------------------------------------------------------- /lzma/C/Md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Md5.h -------------------------------------------------------------------------------- /lzma/C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/MtCoder.c -------------------------------------------------------------------------------- /lzma/C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/MtCoder.h -------------------------------------------------------------------------------- /lzma/C/MtDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/MtDec.c -------------------------------------------------------------------------------- /lzma/C/MtDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/MtDec.h -------------------------------------------------------------------------------- /lzma/C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd.h -------------------------------------------------------------------------------- /lzma/C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd7.c -------------------------------------------------------------------------------- /lzma/C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd7.h -------------------------------------------------------------------------------- /lzma/C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd7Dec.c -------------------------------------------------------------------------------- /lzma/C/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd7Enc.c -------------------------------------------------------------------------------- /lzma/C/Ppmd7aDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd7aDec.c -------------------------------------------------------------------------------- /lzma/C/Ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd8.c -------------------------------------------------------------------------------- /lzma/C/Ppmd8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd8.h -------------------------------------------------------------------------------- /lzma/C/Ppmd8Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd8Dec.c -------------------------------------------------------------------------------- /lzma/C/Ppmd8Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Ppmd8Enc.c -------------------------------------------------------------------------------- /lzma/C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Precomp.h -------------------------------------------------------------------------------- /lzma/C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/RotateDefs.h -------------------------------------------------------------------------------- /lzma/C/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha1.c -------------------------------------------------------------------------------- /lzma/C/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha1.h -------------------------------------------------------------------------------- /lzma/C/Sha1Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha1Opt.c -------------------------------------------------------------------------------- /lzma/C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha256.c -------------------------------------------------------------------------------- /lzma/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha256.h -------------------------------------------------------------------------------- /lzma/C/Sha256Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha256Opt.c -------------------------------------------------------------------------------- /lzma/C/Sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha3.c -------------------------------------------------------------------------------- /lzma/C/Sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha3.h -------------------------------------------------------------------------------- /lzma/C/Sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha512.c -------------------------------------------------------------------------------- /lzma/C/Sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha512.h -------------------------------------------------------------------------------- /lzma/C/Sha512Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sha512Opt.c -------------------------------------------------------------------------------- /lzma/C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sort.c -------------------------------------------------------------------------------- /lzma/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Sort.h -------------------------------------------------------------------------------- /lzma/C/SwapBytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/SwapBytes.c -------------------------------------------------------------------------------- /lzma/C/SwapBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/SwapBytes.h -------------------------------------------------------------------------------- /lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Threads.c -------------------------------------------------------------------------------- /lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Threads.h -------------------------------------------------------------------------------- /lzma/C/Util/7z/7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7z/7z.dsp -------------------------------------------------------------------------------- /lzma/C/Util/7z/7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7z/7z.dsw -------------------------------------------------------------------------------- /lzma/C/Util/7z/7zMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7z/7zMain.c -------------------------------------------------------------------------------- /lzma/C/Util/7z/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7z/Precomp.c -------------------------------------------------------------------------------- /lzma/C/Util/7z/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7z/Precomp.h -------------------------------------------------------------------------------- /lzma/C/Util/7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7z/makefile -------------------------------------------------------------------------------- /lzma/C/Util/7z/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7z/makefile.gcc -------------------------------------------------------------------------------- /lzma/C/Util/7zipInstall/7zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipInstall/7zip.ico -------------------------------------------------------------------------------- /lzma/C/Util/7zipInstall/7zipInstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipInstall/7zipInstall.c -------------------------------------------------------------------------------- /lzma/C/Util/7zipInstall/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipInstall/Precomp.c -------------------------------------------------------------------------------- /lzma/C/Util/7zipInstall/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipInstall/Precomp.h -------------------------------------------------------------------------------- /lzma/C/Util/7zipInstall/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipInstall/makefile -------------------------------------------------------------------------------- /lzma/C/Util/7zipInstall/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipInstall/resource.h -------------------------------------------------------------------------------- /lzma/C/Util/7zipInstall/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipInstall/resource.rc -------------------------------------------------------------------------------- /lzma/C/Util/7zipUninstall/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipUninstall/Precomp.c -------------------------------------------------------------------------------- /lzma/C/Util/7zipUninstall/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipUninstall/Precomp.h -------------------------------------------------------------------------------- /lzma/C/Util/7zipUninstall/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipUninstall/makefile -------------------------------------------------------------------------------- /lzma/C/Util/7zipUninstall/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipUninstall/resource.h -------------------------------------------------------------------------------- /lzma/C/Util/7zipUninstall/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/7zipUninstall/resource.rc -------------------------------------------------------------------------------- /lzma/C/Util/Lzma/LzmaUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/Lzma/LzmaUtil.c -------------------------------------------------------------------------------- /lzma/C/Util/Lzma/LzmaUtil.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/Lzma/LzmaUtil.dsp -------------------------------------------------------------------------------- /lzma/C/Util/Lzma/LzmaUtil.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/Lzma/LzmaUtil.dsw -------------------------------------------------------------------------------- /lzma/C/Util/Lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/Lzma/Precomp.h -------------------------------------------------------------------------------- /lzma/C/Util/Lzma/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/Lzma/makefile -------------------------------------------------------------------------------- /lzma/C/Util/Lzma/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/Lzma/makefile.gcc -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/LzmaLib.def -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/LzmaLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/LzmaLib.dsp -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/LzmaLib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/LzmaLib.dsw -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/LzmaLibExports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/LzmaLibExports.c -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/Precomp.c -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/Precomp.h -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/makefile -------------------------------------------------------------------------------- /lzma/C/Util/LzmaLib/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/LzmaLib/resource.rc -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/Precomp.c -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/Precomp.h -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/SfxSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/SfxSetup.c -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/SfxSetup.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/SfxSetup.dsp -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/SfxSetup.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/SfxSetup.dsw -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/makefile -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/makefile_con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/makefile_con -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/resource.rc -------------------------------------------------------------------------------- /lzma/C/Util/SfxSetup/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Util/SfxSetup/setup.ico -------------------------------------------------------------------------------- /lzma/C/Xxh64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Xxh64.c -------------------------------------------------------------------------------- /lzma/C/Xxh64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Xxh64.h -------------------------------------------------------------------------------- /lzma/C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Xz.c -------------------------------------------------------------------------------- /lzma/C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/Xz.h -------------------------------------------------------------------------------- /lzma/C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/XzCrc64.c -------------------------------------------------------------------------------- /lzma/C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/XzCrc64.h -------------------------------------------------------------------------------- /lzma/C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /lzma/C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/XzDec.c -------------------------------------------------------------------------------- /lzma/C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/XzEnc.c -------------------------------------------------------------------------------- /lzma/C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/XzEnc.h -------------------------------------------------------------------------------- /lzma/C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/XzIn.c -------------------------------------------------------------------------------- /lzma/C/ZstdDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/ZstdDec.c -------------------------------------------------------------------------------- /lzma/C/ZstdDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/ZstdDec.h -------------------------------------------------------------------------------- /lzma/C/var_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_clang.mak -------------------------------------------------------------------------------- /lzma/C/var_clang_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_clang_arm64.mak -------------------------------------------------------------------------------- /lzma/C/var_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_clang_x64.mak -------------------------------------------------------------------------------- /lzma/C/var_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_clang_x86.mak -------------------------------------------------------------------------------- /lzma/C/var_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_gcc.mak -------------------------------------------------------------------------------- /lzma/C/var_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_gcc_arm64.mak -------------------------------------------------------------------------------- /lzma/C/var_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_gcc_x64.mak -------------------------------------------------------------------------------- /lzma/C/var_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_gcc_x86.mak -------------------------------------------------------------------------------- /lzma/C/var_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_mac_arm64.mak -------------------------------------------------------------------------------- /lzma/C/var_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/var_mac_x64.mak -------------------------------------------------------------------------------- /lzma/C/warn_clang.mak: -------------------------------------------------------------------------------- 1 | CFLAGS_WARN = -Weverything -Wfatal-errors 2 | -------------------------------------------------------------------------------- /lzma/C/warn_clang_mac.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/warn_clang_mac.mak -------------------------------------------------------------------------------- /lzma/C/warn_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/C/warn_gcc.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/7zip.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/7zip.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/7zip_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/7zip_gcc.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/Aes.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Aes.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7z.dsp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7z.dsw -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zDecode.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zDecode.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zEncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zEncode.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zEncode.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zExtract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zExtract.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zHeader.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zHeader.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zItem.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zOut.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zOut.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zUpdate.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/7zUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/7zUpdate.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/StdAfx.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/7z/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/7z/resource.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ApfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ApfsHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ApmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ApmHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ArHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ArHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Archive.def -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Archive2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Archive2.def -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ArjHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ArjHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/AvbHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/AvbHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Bz2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Bz2Handler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Cab/CabHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Cab/CabHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Cab/CabHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Cab/CabHeader.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Cab/CabIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Cab/CabIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Cab/CabIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Cab/CabIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Cab/CabItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Cab/CabItem.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Cab/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Cab/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Chm/ChmHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Chm/ChmHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Chm/ChmIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Chm/ChmIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Chm/ChmIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Chm/ChmIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Chm/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Chm/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ComHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ComHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Common/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/CpioHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/CpioHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/DeflateProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/DeflateProps.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/DllExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/DllExports.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/DllExports2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/DllExports2.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/DmgHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/DmgHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ElfHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ElfHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ExtHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ExtHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/FatHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/FatHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/FlvHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/FlvHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/GptHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/GptHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/GzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/GzHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/HandlerCont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/HandlerCont.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/HandlerCont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/HandlerCont.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/HfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/HfsHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/HfsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/HfsHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/IArchive.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/7z.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/apfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/apfs.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/arj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/arj.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/bz2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/bz2.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/cab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/cab.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/cpio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/cpio.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/deb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/deb.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/dmg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/dmg.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/fat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/fat.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/gz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/gz.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/hfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/hfs.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/iso.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/iso.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/lzh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/lzh.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/lzma.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/lzma.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/ntfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/ntfs.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/rar.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/rpm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/rpm.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/split.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/split.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/tar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/tar.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/vhd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/vhd.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/wim.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/wim.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/xar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/xar.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/xz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/xz.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/z.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/zip.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Icons/zst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Icons/zst.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/IhexHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/IhexHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Iso/IsoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Iso/IsoHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Iso/IsoHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Iso/IsoHeader.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Iso/IsoIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Iso/IsoIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Iso/IsoIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Iso/IsoIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Iso/IsoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Iso/IsoItem.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Iso/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Iso/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/LpHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/LpHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/LvmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/LvmHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/LzhHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/LzhHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/LzmaHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/LzmaHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/MachoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/MachoHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/MbrHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/MbrHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/MslzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/MslzHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/MubHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/MubHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Nsis/NsisIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Nsis/NsisIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Nsis/NsisIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Nsis/NsisIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Nsis/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Nsis/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/NtfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/NtfsHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/PeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/PeHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/PpmdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/PpmdHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/QcowHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/QcowHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Rar/RarHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Rar/RarHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Rar/RarHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Rar/RarHeader.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Rar/RarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Rar/RarItem.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Rar/RarVol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Rar/RarVol.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Rar/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Rar/StdAfx.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Rar/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Rar/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/RpmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/RpmHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/SplitHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/SplitHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/SwfHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/SwfHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarHeader.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarItem.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarOut.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarOut.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Tar/TarUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Tar/TarUpdate.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Udf/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Udf/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Udf/UdfHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Udf/UdfHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Udf/UdfIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Udf/UdfIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Udf/UdfIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Udf/UdfIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/UefiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/UefiHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/VdiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/VdiHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/VhdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/VhdHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/VhdxHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/VhdxHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/VmdkHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/VmdkHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Wim/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Wim/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Wim/WimHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Wim/WimHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Wim/WimIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Wim/WimIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Wim/WimIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Wim/WimIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/XarHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/XarHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/XzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/XzHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/XzHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/XzHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ZHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ZHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipHandler.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipHeader.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipIn.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipIn.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipItem.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipItem.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipOut.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipOut.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/Zip/ZipUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/Zip/ZipUpdate.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/ZstdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/ZstdHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Archive/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Archive/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Asm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Asm.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone/Alone.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone/Alone.dsp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone/Alone.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone/Alone.dsw -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone/StdAfx.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone2/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone2/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone2/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Alone7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Alone7z/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Fm/FM.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Fm/FM.dsp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Fm/FM.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Fm/FM.dsw -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Fm/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Fm/StdAfx.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Fm/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Fm/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Fm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Fm/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/Fm/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/Fm/resource.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/LzmaCon/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/LzmaCon/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/LzmaCon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/LzmaCon/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/LzmaCon/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("LZMA", "lzma") 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/SFXCon/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/SFXCon/7z.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/SFXCon/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/SFXCon/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/SFXCon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/SFXCon/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/SFXWin/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/SFXWin/7z.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/SFXWin/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/SFXWin/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/SFXWin/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/SFXWin/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/SFXWin/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_ICON 1 2 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Bundles/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Bundles/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/CWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/CWrappers.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/CWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/CWrappers.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/CreateCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/CreateCoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/CreateCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/CreateCoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/FileStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/FileStreams.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/FileStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/FileStreams.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/FilterCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/FilterCoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/FilterCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/FilterCoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/InBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/InBuffer.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/InBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/InBuffer.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/InOutTempBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/InOutTempBuffer.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/LimitedStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/LimitedStreams.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/LockedStream.cpp: -------------------------------------------------------------------------------- 1 | // LockedStream.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/LockedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/LockedStream.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/MemBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/MemBlocks.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/MemBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/MemBlocks.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/MethodId.cpp: -------------------------------------------------------------------------------- 1 | // MethodId.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/MethodId.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/MethodProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/MethodProps.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/MethodProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/MethodProps.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/MultiOutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/MultiOutStream.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/OffsetStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/OffsetStream.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/OffsetStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/OffsetStream.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/OutBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/OutBuffer.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/OutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/OutBuffer.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/OutMemStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/OutMemStream.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/OutMemStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/OutMemStream.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/ProgressMt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/ProgressMt.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/ProgressMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/ProgressMt.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/ProgressUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/ProgressUtils.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/ProgressUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/ProgressUtils.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/PropId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/PropId.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/RegisterArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/RegisterArc.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/RegisterCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/RegisterCodec.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/StreamBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/StreamBinder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/StreamBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/StreamBinder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/StreamObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/StreamObjects.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/StreamObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/StreamObjects.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/StreamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/StreamUtils.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/StreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/StreamUtils.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/UniqBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/UniqBlocks.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/UniqBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/UniqBlocks.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/VirtThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/VirtThread.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Common/VirtThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Common/VirtThread.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BZip2Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BZip2Const.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BZip2Crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BZip2Crc.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BZip2Crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BZip2Crc.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BZip2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BZip2Decoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BZip2Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BZip2Encoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Bcj2Coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Bcj2Coder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Bcj2Coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Bcj2Coder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BcjCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BcjCoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BcjCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BcjCoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BcjRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BcjRegister.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BitlDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BitlDecoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BitlDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BitlDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BitlEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BitlEncoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BitmDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BitmDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BitmEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BitmEncoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BranchMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BranchMisc.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/BranchMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/BranchMisc.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/ByteSwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/ByteSwap.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Codec.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Codec.def -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/CopyCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/CopyCoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/CopyCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/CopyCoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/DeflateConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/DeflateConst.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/DeltaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/DeltaFilter.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/ImplodeHuffmanDecoder.cpp: -------------------------------------------------------------------------------- 1 | // ImplodeHuffmanDecoder.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzOutWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzOutWindow.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzOutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzOutWindow.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzfseDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzfseDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzhDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzhDecoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzhDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzhDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Lzma2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Lzma2Decoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Lzma2Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Lzma2Encoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzmaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzmaDecoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzmaDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzmaDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzmaEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzmaEncoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzmaEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzmaEncoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzmsDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzmsDecoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzmsDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzmsDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Lzx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzxDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzxDecoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/LzxDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/LzxDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Mtf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Mtf8.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/PpmdDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/PpmdDecoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/PpmdDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/PpmdDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/PpmdEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/PpmdEncoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/PpmdEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/PpmdEncoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/PpmdZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/PpmdZip.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/PpmdZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/PpmdZip.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar1Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar1Decoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar1Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar1Decoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar2Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar2Decoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar2Decoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar3Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar3Decoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar3Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar3Decoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar3Vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar3Vm.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar3Vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar3Vm.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar5Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar5Decoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/Rar5Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/Rar5Decoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/ShrinkDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/ShrinkDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/XzDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/XzDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/XzEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/XzEncoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/ZDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/ZDecoder.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/ZDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/ZDecoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Compress/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Compress/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crc.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crc64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crc64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/7zAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/7zAes.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/7zAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/7zAes.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/Codec.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/Codec.def -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/HmacSha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/HmacSha1.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/HmacSha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/HmacSha1.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/HmacSha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/HmacSha256.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/HmacSha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/HmacSha256.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/MyAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/MyAes.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/MyAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/MyAes.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/MyAesReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/MyAesReg.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/RandGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/RandGen.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/RandGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/RandGen.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/Rar20Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/Rar20Crypto.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/Rar5Aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/Rar5Aes.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/Rar5Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/Rar5Aes.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/RarAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/RarAes.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/RarAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/RarAes.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/Sha1Cls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/Sha1Cls.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/WzAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/WzAes.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/WzAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/WzAes.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/ZipCrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/ZipCrypto.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/ZipCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/ZipCrypto.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/ZipStrong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/ZipStrong.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/Crypto/ZipStrong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Crypto/ZipStrong.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/GuiCommon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/GuiCommon.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /lzma/CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/IPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/IPassword.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/IProgress.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/LzFindOpt.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/LzFindOpt.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/LzmaDec.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/LzmaDec.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/LzmaDec_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/LzmaDec_gcc.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/MyVersionInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/MyVersionInfo.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/Sha1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Sha1.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/Sha256.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/Sha256.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/SubBuild.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/SubBuild.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Agent/Agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Agent/Agent.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Agent/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Agent/Agent.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Agent/AgentOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Agent/AgentOut.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Agent/AgentProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Agent/AgentProxy.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Agent/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Agent/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Client7z/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Client7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Client7z/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/Bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/Bench.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/Bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/Bench.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/DirItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/DirItem.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/ExitCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/ExitCode.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/Extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/Extract.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/Extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/Extract.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/HashCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/HashCalc.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/Property.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/SortUtils.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/TempFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/TempFiles.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/Update.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/Update.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/WorkDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/WorkDir.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Common/WorkDir.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/BenchCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/BenchCon.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/HashCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/HashCon.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/List.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/List.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/Main.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/MainAr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/MainAr.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/StdAfx.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Console/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Console/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Explorer/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Explorer/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Explorer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Explorer/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/Far.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/Far.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/Far.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/Far.def -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/Far.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/Far.dsp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/Far.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/Far.dsw -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/FarPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/FarPlugin.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/FarUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/FarUtils.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/FarUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/FarUtils.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/Messages.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/Plugin.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/Plugin.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/PluginRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/PluginRead.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/ProgressBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/ProgressBox.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/StdAfx.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/Far/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/Far/resource.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/FileManager/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/FileManager/App.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/FileManager/FM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/FileManager/FM.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/FileManager/FM.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/FileManager/FM.dsp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/FileManager/FM.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/FileManager/FM.dsw -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/FileManager/FM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/FileManager/FM.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/FileManager/FM.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/FileManager/FM.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/FileManager/ProgramLocation.cpp: -------------------------------------------------------------------------------- 1 | // ProgramLocation.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/Extract.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/Extract.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/ExtractGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/ExtractGUI.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/ExtractGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/ExtractGUI.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/ExtractRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/ExtractRes.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/FM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/FM.ico -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/GUI.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/GUI.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/GUI.dsp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/GUI.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/GUI.dsw -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/HashGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/HashGUI.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/HashGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/HashGUI.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/StdAfx.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/UpdateGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/UpdateGUI.cpp -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/UpdateGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/UpdateGUI.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/resource.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/resource2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/resource2.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/resource2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/resource2.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/resource3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/resource3.h -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/GUI/resource3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/GUI/resource3.rc -------------------------------------------------------------------------------- /lzma/CPP/7zip/UI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/UI/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_clang.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_clang_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_clang_arm64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_clang_x64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_clang_x86.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_gcc.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_gcc_arm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_gcc_arm.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_gcc_arm64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_gcc_x64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_gcc_x86.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_mac_arm64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/cmpl_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/cmpl_mac_x64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/makefile -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_clang.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_clang_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_clang_arm64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_clang_x64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_clang_x86.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_gcc.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_gcc_arm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_gcc_arm.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_gcc_arm64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_gcc_x64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_gcc_x86.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_mac_arm64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/var_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/var_mac_x64.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/warn_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/warn_clang.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/warn_clang_mac.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/warn_clang_mac.mak -------------------------------------------------------------------------------- /lzma/CPP/7zip/warn_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/7zip/warn_gcc.mak -------------------------------------------------------------------------------- /lzma/CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Build.mak -------------------------------------------------------------------------------- /lzma/CPP/Common/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/AutoPtr.h -------------------------------------------------------------------------------- /lzma/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/CRC.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/C_FileIO.cpp: -------------------------------------------------------------------------------- 1 | // Common/C_FileIO.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/Common/C_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/C_FileIO.h -------------------------------------------------------------------------------- /lzma/CPP/Common/CksumReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/CksumReg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/ComTry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/ComTry.h -------------------------------------------------------------------------------- /lzma/CPP/Common/CommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/CommandLineParser.h -------------------------------------------------------------------------------- /lzma/CPP/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Common.h -------------------------------------------------------------------------------- /lzma/CPP/Common/Common0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Common0.h -------------------------------------------------------------------------------- /lzma/CPP/Common/CrcReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/CrcReg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Defs.h -------------------------------------------------------------------------------- /lzma/CPP/Common/DynLimBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/DynLimBuf.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/DynLimBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/DynLimBuf.h -------------------------------------------------------------------------------- /lzma/CPP/Common/DynamicBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/DynamicBuffer.h -------------------------------------------------------------------------------- /lzma/CPP/Common/IntToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/IntToString.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/IntToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/IntToString.h -------------------------------------------------------------------------------- /lzma/CPP/Common/Lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Lang.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Lang.h -------------------------------------------------------------------------------- /lzma/CPP/Common/ListFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/ListFileUtils.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/ListFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/ListFileUtils.h -------------------------------------------------------------------------------- /lzma/CPP/Common/LzFindPrepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/LzFindPrepare.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Md5Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Md5Reg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/MyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyBuffer.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyBuffer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyBuffer2.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyException.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyGuidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyGuidDef.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyInitGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyInitGuid.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyLinux.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyMap.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/MyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyMap.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyString.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/MyString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyString.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyTypes.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyUnknown.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyVector.cpp: -------------------------------------------------------------------------------- 1 | // Common/MyVector.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /lzma/CPP/Common/MyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyVector.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyWindows.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/MyWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyWindows.h -------------------------------------------------------------------------------- /lzma/CPP/Common/MyXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyXml.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/MyXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/MyXml.h -------------------------------------------------------------------------------- /lzma/CPP/Common/NewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/NewHandler.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/NewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/NewHandler.h -------------------------------------------------------------------------------- /lzma/CPP/Common/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Random.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Random.h -------------------------------------------------------------------------------- /lzma/CPP/Common/Sha1Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Sha1Prepare.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Sha1Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Sha1Reg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Sha256Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Sha256Prepare.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Sha256Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Sha256Reg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Sha3Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Sha3Reg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Sha512Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Sha512Prepare.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Sha512Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Sha512Reg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/Common/StdInStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StdInStream.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/StdInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StdInStream.h -------------------------------------------------------------------------------- /lzma/CPP/Common/StdOutStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StdOutStream.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/StdOutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StdOutStream.h -------------------------------------------------------------------------------- /lzma/CPP/Common/StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StringConvert.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StringConvert.h -------------------------------------------------------------------------------- /lzma/CPP/Common/StringToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StringToInt.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/StringToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/StringToInt.h -------------------------------------------------------------------------------- /lzma/CPP/Common/TextConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/TextConfig.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/TextConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/TextConfig.h -------------------------------------------------------------------------------- /lzma/CPP/Common/UTFConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/UTFConvert.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/UTFConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/UTFConvert.h -------------------------------------------------------------------------------- /lzma/CPP/Common/Wildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Wildcard.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/Wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Wildcard.h -------------------------------------------------------------------------------- /lzma/CPP/Common/Xxh64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/Xxh64Reg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/XzCrc64Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/XzCrc64Init.cpp -------------------------------------------------------------------------------- /lzma/CPP/Common/XzCrc64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Common/XzCrc64Reg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/COM.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/COM.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Clipboard.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Clipboard.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/CommonDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/CommonDialog.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/CommonDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/CommonDialog.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Console.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Console.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/ComboBox.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/Dialog.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/Dialog.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/Edit.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/ListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/ListView.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/ReBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/ReBar.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/Static.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/ToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/ToolBar.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/Trackbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/Trackbar.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Control/Window2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Control/Window2.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/DLL.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/ErrorMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/ErrorMsg.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/ErrorMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/ErrorMsg.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileDir.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileDir.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileFind.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileFind.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileIO.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileIO.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileLink.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileMapping.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileMapping.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileName.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileName.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileSystem.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/FileSystem.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Handle.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/MemoryGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/MemoryGlobal.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/MemoryGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/MemoryGlobal.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/MemoryLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/MemoryLock.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/MemoryLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/MemoryLock.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Menu.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Menu.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/NationalTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/NationalTime.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/NationalTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/NationalTime.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Net.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Net.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/NtCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/NtCheck.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/ProcessMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/ProcessMessages.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/ProcessUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/ProcessUtils.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/ProcessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/ProcessUtils.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/PropVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/PropVariant.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/PropVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/PropVariant.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/PropVariantConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/PropVariantConv.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/PropVariantUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/PropVariantUtils.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Registry.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Registry.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/ResourceString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/ResourceString.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/ResourceString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/ResourceString.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/SecurityUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/SecurityUtils.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/SecurityUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/SecurityUtils.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Shell.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Shell.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/StdAfx.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Synchronization.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/System.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/System.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/SystemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/SystemInfo.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/SystemInfo.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Thread.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/TimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/TimeUtils.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/TimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/TimeUtils.h -------------------------------------------------------------------------------- /lzma/CPP/Windows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Window.cpp -------------------------------------------------------------------------------- /lzma/CPP/Windows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/CPP/Windows/Window.h -------------------------------------------------------------------------------- /lzma/DOC/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/7zC.txt -------------------------------------------------------------------------------- /lzma/DOC/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/7zFormat.txt -------------------------------------------------------------------------------- /lzma/DOC/7zip.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/7zip.hhp -------------------------------------------------------------------------------- /lzma/DOC/7zip.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/7zip.wxs -------------------------------------------------------------------------------- /lzma/DOC/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/License.txt -------------------------------------------------------------------------------- /lzma/DOC/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/Methods.txt -------------------------------------------------------------------------------- /lzma/DOC/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/copying.txt -------------------------------------------------------------------------------- /lzma/DOC/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/lzma.txt -------------------------------------------------------------------------------- /lzma/DOC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/readme.txt -------------------------------------------------------------------------------- /lzma/DOC/src-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/src-history.txt -------------------------------------------------------------------------------- /lzma/DOC/unRarLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/DOC/unRarLicense.txt -------------------------------------------------------------------------------- /lzma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/README.md -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/C7Zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/C7Zip.cpp -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/C7Zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/C7Zip.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/CallbackBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/CallbackBase.cpp -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/CallbackBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/CallbackBase.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/DirFileEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/DirFileEnum.cpp -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/DirFileEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/DirFileEnum.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/GUIDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/GUIDs.cpp -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/GUIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/GUIDs.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/Helper.cpp -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/Helper.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/InStreamWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/InStreamWrapper.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/OutStreamWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/OutStreamWrapper.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/stdafx.cpp -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/stdafx.h -------------------------------------------------------------------------------- /lzma/Wrapper-CPP/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/lzma/Wrapper-CPP/targetver.h -------------------------------------------------------------------------------- /notes/CryptSync.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/notes/CryptSync.pdn -------------------------------------------------------------------------------- /notes/CryptSyncError.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/notes/CryptSyncError.pdn -------------------------------------------------------------------------------- /notes/CryptSync_32.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/notes/CryptSync_32.pdn -------------------------------------------------------------------------------- /notes/Design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/notes/Design.txt -------------------------------------------------------------------------------- /notes/GitHub-socialpreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/notes/GitHub-socialpreview.png -------------------------------------------------------------------------------- /notes/sync.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/notes/sync.pdn -------------------------------------------------------------------------------- /src/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/AboutDlg.cpp -------------------------------------------------------------------------------- /src/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/AboutDlg.h -------------------------------------------------------------------------------- /src/COMPtrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/COMPtrs.h -------------------------------------------------------------------------------- /src/CryptSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/CryptSync.cpp -------------------------------------------------------------------------------- /src/CryptSync.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/CryptSync.ico -------------------------------------------------------------------------------- /src/CryptSync.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/CryptSync.rc -------------------------------------------------------------------------------- /src/CryptSync.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/CryptSync.rc2 -------------------------------------------------------------------------------- /src/CryptSync.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/CryptSync.vcxproj -------------------------------------------------------------------------------- /src/CryptSync.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/CryptSync.vcxproj.filters -------------------------------------------------------------------------------- /src/CryptSyncError.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/CryptSyncError.ico -------------------------------------------------------------------------------- /src/FolderSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/FolderSync.cpp -------------------------------------------------------------------------------- /src/FolderSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/FolderSync.h -------------------------------------------------------------------------------- /src/Ignores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Ignores.cpp -------------------------------------------------------------------------------- /src/Ignores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Ignores.h -------------------------------------------------------------------------------- /src/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/OptionsDlg.cpp -------------------------------------------------------------------------------- /src/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/OptionsDlg.h -------------------------------------------------------------------------------- /src/PairAddDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/PairAddDlg.cpp -------------------------------------------------------------------------------- /src/PairAddDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/PairAddDlg.h -------------------------------------------------------------------------------- /src/Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Pairs.cpp -------------------------------------------------------------------------------- /src/Pairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Pairs.h -------------------------------------------------------------------------------- /src/PathWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/PathWatcher.cpp -------------------------------------------------------------------------------- /src/PathWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/PathWatcher.h -------------------------------------------------------------------------------- /src/Setup/Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Setup/Banner.jpg -------------------------------------------------------------------------------- /src/Setup/Dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Setup/Dialog.jpg -------------------------------------------------------------------------------- /src/Setup/Setup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Setup/Setup.wxs -------------------------------------------------------------------------------- /src/Setup/Setup64.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Setup/Setup64.wxs -------------------------------------------------------------------------------- /src/Setup/SetupARM64.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Setup/SetupARM64.wxs -------------------------------------------------------------------------------- /src/Setup/setup.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/Setup/setup.build -------------------------------------------------------------------------------- /src/TextDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/TextDlg.cpp -------------------------------------------------------------------------------- /src/TextDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/TextDlg.h -------------------------------------------------------------------------------- /src/TrayWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/TrayWindow.cpp -------------------------------------------------------------------------------- /src/TrayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/TrayWindow.h -------------------------------------------------------------------------------- /src/UpdateDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/UpdateDlg.cpp -------------------------------------------------------------------------------- /src/UpdateDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/UpdateDlg.h -------------------------------------------------------------------------------- /src/last/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/last/version.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/stdafx.cpp -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/version.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/src/version.in -------------------------------------------------------------------------------- /tools/checkyear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/tools/checkyear.js -------------------------------------------------------------------------------- /tools/coverity.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/tools/coverity.bat -------------------------------------------------------------------------------- /tools/gpg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/tools/gpg.exe -------------------------------------------------------------------------------- /tools/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/tools/iconv.dll -------------------------------------------------------------------------------- /version.build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/version.build.in -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.4.11.515 -------------------------------------------------------------------------------- /versioninfo.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/CryptSync/HEAD/versioninfo.build --------------------------------------------------------------------------------