-- This Script is Part of the Prometheus Obfuscator by levno-710 -- -- randomLiterals.lua -- -- This Script provides a library for creating random literals local Ast = require("prometheus.ast"); local RandomStrings = require("prometheus.randomStrings"); local RandomLiterals = {}; local function callNameGenerator(generatorFunction, ...) if(type(generatorFunction) == "table") then generatorFunction = generatorFunction.generateName; end return generatorFunction(...); end function RandomLiterals.String(pipeline) return Ast.StringExpression(callNameGenerator(pipeline.namegenerator, math.random(1, 4096))); end function RandomLiterals.Dictionary() return RandomStrings.randomStringNode(true); end function RandomLiterals.Number() return Ast.NumberExpression(math.random(-8388608, 8388607)); end function RandomLiterals.Any(pipeline) local type = math.random(1, 3); if type == 1 then return RandomLiterals.String(pipeline); elseif type == 2 then return RandomLiterals.Number(); elseif type == 3 then return RandomLiterals.Dictionary(); end end return RandomLiterals;