资源简介
自己做的一个AES加密解密算法程序,内部核心算法均为自己实现
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
namespace AES
{
class Decryption
{
private static char[] alphabet ={ ‘0‘ ‘1‘ ‘2‘ ‘3‘ ‘4‘ ‘5‘ ‘6‘ ‘7‘ ‘8‘ ‘9‘ ‘a‘ ‘b‘ ‘c‘ ‘d‘ ‘e‘ ‘f‘ };
public static int[] Getdecryption(string str int[] key)
{
int[] cipherkey = new int[16];
str = str.ToLower();
char[] ch = str.ToCharArray();
int[] cipher= new int[str.Length / 32 16];
int[] plian = new int[str.Length / 32 16];
int[] plaintext = new int[16];
StringBuilder s = new StringBuilder(100000);
for (int i = 0; i < str.Length; i++)
{
for (int j = 3; j >= 0; j--)
{
s = s.Append(Decryption.GetNum(ch[i]) >> j & 1);
}
}
for (int i = 0; i < cipher.GetLength(0); i++)
{
for (int j = 0; j < 16; j++)
cipher[i j] = Convert.ToInt32(s.ToString(j * 8 + i * 128 8) 2);
}
EncryptionForm encryForm = new EncryptionForm();
encryForm.Show();
for (int i =0; i {
for (int h = 0; h < 16; h++)
{
cipherkey[h] = key[key.GetLength(0)-1 h];
plaintext[h] = cipher[i h];
}
encryForm.SetText(“密钥:“ cipherkey);
plaintext = AddRoundKey(plaintext cipherkey);
encryForm.SetText(“InvAddRoundKey:“plaintext);
encryForm.Set();
for (int j = key.GetLength(0)-2; j>0; j--)
{
for (int h = 0; h < 16; h++)
{
cipherkey[h] = key[j h];
}
for (int h = 0; h < plaintext.Length; h++)
{
plaintext[h] = SubBytes.GetByteSub(plaintext[h]);
}
encryForm.SetText(“InvSubBytes:“ plaintext);
plaintext = InvShiftRows(plaintext);
encryForm.SetText(“InvShiftRows:“ plaintext);
plaintext = MixColumn.InvMixColumn(plaintext);
encryForm.SetText(“InvMixColumn:“ plaintext);
encryForm.SetText(“轮密钥:“ cipherkey);
plaintext = AddRoundKey(plaintext cipherkey);
encryForm.SetText(“InvAddRoundKey:“ plaintext);
encryForm.Set();
}
for (int h = 0; h < 16; h++)
{
cipherkey[h] = key[0 h];
}
for (int h = 0; h < plaintext.Length; h++)
{
plaintext[h] = SubBytes.GetByteSub(plaintext[h]);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4592 2009-10-26 18:38 AES中文\AES\AES.csproj
文件 14458 2009-10-26 18:38 AES中文\AES\AES.ico
文件 98304 2009-12-19 19:41 AES中文\AES\bin\Debug\AES.exe
文件 108032 2009-12-19 19:41 AES中文\AES\bin\Debug\AES.pdb
....... 5632 2009-10-26 18:38 AES中文\AES\bin\Debug\AES.vshost.exe
文件 516234 2009-10-26 18:38 AES中文\AES\bin\Debug\IrisSkin2.DLL
文件 15899 2009-10-26 18:38 AES中文\AES\bin\Debug\MP10.ssk
文件 4655 2009-10-26 18:38 AES中文\AES\Decryption.cs
文件 4080 2009-10-27 14:57 AES中文\AES\Encryption.cs
文件 1307 2009-10-26 18:38 AES中文\AES\EncryptionForm.cs
文件 2992 2009-10-26 18:38 AES中文\AES\EncryptionForm.Designer.cs
文件 27800 2009-10-26 18:38 AES中文\AES\EncryptionForm.resx
文件 2674 2009-10-27 14:59 AES中文\AES\KeyExpansion.cs
文件 1341 2009-10-26 18:38 AES中文\AES\KeyExpansionForm.cs
文件 2934 2009-10-26 18:38 AES中文\AES\KeyExpansionForm.Designer.cs
文件 27800 2009-10-26 18:38 AES中文\AES\KeyExpansionForm.resx
文件 11007 2009-12-19 19:41 AES中文\AES\MainForm.cs
文件 19629 2009-12-19 19:41 AES中文\AES\MainForm.Designer.cs
文件 28198 2009-12-19 19:41 AES中文\AES\MainForm.resx
文件 6164 2009-10-26 18:38 AES中文\AES\MixColumn.cs
文件 2808 2009-12-19 19:41 AES中文\AES\obj\AES.csproj.FileListAbsolute.txt
文件 1039 2009-12-19 19:41 AES中文\AES\obj\Debug\AES.csproj.GenerateResource.Cache
文件 15024 2009-10-26 18:38 AES中文\AES\obj\Debug\AES.EncryptionForm.resources
文件 98304 2009-12-19 19:41 AES中文\AES\obj\Debug\AES.exe
文件 15024 2009-10-26 18:38 AES中文\AES\obj\Debug\AES.KeyExpansionForm.resources
文件 15024 2009-12-19 19:41 AES中文\AES\obj\Debug\AES.MainForm.resources
文件 108032 2009-12-19 19:41 AES中文\AES\obj\Debug\AES.pdb
文件 180 2009-10-26 19:14 AES中文\AES\obj\Debug\AES.Properties.Resources.resources
文件 9842 2009-10-26 19:14 AES中文\AES\obj\Debug\ResolveAssemblyReference.cache
文件 465 2009-10-26 18:38 AES中文\AES\Program.cs
............此处省略23个文件信息
- 上一篇:RDLC动态生成官方
- 下一篇:C#五子棋源代码wuziqi
相关资源
- C#五子棋源代码wuziqi
- RDLC动态生成官方
- C# HttpHelper.cs
- 教务管理系统asp.net+c#+sql server2005
- 用c#编写的温度采集上位机程序
- C#中GDI+实现简单二维矢量图编辑器教
- C#简易图片编辑器 vs2010
- c#datagridview小票打印单据存储
- C# 程序自动远程更新
- C#单链表图形界面
- KNN算法C#例程
- C#调用matlab 源代码 csdn
- C#WPF 右键菜单 显示 事件触发 测试
- SevenZipSharp.dll和7z.dll
- C# Json转换DataTable源文件
- C# 动态链接机制 插件平台AppDomain对
- 利用C#打开EXCEL并将数据更新保
- C# 异步Socket 多人聊天室完整源码
- C#中读取Excel表格数据
- Winform 画多边形
- 中兴华为C#编码规范
- C# winform Socket 即时通讯
- C#textbox下拉提示 textbox智能提示 te
- C#连接oracle数据库增删改查
- 基于GPRS的远程通讯C#程序SOCKET部分带
- C# winform 单击与双击事件同时存在
- c#+vs2005的局域网抢答器
- 留言板C# 窗口版和网页版
- C#:ARGB与16进制颜色显示与转换
- c#调用winapi实现WinForm中嵌入EXE程序
评论
共有 条评论