密钥生成器方法



我真的觉得发这个帖子很愚蠢,但是因为我的问题没有答案,而且我还是一个初级程序员,所以我将发这个:

        //List of keys
        byte[] Key0 = { 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 }; //mode 10 = 0
        byte[] Key1 = { 1, 3, 5, 7, 9, 11, 13, 15, 17, 19 }; // i + 2
        byte[] Key2 = { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 }; // i mode 2 = 0 
        byte[] Key3 = { 66, 77, 88, 99, 111, 222, 110, 112, 114, 115 }; // mode 11 = 0
        byte[] Key4 = { 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121 }; //x^2
        byte[] Key5 = { 6,17,34,57,86,121,162,209 }; //3x^2+2x+1
        byte[] Key6 = { 77,78,79,80,81,82,83,84,85,86,87 }; // only in range
        //Add all keys to the list
        List<byte[]> oKeysList = new List<byte[]>();
        oKeysList.Add(Key0);
        oKeysList.Add(Key1);
        oKeysList.Add(Key2);
        oKeysList.Add(Key3);
        oKeysList.Add(Key4);
        oKeysList.Add(Key5);
        oKeysList.Add(Key6);
        Random oRandom = new Random();
        //Generate random key index to be used in the encryption
        int ListSelectedIndex = oRandom.Next(0, oKeysList.Count);
        byte[] GeneratedKey = oKeysList[ListSelectedIndex];
        //Generate 3 random number from the selected key and concate the key index to it
        byte[] GeneratedBytes = new byte[4];
        for (int i = 0; i < 3; i++)
        {
            GeneratedBytes[i] = GeneratedKey[oRandom.Next(0,GeneratedKey.Length)];
        }
        //Add the list of key index
        GeneratedBytes[3] = (byte)ListSelectedIndex;
        //Return the genreated bytes
        return GeneratedBytes;

正如你所看到的,我生成这个4字节数组以及从RNG密码学生成的8字节,当我想检查我的串行时,我取最后4字节并使用它们之间的数学关系,我想生成许多串行并能够检查它们是否有效。我知道这可能是一个非常老的方法,安全性很差,所以如果有人能帮助我或添加任何东西到我的代码或建议任何新的,我将非常感谢。

我不确定是否有人会在这里分析您的代码。我的建议如下:不要把软件保护做得太复杂。它不会对盗版产生重大影响,但100%会影响购买你的软件的人。让您的软件保护机制尽可能简单。

相关内容

  • 没有找到相关文章

最新更新