博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Aes 加密简单例子
阅读量:6478 次
发布时间:2019-06-23

本文共 1647 字,大约阅读时间需要 5 分钟。

必须引入: using System.Security.Cryptography;

AES 算法基于排列和置换运算。排列是对数据重新进行安排,置换是将一个数据单元替换为另一个。AES 使用几种不同的方法来执行排列和置换运算。

AES 是一个迭代的、对称密钥分组的密码,它可以使用128、192 和 256 位密钥,并且用 128 位(16字节)分组加密和解密数据。与公共密钥密码使用密钥对不同,对称密钥密码使用相同的密钥加密和解密数据。通过分组密码返回的加密数据的位数与输入数据相同。迭代加密使用一个循环结构,在该循环中重复置换和替换输入数据。

 

下面直接进入代码中(解密同理为你过程,但请注意因为aes是块加密,所以在解密出块前要把最后的\0清除,可以记录加密时的长度来解密)

ExpandedBlockStart.gif
protected void btEncrypt_Click(object sender, EventArgs e)
ExpandedBlockStart.gif    
{
        
if (!string.IsNullOrEmpty(txtInput.Text))
ExpandedSubBlockStart.gif        
{
            txtInputLength.Text 
= string.Empty;
            AesManaged aesm 
= new AesManaged();
            txtKey.Text 
= string.Empty;
            
foreach (byte b in aesm.Key)
ExpandedSubBlockStart.gif            
{
                txtKey.Text 
+= string.Format("{0}\t", b.ToString());
            }
            txtKey.Text 
+= string.Format("Length:{0}", aesm.Key.Length);
            txtVI.Text 
= string.Empty;
            
foreach (byte b in aesm.IV)
ExpandedSubBlockStart.gif            
{
                txtVI.Text 
+= string.Format("{0}\t", b.ToString());
            }
            txtVI.Text 
+= string.Format("Length:{0}", aesm.IV.Length);
            
byte[] plainTextBytes = Encoding.Unicode.GetBytes(txtInput.Text);
            txtInputLength.Text 
= plainTextBytes.Length.ToString();
            
byte[] encyptedBytes;
            encyptedBytes 
= aesm.CreateEncryptor().TransformFinalBlock(plainTextBytes, 0, plainTextBytes.Length);
            txtEncrypted.Text 
= string.Empty;
            
foreach (byte b in encyptedBytes)
ExpandedSubBlockStart.gif            
{
                txtEncrypted.Text 
+= string.Format("{0}\t", b.ToString());
            }
            txtEncrypted.Text 
+= string.Format("Length:{0}", encyptedBytes.Length);
        }
    }

 

ExpandedBlockStart.gif
encyptedBytes = aesm.CreateDecryptor().TransformFinalBlock(encyptedBytes, 0, encyptedBytes .Length);
            Array.Copy(encyptedBytes, 
0, plainTextBytes, 0, plainTextBytes.Length);
            Response.Write(Encoding.Unicode.GetString(plainTextBytes));
本文转自today4king博客园博客,原文链接:http://www.cnblogs.com/jinzhao/archive/2008/10/24/1318597.html,如需转载请自行联系原作者
你可能感兴趣的文章
windows查看端口占用以及关闭相应的进程
查看>>
Swift3命名空间的实现
查看>>
本地Gradle配置方法,免去长时间的更新同步等待
查看>>
仅Firefox中链接A无法实现模拟点击以触发其默认行为
查看>>
OpenCV实现将三幅图像合并在一张图片
查看>>
博客园cnblogs chrome右键插件 开发
查看>>
[C#]C#学习笔记-接口,集合与泛型
查看>>
.Net 中的反射(序章) - Part.1 – (转载)
查看>>
Xcode 4.3 免证书(iDP)开发+真机调试
查看>>
深入理解JavaScript系列(16):闭包(Closures)
查看>>
[不懂]纯虚函数
查看>>
aino/django-stringfield
查看>>
Calendar详解
查看>>
杀人游戏 捉鬼游戏 发牌器(Android安卓手机,苹果手机,智能手机通用)
查看>>
Yii2的深入学习--行为Behavior
查看>>
SQL Server 之 事务与隔离级别实例讲解
查看>>
JavaScript之共享onload
查看>>
js获取url传递参数
查看>>
python ide
查看>>
Oracle Internals 相关站点
查看>>