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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? form1.cs

?? VC++實現(xiàn)的加密解密類
?? 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>
		/// 必需的設(shè)計器變量。
		/// </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 窗體設(shè)計器生成的代碼
		/// <summary>
		/// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </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 = "第一步:數(shù)字時間戳";
			// 
			// 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服務(wù)中心...";
			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 = "使用發(fā)送者私鑰簽名隨機密鑰,使用接收者公鑰加密密鑰和簽名";
			// 
			// 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 = "隨機產(chǎn)生對成加密鑰匙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摘要生成-->用發(fā)送者私鑰簽名";
			// 
			// 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 = "產(chǎn)生私鑰";
			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 = "產(chǎn)生實例";
			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 = "產(chǎn)生一對鑰匙";
			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算法分組加密數(shù)據(jù)";
			// 
			// 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 = "分解出加密后的會話密鑰密文=》發(fā)送者私鑰解密=》接受者公鑰驗證=》分解出密鑰";
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(72, 80);
			this.label8.Name = "label8";

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美午夜精品久久久久久超碰 | 亚洲精品欧美综合四区| 欧美午夜精品一区二区蜜桃 | 91在线精品一区二区三区| 图片区日韩欧美亚洲| 国产欧美一区二区精品久导航| 欧美图区在线视频| 福利电影一区二区三区| 日韩不卡一区二区三区| 一区二区三区中文字幕在线观看| 久久欧美中文字幕| 91精品国产入口| 欧美体内she精高潮| 99在线精品一区二区三区| 美女一区二区在线观看| 亚洲成人av电影在线| 国产精品久久久久久亚洲伦| 精品99久久久久久| 在线看日韩精品电影| 国产91丝袜在线播放0| 免费观看一级欧美片| 亚洲h在线观看| 一区二区三区 在线观看视频| 中文字幕一区二区三区蜜月| 欧美xxxx老人做受| 日韩精品中文字幕一区二区三区| 在线成人av网站| 777午夜精品视频在线播放| 色天使久久综合网天天| 91麻豆精东视频| 色综合久久久久久久久久久| 成人动漫视频在线| 白白色亚洲国产精品| 成人午夜视频网站| 高清在线不卡av| 国产99久久久国产精品免费看| 国产馆精品极品| 岛国精品在线播放| 国产成人午夜片在线观看高清观看| 男女激情视频一区| 麻豆久久久久久| 狠狠色丁香婷综合久久| 国产乱人伦精品一区二区在线观看| 精品亚洲成av人在线观看| 免费三级欧美电影| 国产一区二区三区免费播放| 国产精品一区在线观看你懂的| 国产精品亚洲午夜一区二区三区| 国产一本一道久久香蕉| 大美女一区二区三区| av亚洲精华国产精华精| 色综合久久中文字幕综合网| 欧美日韩精品一区二区三区蜜桃 | 麻豆精品蜜桃视频网站| 久久精品99国产精品日本| 国产在线不卡视频| 成人的网站免费观看| 日本电影欧美片| 91精品啪在线观看国产60岁| 欧美成人性战久久| 国产喂奶挤奶一区二区三区| 中文字幕一区免费在线观看| 一区二区三区不卡视频在线观看| 日韩在线卡一卡二| 国产精品99久久久| 91国产福利在线| 日韩三区在线观看| 国产日韩精品一区二区三区| 亚洲精品国产成人久久av盗摄| 日韩中文字幕麻豆| 国产成人综合网| 欧美在线免费播放| 欧美大片顶级少妇| 国产精品久久久一区麻豆最新章节| 亚洲一区二区3| 国产美女在线精品| 色狠狠色狠狠综合| 日韩欧美电影一区| 136国产福利精品导航| 蜜臀av性久久久久蜜臀aⅴ四虎| 国产精品一区二区视频| 欧美系列一区二区| 国产欧美日韩在线| 亚洲高清免费在线| 国产91丝袜在线播放| 欧美这里有精品| 国产亚洲婷婷免费| 午夜精品久久久| 91污在线观看| 久久久久久一级片| 丝袜国产日韩另类美女| 97久久精品人人爽人人爽蜜臀| 欧美一区二区三区在线视频| 成人免费在线视频| 精品一区二区三区在线视频| 欧美色偷偷大香| 国产精品久久精品日日| 久久精品国产亚洲高清剧情介绍| 91久久免费观看| 国产喂奶挤奶一区二区三区| 日本欧美韩国一区三区| 一本久久精品一区二区| 久久欧美一区二区| 天堂精品中文字幕在线| www.欧美精品一二区| 精品国产亚洲一区二区三区在线观看| 一区二区三区成人| caoporn国产一区二区| 精品福利视频一区二区三区| 亚洲18影院在线观看| 91丝袜高跟美女视频| 久久久久久久网| 美女视频黄 久久| 欧美日韩中文字幕一区二区| 1000部国产精品成人观看| 国产精品69毛片高清亚洲| 日韩一区二区三区电影在线观看| 亚洲综合999| 91亚洲男人天堂| 国产精品美女久久福利网站| 午夜日韩在线观看| 色综合 综合色| 中文字幕亚洲区| 成人黄页毛片网站| 中文字幕欧美激情| 国产精品一区二区免费不卡| 精品国内二区三区| 激情欧美日韩一区二区| 日韩欧美国产系列| 久久av老司机精品网站导航| 日韩欧美高清dvd碟片| 麻豆精品久久久| 精品福利av导航| 精品亚洲porn| 久久先锋影音av鲁色资源网| 国产一区日韩二区欧美三区| 欧美成人三级在线| 国产精品综合在线视频| 国产日产欧产精品推荐色| 国产91清纯白嫩初高中在线观看| 2019国产精品| 国产99久久久国产精品潘金网站| 国产午夜精品福利| 9i在线看片成人免费| 亚洲精品亚洲人成人网在线播放| 91福利资源站| 日韩av中文在线观看| 日韩欧美成人激情| 国产在线播放一区| 国产精品日韩成人| 91在线观看免费视频| 一区二区三国产精华液| 制服丝袜av成人在线看| 美女任你摸久久| 久久久www成人免费毛片麻豆| 国产成人欧美日韩在线电影| 国产精品久久久一区麻豆最新章节| 色国产精品一区在线观看| 亚洲一区二区三区美女| 日韩欧美一区二区三区在线| 麻豆国产欧美日韩综合精品二区| 精品久久国产97色综合| 国产成人免费视| 亚洲一区二区四区蜜桃| 日韩欧美在线综合网| 高潮精品一区videoshd| 亚洲成人手机在线| 精品免费日韩av| 成人av资源站| 午夜视频在线观看一区二区三区| 亚洲精品一区二区三区蜜桃下载| 成人激情动漫在线观看| 午夜国产精品一区| 国产三区在线成人av| 欧美亚洲综合久久| 精品午夜久久福利影院| 亚洲天堂av一区| 日韩欧美国产系列| 91亚洲精华国产精华精华液| 蜜臀99久久精品久久久久久软件| 国产精品久99| 欧美一级午夜免费电影| av欧美精品.com| 裸体健美xxxx欧美裸体表演| 国产精品久久久一本精品| 91精品国产综合久久精品图片 | 一区在线观看免费| 欧美亚洲一区二区在线| 国产精品资源站在线| 亚洲va欧美va国产va天堂影院| 国产欧美日韩不卡免费| 欧美另类z0zxhd电影| jvid福利写真一区二区三区| 蜜桃精品在线观看| 亚洲中国最大av网站| 久久久久久久综合狠狠综合| 91麻豆精品国产自产在线观看一区| 白白色亚洲国产精品| 国产久卡久卡久卡久卡视频精品| 亚洲夂夂婷婷色拍ww47 |