zoukankan      html  css  js  c++  java
  • 【转】给自己的软件制作注册码

    转自:http://www.csharpwin.com/csharpspace/2337.shtml

    还有就是:http://msdn.microsoft.com/zh-cn/library/system.componentmodel.licenseprovider(v=VS.80).aspx

    从今天起, 您开发的的任何软件如果您愿意都可以为之加密 --为您的软件制作一款注册机!

        当您看完这篇文章时, 您就可以理直气壮的告诉您的用户 : "喂, 想用我的软件是吧 ? 掏钱!".

        呵呵, 这当然只是给自己壮胆的话, 现在连万能注册机都有了, 人家还怕啥 ? 不过只要您想想微软, 人家再牛B的加密技术都会被国人"鄙视"? 但人家不也在中国大把大把的捞钱吗? 

    OK, 不扯了, 我们进入正题.

    同一般的软件注册一样, 我们这里的注册是这样进行的:

    1. 首先根据用户的硬件信息生成24位的机器码  
          -- 相当于种子,用于生成随机数
        2. 采用注册机根据特征数字生成一个24位注册码
          -- 相当于伪随机数生成器, 输出长度自己定, 最后用一个格式化函数,将随机数映射到ASCII字符集合
        3. 用户输入注册码注册成功

    假设客户很喜欢您的软件, 也假设他没有破解, 他需要通过以下方式向您取得注册码:

    (1).如果他能上网, 他需要把机器码用Email发给您;

    (2).如果他不能上网, 他可以把机器码用手机短信的方式发给您.

    (3).如果他没有手机, 他可以带着机器码然后坐火车到您的办公室想您要一个注册码.

       --第3条只是为了让您看帖子的时候别太枯燥了, 抱歉.

     

    现在, 您拿到了客户的机器码后, 如果您同时也收到了他汇的钱,  呵呵, 好像给软件加密就是为了要钱吧? 那么您就可以用客户的机器码生成一个唯一的注册码再用同样的方式给用户, 最后, 用户输入注册码即可!

     

    需要强调的是客户机器的硬件信息获取方式是有很多种选择的. 这里我们选择最放心的两个硬件: CUP的序列号和硬盘的卷标号. 好了, 下面您就可以一步一步制作一款软件注册机了. 

     

     

    步骤一: 获得CUP序列号和硬盘序列号的实现代码如下:

     public string getCpu()
            {
                string strCpu = null;
                ManagementClass myCpu = new ManagementClass("win32_Processor");
                ManagementObjectCollection myCpuConnection = myCpu.GetInstances();
                foreach( ManagementObject myObject in myCpuConnection)
                {
                    strCpu = myObject.Properties["Processorid"].Value.ToString();
                    break;
                }
                return strCpu;
            }
    

     

    public string GetDiskVolumeSerialNumber()
            {
                ManagementClass mc = 
                     new ManagementClass("Win32_NetworkAdapterConfiguration");
                ManagementObject disk = 
                     new ManagementObject("win32_logicaldisk.deviceid=\"d:\"");
                disk.Get();
                return disk.GetPropertyValue("VolumeSerialNumber").ToString();
            }
    

     

     

    步骤二: 收集硬件信息生成机器码, 代码如下: 

     private void button1_Click(object sender, EventArgs e)
            {
                label2.Text = getCpu() + GetDiskVolumeSerialNumber();//获得24位Cpu和硬盘序列号
                string[] strid = new string[24];//
                for (int i = 0; i < 24; i++)//把字符赋给数组
                {
                    strid[i] = label2.Text.Substring(i, 1);
                }
                label2.Text = "";
                Random rdid = new Random();
                for (int i = 0; i < 24; i++)//从数组随机抽取24个字符组成新的字符生成机器三
                {
                    label2.Text += strid[rdid.Next(0, 24)];
                }
            }
    

     

    步骤三: 使用机器码生成软件注册码, 代码如下:

    public int[] intCode = new int[127];//用于存密钥
            public void setIntCode()//给数组赋值个小于10的随机数
            {
                Random ra = new Random();
                for (int i = 1; i < intCode.Length;i++ )
                {
                    intCode[i] = ra.Next(0, 9);
                }
            }
            public int[] intNumber = new int[25];//用于存机器码的Ascii值
            public char[] Charcode = new char[25];//存储机器码字
        
            //生成注册码
            private void button2_Click(object sender, EventArgs e)
            {
                if (label2.Text != "")
                {
                    //把机器码存入数组中
                    setIntCode();//初始化127位数组
                    for (int i = 1; i < Charcode.Length; i++)//把机器码存入数组中
                    {
                        Charcode[i] = Convert.ToChar(label2.Text.Substring(i - 1, 1));
                    }//
                    for (int j = 1; j < intNumber.Length; j++)//把字符的ASCII值存入一个整数组中。
                      {
                        intNumber[j] = 
                           intCode[Convert.ToInt32(Charcode[j])] + 
                           Convert.ToInt32(Charcode[j]);
    
                    }
                    string strAsciiName = null;//用于存储机器码
                    for (int j = 1; j < intNumber.Length; j++)
                    {
                        //MessageBox.Show((Convert.ToChar(intNumber[j])).ToString());
                        //判断字符ASCII值是否0-9之间
    
                        if (intNumber[j] >= 48 && intNumber[j] <= 57)
                        {
                            strAsciiName += Convert.ToChar(intNumber[j]).ToString();
                        }
                        //判断字符ASCII值是否A-Z之间
    
                        else if (intNumber[j] >= 65 && intNumber[j] <= 90
                        {
                            
    
                            strAsciiName += Convert.ToChar(intNumber[j]).ToString());
                        }
                        //判断字符ASCII值是否a-z之间
    
    
                        else if (intNumber[j] >= 97 && intNumber[j] <= 122)                    
                      {
                            strAsciiName += Convert.ToChar(intNumber[j]).ToString();
                        }
                        else//判断字符ASCII值不在以上范围内
                        {
                            if (intNumber[j] > 122)//判断字符ASCII值是否大于z
                            { 
                               strAsciiName += Convert.ToChar(intNumber[j] - 10).ToString(); 
                            }
                            else
                            {
                                strAsciiName += Convert.ToChar(intNumber[j] - 9).ToString();
                            }
    
                        }
                        label3.Text = strAsciiName;//得到注册码
    
                    }
                }
                else
                { MessageBox.Show("请选生成机器码","注册提示"); }
            }
    

     

     

        步骤四: 用户输入注册码注册软件, 演示代码如下:

    private void btnRegist_Click(object sender, EventArgs e)
            {
                if (label3.Text != "")
                {
                    if (textBox1.Text.TrimEnd().Equals(label3.Text.TrimEnd()))
                    {
    
                        Microsoft.Win32.RegistryKey retkey = 
                             Microsoft.Win32.Registry.CurrentUser.
                             OpenSubKey("software", true).CreateSubKey("ZHY").
                             CreateSubKey("ZHY.INI").
                             CreateSubKey(textBox1.Text.TrimEnd());
                        retkey.SetValue("UserName", "MySoft");
                        MessageBox.Show("注册成功");
                    }
                    else
                    {
                        MessageBox.Show("注册码输入错误");
                    
                    }
                
                }
                else { MessageBox.Show("请生成注册码","注册提示"); }
             
            }
    

  • 相关阅读:
    新书推荐——《How We Test Software at Microsoft》
    [ZZ]采访与书摘:使用C#进行基于模型的软件测试和分析
    Adding Different Types of Data Sources to a Web Test
    [ZZ]为什么传统的自动化测试工具会扼杀敏捷?
    很久没有这么High了
    留图以纪念这次地震
    white——Automate windows applications
    WatiN、Wax、WatiN Test Recorder开源自动化测试框架
    绝版的T61普屏
    有感于公司搬家
  • 原文地址:https://www.cnblogs.com/sofire/p/1812287.html
Copyright © 2011-2022 走看看