乱数を生成する方法
ランダムなバイト列を作成する
const { randomBytes } = require('crypto') const randomToken = randomBytes(32).toString('hex')
参考:
Node.js でセキュアランダムな16進数の文字列が欲しい時のワンライナー – Qiita
Node.js でランダムな文字列を作成してみました | Espresso & Onigiri
crypto.randomBytes(size[, callback]) – Crypto | Node.js Documentation [Official]
How to generate a strong random hexadecimal string in Node.js | PCR’s notepad
Generate Random Hex String in NodeJS – GitHub Gist
Secure random token in Node.js – Stack Overflow
乱数を生成する
参考:
Random values in JavaScript and Node.js | Tom’s Blog
セキュアな乱数を生成する
参考:
Node.js でセキュアな乱数を生成したい! (0.0 ~ 1.0) – Qiita
How to generate random numbers in specific range using crypto.randomBytes – Stack Overflow
Converting random bytes to an integer range – how? – Stack Overflow
floating point number from crypto.randomBytes() in javascript – Stack Overflow
Math.random
参考: