lua-users home
lua-l archive

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


Actually I want that if I send this code to someone, the other person will not be able to understand what is written in this code and how this code is generated.
But do the work perfectly when running the coat, just so that the coat cannot be understood by others
I am using androlua application in my Android mobile
guide me with this application

On Sun, Aug 6, 2023, 9:22 PM mystery_ace <07juwonc@kakao.com> wrote:
Hi Rana,

Please specify what you mean by encryption.

Do you mean obfuscating the code?

Or do you mean encrypting the end result?




---- 원본 메일 ----
보낸 사람 : Rana Ayaz<rana.ayaz1@gmail.com>
받는 사람 : Lua mailing list<lua-l@lists.lua.org>
날짜 : 23.08.07 00:14 GMT +0800
제목 : how to encryption code written in lua language

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)