javascript - PHP 或 JS 里面有没有这样一种加密字符串的方法?

WBOY
Release: 2016-06-06 20:33:03
Original
1068 people have browsed it

通过一个key来加密,加密后的字符串只有知道这个key才能解密,就是网站的开发者也无法在不知道ke y的情况下解密(支持中文)

回复内容:

通过一个key来加密,加密后的字符串只有知道这个key才能解密,就是网站的开发者也无法在不知道ke y的情况下解密(支持中文)

直接用的函数肯定是没有的,需要你去自定义一个函数,通过各种加密算法综合使用对你的字符串和特定的key进行加密,接收端使用同样的加密逻辑进行解密,就可以还原数据了

可以使用RSA

把你的key和你要加密的字符串一起MD5或者其他的加密方式,这样要解密必须要知道你的key

php mcrypt_encrypt js应该有对应的

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template