ASP.NET中有哪些加密解密算法?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
創(chuàng)新互聯(lián)公司是專(zhuān)業(yè)的云城網(wǎng)站建設(shè)公司,云城接單;提供網(wǎng)站制作、成都做網(wǎng)站,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行云城網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!ASP.NET 是開(kāi)源,跨平臺(tái),高性能,輕量級(jí)的 Web 應(yīng)用構(gòu)建框架,常用于通過(guò) HTML、CSS、JavaScript 以及服務(wù)器腳本來(lái)構(gòu)建網(wǎng)頁(yè)和網(wǎng)站。
#region DES加密解密 ////// DES加密 /// /// 待加密字串 /// 32位Key值 ///加密后的字符串 public string DESEncrypt(string strSource) { return DESEncrypt(strSource, DESKey); } public string DESEncrypt(string strSource, byte[] key) { SymmetricAlgorithm sa = Rijndael.Create(); sa.Key = key; sa.Mode = CipherMode.ECB; sa.Padding = PaddingMode.Zeros; MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, sa.CreateEncryptor(), CryptoStreamMode.Write); byte[] byt = Encoding.Unicode.GetBytes(strSource); cs.Write(byt, 0, byt.Length); cs.FlushFinalBlock(); cs.Close(); return Convert.ToBase64String(ms.ToArray()); } ////// DES解密 /// /// 待解密的字串 /// 32位Key值 ///解密后的字符串 public string DESDecrypt(string strSource) { return DESDecrypt(strSource, DESKey); } public string DESDecrypt(string strSource, byte[] key) { SymmetricAlgorithm sa = Rijndael.Create(); sa.Key = key; sa.Mode = CipherMode.ECB; sa.Padding = PaddingMode.Zeros; ICryptoTransform ct = sa.CreateDecryptor(); byte[] byt = Convert.FromBase64String(strSource); MemoryStream ms = new MemoryStream(byt); CryptoStream cs = new CryptoStream(ms, ct, CryptoStreamMode.Read); StreamReader sr = new StreamReader(cs, Encoding.Unicode); return sr.ReadToEnd(); } #endregion #region 一個(gè)用hash實(shí)現(xiàn)的加密解密方法 ////// 加密 /// /// ///public static string EncryptStrByHash(string src) { if (src.Length == 0) { return ""; } byte[] HaKey = System.Text.Encoding.ASCII.GetBytes((src + "Test").ToCharArray()); byte[] HaData = new byte[20]; HMACSHA1 Hmac = new HMACSHA1(HaKey); CryptoStream cs = new CryptoStream(Stream.Null, Hmac, CryptoStreamMode.Write); try { cs.Write(HaData, 0, HaData.Length); } finally { cs.Close(); } string HaResult = System.Convert.ToBase64String(Hmac.Hash).Substring(0, 16); byte[] RiKey = System.Text.Encoding.ASCII.GetBytes(HaResult.ToCharArray()); byte[] RiDataBuf = System.Text.Encoding.ASCII.GetBytes(src.ToCharArray()); byte[] EncodedBytes = { }; MemoryStream ms = new MemoryStream(); RijndaelManaged rv = new RijndaelManaged(); cs = new CryptoStream(ms, rv.CreateEncryptor(RiKey, RiKey), CryptoStreamMode.Write); try { cs.Write(RiDataBuf, 0, RiDataBuf.Length); cs.FlushFinalBlock(); EncodedBytes = ms.ToArray(); } finally { ms.Close(); cs.Close(); } return HaResult + System.Convert.ToBase64String(EncodedBytes); } /// /// 解密 /// /// ///public static string DecrypStrByHash(string src) { if (src.Length < 40) return ""; byte[] SrcBytes = System.Convert.FromBase64String(src.Substring(16)); byte[] RiKey = System.Text.Encoding.ASCII.GetBytes(src.Substring(0, 16).ToCharArray()); byte[] InitialText = new byte[SrcBytes.Length]; RijndaelManaged rv = new RijndaelManaged(); MemoryStream ms = new MemoryStream(SrcBytes); CryptoStream cs = new CryptoStream(ms, rv.CreateDecryptor(RiKey, RiKey), CryptoStreamMode.Read); try { cs.Read(InitialText, 0, InitialText.Length); } finally { ms.Close(); cs.Close(); } System.Text.StringBuilder Result = new System.Text.StringBuilder(); for (int i = 0; i < InitialText.Length; ++i) if (InitialText[i] > 0) Result.Append((char)InitialText[i]); return Result.ToString(); } /// /// 對(duì)加密后的密文重新編碼,如果密文長(zhǎng)>16,則去掉前16個(gè)字符,如果長(zhǎng)度小于16,返回空字符串 /// /// ///public string ReEncryptStrByHash(string s) { string e = Encrypt.EncryptStrByHash(s); return ((e.Length > 16) ? e.Substring(16) : ""); } #endregion #region Md5加密,生成16位或32位,生成的密文都是大寫(xiě) public static string Md5To16(string str) { MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider(); string t2 = BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(str)), 4, 8); t2 = t2.Replace("-", ""); return t2; } //// /// MD5 32位加密 /// /// ///public static string Md5To32(string str) { string pwd = ""; MD5 md5 = MD5.Create(); byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(str)); for (int i = 0; i < s.Length; i++) { pwd = pwd + s[i].ToString("X"); } return pwd; } #endregion #region 3DES加密解密 public string Encrypt3DES(string str) { //密鑰 string sKey = "wyw308"; // //矢量,可為空 string sIV = "scf521"; // //構(gòu)造對(duì)稱(chēng)算法 SymmetricAlgorithm mCSP = new TripleDESCryptoServiceProvider(); ICryptoTransform ct; MemoryStream ms; CryptoStream cs; byte[] byt; mCSP.Key = Convert.FromBase64String(sKey); mCSP.IV = Convert.FromBase64String(sIV); mCSP.Mode = System.Security.Cryptography.CipherMode.ECB; mCSP.Padding = System.Security.Cryptography.PaddingMode.PKCS7; ct = mCSP.CreateEncryptor(mCSP.Key, mCSP.IV); byt = Encoding.UTF8.GetBytes(str); ms = new MemoryStream(); cs = new CryptoStream(ms, ct, CryptoStreamMode.Write); cs.Write(byt, 0, byt.Length); cs.FlushFinalBlock(); cs.Close(); return Convert.ToBase64String(ms.ToArray()); } /// /// 帶指定密鑰和矢量的3DES加密 /// /// /// /// ///public string Encrypt3DES(string str, string sKey, string sIV) { SymmetricAlgorithm mCSP = new TripleDESCryptoServiceProvider(); ICryptoTransform ct; MemoryStream ms; CryptoStream cs; byte[] byt; mCSP.Key = Convert.FromBase64String(sKey); mCSP.IV = Convert.FromBase64String(sIV); mCSP.Mode = System.Security.Cryptography.CipherMode.ECB; mCSP.Padding = System.Security.Cryptography.PaddingMode.PKCS7; ct = mCSP.CreateEncryptor(mCSP.Key, mCSP.IV); byt = Encoding.UTF8.GetBytes(str); ms = new MemoryStream(); cs = new CryptoStream(ms, ct, CryptoStreamMode.Write); cs.Write(byt, 0, byt.Length); cs.FlushFinalBlock(); cs.Close(); return Convert.ToBase64String(ms.ToArray()); } //解密 public string Decrypt3DES(string Value) { string sKey = "wyw308"; string sIV = "scf521"; SymmetricAlgorithm mCSP = new TripleDESCryptoServiceProvider(); ICryptoTransform ct; MemoryStream ms; CryptoStream cs; byte[] byt; mCSP.Key = Convert.FromBase64String(sKey); mCSP.IV = Convert.FromBase64String(sIV); mCSP.Mode = System.Security.Cryptography.CipherMode.ECB; mCSP.Padding = System.Security.Cryptography.PaddingMode.PKCS7; ct = mCSP.CreateDecryptor(mCSP.Key, mCSP.IV); byt = Convert.FromBase64String(Value); ms = new MemoryStream(); cs = new CryptoStream(ms, ct, CryptoStreamMode.Write); cs.Write(byt, 0, byt.Length); cs.FlushFinalBlock(); cs.Close(); return Encoding.UTF8.GetString(ms.ToArray()); } /// /// 帶指定密鑰和矢量的3DES解密 /// /// /// /// ///public string Decrypt3DES(string str, string sKey, string sIV) { SymmetricAlgorithm mCSP = new TripleDESCryptoServiceProvider(); ICryptoTransform ct; MemoryStream ms; CryptoStream cs; byte[] byt; mCSP.Key = Convert.FromBase64String(sKey); mCSP.IV = Convert.FromBase64String(sIV); mCSP.Mode = System.Security.Cryptography.CipherMode.ECB; mCSP.Padding = System.Security.Cryptography.PaddingMode.PKCS7; ct = mCSP.CreateDecryptor(mCSP.Key, mCSP.IV); byt = Convert.FromBase64String(str); ms = new MemoryStream(); cs = new CryptoStream(ms, ct, CryptoStreamMode.Write); cs.Write(byt, 0, byt.Length); cs.FlushFinalBlock(); cs.Close(); return Encoding.UTF8.GetString(ms.ToArray()); } #endregion #region 一個(gè)簡(jiǎn)單的加密解密方法,只支持英文 public static string EnCryptEnStr(string str) //倒序加1加密 { byte[] by = new byte[str.Length]; for (int i = 0; i <= str.Length - 1; i++) { by[i] = (byte)((byte)str[i] + 1); } str = ""; for (int i = by.Length - 1; i >= 0; i--) { str += ((char)by[i]).ToString(); } return str; } public static string DeCryptEnStr(string str) //順序減1解碼 { byte[] by = new byte[str.Length]; for (int i = 0; i <= str.Length - 1; i++) { by[i] = (byte)((byte)str[i] - 1); } str = ""; for (int i = by.Length - 1; i >= 0; i--) { str += ((char)by[i]).ToString(); } return str; } #endregion #region 一個(gè)簡(jiǎn)單的加密解密方法,在上一個(gè)的基礎(chǔ)上支持中文 public static string EnCryptCnStr(string str) { string htext = ""; // blank text for (int i = 0; i < str.Length; i++) { htext = htext + (char)(str[i] + 10 - 1 * 2); } return htext; } public static string DeCryptCnStr(string str) { string dtext = ""; for (int i = 0; i < str.Length; i++) { dtext = dtext + (char)(str[i] - 10 + 1 * 2); } return dtext; } #endregion #region Url地址編碼解碼 /// /// 編碼Url地址 /// /// ///public static string UrlEncode(string url) { byte[] mByte = null; mByte = System.Text.Encoding.GetEncoding("GB2312").GetBytes(url); return System.Web.HttpUtility.UrlEncode(mByte); } /// /// 解碼Url地址 /// /// ///public static string UrlDecode(string url) { return HttpUtility.UrlDecode(url, System.Text.Encoding.GetEncoding("GB2312")); } #endregion
看完上述內(nèi)容,你們掌握ASP.NET中有哪些加密解密算法的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!