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
forint32
andMath.random()*2**32>>>0
foruint32
. – bryc Commented May 22, 2022 at 10:54
1 Answer
Reset to default 12You 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
评论列表(0条)