Node.js でセキュアランダムな16進数の文字列が欲しい時
node -e "console.log(require('crypto').randomBytes(8).toString('hex'));"
を実行する。実行結果は、
6090465a4fba7626
こんな感じで出力される。それだけ。
Go to list of users who liked
More than 5 years have passed since last update.
Node.js でセキュアランダムな16進数の文字列が欲しい時
node -e "console.log(require('crypto').randomBytes(8).toString('hex'));"
を実行する。実行結果は、
6090465a4fba7626
こんな感じで出力される。それだけ。
Register as a new user and use Qiita more conveniently
Go to list of users who liked