stegano.html

来自「stagnography using javascript its powerf」· HTML 代码 · 共 369 行 · 第 1/5 页

HTML
369
字号
<html>	<head>		<!--			CryptoMX Tools			Copyright (C) 2004 - 2006 Derek Buitenhuis			This program is free software; you can redistribute it and/or			modify it under the terms of the GNU General Public License			as published by the Free Software Foundation; either version 2			of the License, or (at your option) any later version.			This program is distributed in the hope that it will be useful,			but WITHOUT ANY WARRANTY; without even the implied warranty of			MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the			GNU General Public License for more details.			You should have received a copy of the GNU General Public License			along with this program; if not, write to the Free Software			Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.		-->		<title>Steganography</title>		<!-- mod.js -->		<script language="JavaScript">function uGen(old, a, q, r, m) {    var t;    t = Math.floor(old / q);    t = a * (old - (t * q)) - (t * r);    return Math.round((t < 0) ? (t + m) : t);}function LEnext() {     var i;    this.gen1 = uGen(this.gen1, 40014, 53668, 12211, 2147483563);    this.gen2 = uGen(this.gen2, 40692, 52774, 3791, 2147483399);    i = Math.floor(this.state / 67108862);    this.state = Math.round((this.shuffle[i] + this.gen2) % 2147483563);    this.shuffle[i] = this.gen1;    return this.state;}function LEnint(n) {    var p = 1;    while (n >= p) {	p <<= 1;    }    p--;    while (true) {    	var v = this.next() & p;	if (v <= n) {	    return v;	}    }}function LEcuyer(s) {    var i;    this.shuffle = new Array(32);    this.gen1 = this.gen2 = (s & 0x7FFFFFFF);    for (i = 0; i < 19; i++) {        this.gen1 = uGen(this.gen1, 40014, 53668, 12211, 2147483563);    }    for (i = 0; i < 32; i++) {        this.gen1 = uGen(this.gen1, 40014, 53668, 12211, 2147483563);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?