Loading
0

c#加密产生随机数方法,加密生成器随机生成
被墙跳转TG:@qianhenetwork QQ 851617266

301免备案跳转微信公众号
腾讯云服务器大促销。
华为服务器
c#加密产生随机数方法,加密生成器随机生成

        //产生随机数
        public int GetRandomCode(int min, int max)
        {
            Random rnd = new Random(GetRandomSeed());//这里是关键,传入一个seed参数即可保证生成的随机数不同     
            return rnd.Next(min, max);
        }
        // 加密随机数生成器 生成随机种子
        static int GetRandomSeed()
        {
            byte[] bytes = new byte[4];
            System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider();
            rng.GetBytes(bytes);
            return BitConverter.ToInt32(bytes, 0);
        }


 

301免备案跳转微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://www.zfcdn.xyz/showinfo-23-36055-0.html
亲爱的:被墙域名跳转TG:@qianhenetwork QQ:851617266,可否收藏+评论+分享呢?
上一篇:c#文件夹以及子文件夹遍历
下一篇:c#设置程序执行暂停及延时方法