📄 rsa.designer.cs
字号:
this.inputKey.Location = new System.Drawing.Point(154, 84);
this.inputKey.Name = "inputKey";
this.inputKey.Size = new System.Drawing.Size(115, 23);
this.inputKey.TabIndex = 13;
this.inputKey.Text = "读入密钥";
this.inputKey.UseVisualStyleBackColor = true;
//
// primePText
//
this.primePText.Location = new System.Drawing.Point(42, 27);
this.primePText.Name = "primePText";
this.primePText.Size = new System.Drawing.Size(164, 21);
this.primePText.TabIndex = 14;
//
// primeQText
//
this.primeQText.Location = new System.Drawing.Point(42, 54);
this.primeQText.Name = "primeQText";
this.primeQText.Size = new System.Drawing.Size(164, 21);
this.primeQText.TabIndex = 15;
//
// keyDText
//
this.keyDText.Location = new System.Drawing.Point(42, 81);
this.keyDText.Name = "keyDText";
this.keyDText.Size = new System.Drawing.Size(164, 21);
this.keyDText.TabIndex = 16;
//
// primePLabel
//
this.primePLabel.AutoSize = true;
this.primePLabel.Location = new System.Drawing.Point(4, 30);
this.primePLabel.Name = "primePLabel";
this.primePLabel.Size = new System.Drawing.Size(35, 12);
this.primePLabel.TabIndex = 17;
this.primePLabel.Text = "质数P";
//
// primeQLabel
//
this.primeQLabel.AutoSize = true;
this.primeQLabel.Location = new System.Drawing.Point(4, 57);
this.primeQLabel.Name = "primeQLabel";
this.primeQLabel.Size = new System.Drawing.Size(35, 12);
this.primeQLabel.TabIndex = 18;
this.primeQLabel.Text = "质数Q";
//
// keyDLabel
//
this.keyDLabel.AutoSize = true;
this.keyDLabel.Location = new System.Drawing.Point(4, 84);
this.keyDLabel.Name = "keyDLabel";
this.keyDLabel.Size = new System.Drawing.Size(35, 12);
this.keyDLabel.TabIndex = 19;
this.keyDLabel.Text = "密钥D";
//
// publicKeyNText
//
this.publicKeyNText.Location = new System.Drawing.Point(42, 13);
this.publicKeyNText.Name = "publicKeyNText";
this.publicKeyNText.Size = new System.Drawing.Size(164, 21);
this.publicKeyNText.TabIndex = 20;
//
// publicKeyEText
//
this.publicKeyEText.Location = new System.Drawing.Point(42, 40);
this.publicKeyEText.Name = "publicKeyEText";
this.publicKeyEText.Size = new System.Drawing.Size(164, 21);
this.publicKeyEText.TabIndex = 21;
//
// publicKeyNLabel
//
this.publicKeyNLabel.AutoSize = true;
this.publicKeyNLabel.Location = new System.Drawing.Point(4, 16);
this.publicKeyNLabel.Name = "publicKeyNLabel";
this.publicKeyNLabel.Size = new System.Drawing.Size(35, 12);
this.publicKeyNLabel.TabIndex = 22;
this.publicKeyNLabel.Text = "公钥N";
//
// publicKeyELabel
//
this.publicKeyELabel.AutoSize = true;
this.publicKeyELabel.Location = new System.Drawing.Point(4, 43);
this.publicKeyELabel.Name = "publicKeyELabel";
this.publicKeyELabel.Size = new System.Drawing.Size(35, 12);
this.publicKeyELabel.TabIndex = 23;
this.publicKeyELabel.Text = "公钥E";
//
// privateKeyGroupBox
//
this.privateKeyGroupBox.Controls.Add(this.keyDLabel);
this.privateKeyGroupBox.Controls.Add(this.primeQLabel);
this.privateKeyGroupBox.Controls.Add(this.primePLabel);
this.privateKeyGroupBox.Controls.Add(this.keyDText);
this.privateKeyGroupBox.Controls.Add(this.primeQText);
this.privateKeyGroupBox.Controls.Add(this.primePText);
this.privateKeyGroupBox.Location = new System.Drawing.Point(18, 116);
this.privateKeyGroupBox.Name = "privateKeyGroupBox";
this.privateKeyGroupBox.Size = new System.Drawing.Size(216, 118);
this.privateKeyGroupBox.TabIndex = 24;
this.privateKeyGroupBox.TabStop = false;
this.privateKeyGroupBox.Text = "私钥";
//
// publicKeyGroupBox
//
this.publicKeyGroupBox.Controls.Add(this.publicKeyELabel);
this.publicKeyGroupBox.Controls.Add(this.publicKeyNLabel);
this.publicKeyGroupBox.Controls.Add(this.publicKeyEText);
this.publicKeyGroupBox.Controls.Add(this.publicKeyNText);
this.publicKeyGroupBox.Location = new System.Drawing.Point(18, 242);
this.publicKeyGroupBox.Name = "publicKeyGroupBox";
this.publicKeyGroupBox.Size = new System.Drawing.Size(215, 70);
this.publicKeyGroupBox.TabIndex = 25;
this.publicKeyGroupBox.TabStop = false;
this.publicKeyGroupBox.Text = "公钥";
//
// RSA
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 470);
this.Controls.Add(this.publicKeyGroupBox);
this.Controls.Add(this.privateKeyGroupBox);
this.Controls.Add(this.inputKey);
this.Controls.Add(this.makeKey);
this.Controls.Add(this.button1);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.KeyAddressText);
this.Controls.Add(this.keyAddress);
this.Controls.Add(this.outputFileButton);
this.Controls.Add(this.inputFileButton);
this.Controls.Add(this.about);
this.Controls.Add(this.encodeButton);
this.Controls.Add(this.decodebutton);
this.Controls.Add(this.inputFileName);
this.Controls.Add(this.OutputFileName);
this.Name = "RSA";
this.Text = "RSA";
this.privateKeyGroupBox.ResumeLayout(false);
this.privateKeyGroupBox.PerformLayout();
this.publicKeyGroupBox.ResumeLayout(false);
this.publicKeyGroupBox.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox OutputFileName;
private System.Windows.Forms.TextBox inputFileName;
private System.Windows.Forms.Button decodebutton;
private System.Windows.Forms.Button encodeButton;
private System.Windows.Forms.Button about;
private System.Windows.Forms.Button inputFileButton;
private System.Windows.Forms.Button outputFileButton;
private System.Windows.Forms.TextBox keyAddress;
private System.Windows.Forms.Label KeyAddressText;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button makeKey;
private System.Windows.Forms.Button inputKey;
private System.Windows.Forms.TextBox primePText;
private System.Windows.Forms.TextBox primeQText;
private System.Windows.Forms.TextBox keyDText;
private System.Windows.Forms.Label primePLabel;
private System.Windows.Forms.Label primeQLabel;
private System.Windows.Forms.Label keyDLabel;
private System.Windows.Forms.TextBox publicKeyNText;
private System.Windows.Forms.TextBox publicKeyEText;
private System.Windows.Forms.Label publicKeyNLabel;
private System.Windows.Forms.Label publicKeyELabel;
private System.Windows.Forms.GroupBox privateKeyGroupBox;
private System.Windows.Forms.GroupBox publicKeyGroupBox;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -