亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? form1.cs

?? VC++實現的加密解密類
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.IO;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Security.Cryptography;

namespace Encryption_Demo
{
	/// <summary>
	/// Form1 的摘要說明。
	/// </summary>
	public class Form1 : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.TextBox FileName;
		private System.Windows.Forms.Button OpenFileBtn;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.RichTextBox richbox;
		private System.Windows.Forms.Button SendFileToDTS;
		private System.Windows.Forms.TabControl tabControl1;
		private System.Windows.Forms.TabPage tabPage1;
		private System.Windows.Forms.TabPage tabPage2;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.GroupBox groupBox4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Button StartStepsBtn;
		private System.Windows.Forms.Button button1;
		private System.Windows.Forms.Button button2;
		private System.Windows.Forms.TabPage tabPage3;
		private System.Windows.Forms.Button DepartBytes;
		private System.Windows.Forms.Button CreateXmlKeys;
		private System.Windows.Forms.GroupBox groupBox5;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label9;
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Form1()
		{
			InitializeComponent();
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (components != null) 
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </summary>
		private void InitializeComponent()
		{
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.SendFileToDTS = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.OpenFileBtn = new System.Windows.Forms.Button();
			this.FileName = new System.Windows.Forms.TextBox();
			this.richbox = new System.Windows.Forms.RichTextBox();
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.StartStepsBtn = new System.Windows.Forms.Button();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.label5 = new System.Windows.Forms.Label();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.label3 = new System.Windows.Forms.Label();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
			this.tabPage3 = new System.Windows.Forms.TabPage();
			this.DepartBytes = new System.Windows.Forms.Button();
			this.button1 = new System.Windows.Forms.Button();
			this.button2 = new System.Windows.Forms.Button();
			this.CreateXmlKeys = new System.Windows.Forms.Button();
			this.groupBox5 = new System.Windows.Forms.GroupBox();
			this.label6 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.groupBox1.SuspendLayout();
			this.tabControl1.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.tabPage3.SuspendLayout();
			this.groupBox5.SuspendLayout();
			this.SuspendLayout();
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.SendFileToDTS);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.OpenFileBtn);
			this.groupBox1.Controls.Add(this.FileName);
			this.groupBox1.Location = new System.Drawing.Point(56, 32);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(440, 168);
			this.groupBox1.TabIndex = 0;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "第一步:數字時間戳";
			// 
			// SendFileToDTS
			// 
			this.SendFileToDTS.Location = new System.Drawing.Point(64, 88);
			this.SendFileToDTS.Name = "SendFileToDTS";
			this.SendFileToDTS.Size = new System.Drawing.Size(256, 24);
			this.SendFileToDTS.TabIndex = 7;
			this.SendFileToDTS.Text = "提交文件到DTS服務中心...";
			this.SendFileToDTS.Click += new System.EventHandler(this.SendFileToDTS_Click);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(40, 24);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(312, 16);
			this.label1.TabIndex = 2;
			this.label1.Text = "請打開需要加時間戳的文件:";
			// 
			// OpenFileBtn
			// 
			this.OpenFileBtn.Location = new System.Drawing.Point(336, 48);
			this.OpenFileBtn.Name = "OpenFileBtn";
			this.OpenFileBtn.Size = new System.Drawing.Size(64, 23);
			this.OpenFileBtn.TabIndex = 1;
			this.OpenFileBtn.Text = "打開文件";
			this.OpenFileBtn.Click += new System.EventHandler(this.OpenFileBtn_Click);
			// 
			// FileName
			// 
			this.FileName.Location = new System.Drawing.Point(32, 48);
			this.FileName.Name = "FileName";
			this.FileName.Size = new System.Drawing.Size(304, 21);
			this.FileName.TabIndex = 0;
			this.FileName.Text = "textBox1";
			// 
			// richbox
			// 
			this.richbox.Location = new System.Drawing.Point(80, 328);
			this.richbox.Name = "richbox";
			this.richbox.Size = new System.Drawing.Size(416, 80);
			this.richbox.TabIndex = 6;
			this.richbox.Text = "你沒有進行什么操作!";
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.Add(this.tabPage1);
			this.tabControl1.Controls.Add(this.tabPage2);
			this.tabControl1.Controls.Add(this.tabPage3);
			this.tabControl1.Location = new System.Drawing.Point(8, 16);
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size(616, 288);
			this.tabControl1.TabIndex = 7;
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.Add(this.groupBox1);
			this.tabPage1.Location = new System.Drawing.Point(4, 21);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Size = new System.Drawing.Size(608, 263);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "加密步驟一";
			// 
			// tabPage2
			// 
			this.tabPage2.Controls.Add(this.groupBox5);
			this.tabPage2.Controls.Add(this.StartStepsBtn);
			this.tabPage2.Controls.Add(this.groupBox4);
			this.tabPage2.Controls.Add(this.groupBox3);
			this.tabPage2.Controls.Add(this.groupBox2);
			this.tabPage2.Location = new System.Drawing.Point(4, 21);
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.Size = new System.Drawing.Size(608, 263);
			this.tabPage2.TabIndex = 1;
			this.tabPage2.Text = "加密步驟二";
			// 
			// StartStepsBtn
			// 
			this.StartStepsBtn.Location = new System.Drawing.Point(240, 224);
			this.StartStepsBtn.Name = "StartStepsBtn";
			this.StartStepsBtn.Size = new System.Drawing.Size(104, 23);
			this.StartStepsBtn.TabIndex = 3;
			this.StartStepsBtn.Text = "開始以上步驟";
			this.StartStepsBtn.Click += new System.EventHandler(this.StartStepsBtn_Click);
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.label2);
			this.groupBox4.Location = new System.Drawing.Point(320, 120);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(216, 80);
			this.groupBox4.TabIndex = 2;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "線程三";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(8, 24);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(192, 48);
			this.label5.TabIndex = 0;
			this.label5.Text = "使用發送者私鑰簽名隨機密鑰,使用接收者公鑰加密密鑰和簽名";
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.label3);
			this.groupBox3.Location = new System.Drawing.Point(72, 32);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(208, 64);
			this.groupBox3.TabIndex = 1;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "第一步:";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(16, 32);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(184, 24);
			this.label3.TabIndex = 0;
			this.label3.Text = "隨機產生對成加密鑰匙Key和IV";
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.label5);
			this.groupBox2.Location = new System.Drawing.Point(320, 24);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(216, 80);
			this.groupBox2.TabIndex = 0;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "第二步:";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(32, 24);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(160, 40);
			this.label2.TabIndex = 0;
			this.label2.Text = "MD5摘要生成-->用發送者私鑰簽名";
			// 
			// tabPage3
			// 
			this.tabPage3.Controls.Add(this.label9);
			this.tabPage3.Controls.Add(this.label7);
			this.tabPage3.Controls.Add(this.label8);
			this.tabPage3.Controls.Add(this.label4);
			this.tabPage3.Controls.Add(this.DepartBytes);
			this.tabPage3.Location = new System.Drawing.Point(4, 21);
			this.tabPage3.Name = "tabPage3";
			this.tabPage3.Size = new System.Drawing.Size(608, 263);
			this.tabPage3.TabIndex = 2;
			this.tabPage3.Text = "解密步驟";
			// 
			// DepartBytes
			// 
			this.DepartBytes.Location = new System.Drawing.Point(256, 232);
			this.DepartBytes.Name = "DepartBytes";
			this.DepartBytes.Size = new System.Drawing.Size(72, 24);
			this.DepartBytes.TabIndex = 0;
			this.DepartBytes.Text = "開始解密";
			this.DepartBytes.Click += new System.EventHandler(this.DepartBytes_Click);
			// 
			// button1
			// 
			this.button1.Location = new System.Drawing.Point(528, 320);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(88, 32);
			this.button1.TabIndex = 8;
			this.button1.Text = "產生私鑰";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// button2
			// 
			this.button2.Location = new System.Drawing.Point(536, 352);
			this.button2.Name = "button2";
			this.button2.TabIndex = 9;
			this.button2.Text = "產生實例";
			this.button2.Click += new System.EventHandler(this.button2_Click);
			// 
			// CreateXmlKeys
			// 
			this.CreateXmlKeys.Location = new System.Drawing.Point(528, 392);
			this.CreateXmlKeys.Name = "CreateXmlKeys";
			this.CreateXmlKeys.Size = new System.Drawing.Size(104, 24);
			this.CreateXmlKeys.TabIndex = 10;
			this.CreateXmlKeys.Text = "產生一對鑰匙";
			this.CreateXmlKeys.Click += new System.EventHandler(this.CreateXmlKeys_Click);
			// 
			// groupBox5
			// 
			this.groupBox5.Controls.Add(this.label6);
			this.groupBox5.Location = new System.Drawing.Point(88, 120);
			this.groupBox5.Name = "groupBox5";
			this.groupBox5.Size = new System.Drawing.Size(192, 72);
			this.groupBox5.TabIndex = 4;
			this.groupBox5.TabStop = false;
			this.groupBox5.Text = "第三步:";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(16, 24);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(160, 32);
			this.label6.TabIndex = 0;
			this.label6.Text = "利用隨機密鑰使用DES算法分組加密數據";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(64, 32);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(496, 24);
			this.label4.TabIndex = 1;
			this.label4.Text = "分解出加密后的會話密鑰密文=》發送者私鑰解密=》接受者公鑰驗證=》分解出密鑰";
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(72, 80);
			this.label8.Name = "label8";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品av久久707| 亚洲欧美日韩中文字幕一区二区三区| 亚洲制服丝袜在线| 欧美亚洲国产bt| 亚洲高清视频的网址| 91精品国产一区二区三区蜜臀| 免费欧美日韩国产三级电影| 日韩美女视频一区二区在线观看| 国产在线国偷精品产拍免费yy| 中文字幕欧美国产| 色老汉av一区二区三区| 日韩电影免费在线观看网站| 2023国产精品自拍| www.欧美.com| 亚洲福利视频三区| 久久夜色精品国产欧美乱极品| 国产成人高清在线| 亚洲国产另类精品专区| 精品国产免费一区二区三区四区| 成人一区在线看| 亚洲国产精品嫩草影院| 久久久亚洲精华液精华液精华液| 色综合久久久久综合体桃花网| 午夜成人在线视频| 国产免费久久精品| 91福利小视频| 久久国产剧场电影| 亚洲卡通欧美制服中文| 日韩精品中文字幕一区二区三区| 波多野结衣在线aⅴ中文字幕不卡| 亚洲午夜免费视频| 久久久久久夜精品精品免费| 欧美日韩一区精品| 成人毛片视频在线观看| 精品国产亚洲一区二区三区在线观看| 日韩精品一二区| 欧美午夜精品一区| 成人亚洲一区二区一| 欧美一级国产精品| 日本午夜一本久久久综合| 日本道在线观看一区二区| 中文字幕中文字幕中文字幕亚洲无线| 日韩激情一二三区| 在线播放欧美女士性生活| 亚洲精品视频一区| 风间由美一区二区三区在线观看 | 亚洲成av人片在线观看无码| 欧美精品一区二区不卡| 欧美影院一区二区| 国产91精品一区二区麻豆网站| 日韩影院在线观看| 亚洲免费资源在线播放| 国产日产欧美一区二区三区| 9191成人精品久久| 欧美三级乱人伦电影| 99国内精品久久| 国产激情精品久久久第一区二区| 蜜乳av一区二区| 亚洲成a人片综合在线| 成人免费在线播放视频| 国产亚洲一区字幕| 久久综合色播五月| 日韩精品自拍偷拍| 欧美精品免费视频| 欧美偷拍一区二区| 色菇凉天天综合网| 91在线视频网址| 91亚洲国产成人精品一区二区三| 国产99精品国产| 国产麻豆视频一区| 国产在线播放一区三区四| 九色综合狠狠综合久久| 免费在线视频一区| 日日夜夜免费精品| 日本成人在线不卡视频| 久久国产视频网| 国产在线麻豆精品观看| 精品一区二区免费| 国产激情一区二区三区四区| 国产99久久精品| www.成人在线| 色综合激情久久| 欧洲生活片亚洲生活在线观看| 在线视频中文字幕一区二区| 91成人网在线| 中文字幕一区av| 亚洲成av人影院| 亚洲国产精品久久人人爱蜜臀| 亚洲国产精品激情在线观看| 在线播放视频一区| 欧美日韩大陆在线| 91福利在线观看| 日韩免费高清电影| 色网站国产精品| 色婷婷香蕉在线一区二区| 国产91精品精华液一区二区三区 | 日韩电影在线一区二区| 亚洲bdsm女犯bdsm网站| 日韩av在线播放中文字幕| 极品销魂美女一区二区三区| 国产成人三级在线观看| 91免费看`日韩一区二区| 欧美日免费三级在线| 欧美一区二区免费视频| 国产午夜精品久久| 亚洲影视在线播放| 激情综合色丁香一区二区| av电影天堂一区二区在线观看| 欧美网站一区二区| 欧美精品一区二区三区久久久| 国产精品久久三区| 亚洲chinese男男1069| 国产美女主播视频一区| 91麻豆国产自产在线观看| 91精品国产日韩91久久久久久| 久久久久久久免费视频了| 成人免费一区二区三区在线观看| 午夜视频一区二区| 丁香激情综合国产| 欧美日韩国产综合草草| 国产精品理论片| 美女视频一区在线观看| 色婷婷综合激情| www久久久久| 亚洲一区二区三区在线看| 国产经典欧美精品| 欧美日韩国产区一| 中文字幕五月欧美| 乱中年女人伦av一区二区| 色诱视频网站一区| 亚洲精品一区二区三区福利 | 91麻豆蜜桃一区二区三区| 日韩午夜精品电影| 依依成人综合视频| 丁香六月久久综合狠狠色| 日韩区在线观看| 一区二区视频在线| 高清不卡在线观看| 欧美精品一区二区三区在线| 亚洲va欧美va人人爽午夜| 99久久国产综合精品女不卡| 久久影音资源网| 日本欧美一区二区三区乱码| 色婷婷av一区| 精品影视av免费| 色哟哟一区二区| 国产精品中文字幕一区二区三区| 一区二区三区高清不卡| 成人妖精视频yjsp地址| 久久久蜜桃精品| 懂色av中文一区二区三区| 久久精品一级爱片| 99re这里只有精品6| 久久精品在线免费观看| 国产精品亚洲专一区二区三区| 亚洲精品一区二区三区在线观看| 久久99精品久久久| 2019国产精品| 2017欧美狠狠色| 另类综合日韩欧美亚洲| 欧美伦理电影网| 午夜精品123| 欧美日韩一区二区不卡| 亚洲大尺度视频在线观看| 欧美在线短视频| 亚洲小说欧美激情另类| 欧美影片第一页| 香蕉影视欧美成人| 制服丝袜日韩国产| 日韩激情av在线| 日韩色视频在线观看| 久久精品国产99国产精品| 精品国产伦理网| 国产精品一级黄| av激情亚洲男人天堂| 日韩一区二区在线看片| 国内精品嫩模私拍在线| 久久久久9999亚洲精品| 国产精品一区在线观看你懂的| 久久久久久久久岛国免费| 懂色av一区二区三区免费看| 一区在线中文字幕| 欧美午夜电影网| 麻豆国产欧美一区二区三区| www国产精品av| 99久久久精品| 亚洲高清免费观看| 精品捆绑美女sm三区| 国产成人精品aa毛片| 亚洲少妇30p| 337p亚洲精品色噜噜狠狠| 国产一区二区三区av电影| 成人欧美一区二区三区视频网页 | 成人午夜电影小说| 亚洲日本丝袜连裤袜办公室| 欧美精品久久久久久久多人混战| 韩国欧美一区二区| 亚洲免费观看高清完整版在线 | 精品国精品国产| 国产成人亚洲综合a∨婷婷|