vanzy-protect
Version:
Epic Obfuscator Yeahhh
15 lines (14 loc) • 445 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createRandomSeed = void 0;
const crypto = require("crypto");
const createRandomSeed = () => Buffer
.from(crypto.randomBytes(128).toString('hex') + JSON.stringify(crypto.randomBytes(64).toJSON()))
.toString('base64')
.split('G')
.reverse()
.join('G')
.split('')
.reverse()
.join('');
exports.createRandomSeed = createRandomSeed;