C#對稱加密(AES加密)每次生成的結果都不同的實現(xiàn)思路和代碼實例
更新時間:2015年07月04日 09:22:45 投稿:junjie
這篇文章主要介紹了C#對稱加密(AES加密)每次生成的結果都不同的實現(xiàn)思路和代碼實例,每次解密時從密文中截取前16位,這就是實現(xiàn)隨機的奧秘,本文同時給出了實現(xiàn)代碼,需要的朋友可以參考下
思路:使用隨機向量,把隨機向量放入密文中,每次解密時從密文中截取前16位,其實就是我們之前加密的隨機向量。
代碼:
public static string Encrypt(string plainText, string AESKey) { RijndaelManaged rijndaelCipher = new RijndaelManaged(); byte[] inputByteArray = Encoding.UTF8.GetBytes(plainText);//得到需要加密的字節(jié)數(shù)組 rijndaelCipher.Key = Convert.FromBase64String(AESKey);//加解密雙方約定好密鑰:AESKey rijndaelCipher.GenerateIV(); byte[] keyIv = rijndaelCipher.IV; byte[] cipherBytes = null; using (MemoryStream ms = new MemoryStream()) { using (CryptoStream cs = new CryptoStream(ms, rijndaelCipher.CreateEncryptor(), CryptoStreamMode.Write)) { cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); cipherBytes = ms.ToArray();//得到加密后的字節(jié)數(shù)組 cs.Close(); ms.Close(); } } var allEncrypt = new byte[keyIv.Length + cipherBytes.Length]; Buffer.BlockCopy(keyIv, 0, allEncrypt, 0, keyIv.Length); Buffer.BlockCopy(cipherBytes, 0, allEncrypt, keyIv.Length * sizeof(byte), cipherBytes.Length); return Convert.ToBase64String(allEncrypt); } public static string Decrypt(string showText, string AESKey) { string result = string.Empty; try { byte[] cipherText = Convert.FromBase64String(showText); int length = cipherText.Length; SymmetricAlgorithm rijndaelCipher = Rijndael.Create(); rijndaelCipher.Key = Convert.FromBase64String(AESKey);//加解密雙方約定好的密鑰 byte[] iv = new byte[16]; Buffer.BlockCopy(cipherText, 0, iv, 0, 16); rijndaelCipher.IV = iv; byte[] decryptBytes = new byte[length - 16]; byte[] passwdText = new byte[length - 16]; Buffer.BlockCopy(cipherText, 16, passwdText, 0, length - 16); using (MemoryStream ms = new MemoryStream(passwdText)) { using (CryptoStream cs = new CryptoStream(ms, rijndaelCipher.CreateDecryptor(), CryptoStreamMode.Read)) { cs.Read(decryptBytes, 0, decryptBytes.Length); cs.Close(); ms.Close(); } } result = Encoding.UTF8.GetString(decryptBytes).Replace("\0", ""); ///將字符串后尾的'\0'去掉 } catch { } return result; }
調用:
string jiaMi = MyAESTools.Encrypt(textBox1.Text, "abcdefgh12345678abcdefgh12345678"); string jieMi = MyAESTools.Decrypt(textBox3.Text, "abcdefgh12345678abcdefgh12345678");
相關文章
C# FileStream實現(xiàn)多線程斷點續(xù)傳
這篇文章主要為大家詳細介紹了C# FileStream實現(xiàn)多線程斷點續(xù)傳,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-03-03