From 087a2224aa8a1c5b95b9f76acf82e0b8a1a73c03 Mon Sep 17 00:00:00 2001 From: einstein95 Date: Thu, 10 Dec 2015 22:47:45 +1300 Subject: [PATCH] Forgot these --- dsi_srl_extract.ini | 5 ++++ dsi_srl_extract.sln | 25 +++++++++++++++++++ ReadMe.txt => dsi_srl_extract/ReadMe.txt | 0 aes.c => dsi_srl_extract/aes.c | 0 aes.h => dsi_srl_extract/aes.h | 0 bn.c => dsi_srl_extract/bn.c | 0 bn.h => dsi_srl_extract/bn.h | 0 dsi.c => dsi_srl_extract/dsi.c | 0 dsi.h => dsi_srl_extract/dsi.h | 0 .../dsi_srl_extract.c | 0 .../dsi_srl_extract.vcxproj | 0 .../dsi_srl_extract.vcxproj.filters | 0 .../dsi_srl_extract.vcxproj.user | 0 ec.c => dsi_srl_extract/ec.c | 0 ec.h => dsi_srl_extract/ec.h | 0 f_xy.c => dsi_srl_extract/f_xy.c | 0 f_xy.h => dsi_srl_extract/f_xy.h | 0 minGlue.h => dsi_srl_extract/minGlue.h | 0 minIni.c => dsi_srl_extract/minIni.c | 0 minIni.h => dsi_srl_extract/minIni.h | 0 sha1.c => dsi_srl_extract/sha1.c | 0 sha1.h => dsi_srl_extract/sha1.h | 0 targetver.h => dsi_srl_extract/targetver.h | 0 types.h => dsi_srl_extract/types.h | 0 24 files changed, 30 insertions(+) create mode 100644 dsi_srl_extract.ini create mode 100644 dsi_srl_extract.sln rename ReadMe.txt => dsi_srl_extract/ReadMe.txt (100%) rename aes.c => dsi_srl_extract/aes.c (100%) rename aes.h => dsi_srl_extract/aes.h (100%) rename bn.c => dsi_srl_extract/bn.c (100%) rename bn.h => dsi_srl_extract/bn.h (100%) rename dsi.c => dsi_srl_extract/dsi.c (100%) rename dsi.h => dsi_srl_extract/dsi.h (100%) rename dsi_srl_extract.c => dsi_srl_extract/dsi_srl_extract.c (100%) rename dsi_srl_extract.vcxproj => dsi_srl_extract/dsi_srl_extract.vcxproj (100%) rename dsi_srl_extract.vcxproj.filters => dsi_srl_extract/dsi_srl_extract.vcxproj.filters (100%) rename dsi_srl_extract.vcxproj.user => dsi_srl_extract/dsi_srl_extract.vcxproj.user (100%) rename ec.c => dsi_srl_extract/ec.c (100%) rename ec.h => dsi_srl_extract/ec.h (100%) rename f_xy.c => dsi_srl_extract/f_xy.c (100%) rename f_xy.h => dsi_srl_extract/f_xy.h (100%) rename minGlue.h => dsi_srl_extract/minGlue.h (100%) rename minIni.c => dsi_srl_extract/minIni.c (100%) rename minIni.h => dsi_srl_extract/minIni.h (100%) rename sha1.c => dsi_srl_extract/sha1.c (100%) rename sha1.h => dsi_srl_extract/sha1.h (100%) rename targetver.h => dsi_srl_extract/targetver.h (100%) rename types.h => dsi_srl_extract/types.h (100%) diff --git a/dsi_srl_extract.ini b/dsi_srl_extract.ini new file mode 100644 index 0000000..576894a --- /dev/null +++ b/dsi_srl_extract.ini @@ -0,0 +1,5 @@ +;Set no_mod_crypt to 1 in order to do drag and drop decryption of files without the files +;having their modcrypt sections being automatically decrypted. + +[Main] +no_mod_crypt=1 diff --git a/dsi_srl_extract.sln b/dsi_srl_extract.sln new file mode 100644 index 0000000..26a475f --- /dev/null +++ b/dsi_srl_extract.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dsi_srl_extract", "dsi_srl_extract\dsi_srl_extract.vcxproj", "{A57B19AB-814B-4F63-860E-231FE39222B5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A57B19AB-814B-4F63-860E-231FE39222B5}.Debug|Win32.ActiveCfg = Debug|Win32 + {A57B19AB-814B-4F63-860E-231FE39222B5}.Debug|Win32.Build.0 = Debug|Win32 + {A57B19AB-814B-4F63-860E-231FE39222B5}.Release|Win32.ActiveCfg = Release|Win32 + {A57B19AB-814B-4F63-860E-231FE39222B5}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + BuildVersion_DetectChanges = False + BuildVersion_UseGlobalSettings = True + BuildVersion_IncrementBeforeBuild = False + EndGlobalSection +EndGlobal diff --git a/ReadMe.txt b/dsi_srl_extract/ReadMe.txt similarity index 100% rename from ReadMe.txt rename to dsi_srl_extract/ReadMe.txt diff --git a/aes.c b/dsi_srl_extract/aes.c similarity index 100% rename from aes.c rename to dsi_srl_extract/aes.c diff --git a/aes.h b/dsi_srl_extract/aes.h similarity index 100% rename from aes.h rename to dsi_srl_extract/aes.h diff --git a/bn.c b/dsi_srl_extract/bn.c similarity index 100% rename from bn.c rename to dsi_srl_extract/bn.c diff --git a/bn.h b/dsi_srl_extract/bn.h similarity index 100% rename from bn.h rename to dsi_srl_extract/bn.h diff --git a/dsi.c b/dsi_srl_extract/dsi.c similarity index 100% rename from dsi.c rename to dsi_srl_extract/dsi.c diff --git a/dsi.h b/dsi_srl_extract/dsi.h similarity index 100% rename from dsi.h rename to dsi_srl_extract/dsi.h diff --git a/dsi_srl_extract.c b/dsi_srl_extract/dsi_srl_extract.c similarity index 100% rename from dsi_srl_extract.c rename to dsi_srl_extract/dsi_srl_extract.c diff --git a/dsi_srl_extract.vcxproj b/dsi_srl_extract/dsi_srl_extract.vcxproj similarity index 100% rename from dsi_srl_extract.vcxproj rename to dsi_srl_extract/dsi_srl_extract.vcxproj diff --git a/dsi_srl_extract.vcxproj.filters b/dsi_srl_extract/dsi_srl_extract.vcxproj.filters similarity index 100% rename from dsi_srl_extract.vcxproj.filters rename to dsi_srl_extract/dsi_srl_extract.vcxproj.filters diff --git a/dsi_srl_extract.vcxproj.user b/dsi_srl_extract/dsi_srl_extract.vcxproj.user similarity index 100% rename from dsi_srl_extract.vcxproj.user rename to dsi_srl_extract/dsi_srl_extract.vcxproj.user diff --git a/ec.c b/dsi_srl_extract/ec.c similarity index 100% rename from ec.c rename to dsi_srl_extract/ec.c diff --git a/ec.h b/dsi_srl_extract/ec.h similarity index 100% rename from ec.h rename to dsi_srl_extract/ec.h diff --git a/f_xy.c b/dsi_srl_extract/f_xy.c similarity index 100% rename from f_xy.c rename to dsi_srl_extract/f_xy.c diff --git a/f_xy.h b/dsi_srl_extract/f_xy.h similarity index 100% rename from f_xy.h rename to dsi_srl_extract/f_xy.h diff --git a/minGlue.h b/dsi_srl_extract/minGlue.h similarity index 100% rename from minGlue.h rename to dsi_srl_extract/minGlue.h diff --git a/minIni.c b/dsi_srl_extract/minIni.c similarity index 100% rename from minIni.c rename to dsi_srl_extract/minIni.c diff --git a/minIni.h b/dsi_srl_extract/minIni.h similarity index 100% rename from minIni.h rename to dsi_srl_extract/minIni.h diff --git a/sha1.c b/dsi_srl_extract/sha1.c similarity index 100% rename from sha1.c rename to dsi_srl_extract/sha1.c diff --git a/sha1.h b/dsi_srl_extract/sha1.h similarity index 100% rename from sha1.h rename to dsi_srl_extract/sha1.h diff --git a/targetver.h b/dsi_srl_extract/targetver.h similarity index 100% rename from targetver.h rename to dsi_srl_extract/targetver.h diff --git a/types.h b/dsi_srl_extract/types.h similarity index 100% rename from types.h rename to dsi_srl_extract/types.h