134 lines
4.4 KiB
C#
134 lines
4.4 KiB
C#
namespace nexifylabs.Bcrypt
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
textBox1 = new TextBox();
|
|
textBox2 = new TextBox();
|
|
btnClear = new Button();
|
|
btnEncrypt = new Button();
|
|
btnDecypt = new Button();
|
|
label1 = new Label();
|
|
label2 = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// textBox1
|
|
//
|
|
textBox1.Location = new Point(12, 21);
|
|
textBox1.Multiline = true;
|
|
textBox1.Name = "textBox1";
|
|
textBox1.Size = new Size(572, 99);
|
|
textBox1.TabIndex = 0;
|
|
//
|
|
// textBox2
|
|
//
|
|
textBox2.Location = new Point(12, 142);
|
|
textBox2.Multiline = true;
|
|
textBox2.Name = "textBox2";
|
|
textBox2.Size = new Size(572, 99);
|
|
textBox2.TabIndex = 1;
|
|
//
|
|
// btnClear
|
|
//
|
|
btnClear.Location = new Point(323, 247);
|
|
btnClear.Name = "btnClear";
|
|
btnClear.Size = new Size(83, 33);
|
|
btnClear.TabIndex = 2;
|
|
btnClear.Text = "Clear";
|
|
btnClear.UseVisualStyleBackColor = true;
|
|
btnClear.Click += btnClear_Click;
|
|
//
|
|
// btnEncrypt
|
|
//
|
|
btnEncrypt.Location = new Point(412, 247);
|
|
btnEncrypt.Name = "btnEncrypt";
|
|
btnEncrypt.Size = new Size(83, 33);
|
|
btnEncrypt.TabIndex = 3;
|
|
btnEncrypt.Text = "Encrypt";
|
|
btnEncrypt.UseVisualStyleBackColor = true;
|
|
btnEncrypt.Click += btnEncrypt_Click;
|
|
//
|
|
// btnDecypt
|
|
//
|
|
btnDecypt.Location = new Point(501, 247);
|
|
btnDecypt.Name = "btnDecypt";
|
|
btnDecypt.Size = new Size(83, 33);
|
|
btnDecypt.TabIndex = 4;
|
|
btnDecypt.Text = "Decrypt";
|
|
btnDecypt.UseVisualStyleBackColor = true;
|
|
btnDecypt.Click += btnDecypt_Click;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(12, 3);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(75, 15);
|
|
label1.TabIndex = 5;
|
|
label1.Text = "Input String :";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(12, 123);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(79, 15);
|
|
label2.TabIndex = 6;
|
|
label2.Text = "Result String :";
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(596, 292);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Controls.Add(btnDecypt);
|
|
Controls.Add(btnEncrypt);
|
|
Controls.Add(btnClear);
|
|
Controls.Add(textBox2);
|
|
Controls.Add(textBox1);
|
|
Name = "Form1";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Bcrypt v1";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBox1;
|
|
private TextBox textBox2;
|
|
private Button btnClear;
|
|
private Button btnEncrypt;
|
|
private Button btnDecypt;
|
|
private Label label1;
|
|
private Label label2;
|
|
}
|
|
}
|