mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui-library.git
synced 2026-03-21 16:39:29 +00:00
6 lines
124 B
JavaScript
6 lines
124 B
JavaScript
const nodeCrypto = require('crypto');
|
|
|
|
window.crypto = {
|
|
getRandomValues: buffer => nodeCrypto.randomFillSync(buffer),
|
|
};
|