c#加密類使用方法樣本

來源:互聯網
上載者:User
c#加密類使用方法樣本

using System;using System.IO;using System.Text;using System.Security.Cryptography;using System.Web;namespace Encryption.App_Code{    /// <summary>    /// 加密碼類    /// </summary>    public class Encryption    {        /// <summary>        /// 加密        /// </summary>        /// <param name="inputString"></param>        /// <returns></returns>        public static string DesEncrypt(string inputString)        {            return DesEncrypt(inputString, Key);        }        /// <summary>        /// 解密        /// </summary>        /// <param name="inputString"></param>        /// <returns></returns>        public static string DesDecrypt(string inputString)        {            return DesDecrypt(inputString, Key);        }        /// <summary>        /// 密匙        /// </summary>        private static string Key        {            get            {                return "hongye10";            }        }        /// <summary>        /// 加密字串        /// 注意:密鑰必須為8位        /// </summary>        /// <param name="strText">字串</param>        /// <param name="encryptKey">密鑰</param>        /// <param name="encryptKey">返回加密後的字串</param>        public static string DesEncrypt(string inputString, string encryptKey)        {            byte[] byKey = null;            byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };            try            {                byKey = System.Text.Encoding.UTF8.GetBytes(encryptKey.Substring(0, 8));                DESCryptoServiceProvider des = new DESCryptoServiceProvider();                byte[] inputByteArray = Encoding.UTF8.GetBytes(inputString);                MemoryStream ms = new MemoryStream();                CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(byKey, IV), CryptoStreamMode.Write);                cs.Write(inputByteArray, 0, inputByteArray.Length);                cs.FlushFinalBlock();                return Convert.ToBase64String(ms.ToArray());            }            catch (System.Exception error)            {                //return error.Message;                return null;            }        }        /// <summary>        /// 解密字串        /// </summary>        /// <param name="this.inputString">加了密的字串</param>        /// <param name="decryptKey">密鑰</param>        /// <param name="decryptKey">返回解密後的字串</param>        public static string DesDecrypt(string inputString, string decryptKey)        {            byte[] byKey = null;            byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };            byte[] inputByteArray = new Byte[inputString.Length];            try            {                byKey = System.Text.Encoding.UTF8.GetBytes(decryptKey.Substring(0, 8));                DESCryptoServiceProvider des = new DESCryptoServiceProvider();                inputByteArray = Convert.FromBase64String(inputString);                MemoryStream ms = new MemoryStream();                CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(byKey, IV), CryptoStreamMode.Write);                cs.Write(inputByteArray, 0, inputByteArray.Length);                cs.FlushFinalBlock();                System.Text.Encoding encoding = new System.Text.UTF8Encoding();                return encoding.GetString(ms.ToArray());            }            catch (System.Exception error)            {                //return error.Message;                return null;            }        }    }}


以上就是c#加密類使用方法樣本的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.