Skip to content

Commit

Permalink
Initial import from the SharpAESCrypt site
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkendk committed Aug 25, 2014
0 parents commit f739353
Show file tree
Hide file tree
Showing 10 changed files with 2,649 additions and 0 deletions.
Binary file added Executable/SharpAESCrypt.exe
Binary file not shown.
624 changes: 624 additions & 0 deletions Library/SharpAESCrypt.XML

Large diffs are not rendered by default.

Binary file added Library/SharpAESCrypt.dll
Binary file not shown.
33 changes: 33 additions & 0 deletions Source/Properties/AssemblyInfo.cs
@@ -0,0 +1,33 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SharpAESCrypt")]
[assembly: AssemblyDescription("SharpAESCrypt")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("HexaD")]
[assembly: AssemblyProduct("SharpAESCrypt")]
[assembly: AssemblyCopyright("LGPL 2011")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("90fdbfaa-1f8c-414a-afc8-c32fb99a9738")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Binary file added Source/SampleKey.snk
Binary file not shown.
1,409 changes: 1,409 additions & 0 deletions Source/SharpAESCrypt.cs

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions Source/SharpAESCrypt.csproj
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8DE73DE9-1A21-44E0-B2DC-39468163C88C}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SharpAESCrypt</RootNamespace>
<AssemblyName>SharpAESCrypt</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\SharpAESCrypt.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>SampleKey.snk</AssemblyOriginatorKeyFile>
</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.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SharpAESCrypt.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="SampleKey.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
20 changes: 20 additions & 0 deletions Source/SharpAESCrypt.sln
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpAESCrypt", "SharpAESCrypt.csproj", "{8DE73DE9-1A21-44E0-B2DC-39468163C88C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8DE73DE9-1A21-44E0-B2DC-39468163C88C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8DE73DE9-1A21-44E0-B2DC-39468163C88C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8DE73DE9-1A21-44E0-B2DC-39468163C88C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8DE73DE9-1A21-44E0-B2DC-39468163C88C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions Source/app.config
@@ -0,0 +1,3 @@
<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>

0 comments on commit f739353

Please sign in to comment.