diff --git a/EncryptPad/Properties/Settings.Designer.cs b/EncryptPad/Properties/Settings.Designer.cs
index f6cbddb..12d3140 100644
--- a/EncryptPad/Properties/Settings.Designer.cs
+++ b/EncryptPad/Properties/Settings.Designer.cs
@@ -219,6 +219,7 @@ public string TheSalt {
}
[global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(PortableSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("2")]
public int PasswordIterations {
@@ -231,6 +232,7 @@ public int PasswordIterations {
}
[global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(PortableSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool FirstLaunch {
diff --git a/EncryptPad/Properties/Settings.settings b/EncryptPad/Properties/Settings.settings
index 238e7eb..83c5df7 100644
--- a/EncryptPad/Properties/Settings.settings
+++ b/EncryptPad/Properties/Settings.settings
@@ -47,10 +47,10 @@
-
+
2
-
+
False
diff --git a/EncryptPad/SettingsForm.Designer.cs b/EncryptPad/SettingsForm.Designer.cs
index a4dda1e..e8bb837 100644
--- a/EncryptPad/SettingsForm.Designer.cs
+++ b/EncryptPad/SettingsForm.Designer.cs
@@ -43,17 +43,17 @@ private void InitializeComponent()
this.panel1 = new System.Windows.Forms.Panel();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.label7 = new System.Windows.Forms.Label();
+ this.comboBox4 = new System.Windows.Forms.ComboBox();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.comboBox3 = new System.Windows.Forms.ComboBox();
+ this.label6 = new System.Windows.Forms.Label();
+ this.label5 = new System.Windows.Forms.Label();
+ this.label4 = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.label4 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.comboBox3 = new System.Windows.Forms.ComboBox();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.comboBox4 = new System.Windows.Forms.ComboBox();
- this.label7 = new System.Windows.Forms.Label();
- this.textBox2 = new System.Windows.Forms.TextBox();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
@@ -232,6 +232,82 @@ private void InitializeComponent()
this.tabPage2.Text = "Encrypt/Decrypt";
this.tabPage2.UseVisualStyleBackColor = true;
//
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(136, 117);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(100, 20);
+ this.textBox2.TabIndex = 7;
+ //
+ // label7
+ //
+ this.label7.AutoSize = true;
+ this.label7.Location = new System.Drawing.Point(7, 120);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(102, 13);
+ this.label7.TabIndex = 6;
+ this.label7.Text = "Password Iterations:";
+ //
+ // comboBox4
+ //
+ this.comboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBox4.FormattingEnabled = true;
+ this.comboBox4.Items.AddRange(new object[] {
+ "SHA1",
+ "MD5"});
+ this.comboBox4.Location = new System.Drawing.Point(136, 15);
+ this.comboBox4.Name = "comboBox4";
+ this.comboBox4.Size = new System.Drawing.Size(100, 21);
+ this.comboBox4.TabIndex = 5;
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(136, 83);
+ this.textBox1.Margin = new System.Windows.Forms.Padding(10, 3, 3, 3);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(100, 20);
+ this.textBox1.TabIndex = 4;
+ //
+ // comboBox3
+ //
+ this.comboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBox3.FormattingEnabled = true;
+ this.comboBox3.Items.AddRange(new object[] {
+ "128",
+ "192",
+ "256"});
+ this.comboBox3.Location = new System.Drawing.Point(136, 49);
+ this.comboBox3.Name = "comboBox3";
+ this.comboBox3.Size = new System.Drawing.Size(100, 21);
+ this.comboBox3.TabIndex = 3;
+ //
+ // label6
+ //
+ this.label6.AutoSize = true;
+ this.label6.Location = new System.Drawing.Point(7, 86);
+ this.label6.Name = "label6";
+ this.label6.Size = new System.Drawing.Size(50, 13);
+ this.label6.TabIndex = 2;
+ this.label6.Text = "The Salt:";
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Location = new System.Drawing.Point(7, 52);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(51, 13);
+ this.label5.TabIndex = 1;
+ this.label5.Text = "Key Size:";
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Location = new System.Drawing.Point(7, 18);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(84, 13);
+ this.label4.TabIndex = 0;
+ this.label4.Text = "Hash Algorithm: ";
+ //
// tabPage3
//
this.tabPage3.Controls.Add(this.checkBox2);
@@ -260,87 +336,11 @@ private void InitializeComponent()
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(7, 18);
this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(224, 17);
+ this.checkBox1.Size = new System.Drawing.Size(166, 17);
this.checkBox1.TabIndex = 0;
- this.checkBox1.Text = "Associate EncryptPad with .enp extension";
+ this.checkBox1.Text = "Associate with .enp extension";
this.checkBox1.UseVisualStyleBackColor = true;
//
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(7, 18);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(84, 13);
- this.label4.TabIndex = 0;
- this.label4.Text = "Hash Algorithm: ";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(7, 52);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(51, 13);
- this.label5.TabIndex = 1;
- this.label5.Text = "Key Size:";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(7, 86);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(50, 13);
- this.label6.TabIndex = 2;
- this.label6.Text = "The Salt:";
- //
- // comboBox3
- //
- this.comboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox3.FormattingEnabled = true;
- this.comboBox3.Items.AddRange(new object[] {
- "128",
- "192",
- "256"});
- this.comboBox3.Location = new System.Drawing.Point(136, 49);
- this.comboBox3.Name = "comboBox3";
- this.comboBox3.Size = new System.Drawing.Size(100, 21);
- this.comboBox3.TabIndex = 3;
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(136, 83);
- this.textBox1.Margin = new System.Windows.Forms.Padding(10, 3, 3, 3);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(100, 20);
- this.textBox1.TabIndex = 4;
- //
- // comboBox4
- //
- this.comboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox4.FormattingEnabled = true;
- this.comboBox4.Items.AddRange(new object[] {
- "SHA1",
- "MD5"});
- this.comboBox4.Location = new System.Drawing.Point(136, 15);
- this.comboBox4.Name = "comboBox4";
- this.comboBox4.Size = new System.Drawing.Size(100, 21);
- this.comboBox4.TabIndex = 5;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(7, 120);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(102, 13);
- this.label7.TabIndex = 6;
- this.label7.Text = "Password Iterations:";
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(136, 117);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(100, 20);
- this.textBox2.TabIndex = 7;
- //
// SettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);