主頁 > 知識庫 > c#加密類使用方法示例

c#加密類使用方法示例

熱門標簽:人工智能 百度AI接口 電銷業(yè)務 國美全國運營中心 科大訊飛語音識別系統(tǒng) 電商新玩法 客戶服務 網(wǎng)站排名優(yōu)化
復制代碼 代碼如下:

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#哈希算法的實現(xiàn)方法及思路
  • C#中哈希表(Hashtable)的介紹及簡單用法
  • C#自定義RSA加密解密及RSA簽名和驗證類實例
  • C#加密解密類實例程序
  • C#簡單的加密類實例
  • C#獲取哈希加密生成隨機安全碼的類實例

標簽:攀枝花 益陽 咸寧 拉薩 廈門 POS機 南平 棗莊

巨人網(wǎng)絡通訊聲明:本文標題《c#加密類使用方法示例》,本文關鍵詞  ;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266