diff --git a/Encryption.Example/App.config b/Encryption.Example/App.config
new file mode 100644
index 0000000..88fa402
--- /dev/null
+++ b/Encryption.Example/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Encryption.Example/Cryptography.Designer.cs b/Encryption.Example/Cryptography.Designer.cs
new file mode 100644
index 0000000..3b49329
--- /dev/null
+++ b/Encryption.Example/Cryptography.Designer.cs
@@ -0,0 +1,223 @@
+namespace Encryption.Example
+{
+ partial class Cryptography
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.lblKey = new System.Windows.Forms.Label();
+ this.txtKey = new System.Windows.Forms.TextBox();
+ this.btnGenerate = new System.Windows.Forms.Button();
+ this.groupBox1 = new System.Windows.Forms.GroupBox();
+ this.lblIV = new System.Windows.Forms.Label();
+ this.txtIV = new System.Windows.Forms.TextBox();
+ this.groupBox2 = new System.Windows.Forms.GroupBox();
+ this.txtFlat = new System.Windows.Forms.TextBox();
+ this.lblTextDecryptedResult = new System.Windows.Forms.Label();
+ this.btnEncrypt = new System.Windows.Forms.Button();
+ this.lblTextDecrypted = new System.Windows.Forms.Label();
+ this.lblTextEncryptedResult = new System.Windows.Forms.Label();
+ this.lblTextEncrypted = new System.Windows.Forms.Label();
+ this.lblTextFlat = new System.Windows.Forms.Label();
+ this.groupBox1.SuspendLayout();
+ this.groupBox2.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // lblKey
+ //
+ this.lblKey.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.lblKey.Location = new System.Drawing.Point(6, 16);
+ this.lblKey.Name = "lblKey";
+ this.lblKey.Size = new System.Drawing.Size(50, 23);
+ this.lblKey.TabIndex = 0;
+ this.lblKey.Text = "Key";
+ //
+ // txtKey
+ //
+ this.txtKey.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.txtKey.Location = new System.Drawing.Point(62, 19);
+ this.txtKey.Name = "txtKey";
+ this.txtKey.Size = new System.Drawing.Size(398, 23);
+ this.txtKey.TabIndex = 1;
+ //
+ // btnGenerate
+ //
+ this.btnGenerate.Location = new System.Drawing.Point(336, 71);
+ this.btnGenerate.Name = "btnGenerate";
+ this.btnGenerate.Size = new System.Drawing.Size(124, 23);
+ this.btnGenerate.TabIndex = 3;
+ this.btnGenerate.Text = "Generate Key and IV";
+ this.btnGenerate.UseVisualStyleBackColor = true;
+ this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
+ //
+ // groupBox1
+ //
+ this.groupBox1.Controls.Add(this.lblIV);
+ this.groupBox1.Controls.Add(this.lblKey);
+ this.groupBox1.Controls.Add(this.btnGenerate);
+ this.groupBox1.Controls.Add(this.txtIV);
+ this.groupBox1.Controls.Add(this.txtKey);
+ this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.groupBox1.Location = new System.Drawing.Point(0, 0);
+ this.groupBox1.Name = "groupBox1";
+ this.groupBox1.Size = new System.Drawing.Size(472, 97);
+ this.groupBox1.TabIndex = 3;
+ this.groupBox1.TabStop = false;
+ this.groupBox1.Text = "Key and IV";
+ //
+ // lblIV
+ //
+ this.lblIV.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.lblIV.Location = new System.Drawing.Point(6, 42);
+ this.lblIV.Name = "lblIV";
+ this.lblIV.Size = new System.Drawing.Size(50, 23);
+ this.lblIV.TabIndex = 0;
+ this.lblIV.Text = "IV";
+ //
+ // txtIV
+ //
+ this.txtIV.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.txtIV.Location = new System.Drawing.Point(62, 45);
+ this.txtIV.Name = "txtIV";
+ this.txtIV.Size = new System.Drawing.Size(398, 23);
+ this.txtIV.TabIndex = 2;
+ //
+ // groupBox2
+ //
+ this.groupBox2.Controls.Add(this.txtFlat);
+ this.groupBox2.Controls.Add(this.lblTextDecryptedResult);
+ this.groupBox2.Controls.Add(this.btnEncrypt);
+ this.groupBox2.Controls.Add(this.lblTextDecrypted);
+ this.groupBox2.Controls.Add(this.lblTextEncryptedResult);
+ this.groupBox2.Controls.Add(this.lblTextEncrypted);
+ this.groupBox2.Controls.Add(this.lblTextFlat);
+ this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.groupBox2.Location = new System.Drawing.Point(0, 97);
+ this.groupBox2.Name = "groupBox2";
+ this.groupBox2.Size = new System.Drawing.Size(472, 123);
+ this.groupBox2.TabIndex = 4;
+ this.groupBox2.TabStop = false;
+ this.groupBox2.Text = "Encryption and Decryption";
+ //
+ // txtFlat
+ //
+ this.txtFlat.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.txtFlat.Location = new System.Drawing.Point(106, 19);
+ this.txtFlat.Name = "txtFlat";
+ this.txtFlat.Size = new System.Drawing.Size(354, 23);
+ this.txtFlat.TabIndex = 4;
+ this.txtFlat.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFlat_KeyDown);
+ //
+ // lblTextDecryptedResult
+ //
+ this.lblTextDecryptedResult.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.lblTextDecryptedResult.Location = new System.Drawing.Point(106, 70);
+ this.lblTextDecryptedResult.Name = "lblTextDecryptedResult";
+ this.lblTextDecryptedResult.Size = new System.Drawing.Size(354, 23);
+ this.lblTextDecryptedResult.TabIndex = 0;
+ //
+ // btnEncrypt
+ //
+ this.btnEncrypt.Location = new System.Drawing.Point(336, 96);
+ this.btnEncrypt.Name = "btnEncrypt";
+ this.btnEncrypt.Size = new System.Drawing.Size(124, 23);
+ this.btnEncrypt.TabIndex = 5;
+ this.btnEncrypt.Text = "Encrypt";
+ this.btnEncrypt.UseVisualStyleBackColor = true;
+ this.btnEncrypt.Click += new System.EventHandler(this.btnEncrypt_Click);
+ //
+ // lblTextDecrypted
+ //
+ this.lblTextDecrypted.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.lblTextDecrypted.Location = new System.Drawing.Point(6, 70);
+ this.lblTextDecrypted.Name = "lblTextDecrypted";
+ this.lblTextDecrypted.Size = new System.Drawing.Size(94, 23);
+ this.lblTextDecrypted.TabIndex = 0;
+ this.lblTextDecrypted.Text = "Decrypted";
+ //
+ // lblTextEncryptedResult
+ //
+ this.lblTextEncryptedResult.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.lblTextEncryptedResult.Location = new System.Drawing.Point(106, 45);
+ this.lblTextEncryptedResult.Name = "lblTextEncryptedResult";
+ this.lblTextEncryptedResult.Size = new System.Drawing.Size(354, 23);
+ this.lblTextEncryptedResult.TabIndex = 0;
+ //
+ // lblTextEncrypted
+ //
+ this.lblTextEncrypted.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.lblTextEncrypted.Location = new System.Drawing.Point(6, 45);
+ this.lblTextEncrypted.Name = "lblTextEncrypted";
+ this.lblTextEncrypted.Size = new System.Drawing.Size(94, 23);
+ this.lblTextEncrypted.TabIndex = 0;
+ this.lblTextEncrypted.Text = "Encrypted";
+ //
+ // lblTextFlat
+ //
+ this.lblTextFlat.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+ this.lblTextFlat.Location = new System.Drawing.Point(6, 20);
+ this.lblTextFlat.Name = "lblTextFlat";
+ this.lblTextFlat.Size = new System.Drawing.Size(94, 23);
+ this.lblTextFlat.TabIndex = 0;
+ this.lblTextFlat.Text = "Flat Text";
+ //
+ // Cryptography
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(472, 220);
+ this.Controls.Add(this.groupBox2);
+ this.Controls.Add(this.groupBox1);
+ this.Name = "Cryptography";
+ this.Text = "Crypto";
+ this.Load += new System.EventHandler(this.Cryptography_Load);
+ this.groupBox1.ResumeLayout(false);
+ this.groupBox1.PerformLayout();
+ this.groupBox2.ResumeLayout(false);
+ this.groupBox2.PerformLayout();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label lblKey;
+ private System.Windows.Forms.TextBox txtKey;
+ private System.Windows.Forms.Button btnGenerate;
+ private System.Windows.Forms.GroupBox groupBox1;
+ private System.Windows.Forms.Label lblIV;
+ private System.Windows.Forms.TextBox txtIV;
+ private System.Windows.Forms.GroupBox groupBox2;
+ private System.Windows.Forms.TextBox txtFlat;
+ private System.Windows.Forms.Label lblTextDecryptedResult;
+ private System.Windows.Forms.Label lblTextDecrypted;
+ private System.Windows.Forms.Label lblTextEncryptedResult;
+ private System.Windows.Forms.Label lblTextEncrypted;
+ private System.Windows.Forms.Label lblTextFlat;
+ private System.Windows.Forms.Button btnEncrypt;
+ }
+}
+
diff --git a/Encryption.Example/Cryptography.cs b/Encryption.Example/Cryptography.cs
new file mode 100644
index 0000000..a85f34e
--- /dev/null
+++ b/Encryption.Example/Cryptography.cs
@@ -0,0 +1,80 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using Encryption;
+
+namespace Encryption.Example
+{
+ public partial class Cryptography : Form
+ {
+ List KEYS = new Crypto().GenerateKeyAndIV();
+ public Cryptography()
+ {
+ InitializeComponent();
+ }
+
+ private void Cryptography_Load(object sender, EventArgs e)
+ {
+ this.GenerateKeyAndIV();
+ }
+
+ private void GenerateKeyAndIV()
+ {
+ string[] str = new string[] { string.Empty, string.Empty };
+
+ for (int i = 0; i < 2; i++)
+ {
+ foreach (byte b in this.KEYS[i])
+ {
+ str[i] += b.ToString() + ", ";
+ }
+ }
+ this.txtKey.Text = str[0].Substring(0, str[0].Length - 2);
+ this.txtIV.Text = str[1].Substring(0, str[1].Length - 2);
+ }
+
+ private void EncryptAndDecrypt()
+ {
+ Crypto crypto = new Crypto();
+
+ if (this.txtFlat.Text.Length > 0)
+ {
+ this.lblTextEncryptedResult.Text = crypto.Encrypt(this.txtFlat.Text, this.KEYS[0], this.KEYS[1]);
+ this.lblTextDecryptedResult.Text = crypto.Decrypt(this.lblTextEncryptedResult.Text, this.KEYS.ElementAt(0), this.KEYS.ElementAt(1));
+ }
+ else
+ {
+ MessageBox.Show("Enter any word in the flat text box");
+ this.txtFlat.Focus();
+ }
+ }
+
+ private void btnGenerate_Click(object sender, EventArgs e)
+ {
+ this.GenerateKeyAndIV();
+ this.txtFlat.Focus();
+ }
+
+ private void btnEncrypt_Click(object sender, EventArgs e)
+ {
+ this.EncryptAndDecrypt();
+ }
+
+ private void txtFlat_KeyDown(object sender, KeyEventArgs e)
+ {
+ switch (e.KeyCode)
+ {
+ case Keys.Enter:
+ this.EncryptAndDecrypt();
+ break;
+ }
+ }
+
+ }
+}
diff --git a/Encryption.Example/Cryptography.resx b/Encryption.Example/Cryptography.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/Encryption.Example/Cryptography.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Encryption.Example/Encryption.Example.csproj b/Encryption.Example/Encryption.Example.csproj
new file mode 100644
index 0000000..9c30ade
--- /dev/null
+++ b/Encryption.Example/Encryption.Example.csproj
@@ -0,0 +1,88 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {78410A07-457D-4CDD-B5BA-C2FA8C663689}
+ WinExe
+ Encryption.Example
+ Encryption.Example
+ v4.5.2
+ 512
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Form
+
+
+ Cryptography.cs
+
+
+
+
+ Cryptography.cs
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+ True
+ Resources.resx
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
+ {ed031a70-570f-4599-ac04-0453a997a6a4}
+ Encryption
+
+
+
+
\ No newline at end of file
diff --git a/Encryption.Example/Program.cs b/Encryption.Example/Program.cs
new file mode 100644
index 0000000..dcf4831
--- /dev/null
+++ b/Encryption.Example/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Encryption.Example
+{
+ static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Cryptography());
+ }
+ }
+}
diff --git a/Encryption.Example/Properties/AssemblyInfo.cs b/Encryption.Example/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..4cb2248
--- /dev/null
+++ b/Encryption.Example/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+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("Encryption.Example")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Encryption.Example")]
+[assembly: AssemblyCopyright("Copyright © 2017")]
+[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("78410a07-457d-4cdd-b5ba-c2fa8c663689")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Encryption.Example/Properties/Resources.Designer.cs b/Encryption.Example/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..eb5f0a1
--- /dev/null
+++ b/Encryption.Example/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Encryption.Example.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Encryption.Example.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Encryption.Example/Properties/Resources.resx b/Encryption.Example/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/Encryption.Example/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Encryption.Example/Properties/Settings.Designer.cs b/Encryption.Example/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..8497b4c
--- /dev/null
+++ b/Encryption.Example/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Encryption.Example.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/Encryption.Example/Properties/Settings.settings b/Encryption.Example/Properties/Settings.settings
new file mode 100644
index 0000000..3964565
--- /dev/null
+++ b/Encryption.Example/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Encryption.sln b/Encryption.sln
index 259e083..a9420c5 100644
--- a/Encryption.sln
+++ b/Encryption.sln
@@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.26403.7
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Encryption", "Encryption\Encryption.csproj", "{ED031A70-570F-4599-AC04-0453A997A6A4}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Encryption.Example", "Encryption.Example\Encryption.Example.csproj", "{78410A07-457D-4CDD-B5BA-C2FA8C663689}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
{ED031A70-570F-4599-AC04-0453A997A6A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ED031A70-570F-4599-AC04-0453A997A6A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ED031A70-570F-4599-AC04-0453A997A6A4}.Release|Any CPU.Build.0 = Release|Any CPU
+ {78410A07-457D-4CDD-B5BA-C2FA8C663689}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {78410A07-457D-4CDD-B5BA-C2FA8C663689}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {78410A07-457D-4CDD-B5BA-C2FA8C663689}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {78410A07-457D-4CDD-B5BA-C2FA8C663689}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE