码迷,mamicode.com
首页 > Web开发 > 详细

JS简单加密

时间:2014-07-16 23:13:25      阅读:488      评论:0      收藏:0      [点我收藏+]

标签:blog   http   java   os   数据   2014   

//简单的jS加密解密
//code为对应的字符串,h为(2,8,10,16)就是要转成的几进制
function en(code, h) { var monyer = new Array();var i,s; for(i=0;i<code.length;i++) monyer+=code.charCodeAt(i).toString(h)+"_";
    //就是把字符串转成ascll码,然后再转成你想的几进制 return monyer; };
//同上 function de(code, h) { var i,s="",code = code.split("_"); for(i=0;i<code.length;i++) { s += String.fromCharCode(parseInt(code[i],h)); }; return s };

  

//http://www.cnblogs.com/52cik/archive/2014/06/26/js-hide-code.html

//利用零宽字符进行隐藏,好东西啊,我勒个去

function en(str) {
	var rep = {
		‘00‘: ‘\u200b‘,
		‘01‘: ‘\u200c‘,
		‘10‘: ‘\u200d‘,
		‘11‘: ‘\uFEFF‘
	};
	str = str.replace(/[^\x00-\xff]/g, function(a) { // 转码 Latin-1 编码以外的字符。
		return escape(a).replace(‘%‘, ‘\\‘);
	});

	str = str.replace(/[\s\S]/g, function(a) { // 处理二进制数据并且进行数据替换
		a = a.charCodeAt().toString(2);
		a = a.length < 8 ? Array(9 - a.length).join(‘0‘) + a : a;
		return a.replace(/../g, function(a) {
			return rep[a];
		});
	});
	return str;
};

function de( str ) {
	return str.replace(/.{4}/g,function(a){var rep={"\u200b":"00","\u200c":"01","\u200d":"10","\uFEFF":"11"};return String.fromCharCode(parseInt(a.replace(/./g, function(a) {return rep[a]}),2))})
};

//这个拿来加密解密的
//http://ucren.com/demos/code-hider/index.html

  

JS简单加密,布布扣,bubuko.com

JS简单加密

标签:blog   http   java   os   数据   2014   

原文地址:http://www.cnblogs.com/diligenceday/p/3811440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!