javascript - Generate Random 32 Bit Number in Node - Stack Overflow

What is the best way to generate a 32 bit random unsigned number in Node?Here is what I tried: var ma

What is the best way to generate a 32 bit random unsigned number in Node? Here is what I tried:

var max32 = Math.pow(2, 32) - 1
var session = Math.floor(Math.random() * max32);

I need this for a unique id.

What is the best way to generate a 32 bit random unsigned number in Node? Here is what I tried:

var max32 = Math.pow(2, 32) - 1
var session = Math.floor(Math.random() * max32);

I need this for a unique id.

Share Improve this question edited Jan 21, 2015 at 6:46 fvrghl asked Jan 21, 2015 at 6:39 fvrghlfvrghl 3,7286 gold badges30 silver badges37 bronze badges 3
  • 1 The biggest 16 bit number is 65535, so if you're getting 100,000 you've got some real issues. – Pointy Commented Jan 21, 2015 at 6:42
  • @Pointy transcribed it wrong. – fvrghl Commented Jan 21, 2015 at 6:46
  • 1 I often use Math.random()*2**32|0 for int32 and Math.random()*2**32>>>0 for uint32. – bryc Commented May 22, 2022 at 10:54
Add a ment  | 

1 Answer 1

Reset to default 12

You could use crypto.randomBytes() like:

var crypto = require('crypto');
function randU32Sync() {
  return crypto.randomBytes(4).readUInt32BE(0, true);
}
// or
function randU32(cb) {
  return crypto.randomBytes(4, function(err, buf) {
    if (err) return cb(err);
    cb(null, buf.readUInt32BE(0, true));
  }
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743634867a4481979.html

相关推荐

  • javascript - Generate Random 32 Bit Number in Node - Stack Overflow

    What is the best way to generate a 32 bit random unsigned number in Node?Here is what I tried: var ma

    18小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信