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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 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;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产免费成人在线视频| 欧美精品99久久久**| 久久免费视频一区| 国产精品色一区二区三区| 国产专区欧美精品| 久久久www成人免费无遮挡大片| 久久av老司机精品网站导航| 精品粉嫩超白一线天av| 国内精品伊人久久久久av一坑| 欧美精品免费视频| 丝瓜av网站精品一区二区| 欧美精品一卡二卡| 蜜桃精品在线观看| 久久精品亚洲乱码伦伦中文 | 性做久久久久久免费观看| 欧美三级韩国三级日本三斤| 秋霞午夜鲁丝一区二区老狼| 久久嫩草精品久久久精品| 91视频91自| 日韩一区精品视频| 国产日韩欧美精品一区| 色成人在线视频| 久久成人免费网站| 亚洲伦理在线精品| 欧美一级理论性理论a| 粉嫩13p一区二区三区| 亚洲一区二区黄色| 国产亚洲精品7777| 欧美日韩国产a| 国产成人啪免费观看软件| 一区二区三区高清| 国产午夜精品久久| 欧美丰满嫩嫩电影| 成人高清免费在线播放| 美女视频黄 久久| 成人免费一区二区三区在线观看| 91精品久久久久久久91蜜桃| eeuss影院一区二区三区| 久久精品免费观看| 亚洲综合自拍偷拍| 中文在线一区二区| 日韩免费高清电影| 欧美日韩激情一区二区| va亚洲va日韩不卡在线观看| 激情国产一区二区| 午夜日韩在线电影| 最新热久久免费视频| 久久久国产午夜精品| 日韩一区二区三区观看| 日本电影欧美片| 国产成人午夜电影网| 青青草精品视频| 樱花草国产18久久久久| 中文字幕av一区二区三区| 精品成人一区二区三区| 欧美精品乱码久久久久久| 91在线观看成人| 成人精品视频一区二区三区| 久久99精品久久久久久| 免费三级欧美电影| 午夜视频在线观看一区二区| 亚洲综合小说图片| 亚洲欧美激情小说另类| 国产精品欧美一级免费| 国产拍揄自揄精品视频麻豆| 精品国产乱码久久久久久久| 日韩亚洲欧美成人一区| 欧美一级xxx| 欧美欧美午夜aⅴ在线观看| 日本精品一区二区三区高清| 97超碰欧美中文字幕| 国产成人aaaa| 懂色中文一区二区在线播放| 国产综合色产在线精品| 国产在线麻豆精品观看| 国产精品综合视频| 丁香激情综合国产| 成人一区二区在线观看| k8久久久一区二区三区| 91麻豆精品一区二区三区| 色综合久久久久综合| 欧美性大战久久久久久久| 欧美日韩一区二区三区免费看 | 亚洲成人黄色小说| 午夜精品视频一区| 日本欧洲一区二区| 激情久久五月天| 成人免费av在线| 91免费视频大全| 欧美女孩性生活视频| 日韩午夜在线播放| 久久久久9999亚洲精品| 中文字幕乱码亚洲精品一区| 国产精品高潮呻吟| 亚洲妇熟xx妇色黄| 久久99久国产精品黄毛片色诱| 国产福利精品一区| 一本色道久久加勒比精品 | 蜜桃传媒麻豆第一区在线观看| 狠狠色丁香婷综合久久| 成人avav在线| 91国在线观看| 日韩一区二区免费电影| 国产欧美日本一区视频| 亚洲精品午夜久久久| 日本不卡一二三区黄网| 国产乱码字幕精品高清av| 91免费观看国产| 欧美伦理视频网站| 国产人成亚洲第一网站在线播放| 亚洲情趣在线观看| 麻豆免费看一区二区三区| 成人晚上爱看视频| 欧美日韩高清一区二区不卡| 久久精品视频一区二区三区| 亚洲精品视频免费看| 老司机精品视频线观看86| 99久久久久久| 日韩美一区二区三区| 亚洲嫩草精品久久| 久久66热re国产| 在线精品视频一区二区三四| 欧美tk—视频vk| 亚洲图片欧美色图| 大白屁股一区二区视频| 91精品国产综合久久香蕉的特点 | 亚洲男人的天堂网| 精品一区二区三区免费毛片爱 | 91麻豆精品国产自产在线 | 在线综合+亚洲+欧美中文字幕| 日本一二三不卡| 免费成人你懂的| 色婷婷精品久久二区二区蜜臂av| 2020国产精品自拍| 亚洲成精国产精品女| av在线一区二区三区| 精品国产一区二区三区久久久蜜月| 一区二区三区产品免费精品久久75| 国产精品1区二区.| 日韩欧美在线影院| 亚洲一区二区欧美| 91在线视频播放地址| 久久久久亚洲蜜桃| 久久99精品久久只有精品| 欧美日韩第一区日日骚| 亚洲狼人国产精品| 菠萝蜜视频在线观看一区| 精品国产一区久久| 美女一区二区三区| 777色狠狠一区二区三区| 亚洲乱码中文字幕| thepron国产精品| 国产精品入口麻豆九色| 国产大陆a不卡| 国产日韩三级在线| 国产精品一区二区三区乱码| 精品国产成人在线影院| 久久成人18免费观看| 日韩欧美亚洲国产精品字幕久久久| 亚洲va欧美va天堂v国产综合| 欧美亚洲国产一区二区三区va| 综合久久国产九一剧情麻豆| 国产精品一卡二| 国产亚洲成年网址在线观看| 国产大陆a不卡| 国产女主播在线一区二区| 国产精品一线二线三线| 久久一区二区三区国产精品| 国产乱人伦偷精品视频免下载| 久久奇米777| 国产精品自在欧美一区| 国产日韩av一区| 成人国产免费视频| 亚洲女同女同女同女同女同69| 色屁屁一区二区| 亚洲国产成人av网| 日韩一区二区精品在线观看| 蜜桃视频在线观看一区| 欧美一级欧美三级在线观看| 另类调教123区 | 91免费国产在线观看| 亚洲欧美另类小说视频| 欧美又粗又大又爽| 午夜激情一区二区三区| 日韩精品一区二区三区蜜臀| 国产黄色精品视频| 日韩伦理电影网| 在线电影国产精品| 久久99在线观看| 国产精品久久毛片av大全日韩| 91免费国产在线| 人人狠狠综合久久亚洲| 久久精品欧美一区二区三区麻豆| 国产成人亚洲精品青草天美| 亚洲另类在线一区| 91麻豆精品国产91久久久更新时间 | 欧美日韩夫妻久久| 国产乱人伦偷精品视频免下载| 亚洲欧美日韩国产成人精品影院 | 国产1区2区3区精品美女|