亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? md5.java

?? 聊天源碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
package com.twmacinta.util;/** * Fast implementation of RSA's MD5 hash generator in Java JDK Beta-2 or higher. * <p> * Originally written by Santeri Paavolainen, Helsinki Finland 1996.<br> * (c) Santeri Paavolainen, Helsinki Finland 1996<br> * Many changes Copyright (c) 2002 - 2005 Timothy W Macinta<br> * <p> * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * <p> * This library 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 Library General Public License for more * details. * <p> * You should have received a copy of the GNU Library General Public License * along with this library; if not, write to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. * <p> * See http://www.twmacinta.com/myjava/fast_md5.php for more information on this * file and the related files. * <p> * This was originally a rather straight re-implementation of the reference * implementation given in RFC1321 by RSA. It passes the MD5 test suite as * defined in RFC1321. * <p> * Many optimizations made by Timothy W Macinta. Reduced time to checksum a test * file in Java alone to roughly half the time taken compared with * java.security.MessageDigest (within an intepretter). Also added an optional * native method to reduce the time even further. See * http://www.twmacinta.com/myjava/fast_md5.php for further information on the * time improvements achieved. * <p> * Some bug fixes also made by Timothy W Macinta. * <p> * Please note: I (Timothy Macinta) have put this code in the com.twmacinta.util * package only because it came without a package. I was not the the original * author of the code, although I did optimize it (substantially) and fix some * bugs. * <p> * This Java class has been derived from the RSA Data Security, Inc. MD5 * Message-Digest Algorithm and its reference implementation. * <p> * This class will attempt to use a native method to quickly compute checksums * when the appropriate native library is available. On Linux, this library * should be named "MD5.so" and on Windows it should be named "MD5.dll". The * code will attempt to locate the library in the following locations in the * order given: *  * <ol> * <li>The path specified by the system property * "com.twmacinta.util.MD5.NATIVE_LIB_FILE" (be sure to include "MD5.so" or * "MD5.dll" as appropriate at the end of the path). * <li>A platform specific directory beneath the "lib/arch/" directory. On * Linux for x86, this is "lib/arch/linux_x86/". On Windows for x86, this is * "lib/arch/win32_x86/". * <li>Within the "lib/" directory. * <li>Within the current directory. * </ol> *  * <p> * If the library is not found, the code will fall back to the default (slower) * Java code. * <p> * As a side effect of having the code search for the native library, * SecurityExceptions might be thrown on JVMs that have a restrictive * SecurityManager. The initialization code attempts to silently discard these * exceptions and continue, but many SecurityManagers will attempt to notify the * user directly of all SecurityExceptions thrown. Consequently, the code has * provisions for skipping the search for the native library. Any of these * provisions may be used to skip the search as long as they are performed * <i>before</i> the first instance of a com.twmacinta.util.MD5 object is * constructed (note that the convenience stream objects will implicitly create * an MD5 object). * <p> * The first option is to set the system property * "com.twmacinta.util.MD5.NO_NATIVE_LIB" to "true" or "1". Unfortunately, * SecurityManagers may also choose to disallow system property setting, so this * won't be of use in all cases. * <p> * The second option is to call com.twmacinta.util.MD5.initNativeLibrary(true) * before any MD5 objects are constructed. *  * @author Santeri Paavolainen <sjpaavol@cc.helsinki.fi> * @author Timothy W Macinta (twm@alum.mit.edu) (optimizations and bug fixes) */public class MD5 {	private static final char[]	HEX_CHARS	= { 		'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' 	};		private MD5State	state;	private MD5State	finals;	private static final byte	padding[]	= { (byte) 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,			0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,			0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,			0, 0, 0, 0, 0, 0, 0, 0 };	/*	 * len += shift; for (int i = 0; shift < len; i++, shift += 4) { out[i] =	 * ((int) (buffer[shift] & 0xff)) | (((int) (buffer[shift + 1] & 0xff)) <<	 * 8) | (((int) (buffer[shift + 2] & 0xff)) << 16) | (((int)	 * buffer[shift + 3]) << 24); }	 */	private final void decode( final byte buffer[], final int shift, final int[] out) {		out[0] = (buffer[shift] & 0xff) | ((buffer[shift + 1] & 0xff) << 8)				| ((buffer[shift + 2] & 0xff) << 16)				| (buffer[shift + 3] << 24);		out[1] = (buffer[shift + 4] & 0xff) | ((buffer[shift + 5] & 0xff) << 8)				| ((buffer[shift + 6] & 0xff) << 16)				| (buffer[shift + 7] << 24);		out[2] = (buffer[shift + 8] & 0xff) | ((buffer[shift + 9] & 0xff) << 8)				| ((buffer[shift + 10] & 0xff) << 16)				| (buffer[shift + 11] << 24);		out[3] = (buffer[shift + 12] & 0xff)				| ((buffer[shift + 13] & 0xff) << 8)				| ((buffer[shift + 14] & 0xff) << 16)				| (buffer[shift + 15] << 24);		out[4] = (buffer[shift + 16] & 0xff)				| ((buffer[shift + 17] & 0xff) << 8)				| ((buffer[shift + 18] & 0xff) << 16)				| (buffer[shift + 19] << 24);		out[5] = (buffer[shift + 20] & 0xff)				| ((buffer[shift + 21] & 0xff) << 8)				| ((buffer[shift + 22] & 0xff) << 16)				| (buffer[shift + 23] << 24);		out[6] = (buffer[shift + 24] & 0xff)				| ((buffer[shift + 25] & 0xff) << 8)				| ((buffer[shift + 26] & 0xff) << 16)				| (buffer[shift + 27] << 24);		out[7] = (buffer[shift + 28] & 0xff)				| ((buffer[shift + 29] & 0xff) << 8)				| ((buffer[shift + 30] & 0xff) << 16)				| (buffer[shift + 31] << 24);		out[8] = (buffer[shift + 32] & 0xff)				| ((buffer[shift + 33] & 0xff) << 8)				| ((buffer[shift + 34] & 0xff) << 16)				| (buffer[shift + 35] << 24);		out[9] = (buffer[shift + 36] & 0xff)				| ((buffer[shift + 37] & 0xff) << 8)				| ((buffer[shift + 38] & 0xff) << 16)				| (buffer[shift + 39] << 24);		out[10] = (buffer[shift + 40] & 0xff)				| ((buffer[shift + 41] & 0xff) << 8)				| ((buffer[shift + 42] & 0xff) << 16)				| (buffer[shift + 43] << 24);		out[11] = (buffer[shift + 44] & 0xff)				| ((buffer[shift + 45] & 0xff) << 8)				| ((buffer[shift + 46] & 0xff) << 16)				| (buffer[shift + 47] << 24);		out[12] = (buffer[shift + 48] & 0xff)				| ((buffer[shift + 49] & 0xff) << 8)				| ((buffer[shift + 50] & 0xff) << 16)				| (buffer[shift + 51] << 24);		out[13] = (buffer[shift + 52] & 0xff)				| ((buffer[shift + 53] & 0xff) << 8)				| ((buffer[shift + 54] & 0xff) << 16)				| (buffer[shift + 55] << 24);		out[14] = (buffer[shift + 56] & 0xff)				| ((buffer[shift + 57] & 0xff) << 8)				| ((buffer[shift + 58] & 0xff) << 16)				| (buffer[shift + 59] << 24);		out[15] = (buffer[shift + 60] & 0xff)				| ((buffer[shift + 61] & 0xff) << 8)				| ((buffer[shift + 62] & 0xff) << 16)				| (buffer[shift + 63] << 24);	}	private final void transform(MD5State state, byte buffer[], int shift, int[] decode_buf) {		int a = state.state[0], b = state.state[1], c = state.state[2], d = state.state[3], x[] = decode_buf;		decode(buffer, shift, decode_buf);		/* Round 1 */		a += ((b & c) | (~b & d)) + x[0] + 0xd76aa478; /* 1 */		a = ((a << 7) | (a >>> 25)) + b;		d += ((a & b) | (~a & c)) + x[1] + 0xe8c7b756; /* 2 */		d = ((d << 12) | (d >>> 20)) + a;		c += ((d & a) | (~d & b)) + x[2] + 0x242070db; /* 3 */		c = ((c << 17) | (c >>> 15)) + d;		b += ((c & d) | (~c & a)) + x[3] + 0xc1bdceee; /* 4 */		b = ((b << 22) | (b >>> 10)) + c;		a += ((b & c) | (~b & d)) + x[4] + 0xf57c0faf; /* 5 */		a = ((a << 7) | (a >>> 25)) + b;		d += ((a & b) | (~a & c)) + x[5] + 0x4787c62a; /* 6 */		d = ((d << 12) | (d >>> 20)) + a;		c += ((d & a) | (~d & b)) + x[6] + 0xa8304613; /* 7 */		c = ((c << 17) | (c >>> 15)) + d;		b += ((c & d) | (~c & a)) + x[7] + 0xfd469501; /* 8 */		b = ((b << 22) | (b >>> 10)) + c;		a += ((b & c) | (~b & d)) + x[8] + 0x698098d8; /* 9 */		a = ((a << 7) | (a >>> 25)) + b;		d += ((a & b) | (~a & c)) + x[9] + 0x8b44f7af; /* 10 */		d = ((d << 12) | (d >>> 20)) + a;		c += ((d & a) | (~d & b)) + x[10] + 0xffff5bb1; /* 11 */		c = ((c << 17) | (c >>> 15)) + d;		b += ((c & d) | (~c & a)) + x[11] + 0x895cd7be; /* 12 */		b = ((b << 22) | (b >>> 10)) + c;		a += ((b & c) | (~b & d)) + x[12] + 0x6b901122; /* 13 */		a = ((a << 7) | (a >>> 25)) + b;		d += ((a & b) | (~a & c)) + x[13] + 0xfd987193; /* 14 */		d = ((d << 12) | (d >>> 20)) + a;		c += ((d & a) | (~d & b)) + x[14] + 0xa679438e; /* 15 */		c = ((c << 17) | (c >>> 15)) + d;		b += ((c & d) | (~c & a)) + x[15] + 0x49b40821; /* 16 */		b = ((b << 22) | (b >>> 10)) + c;		/* Round 2 */		a += ((b & d) | (c & ~d)) + x[1] + 0xf61e2562; /* 17 */		a = ((a << 5) | (a >>> 27)) + b;		d += ((a & c) | (b & ~c)) + x[6] + 0xc040b340; /* 18 */		d = ((d << 9) | (d >>> 23)) + a;		c += ((d & b) | (a & ~b)) + x[11] + 0x265e5a51; /* 19 */		c = ((c << 14) | (c >>> 18)) + d;		b += ((c & a) | (d & ~a)) + x[0] + 0xe9b6c7aa; /* 20 */		b = ((b << 20) | (b >>> 12)) + c;		a += ((b & d) | (c & ~d)) + x[5] + 0xd62f105d; /* 21 */		a = ((a << 5) | (a >>> 27)) + b;		d += ((a & c) | (b & ~c)) + x[10] + 0x02441453; /* 22 */		d = ((d << 9) | (d >>> 23)) + a;		c += ((d & b) | (a & ~b)) + x[15] + 0xd8a1e681; /* 23 */		c = ((c << 14) | (c >>> 18)) + d;		b += ((c & a) | (d & ~a)) + x[4] + 0xe7d3fbc8; /* 24 */		b = ((b << 20) | (b >>> 12)) + c;		a += ((b & d) | (c & ~d)) + x[9] + 0x21e1cde6; /* 25 */		a = ((a << 5) | (a >>> 27)) + b;		d += ((a & c) | (b & ~c)) + x[14] + 0xc33707d6; /* 26 */		d = ((d << 9) | (d >>> 23)) + a;		c += ((d & b) | (a & ~b)) + x[3] + 0xf4d50d87; /* 27 */		c = ((c << 14) | (c >>> 18)) + d;		b += ((c & a) | (d & ~a)) + x[8] + 0x455a14ed; /* 28 */		b = ((b << 20) | (b >>> 12)) + c;		a += ((b & d) | (c & ~d)) + x[13] + 0xa9e3e905; /* 29 */		a = ((a << 5) | (a >>> 27)) + b;		d += ((a & c) | (b & ~c)) + x[2] + 0xfcefa3f8; /* 30 */		d = ((d << 9) | (d >>> 23)) + a;		c += ((d & b) | (a & ~b)) + x[7] + 0x676f02d9; /* 31 */		c = ((c << 14) | (c >>> 18)) + d;		b += ((c & a) | (d & ~a)) + x[12] + 0x8d2a4c8a; /* 32 */		b = ((b << 20) | (b >>> 12)) + c;		/* Round 3 */		a += (b ^ c ^ d) + x[5] + 0xfffa3942; /* 33 */		a = ((a << 4) | (a >>> 28)) + b;		d += (a ^ b ^ c) + x[8] + 0x8771f681; /* 34 */		d = ((d << 11) | (d >>> 21)) + a;		c += (d ^ a ^ b) + x[11] + 0x6d9d6122; /* 35 */		c = ((c << 16) | (c >>> 16)) + d;		b += (c ^ d ^ a) + x[14] + 0xfde5380c; /* 36 */		b = ((b << 23) | (b >>> 9)) + c;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲免费在线电影| 综合色天天鬼久久鬼色| 成人免费看片app下载| 综合激情成人伊人| 欧美日韩精品福利| 国产999精品久久| 亚洲一区二区视频在线| 日韩一区二区在线看片| 成人午夜视频在线| 亚洲aaa精品| 欧美日韩国产综合一区二区三区| 国产在线精品视频| 一区二区三区91| 337p粉嫩大胆噜噜噜噜噜91av| 不卡视频免费播放| 理论电影国产精品| 亚洲综合激情另类小说区| 欧美精品在线一区二区| 不卡一二三区首页| 激情综合色播五月| 亚洲在线视频网站| 亚洲国产精品t66y| 91精品国产黑色紧身裤美女| 99国产精品久久久久久久久久久| 奇米777欧美一区二区| 综合电影一区二区三区 | 久久蜜臀中文字幕| 欧美精品久久久久久久多人混战| 成人自拍视频在线| 六月丁香综合在线视频| 亚洲国产日韩a在线播放| 中文字幕精品综合| 日韩精品中文字幕在线不卡尤物 | 国内成人自拍视频| 亚洲成年人影院| 专区另类欧美日韩| 国产欧美一区二区三区鸳鸯浴| 91精品国产综合久久精品| 国产高清不卡一区二区| 麻豆精品视频在线观看视频| 亚洲一区二区三区美女| 亚洲欧美区自拍先锋| 国产欧美日韩不卡免费| 精品福利一区二区三区免费视频| 制服.丝袜.亚洲.中文.综合| 成人高清视频在线观看| 韩国女主播成人在线| 日韩在线a电影| 五月天精品一区二区三区| 国产精品日韩成人| 中文字幕av免费专区久久| 久久先锋影音av| 精品国产免费一区二区三区四区 | 日韩一区二区免费在线观看| 91福利国产精品| 91啪在线观看| 波多野结衣的一区二区三区| 成人免费看视频| 99久久久久久| 国产盗摄女厕一区二区三区 | 视频一区国产视频| 亚洲一本大道在线| 五月开心婷婷久久| 日韩高清在线电影| 亚洲精品va在线观看| 亚洲黄色小视频| 亚洲国产精品欧美一二99| 国产欧美日韩不卡| 中文字幕一区二区三区色视频| 亚洲欧洲性图库| 国产精品国模大尺度视频| 亚洲免费在线观看| 亚洲尤物在线视频观看| 亚洲美女偷拍久久| 五月天一区二区三区| 看国产成人h片视频| 国产一区二区在线视频| 国产精一区二区三区| 成人一级视频在线观看| 色综合天天在线| 欧美日韩国产片| 欧美成人精精品一区二区频| 久久精品欧美一区二区三区不卡| 国产精品乱码人人做人人爱| 亚洲精品国产一区二区三区四区在线| 亚洲成人久久影院| 久久 天天综合| 成人教育av在线| 欧美日韩高清一区二区不卡| 国产亚洲综合在线| 天天色天天爱天天射综合| 成人a免费在线看| 91精品在线麻豆| **性色生活片久久毛片| 久久综合综合久久综合| 91看片淫黄大片一级| 精品99999| 天天操天天色综合| av在线这里只有精品| 精品国产免费久久| 日韩精品久久理论片| 一本久久a久久精品亚洲| 久久久久青草大香线综合精品| 亚洲高清免费观看| 99久久精品一区| 欧美本精品男人aⅴ天堂| 性做久久久久久免费观看| 99视频国产精品| 欧美精品一区视频| 91欧美激情一区二区三区成人| 国产精品丝袜一区| 欧美成人一级视频| 在线观看日韩av先锋影音电影院| 午夜在线电影亚洲一区| 久久久久亚洲综合| 蜜桃视频第一区免费观看| 一区二区在线观看免费视频播放 | 亚洲人亚洲人成电影网站色| 国产乱码一区二区三区| 日韩亚洲欧美一区| 五月综合激情网| 欧美在线一区二区三区| 国产精品久久福利| 国产成人免费视频精品含羞草妖精| 欧美一区二区三区电影| 亚洲国产成人91porn| 91精品办公室少妇高潮对白| 国产精品女人毛片| 国产ts人妖一区二区| 久久久欧美精品sm网站| 久久精品国产亚洲a| 欧美大片顶级少妇| 色婷婷激情综合| 欧美精选一区二区| 国产网站一区二区| 国内外成人在线| 精品国产在天天线2019| 另类专区欧美蜜桃臀第一页| 欧美一级精品大片| 麻豆精品一二三| av中文字幕不卡| 欧美极品aⅴ影院| 国产精品中文字幕一区二区三区| 日韩欧美三级在线| 激情文学综合网| 精品国产区一区| 国产宾馆实践打屁股91| 中文字幕国产一区| 成人午夜电影小说| 亚洲素人一区二区| 91精彩视频在线观看| 午夜亚洲国产au精品一区二区| 欧美日韩国产欧美日美国产精品| 视频一区中文字幕| 欧美变态口味重另类| 国产精品亚洲一区二区三区妖精 | 亚洲精品久久久蜜桃| 欧美中文字幕一区二区三区| 午夜影视日本亚洲欧洲精品| 欧美日韩亚洲另类| 久久精品免费看| 国产欧美va欧美不卡在线| 99精品欧美一区二区三区小说| 亚洲精品美国一| 91麻豆精品91久久久久久清纯 | 国产夫妻精品视频| **网站欧美大片在线观看| 欧美视频中文字幕| 蜜桃av一区二区三区| 国产日韩综合av| 在线视频中文字幕一区二区| 美国av一区二区| 国产精品色哟哟网站| 91福利在线观看| 久久精品久久精品| 亚洲图片欧美激情| 91精品婷婷国产综合久久| 国产福利一区在线| 亚洲裸体xxx| 欧美一区二区网站| 国产精品69毛片高清亚洲| 亚洲精品国产第一综合99久久 | 欧美美女黄视频| 国产伦精一区二区三区| 亚洲制服欧美中文字幕中文字幕| 日韩视频在线你懂得| 99精品一区二区| 六月丁香婷婷色狠狠久久| 日韩理论在线观看| 欧美mv和日韩mv的网站| 91农村精品一区二区在线| 青青草原综合久久大伊人精品| 国产精品欧美久久久久无广告| 欧美日韩国产电影| 成人h动漫精品一区二| 麻豆国产欧美一区二区三区| 亚洲欧美日韩精品久久久久| 久久亚洲精精品中文字幕早川悠里 | 秋霞午夜av一区二区三区| 亚洲丝袜自拍清纯另类|