256位AES加密算法背后的秘密
在这个五彩缤纷的网络时代,密码是普遍存在的,但是,密码的安全性问题是人们需要顾虑的,所有,就被一些所谓的大神推出AES加密,256位AES加密算法,被加密的明文,
如果没有加密的密码存放在数据库中,被黑客窃取就很危险啦。被加密过后的密码只是一堆字符串,虽说加密是可逆的,破解起来也有一定的难道,最起码安全性提高不少。
首先
Byte[] bKey = new Byte[32];
Array.Copy(Encoding.UTF8.GetBytes(Key.PadRight(bKey.Length)), bKey, bKey.Length);
Byte[] bVector = new Byte[16];
Array.Copy(Encoding.UTF8.GetBytes(Vector.PadRight(bVector.Length)), bVector, bVector.Length);
加密后的密文
Byte[] Cryptograph = null;
Rijndael Aes = Rijndael.Create();
然后就要开辟一块内存流,存储密文,把内存流对象包装成加密流对象
using (CryptoStream Encryptor = new CryptoStream(Memory,
Aes.CreateEncryptor(bKey, bVector),
CryptoStreamMode.Write))
接着就是明文数据写入加密流
Encryptor.Write(Data, 0, Data.Length);
Encryptor.FlushFinalBlock();
Cryptograph = Memory.ToArray();
下面是加密的明文存储区代码:
using (MemoryStream originalMemory = new MemoryStream())
Byte[] Buffer = new Byte[1024];
Int32 readBytes = 0;
string encrypt = null;
Rijndael aes = Rijndael.Create();
最后,明文字符串,加密失败时是否返回 null,false 返回 String.Empty
byte[] bKey = Encoding.UTF8.GetBytes(Key);
byte[] bIV = Encoding.UTF8.GetBytes(IV);
byte[] byteArray = Convert.FromBase64String(encryptStr);
string decrypt = null;
Rijndael aes = Rijndael.Create();
加密肯定也有解密,解密跟加密是差不多滴,这就是AES的可逆性。
256-AES key
byte[] keyArray = UTF8Encoding.UTF8.GetBytes(Key);
byte[] toEncryptArray = UTF8Encoding.UTF8.GetBytes(toEncrypt);
RijndaelManaged rDel = new RijndaelManaged();
rDel.Key = keyArray;
rDel.Mode = CipherMode.ECB;
rDel.Padding = PaddingMode.PKCS7;
ICryptoTransform cTransform = rDel.CreateEncryptor();
byte[] resultArray = cTransform.TransformFinalBlock(toEncryptArray, 0, toEncryptArray.Length);
ICryptoTransform cTransform = rDel.CreateDecryptor();
byte[] resultArray = cTransform.TransformFinalBlock(toEncryptArray, 0, toEncryptArray.Length);
return UTF8Encoding.UTF8.GetString(resultArray);
最后,密码加密完成啦,是不是很简单呢?你还在等什么?
发布评论