📄 digitalsigdemo.designer.cs
字号:
namespace SecuringData
{
partial class DigitalSigDemo
{
/// <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()
{
this.comboBoxAlgorithm = new System.Windows.Forms.ComboBox();
this.labelAlgorithm = new System.Windows.Forms.Label();
this.textBoxSign = new System.Windows.Forms.TextBox();
this.labelMes = new System.Windows.Forms.Label();
this.textBoxSignature = new System.Windows.Forms.TextBox();
this.labelHash = new System.Windows.Forms.Label();
this.groupBoxKeys = new System.Windows.Forms.GroupBox();
this.labelPublicKey = new System.Windows.Forms.Label();
this.textBoxPublicKey = new System.Windows.Forms.TextBox();
this.textBoxPrivateKey = new System.Windows.Forms.TextBox();
this.labelPrivateKey = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.textBoxVerify = new System.Windows.Forms.TextBox();
this.labelRecMes = new System.Windows.Forms.Label();
this.buttonSign = new System.Windows.Forms.Button();
this.buttonVerify = new System.Windows.Forms.Button();
this.labelIsVerified = new System.Windows.Forms.Label();
this.groupBoxKeys.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// comboBoxAlgorithm
//
this.comboBoxAlgorithm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.comboBoxAlgorithm.FormattingEnabled = true;
this.comboBoxAlgorithm.Location = new System.Drawing.Point(287, 32);
this.comboBoxAlgorithm.Name = "comboBoxAlgorithm";
this.comboBoxAlgorithm.Size = new System.Drawing.Size(71, 21);
this.comboBoxAlgorithm.TabIndex = 7;
//
// labelAlgorithm
//
this.labelAlgorithm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelAlgorithm.AutoSize = true;
this.labelAlgorithm.Location = new System.Drawing.Point(284, 16);
this.labelAlgorithm.Name = "labelAlgorithm";
this.labelAlgorithm.Size = new System.Drawing.Size(53, 13);
this.labelAlgorithm.TabIndex = 6;
this.labelAlgorithm.Text = "Algorithm:";
//
// textBoxSign
//
this.textBoxSign.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBoxSign.Location = new System.Drawing.Point(9, 32);
this.textBoxSign.Multiline = true;
this.textBoxSign.Name = "textBoxSign";
this.textBoxSign.Size = new System.Drawing.Size(275, 37);
this.textBoxSign.TabIndex = 8;
//
// labelMes
//
this.labelMes.AutoSize = true;
this.labelMes.Location = new System.Drawing.Point(9, 16);
this.labelMes.Name = "labelMes";
this.labelMes.Size = new System.Drawing.Size(121, 13);
this.labelMes.TabIndex = 9;
this.labelMes.Text = "Message To Be Signed:";
//
// textBoxSignature
//
this.textBoxSignature.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBoxSignature.Location = new System.Drawing.Point(12, 35);
this.textBoxSignature.Name = "textBoxSignature";
this.textBoxSignature.Size = new System.Drawing.Size(346, 20);
this.textBoxSignature.TabIndex = 10;
//
// labelHash
//
this.labelHash.AutoSize = true;
this.labelHash.Location = new System.Drawing.Point(9, 16);
this.labelHash.Name = "labelHash";
this.labelHash.Size = new System.Drawing.Size(275, 13);
this.labelHash.TabIndex = 11;
this.labelHash.Text = "Signature (Encrypted Hash of Message, Base64 Format):";
//
// groupBoxKeys
//
this.groupBoxKeys.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxKeys.Controls.Add(this.labelPublicKey);
this.groupBoxKeys.Controls.Add(this.textBoxPublicKey);
this.groupBoxKeys.Controls.Add(this.textBoxPrivateKey);
this.groupBoxKeys.Controls.Add(this.labelPrivateKey);
this.groupBoxKeys.Location = new System.Drawing.Point(12, 12);
this.groupBoxKeys.Name = "groupBoxKeys";
this.groupBoxKeys.Size = new System.Drawing.Size(367, 103);
this.groupBoxKeys.TabIndex = 12;
this.groupBoxKeys.TabStop = false;
this.groupBoxKeys.Text = "Public-Private Key Pairs (Auto Generated)";
//
// labelPublicKey
//
this.labelPublicKey.AutoSize = true;
this.labelPublicKey.Location = new System.Drawing.Point(9, 22);
this.labelPublicKey.Name = "labelPublicKey";
this.labelPublicKey.Size = new System.Drawing.Size(39, 26);
this.labelPublicKey.TabIndex = 0;
this.labelPublicKey.Text = "Public \r\nKey:";
//
// textBoxPublicKey
//
this.textBoxPublicKey.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBoxPublicKey.Location = new System.Drawing.Point(50, 19);
this.textBoxPublicKey.Multiline = true;
this.textBoxPublicKey.Name = "textBoxPublicKey";
this.textBoxPublicKey.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxPublicKey.Size = new System.Drawing.Size(308, 37);
this.textBoxPublicKey.TabIndex = 1;
//
// textBoxPrivateKey
//
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -