Skip to content

Commit 23a25af

Browse files
fix(utils): replace getRandomValues with crypto module (#6788)
1 parent 32c7bcc commit 23a25af

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

lib/utils.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

33
import bind from './helpers/bind.js';
4+
import crypto from 'crypto';
45

56
// utils is a library of generic helper functions non-specific to axios
67

@@ -615,8 +616,10 @@ const ALPHABET = {
615616
const generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
616617
let str = '';
617618
const {length} = alphabet;
618-
while (size--) {
619-
str += alphabet[Math.random() * length|0]
619+
const randomValues = new Uint32Array(size);
620+
crypto.randomFillSync(randomValues);
621+
for (let i = 0; i < size; i++) {
622+
str += alphabet[randomValues[i] % length];
620623
}
621624

622625
return str;

test/unit/utils/utils.js

+20
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,24 @@ describe('utils', function (){
8080
assert.strictEqual(JSON.stringify(jsonObject), JSON.stringify({x: 1, y:2, obj: {ok: 1}}))
8181
});
8282
});
83+
84+
describe('generateString', function () {
85+
it('should generate a string of the specified length using the default alphabet', function () {
86+
const size = 10;
87+
const str = utils.generateString(size);
88+
89+
assert.strictEqual(str.length, size);
90+
});
91+
92+
it('should generate a string using only characters from the default alphabet', function () {
93+
const size = 10;
94+
const alphabet = utils.ALPHABET.ALPHA_DIGIT;
95+
96+
const str = utils.generateString(size, alphabet);
97+
98+
for (let char of str) {
99+
assert.ok(alphabet.includes(char), `Character ${char} is not in the alphabet`);
100+
}
101+
});
102+
});
83103
});

0 commit comments

Comments
 (0)