字符串的加密和解密

Posted 小生不才

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串的加密和解密相关的知识,希望对你有一定的参考价值。

仅支持浏览器端:

// 字符串编码
function encode (str) {
    return window.btoa(encodeURIComponent(str))
}

// 字符串解码
function decode(str) {
    return decodeURIComponent(atob(str))
}

console.log(encode(\'yangyingjie\'))

以上是关于字符串的加密和解密的主要内容,如果未能解决你的问题,请参考以下文章

php源代码被加密了,请问如何解密?

密码加密和解密

shell整理(38)===凯撒加密和解密

java密码加密与解密

java编写非对称加密,解密,公钥加密,私钥解密,RSA,rsa

AES加密和解密Java