我需要两个函数来加密 php 中的一些数据并在 java 中“正确地”解密它
我需要获得两个功能。我想以 xml 格式将数据从我的网站传输到我的服务器。现在在我的服务器上,我想创建一个函数来加密数据并将其放入 xml 中,并使用 java 中的另一个函数来解密它。
请告诉我是否有任何预定义的功能,或者您能抽出 5 分钟时间吗?
I need to get two functions. I want to transfer data from my website to my server in xml format. Now on my server, I want to make a function that encrypts the data and place it in an xml, and another function in java to decrypt it.
Please tell me if there is any predefined function or can you just spare 5 minutes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好吧,您可以在 PHP 中使用任何加密
mcrypt
函数。 AES 128 加密的一个示例:对于解密,请使用此代码(我不是 Java 专业人士,因此可能存在一些错误):
Well, you can use any encrypting
mcrypt
function in PHP. One example for encrypting in AES 128:And for decrypting, use this code (I'm not a Java pro, so there may be some bugs):
没有必要在这里重新发明轮子。使用 SSL,这是 HTTPS 请求所涉及的。您可以通过 CURL 来完成这些操作。
PHP内置了curl,也有java版本
http://php.net/manual/en/book.curl.php
JAVA 中的 cURL 等效项
希望有所帮助。
No point reinventing the wheel here. Use SSL, which is what an HTTPS request would involve. You can do those through CURL.
curl is built into PHP and there is also a java version
http://php.net/manual/en/book.curl.php
cURL equivalent in JAVA
Hope that helps.
您是否研究过 JSON ?
它没有加密,但它是在不同程序之间来回传递数据的简单方法和语言。
Have you looked into JSON?
It's not encrypted, but it's an easy way to pass data back and forth between different programs and languages.