这是一个例子:
const jsjiami = {
v6: (str) => {
let result = '';
for (let i = 0; i < str.length; i++) {
result += String.fromCharCode(str.charCodeAt(i) ^ 6);
}
return result;
}
};
const originalStr = 'Hello, jsjiami.com.v6!';
const encryptedStr = jsjiami.v6(originalStr);
console.log(encryptedStr); // 'Nbybn, Gtfrq!'
console.log(jsjiami.v6(encryptedStr)); // 'Hello, jsjiami.com.v6!'
这个函数可以将一个字符串进行简单的加密和解密,使用的是异或运算(^)。
该函数可以将输入的字符串中的每个字符的 ASCII 码值都和 6 进行异或运算,然后将结果转换为字符并返回。如果要解密字符串,只需要再次调用该函数即可。
请注意,这个加密方法只是一个简单的例子,不应该用于实际的加密应用。
标签:const,str,jsjiami,算法,result,v6,encryptedStr From: https://blog.51cto.com/u_15785573/5986266