├── README.md ├── Samples ├── FMX │ ├── Unit1.fmx │ ├── Unit1.pas │ ├── fmxPerformance.dpr │ ├── fmxPerformance.dproj │ └── fmxPerformance.res ├── FPC │ ├── FPCPerformanceTest.ico │ ├── FPCPerformanceTest.lpr │ ├── FPCPerformanceTest.res │ ├── FPCperformanceTest.lpi │ ├── FPCperformanceTest.lps │ ├── unit1.lfm │ └── unit1.pas └── VCL │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── VCLPerformanceTest.dpr │ ├── VCLPerformanceTest.dproj │ └── VCLPerformanceTest.res ├── Source ├── Cadencer.pas ├── CoreAtomic.inc ├── CoreCipher.pas ├── CoreClasses.pas ├── CoreCompress.pas ├── CoreComputeThread.inc ├── CoreEndian.inc ├── CoreThreadPost.inc ├── Core_AtomVar.inc ├── Core_DelphiParallelFor.inc ├── Core_FPCParallelFor.inc ├── Core_LineProcessor.inc ├── Core_MT19937.inc ├── Core_OrderData.inc ├── DataFrameEngine.pas ├── DoStatusIO.pas ├── FPCGenericStructlist.pas ├── Fast_MD5.pas ├── GHashList.pas ├── Geometry2DUnit.pas ├── Geometry3DUnit.pas ├── GeometryLib.pas ├── GeometryRotationUnit.pas ├── GeometrySplit.inc ├── GeometrySplitHeader.inc ├── LinearAction.pas ├── ListEngine.pas ├── MH.pas ├── MH_1.pas ├── MH_2.pas ├── MH_3.pas ├── MH_ZDB.pas ├── MH_delphi.inc ├── MH_fpc.inc ├── MemoryStream64.pas ├── NotifyObjectBase.pas ├── NumberBase.pas ├── OpCode.pas ├── PascalStrings.pas ├── TextDataEngine.pas ├── TextParsing.pas ├── TextTable.pas ├── UPascalStrings.pas ├── UnicodeMixedLib.pas ├── ZIOThread.pas ├── ZJson.pas ├── ZJson_delphi.inc ├── ZJson_fpc.inc ├── ZS_JsonDataObjects.pas ├── clear_with_dcu.bat ├── md5_32.asm ├── md5_32.obj ├── md5_64.asm ├── md5_64.obj ├── zDefine.inc └── zExpression.pas └── clear_with_dcu.bat /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/README.md -------------------------------------------------------------------------------- /Samples/FMX/Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FMX/Unit1.fmx -------------------------------------------------------------------------------- /Samples/FMX/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FMX/Unit1.pas -------------------------------------------------------------------------------- /Samples/FMX/fmxPerformance.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FMX/fmxPerformance.dpr -------------------------------------------------------------------------------- /Samples/FMX/fmxPerformance.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FMX/fmxPerformance.dproj -------------------------------------------------------------------------------- /Samples/FMX/fmxPerformance.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FMX/fmxPerformance.res -------------------------------------------------------------------------------- /Samples/FPC/FPCPerformanceTest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FPC/FPCPerformanceTest.ico -------------------------------------------------------------------------------- /Samples/FPC/FPCPerformanceTest.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FPC/FPCPerformanceTest.lpr -------------------------------------------------------------------------------- /Samples/FPC/FPCPerformanceTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FPC/FPCPerformanceTest.res -------------------------------------------------------------------------------- /Samples/FPC/FPCperformanceTest.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FPC/FPCperformanceTest.lpi -------------------------------------------------------------------------------- /Samples/FPC/FPCperformanceTest.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FPC/FPCperformanceTest.lps -------------------------------------------------------------------------------- /Samples/FPC/unit1.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FPC/unit1.lfm -------------------------------------------------------------------------------- /Samples/FPC/unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/FPC/unit1.pas -------------------------------------------------------------------------------- /Samples/VCL/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/VCL/Unit1.dfm -------------------------------------------------------------------------------- /Samples/VCL/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/VCL/Unit1.pas -------------------------------------------------------------------------------- /Samples/VCL/VCLPerformanceTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/VCL/VCLPerformanceTest.dpr -------------------------------------------------------------------------------- /Samples/VCL/VCLPerformanceTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/VCL/VCLPerformanceTest.dproj -------------------------------------------------------------------------------- /Samples/VCL/VCLPerformanceTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Samples/VCL/VCLPerformanceTest.res -------------------------------------------------------------------------------- /Source/Cadencer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Cadencer.pas -------------------------------------------------------------------------------- /Source/CoreAtomic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/CoreAtomic.inc -------------------------------------------------------------------------------- /Source/CoreCipher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/CoreCipher.pas -------------------------------------------------------------------------------- /Source/CoreClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/CoreClasses.pas -------------------------------------------------------------------------------- /Source/CoreCompress.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/CoreCompress.pas -------------------------------------------------------------------------------- /Source/CoreComputeThread.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/CoreComputeThread.inc -------------------------------------------------------------------------------- /Source/CoreEndian.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/CoreEndian.inc -------------------------------------------------------------------------------- /Source/CoreThreadPost.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/CoreThreadPost.inc -------------------------------------------------------------------------------- /Source/Core_AtomVar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Core_AtomVar.inc -------------------------------------------------------------------------------- /Source/Core_DelphiParallelFor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Core_DelphiParallelFor.inc -------------------------------------------------------------------------------- /Source/Core_FPCParallelFor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Core_FPCParallelFor.inc -------------------------------------------------------------------------------- /Source/Core_LineProcessor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Core_LineProcessor.inc -------------------------------------------------------------------------------- /Source/Core_MT19937.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Core_MT19937.inc -------------------------------------------------------------------------------- /Source/Core_OrderData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Core_OrderData.inc -------------------------------------------------------------------------------- /Source/DataFrameEngine.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/DataFrameEngine.pas -------------------------------------------------------------------------------- /Source/DoStatusIO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/DoStatusIO.pas -------------------------------------------------------------------------------- /Source/FPCGenericStructlist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/FPCGenericStructlist.pas -------------------------------------------------------------------------------- /Source/Fast_MD5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Fast_MD5.pas -------------------------------------------------------------------------------- /Source/GHashList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/GHashList.pas -------------------------------------------------------------------------------- /Source/Geometry2DUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Geometry2DUnit.pas -------------------------------------------------------------------------------- /Source/Geometry3DUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/Geometry3DUnit.pas -------------------------------------------------------------------------------- /Source/GeometryLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/GeometryLib.pas -------------------------------------------------------------------------------- /Source/GeometryRotationUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/GeometryRotationUnit.pas -------------------------------------------------------------------------------- /Source/GeometrySplit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/GeometrySplit.inc -------------------------------------------------------------------------------- /Source/GeometrySplitHeader.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/GeometrySplitHeader.inc -------------------------------------------------------------------------------- /Source/LinearAction.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/LinearAction.pas -------------------------------------------------------------------------------- /Source/ListEngine.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/ListEngine.pas -------------------------------------------------------------------------------- /Source/MH.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MH.pas -------------------------------------------------------------------------------- /Source/MH_1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MH_1.pas -------------------------------------------------------------------------------- /Source/MH_2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MH_2.pas -------------------------------------------------------------------------------- /Source/MH_3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MH_3.pas -------------------------------------------------------------------------------- /Source/MH_ZDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MH_ZDB.pas -------------------------------------------------------------------------------- /Source/MH_delphi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MH_delphi.inc -------------------------------------------------------------------------------- /Source/MH_fpc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MH_fpc.inc -------------------------------------------------------------------------------- /Source/MemoryStream64.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/MemoryStream64.pas -------------------------------------------------------------------------------- /Source/NotifyObjectBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/NotifyObjectBase.pas -------------------------------------------------------------------------------- /Source/NumberBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/NumberBase.pas -------------------------------------------------------------------------------- /Source/OpCode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/OpCode.pas -------------------------------------------------------------------------------- /Source/PascalStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/PascalStrings.pas -------------------------------------------------------------------------------- /Source/TextDataEngine.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/TextDataEngine.pas -------------------------------------------------------------------------------- /Source/TextParsing.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/TextParsing.pas -------------------------------------------------------------------------------- /Source/TextTable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/TextTable.pas -------------------------------------------------------------------------------- /Source/UPascalStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/UPascalStrings.pas -------------------------------------------------------------------------------- /Source/UnicodeMixedLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/UnicodeMixedLib.pas -------------------------------------------------------------------------------- /Source/ZIOThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/ZIOThread.pas -------------------------------------------------------------------------------- /Source/ZJson.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/ZJson.pas -------------------------------------------------------------------------------- /Source/ZJson_delphi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/ZJson_delphi.inc -------------------------------------------------------------------------------- /Source/ZJson_fpc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/ZJson_fpc.inc -------------------------------------------------------------------------------- /Source/ZS_JsonDataObjects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/ZS_JsonDataObjects.pas -------------------------------------------------------------------------------- /Source/clear_with_dcu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/clear_with_dcu.bat -------------------------------------------------------------------------------- /Source/md5_32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/md5_32.asm -------------------------------------------------------------------------------- /Source/md5_32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/md5_32.obj -------------------------------------------------------------------------------- /Source/md5_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/md5_64.asm -------------------------------------------------------------------------------- /Source/md5_64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/md5_64.obj -------------------------------------------------------------------------------- /Source/zDefine.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/zDefine.inc -------------------------------------------------------------------------------- /Source/zExpression.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/Source/zExpression.pas -------------------------------------------------------------------------------- /clear_with_dcu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PassByYou888/CoreCipher/HEAD/clear_with_dcu.bat --------------------------------------------------------------------------------