lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Thanks a lot. 

On Mon, Aug 7, 2023, 10:31 PM DENIS <denis@denis.com.br> wrote:
you can:
- obfuscate/minify the source without modify the loader (lua.exe, app.exe)
- encrypt BUT you need a custom loader






---- Em Dom, 06 ago 2023 13:14:48 -0300 Rana Ayaz <rana.ayaz1@gmail.com> escreveu ---

respected experts what is the exact method to encryption my code written in androidlua language
I given a code below
please guide me how to I encryption this code

require "import"
-- import "com.androlua.*"
Http.get("https://www.urdupoint.com/sports/series/215/asia-cup-2023-schedule.html", function(status, result)
if status == 200 then

for mn, t1, dt, st, t2 result:gmatch('<span class="fix_match_num">(.-)</span>.-<div class="fixb1">.-<h4>(.-)</h4>.-<p class="fix_match_dtime">(.-)</p>.-<p class="fix_match_stadium">(.-)</p>.-<div class="fixb3">.-<h4>(.-)</h4>') do
print(mn, "\n\n", t1, "vs", t2, "\n\n", st, "\n\n", dt)
end
else
print("The page was not found")
end
end)