亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
色就色 综合激情| 青娱乐精品视频| 色综合久久久久综合体| 国产精品久久毛片a| 91蜜桃婷婷狠狠久久综合9色| 一区二区三区在线播放| 欧美人伦禁忌dvd放荡欲情| 亚洲成人你懂的| 欧美电影免费提供在线观看| 国产呦精品一区二区三区网站| 国产欧美日韩在线看| 99精品国产热久久91蜜凸| 亚洲综合色视频| 久久综合久久鬼色| 成人性色生活片| 亚洲午夜免费视频| 久久久亚洲欧洲日产国码αv| 成人h动漫精品一区二区| 午夜精品久久久久久| 2021中文字幕一区亚洲| 色天天综合久久久久综合片| 久久国内精品自在自线400部| 国产精品视频麻豆| 在线不卡免费av| 丁香婷婷深情五月亚洲| 亚洲午夜国产一区99re久久| 亚洲精品一线二线三线| 色综合久久久网| 狠狠色丁香婷婷综合久久片| 尤物在线观看一区| 久久无码av三级| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 日本亚洲最大的色成网站www| 欧美激情一区三区| 91精品国产丝袜白色高跟鞋| 99久久国产综合精品麻豆| 蜜桃传媒麻豆第一区在线观看| 成人欧美一区二区三区1314| 日韩一级成人av| 色综合久久久久综合| 狠狠色丁香婷综合久久| 亚洲一区二区偷拍精品| 国产欧美日韩不卡| 日韩欧美专区在线| 欧美无砖专区一中文字| 成人深夜福利app| 久久www免费人成看片高清| 亚洲美女淫视频| 国产欧美日韩在线观看| 日韩欧美国产系列| 欧美美女网站色| 日本韩国一区二区三区| 国产成人99久久亚洲综合精品| 青娱乐精品在线视频| 亚洲一二三级电影| 亚洲乱码国产乱码精品精小说| 欧美激情中文字幕一区二区| 日韩一区二区麻豆国产| 色香色香欲天天天影视综合网| 国产福利91精品一区二区三区| 日本不卡一区二区| 丝袜诱惑制服诱惑色一区在线观看 | 亚洲精品一区二区三区香蕉| 欧美日韩dvd在线观看| 欧洲另类一二三四区| 99热精品一区二区| 成人黄色在线网站| 丁香六月综合激情| 色哟哟一区二区三区| 成人av综合一区| www.亚洲激情.com| av不卡在线观看| 99国产精品99久久久久久| 成人午夜av电影| 粉嫩av一区二区三区| 国产精品综合二区| 国产精品一区二区三区网站| 国内精品视频666| 国产一区二区三区蝌蚪| 国产成人精品影视| 成人高清伦理免费影院在线观看| 福利一区二区在线观看| 成人高清视频在线| 色老汉一区二区三区| 欧美日韩免费视频| 日韩一区二区不卡| 久久免费国产精品| 中文字幕 久热精品 视频在线 | 91精品国产欧美日韩| 欧美一区二区三区色| 久久午夜羞羞影院免费观看| 热久久国产精品| 婷婷综合另类小说色区| 蜜桃视频第一区免费观看| 精品亚洲porn| 成+人+亚洲+综合天堂| 91久久香蕉国产日韩欧美9色| 欧美日韩国产小视频| 欧美tickle裸体挠脚心vk| 国产日韩欧美综合一区| 一区二区三区四区五区视频在线观看| 亚洲一线二线三线视频| 免费观看久久久4p| 成人免费高清在线观看| 91国在线观看| 精品粉嫩超白一线天av| 国产精品精品国产色婷婷| 亚洲国产精品综合小说图片区| 九九精品一区二区| eeuss鲁片一区二区三区| 欧美嫩在线观看| 国产免费久久精品| 亚洲妇熟xx妇色黄| 麻豆91小视频| 91影院在线免费观看| 91精品国产福利在线观看| 国产欧美精品一区| 午夜欧美电影在线观看| 国产福利精品一区二区| 欧美日韩中文字幕一区| 日本一区二区视频在线| 日韩—二三区免费观看av| 国产.精品.日韩.另类.中文.在线.播放 | 欧美日韩的一区二区| 国产欧美日韩精品在线| 五月婷婷久久丁香| eeuss鲁片一区二区三区在线观看| 欧美精品一卡两卡| 中文字幕中文字幕一区| 免费一级片91| 欧美在线三级电影| 国产精品美女久久久久aⅴ国产馆| 日本欧美一区二区| 91久久国产最好的精华液| 久久久久国产一区二区三区四区 | 日本特黄久久久高潮| 成人黄色免费短视频| 欧美成人vr18sexvr| 婷婷一区二区三区| 色婷婷亚洲一区二区三区| 日本一区二区视频在线| 麻豆高清免费国产一区| 欧美熟乱第一页| 中文字幕欧美一| 粉嫩aⅴ一区二区三区四区| 日韩女优毛片在线| 丝袜国产日韩另类美女| 一本色道亚洲精品aⅴ| 国产精品久久久久久久久免费桃花| 精品中文字幕一区二区小辣椒| 欧美日韩视频一区二区| 亚洲免费观看高清在线观看| 成人黄页在线观看| 中文字幕免费观看一区| 国产成人精品在线看| 欧美精品一区二区三区蜜臀| 东方aⅴ免费观看久久av| 亚洲精品在线观看视频| 麻豆高清免费国产一区| 日韩一区二区影院| 免费视频一区二区| 91精品国产入口| 日本欧美加勒比视频| 欧美精品日韩精品| 日韩精品91亚洲二区在线观看 | 亚洲视频资源在线| 99热99精品| 亚洲免费观看高清完整版在线观看熊 | 国产成人在线色| 国产欧美久久久精品影院 | 色综合天天综合色综合av| 亚洲欧洲日韩女同| 91网站在线播放| 亚洲综合自拍偷拍| 欧美午夜片在线看| 日韩精品亚洲一区二区三区免费| 欧美高清视频一二三区 | 亚洲精品免费一二三区| 色老综合老女人久久久| 亚洲亚洲人成综合网络| 欧美喷水一区二区| 麻豆91在线看| 亚洲国产精品黑人久久久| 91在线一区二区| 亚洲欧美aⅴ...| 欧美日韩五月天| 久久精品国产亚洲一区二区三区| 久久精品一级爱片| 97成人超碰视| 婷婷成人激情在线网| 日韩女优制服丝袜电影| 成人在线视频首页| 一区二区三区自拍| 欧美一卡二卡三卡四卡| 国产成人午夜99999| 亚洲国产精品视频| 337p日本欧洲亚洲大胆色噜噜| 91最新地址在线播放| 视频一区欧美日韩| 亚洲欧美日韩国产另类专区|