用Lua加密字符串,用PHP解密?

时间:2019-04-15 21:39:48

标签: php lua

我正在尝试找到一种方法(无结果),该方法如何在PHP和Lua中创建函数,您可以在其中使用散列/加密Lua中的字符串(然后将Post请求发送到我的域),然后在php中解密该散列/加密字符串,将不胜感激。

例如 卢阿:

    local string = "Hello World"
    local encrypted = encrypt(string)
    api:HttpPost("my.website.com/php", encrypted)

例如PHP:

   <?php
   $input = file_get_contents("php://input");
   $unhashed = $unhash(input);
   echo($unhashed);
   ?>

然后它将回显“ Hello World”,任何人都知道该怎么做。

0 个答案:

没有答案