栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

C#生成注册码的实例代码

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C#生成注册码的实例代码

复制代码 代码如下:
string t = DateTime.Now.Ticks.ToString();

            t = DESKey.DESEncrypt(t, DESKey.DesKeyStr);
            string[] strid = new string[t.Length];//
            for (int i = 0; i < t.Length; i++)//把字符赋给数组
            {
                strid[i] = t.Substring(i, 1);
            }
            string s = "";
            Random rdid = new Random();
            for (int i = 0; i < 9; i++)//从数组随机抽取字符组成新的字符生成机器三
            {
                s += strid[rdid.Next(0, strid.Length)];
            }

复制代码 代码如下:
class DESKey
    {
        public const string DesKeyStr = "BLUE2013";

        #region DES加密
        ///


        /// DES加密
        ///

        /// 需要加密的字符串
        /// 加密后的字符串
        public static string DESEncrypt(string pToEncrypt, string DesKeyStr)
        {
            try
            {
                DESCryptoServiceProvider des = new DESCryptoServiceProvider();
                byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt);
                des.Key = ASCIIEncoding.ASCII.GetBytes(DesKeyStr);
                des.IV = ASCIIEncoding.ASCII.GetBytes(DesKeyStr);
                MemoryStream ms = new MemoryStream();
                CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write);
                cs.Write(inputByteArray, 0, inputByteArray.Length);
                cs.FlushFinalBlock();
                StringBuilder ret = new StringBuilder();
                foreach (byte b in ms.ToArray())
                {
                    ret.AppendFormat("{0:X2}", b);
                }
                ret.ToString();
                return ret.ToString();
            }
            catch
            {

                return "";
            }


        }
        #endregion

        #region DES解密
        ///


        /// DES解密
        ///

        /// 加密后的字符串
        /// 解密后的字符串
        public static string DESDecrypt(string pToDecrypt, string DesKeyStr)
        {
            try
            {
                DESCryptoServiceProvider des = new DESCryptoServiceProvider();

                byte[] inputByteArray = new byte[pToDecrypt.Length / 2];
                for (int x = 0; x < pToDecrypt.Length / 2; x++)
                {
                    int i = (Convert.ToInt32(pToDecrypt.Substring(x * 2, 2), 16));
                    inputByteArray[x] = (byte)i;
                }

                des.Key = ASCIIEncoding.ASCII.GetBytes(DesKeyStr);
                des.IV = ASCIIEncoding.ASCII.GetBytes(DesKeyStr);
                MemoryStream ms = new MemoryStream();
                CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write);
                cs.Write(inputByteArray, 0, inputByteArray.Length);
                cs.FlushFinalBlock();

                StringBuilder ret = new StringBuilder();

                return System.Text.Encoding.Default.GetString(ms.ToArray());
            }
            catch
            {

                return "";
            }
        }
        #endregion

 

    }

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/127580.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号