المشاركة الأصلية بواسطة عبود عبود
مشاهدة المشاركة
سنجرب
result = Crypto.BlowfishEncryptString("abood", "trustno1withthispassword", 0); Dialog.Message("Notice", result, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
result = Crypto.BlowfishDecryptString("r8Ij7CGE6MA=", "trustno1withthispassword", 0); Dialog.Message("Notice", result, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
result = Crypto.BlowfishEncryptString("abood", "trustno1withthispassword", 0); Dialog.Message("Notice", result, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
result = Crypto.BlowfishDecryptString("r8Ij7CGE6MA=", "trustno1withthispassword", 0); Dialog.Message("Notice", result, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
file = File.Find("AutoPlay\\Docs", "*", false, true);
for i,n in pairs(file) do
txt = TextFile.ReadToString(""..n);
TextFile.WriteFromString("AutoPlay\\Buttons\\"..String.SplitPath(n).Filename..".txt", Crypto.BlowfishEncryptString(txt, "trustno1withthispassword", 0));
end
file = File.Find("AutoPlay\\Buttons", "*", false, true);
for i,n in pairs(file) do
txt = TextFile.ReadToString(""..n);
TextFile.WriteFromString("AutoPlay\\Docs\\"..String.SplitPath(n).Filename..".txt", Crypto.BlowfishDecryptString(txt, "trustno1withthispassword", 0));
end
تعليق