Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
fix: get rid of math.random in generateUUID
- Loading branch information
1 parent
e0080d9
commit 81e3c1b
Showing
2 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,17 @@ | ||
| 'use strict'; | ||
|
|
||
| const crypto = require('crypto'); | ||
|
|
||
| module.exports = require('../public/src/utils'); | ||
|
|
||
| module.exports.generateUUID = function () { | ||
| // from https://github.com/tracker1/node-uuid4/blob/master/index.js | ||
| let rnd = crypto.randomBytes(16); | ||
| /* eslint-disable no-bitwise */ | ||
| rnd[6] = (rnd[6] & 0x0f) | 0x40; | ||
| rnd[8] = (rnd[8] & 0x3f) | 0x80; | ||
| /* eslint-enable no-bitwise */ | ||
| rnd = rnd.toString('hex').match(/(.{8})(.{4})(.{4})(.{4})(.{12})/); | ||
| rnd.shift(); | ||
| return rnd.join('-'); | ||
| }; |