Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
用“密钥”加密服务器(PHP)上的字符串的最佳方法是什么 - 当这个加密的字符串传输到客户端(Lua)时,客户端可以用相同的方法将该字符串解密回正常'钥匙'?
这样,当数据从服务器传输到客户端时,用户不能中断这个过程并从请求中直接读取数据吗?HTTPS 不是我们的选择。
谢谢。
使用 AES(或类似的对称算法)进行加密。Lua 中的 AES 可用作外部库(即aeslua)。在 PHP 中,您可以使用mcrypt库。