软件简介
文本加解密工具是一款可以帮助用户保护隐私的应用。该文本加密解密软件可以让用户对自己的文本进行加密,防止被别人窃取,即使在发送的过程中被恶意程序截取,截取者也不会知道是什么内容。自己想看的时候只需点击解密即可。
软件功能特色
文本加解密,支持动态文本加密和静态文本加密,支持带密码加密和不带密码加密。
关于TXT文本文件加解密
实际很简单。就是软件自己对编过码的文本文件进行加解密,算法自知。别人要看这个文件就是乱码。
我的所有加密文件都是这么做的。你自己随便搞个加密算法,文件就成了乱码,别人就看不懂而来
文本加密解密代码:
第一步:把如下代码加入到<head>区域中
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function Encrypt(theText) {
output = new String;
Temp = new Array();
Temp2 = new Array();
TextSize = theText.length;
for (i = 0; i < TextSize; i++) {
rnd = Math.round(Math.random() * 122) + 68;
Temp = theText.charCodeAt(i) + rnd;
Temp2 = rnd;
}
for (i = 0; i < TextSize; i++) {
output += String.fromCharCode(Temp, Temp2);
}
return output;
}
function unEncrypt(theText) {
output = new String;
Temp = new Array();
Temp2 = new Array();
TextSize = theText.length;
for (i = 0; i < TextSize; i++) {
Temp = theText.charCodeAt(i);
Temp2 = theText.charCodeAt(i + 1);
}
for (i = 0; i < TextSize; i = i+2) {
output += String.fromCharCode(Temp - Temp2);
}
return output;
}
// End -->
</script>
第二步:把如下代码加入到<body>区域中
<center>
<form name=encform onsubmit="return false;">
<textarea name=box1 rows=5 cols=50>Typhoon Start JavaScript Fairyland