⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsa.designer.cs

📁 RSA算法的加解密模拟程序
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace RSA
{
    partial class RSA
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.OutputFileName = new System.Windows.Forms.TextBox();
            this.inputFileName = new System.Windows.Forms.TextBox();
            this.decodebutton = new System.Windows.Forms.Button();
            this.encodeButton = new System.Windows.Forms.Button();
            this.about = new System.Windows.Forms.Button();
            this.inputFileButton = new System.Windows.Forms.Button();
            this.outputFileButton = new System.Windows.Forms.Button();
            this.keyAddress = new System.Windows.Forms.TextBox();
            this.KeyAddressText = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            this.makeKey = new System.Windows.Forms.Button();
            this.inputKey = new System.Windows.Forms.Button();
            this.primePText = new System.Windows.Forms.TextBox();
            this.primeQText = new System.Windows.Forms.TextBox();
            this.keyDText = new System.Windows.Forms.TextBox();
            this.primePLabel = new System.Windows.Forms.Label();
            this.primeQLabel = new System.Windows.Forms.Label();
            this.keyDLabel = new System.Windows.Forms.Label();
            this.publicKeyNText = new System.Windows.Forms.TextBox();
            this.publicKeyEText = new System.Windows.Forms.TextBox();
            this.publicKeyNLabel = new System.Windows.Forms.Label();
            this.publicKeyELabel = new System.Windows.Forms.Label();
            this.privateKeyGroupBox = new System.Windows.Forms.GroupBox();
            this.publicKeyGroupBox = new System.Windows.Forms.GroupBox();
            this.privateKeyGroupBox.SuspendLayout();
            this.publicKeyGroupBox.SuspendLayout();
            this.SuspendLayout();
            // 
            // OutputFileName
            // 
            this.OutputFileName.Location = new System.Drawing.Point(24, 437);
            this.OutputFileName.Name = "OutputFileName";
            this.OutputFileName.Size = new System.Drawing.Size(200, 21);
            this.OutputFileName.TabIndex = 0;
            // 
            // inputFileName
            // 
            this.inputFileName.Location = new System.Drawing.Point(24, 380);
            this.inputFileName.Name = "inputFileName";
            this.inputFileName.Size = new System.Drawing.Size(200, 21);
            this.inputFileName.TabIndex = 1;
            // 
            // decodebutton
            // 
            this.decodebutton.Location = new System.Drawing.Point(105, 321);
            this.decodebutton.Name = "decodebutton";
            this.decodebutton.Size = new System.Drawing.Size(75, 23);
            this.decodebutton.TabIndex = 2;
            this.decodebutton.Text = "解密";
            this.decodebutton.UseVisualStyleBackColor = true;
            this.decodebutton.Click += new System.EventHandler(this.decodebutton_Click);
            // 
            // encodeButton
            // 
            this.encodeButton.Location = new System.Drawing.Point(24, 321);
            this.encodeButton.Name = "encodeButton";
            this.encodeButton.Size = new System.Drawing.Size(75, 23);
            this.encodeButton.TabIndex = 3;
            this.encodeButton.Text = "加密";
            this.encodeButton.UseVisualStyleBackColor = true;
            this.encodeButton.Click += new System.EventHandler(this.encodeButton_Click);
            // 
            // about
            // 
            this.about.Location = new System.Drawing.Point(186, 321);
            this.about.Name = "about";
            this.about.Size = new System.Drawing.Size(75, 23);
            this.about.TabIndex = 4;
            this.about.Text = "关于";
            this.about.UseVisualStyleBackColor = true;
            this.about.Click += new System.EventHandler(this.about_Click);
            // 
            // inputFileButton
            // 
            this.inputFileButton.Location = new System.Drawing.Point(234, 380);
            this.inputFileButton.Name = "inputFileButton";
            this.inputFileButton.Size = new System.Drawing.Size(35, 23);
            this.inputFileButton.TabIndex = 5;
            this.inputFileButton.Text = "...";
            this.inputFileButton.UseVisualStyleBackColor = true;
            this.inputFileButton.Click += new System.EventHandler(this.inputFileButton_Click);
            // 
            // outputFileButton
            // 
            this.outputFileButton.Location = new System.Drawing.Point(234, 437);
            this.outputFileButton.Name = "outputFileButton";
            this.outputFileButton.Size = new System.Drawing.Size(35, 23);
            this.outputFileButton.TabIndex = 6;
            this.outputFileButton.Text = "...";
            this.outputFileButton.UseVisualStyleBackColor = true;
            this.outputFileButton.Click += new System.EventHandler(this.outputFileButton_Click);
            // 
            // keyAddress
            // 
            this.keyAddress.Location = new System.Drawing.Point(24, 55);
            this.keyAddress.Name = "keyAddress";
            this.keyAddress.Size = new System.Drawing.Size(200, 21);
            this.keyAddress.TabIndex = 7;
            // 
            // KeyAddressText
            // 
            this.KeyAddressText.AutoSize = true;
            this.KeyAddressText.Location = new System.Drawing.Point(22, 40);
            this.KeyAddressText.Name = "KeyAddressText";
            this.KeyAddressText.Size = new System.Drawing.Size(77, 12);
            this.KeyAddressText.TabIndex = 8;
            this.KeyAddressText.Text = "密钥文件地址";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(22, 365);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 12);
            this.label2.TabIndex = 9;
            this.label2.Text = "输入文件路径";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(22, 422);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(77, 12);
            this.label3.TabIndex = 10;
            this.label3.Text = "输出文件路径";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(234, 55);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(35, 23);
            this.button1.TabIndex = 11;
            this.button1.Text = "...";
            this.button1.UseVisualStyleBackColor = true;
            // 
            // makeKey
            // 
            this.makeKey.Location = new System.Drawing.Point(24, 82);
            this.makeKey.Name = "makeKey";
            this.makeKey.Size = new System.Drawing.Size(115, 23);
            this.makeKey.TabIndex = 12;
            this.makeKey.Text = "生成密钥";
            this.makeKey.UseVisualStyleBackColor = true;
            this.makeKey.Click += new System.EventHandler(this.makeKey_Click);
            // 
            // inputKey
            // 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -