码迷,mamicode.com
首页 > 其他好文 > 详细

RNGCryptoServiceProvider 生成订单号

时间:2019-07-14 11:27:08      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:close   opened   isp   订单号   new   ext   system   click   operation   

先生成1~1000的随机数

技术图片
class Program
    {
        // Create a new instance of the RNGCryptoServiceProvider.  
        private static System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider();

        static void Main(string[] args)
        {
            for (int i = 0; i < 100; i++)
            {
                int a = NextRandom(1000, 1, rng);
                Console.WriteLine(string.Format("{0}{1}", DateTime.Now.ToString("yyyyMMddHHmmssfff"), a.ToString().PadLeft(4, 0)));
            }
            Console.Read();
        }
        private static int NextRandom(int numSeeds, int length, System.Security.Cryptography.RNGCryptoServiceProvider rng)
        {
            // Create a byte array to hold the random value.  
            byte[] randomNumber = new byte[length];
            // Fill the array with a random value.  
            rng.GetBytes(randomNumber);
            // Convert the byte to an uint value to make the modulus operation easier.  
            uint randomResult = 0x0;
            for (int i = 0; i < length; i++)
            {
                randomResult |= ((uint)randomNumber[i] << ((length - 1 - i) * 8));
            }
            return (int)(randomResult % numSeeds) + 1;
        }
    }
View Code

注意将RNGCryptoServiceProvider定义为循环外的静态变量。

技术图片

经测试,这样在并发不大的时候能保证订单号的唯一性。

RNGCryptoServiceProvider 生成订单号

标签:close   opened   isp   订单号   new   ext   system   click   operation   

原文地址:https://www.cnblogs.com/tylertang/p/11183303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!