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

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

?? md5.java

?? 這個(gè)是網(wǎng)絡(luò)上下載的一個(gè)struct框架的程序
?? JAVA
字號(hào):
/***
* jwma Java WebMail
* Copyright (c) 2000-2003 jwma team
*
* jwma is free software; you can distribute and use this source
* under the terms of the BSD-style license received along with
* the distribution.
 ***/package com.struts2.framework.util;/**
 * This class implements the MD5 algorithm.
 * <p>
 * The specification is available from RFC 1321,
 * and there are numerous implementations out there,
 * this one was tuned specifically for hashing short
 * strings (i.e. passwords).
 * <p>
 * I do not recommend to use this implementation for
 * anything else but that, and if anybody feels that
 * this code is to "close" to something available on
 * the net, please contact me, and I will certainly take
 * steps to clear up the situation.
 */public final class MD5 {  /**
   * Returns the MD5 hash digest transformed into a hex
   * representation as <tt>String</tt>.
   *
   * @return the MD5 hash of the input as <tt>String</tt>.
   */  public static final String hash(String str) {    return MD5.asHex(MD5.digest(str.getBytes()));  }//hash  /**
   * Returns the MD5 hash of the input data.
   * <p>
   * Following the the MD5 standard specification, the result
   * is returned least significant byte first, however,
   * many applications use the most significant byte first (more conventional).
   *
   * @param msg the <tt>byte[]</tt> to be digested.
   *
   * @return the MD5 hash of the data as <tt>String</tt>.
   */  public static final byte[] digest(byte[] msg) {    int padsize = (120 - (msg.length % 64)) % 64;    int i;    long l = msg.length * 8;

    //MD5 registers
    int a = 0x67452301, aa,
        b = 0xefcdab89, bb,
        c = 0x98badcfe, cc,
        d = 0x10325476, dd;    byte[] src = new byte[msg.length + padsize + 8];

    //padding
    try {      System.arraycopy(msg, 0, src, 0, msg.length);    } catch (Exception ex) {      //should not happen, but calm's the compiler    }    src[msg.length] = (byte) 0x80;    for (i = msg.length + 1; i < msg.length + padsize; i++) src[i] = 0;

    //append length
    for (i = src.length - 8; i < src.length; i++) {      src[i] = (byte) l;      l >>>= 8;    }    int[] x = new int[16];

    //prcess the data 16-word blocks
    for (i = 0; i < src.length; i += 64) {      //construct block
      for (int j = 0; j < 16; j++) {        x[j] = 0;        for (int k = 3; k >= 0; k--) {          x[j] <<= 8;          x[j] += src[i + j * 4 + k] & 0xff;        }      }      aa = a;      bb = b;      cc = c;      dd = d;      a = round1(a, b, c, d, 0, 7, 1, x);      d = round1(d, a, b, c, 1, 12, 2, x);      c = round1(c, d, a, b, 2, 17, 3, x);      b = round1(b, c, d, a, 3, 22, 4, x);      a = round1(a, b, c, d, 4, 7, 5, x);      d = round1(d, a, b, c, 5, 12, 6, x);      c = round1(c, d, a, b, 6, 17, 7, x);      b = round1(b, c, d, a, 7, 22, 8, x);      a = round1(a, b, c, d, 8, 7, 9, x);      d = round1(d, a, b, c, 9, 12, 10, x);      c = round1(c, d, a, b, 10, 17, 11, x);      b = round1(b, c, d, a, 11, 22, 12, x);      a = round1(a, b, c, d, 12, 7, 13, x);      d = round1(d, a, b, c, 13, 12, 14, x);      c = round1(c, d, a, b, 14, 17, 15, x);      b = round1(b, c, d, a, 15, 22, 16, x);      a = round2(a, b, c, d, 1, 5, 17, x);      d = round2(d, a, b, c, 6, 9, 18, x);      c = round2(c, d, a, b, 11, 14, 19, x);      b = round2(b, c, d, a, 0, 20, 20, x);      a = round2(a, b, c, d, 5, 5, 21, x);      d = round2(d, a, b, c, 10, 9, 22, x);      c = round2(c, d, a, b, 15, 14, 23, x);      b = round2(b, c, d, a, 4, 20, 24, x);      a = round2(a, b, c, d, 9, 5, 25, x);      d = round2(d, a, b, c, 14, 9, 26, x);      c = round2(c, d, a, b, 3, 14, 27, x);      b = round2(b, c, d, a, 8, 20, 28, x);      a = round2(a, b, c, d, 13, 5, 29, x);      d = round2(d, a, b, c, 2, 9, 30, x);      c = round2(c, d, a, b, 7, 14, 31, x);      b = round2(b, c, d, a, 12, 20, 32, x);      a = round3(a, b, c, d, 5, 4, 33, x);      d = round3(d, a, b, c, 8, 11, 34, x);      c = round3(c, d, a, b, 11, 16, 35, x);      b = round3(b, c, d, a, 14, 23, 36, x);      a = round3(a, b, c, d, 1, 4, 37, x);      d = round3(d, a, b, c, 4, 11, 38, x);      c = round3(c, d, a, b, 7, 16, 39, x);      b = round3(b, c, d, a, 10, 23, 40, x);      a = round3(a, b, c, d, 13, 4, 41, x);      d = round3(d, a, b, c, 0, 11, 42, x);      c = round3(c, d, a, b, 3, 16, 43, x);      b = round3(b, c, d, a, 6, 23, 44, x);      a = round3(a, b, c, d, 9, 4, 45, x);      d = round3(d, a, b, c, 12, 11, 46, x);      c = round3(c, d, a, b, 15, 16, 47, x);      b = round3(b, c, d, a, 2, 23, 48, x);      a = round4(a, b, c, d, 0, 6, 49, x);      d = round4(d, a, b, c, 7, 10, 50, x);      c = round4(c, d, a, b, 14, 15, 51, x);      b = round4(b, c, d, a, 5, 21, 52, x);      a = round4(a, b, c, d, 12, 6, 53, x);      d = round4(d, a, b, c, 3, 10, 54, x);      c = round4(c, d, a, b, 10, 15, 55, x);      b = round4(b, c, d, a, 1, 21, 56, x);      a = round4(a, b, c, d, 8, 6, 57, x);      d = round4(d, a, b, c, 15, 10, 58, x);      c = round4(c, d, a, b, 6, 15, 59, x);      b = round4(b, c, d, a, 13, 21, 60, x);      a = round4(a, b, c, d, 4, 6, 61, x);      d = round4(d, a, b, c, 11, 10, 62, x);      c = round4(c, d, a, b, 2, 15, 63, x);      b = round4(b, c, d, a, 9, 21, 64, x);      a += aa;      b += bb;      c += cc;      d += dd;    }    byte[] ret = new byte[16];    for (i = 0; i < 4; i++) {      ret[i] = (byte) a;      a >>>= 8;    }    for (; i < 8; i++) {      ret[i] = (byte) b;      b >>>= 8;    }    for (; i < 12; i++) {      ret[i] = (byte) c;      c >>>= 8;    }    for (; i < 16; i++) {      ret[i] = (byte) d;      d >>>= 8;    }    return ret;  }//digest  /** MD5 Transformation routines *********************************************/  private static final int rot(int x, int s) {    return x << s | x >>> (32 - s);  }//rot  private static final int F(int x, int y, int z) {    return (x & y) | (~x & z);  }//F  private static final int G(int x, int y, int z) {    return (x & z) | (y & ~z);  }//G  private static final int H(int x, int y, int z) {    return x ^ y ^ z;  }//H  private static final int I(int x, int y, int z) {    return y ^ (x | ~z);  }//I  private static final int round1(int a, int b, int c,                                  int d, int k, int s,                                  int i, int[] x) {    return b + rot((a + F(b, c, d) + x[k] + T[i - 1]), s);  }//round1  private static final int round2(int a, int b, int c,                                  int d, int k, int s,                                  int i, int[] x) {    return b + rot((a + G(b, c, d) + x[k] + T[i - 1]), s);  }//round2  private static final int round3(int a, int b, int c,                                  int d, int k, int s,                                  int i, int[] x) {    return b + rot((a + H(b, c, d) + x[k] + T[i - 1]), s);  }//round3  private static final int round4(int a, int b, int c,                                  int d, int k, int s,                                  int i, int[] x) {    return b + rot((a + I(b, c, d) + x[k] + T[i - 1]), s);  }//round4  private static final int T[] = {    0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, 0xf57c0faf,    0x4787c62a, 0xa8304613, 0xfd469501, 0x698098d8, 0x8b44f7af,    0xffff5bb1, 0x895cd7be, 0x6b901122, 0xfd987193, 0xa679438e,    0x49b40821, 0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa,    0xd62f105d, 0x02441453, 0xd8a1e681, 0xe7d3fbc8, 0x21e1cde6,    0xc33707d6, 0xf4d50d87, 0x455a14ed, 0xa9e3e905, 0xfcefa3f8,    0x676f02d9, 0x8d2a4c8a, 0xfffa3942, 0x8771f681, 0x6d9d6122,    0xfde5380c, 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70,    0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x04881d05, 0xd9d4d039,    0xe6db99e5, 0x1fa27cf8, 0xc4ac5665, 0xf4292244, 0x432aff97,    0xab9423a7, 0xfc93a039, 0x655b59c3, 0x8f0ccc92, 0xffeff47d,    0x85845dd1, 0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1,    0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391  };

  /** END MD5 Transformation routines *****************************************/

  /**
   * Returns a <tt>String</tt> containing unsigned hexadecimal
   * numbers as digits.
   * <p>
   * Contains two hex digit characters for each byte from the passed in
   * <tt>byte[]</tt>.
   *
   * @param data the array of bytes to be converted into a hex-string.
   * @return	the generated hexadecimal representation as
   *          <tt>String</tt>.
   */  public static final String asHex(byte[] data) {    //double size, two bytes (hex range) for one byte
    StringBuffer buf = new StringBuffer(data.length * 2);    for (int i = 0; i < data.length; i++) {      //don't forget the second hex digit
      if (((int) data[i] & 0xff) < 0x10) {        buf.append("0");      }      buf.append(Long.toString((int) data[i] & 0xff, 16));    }    return buf.toString();  }//asHex  /**
   * A main, to allow using this class from the command line.
   */  public static void main(String[] args) {    try {      if (args == null || args.length == 0) {        System.out.println("Usage: java com.imb.util.MD5 <password>");      }      System.out.println("Hash=" + hash(args[0]));    } catch (Exception ex) {      ex.printStackTrace();    }  }//main}//class MD5

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲三级在线播放| 精品国产一区二区在线观看| 欧美日韩大陆在线| 久久精品一区二区三区不卡牛牛 | 91精品欧美综合在线观看最新| 久久色.com| 午夜国产精品影院在线观看| 成人黄色在线视频| 538prom精品视频线放| 中文字幕在线一区| 韩国av一区二区三区四区| 欧美性猛交xxxxxxxx| 欧美国产精品一区二区三区| 老汉av免费一区二区三区 | 狠狠色丁香久久婷婷综合_中| 91免费精品国自产拍在线不卡| 久久综合九色欧美综合狠狠| 亚洲大片精品永久免费| 91国产精品成人| 国产精品美女久久久久久2018| 精品一区二区三区在线观看 | 久久久久亚洲综合| 人人超碰91尤物精品国产| 色成年激情久久综合| 成人免费在线视频观看| 国产精品资源站在线| 精品国产麻豆免费人成网站| 日韩成人免费电影| 欧美喷潮久久久xxxxx| 一级女性全黄久久生活片免费| 97精品国产露脸对白| 国产精品欧美极品| 成人一道本在线| 欧美激情一区二区三区四区| 国产成人丝袜美腿| 国产日产欧美一区| 成人免费av网站| 国产精品久久久久一区二区三区 | 亚洲综合成人网| 99v久久综合狠狠综合久久| 中文成人综合网| 成人高清视频在线观看| 国产精品三级电影| 97精品视频在线观看自产线路二| 一区精品在线播放| 日本二三区不卡| 亚洲成人午夜影院| 91精品久久久久久久91蜜桃 | av在线一区二区三区| 综合久久久久久久| 欧美系列一区二区| 麻豆国产欧美一区二区三区| 日韩午夜小视频| 国产91富婆露脸刺激对白| 欧美国产日韩a欧美在线观看| av不卡在线播放| 亚洲午夜电影网| 日韩一区二区三区电影在线观看 | 久久久综合九色合综国产精品| 韩国三级电影一区二区| 国产精品毛片大码女人| 色婷婷国产精品久久包臀| 丝瓜av网站精品一区二区| 精品国产亚洲在线| 91亚洲精华国产精华精华液| 午夜精品久久久| 国产亚洲一区二区在线观看| 91免费精品国自产拍在线不卡| 日本女优在线视频一区二区| 久久精品欧美日韩| 欧美视频你懂的| 国产一区二区伦理| 亚洲一区在线视频观看| xf在线a精品一区二区视频网站| 99久久精品情趣| 蜜臀精品久久久久久蜜臀 | 91在线观看美女| 蜜臀精品一区二区三区在线观看| 中文字幕一区视频| 日韩欧美一级二级| 色哟哟欧美精品| 国内精品伊人久久久久av一坑| 一区二区三区四区在线免费观看| 欧美成人三级在线| 欧洲国产伦久久久久久久| 国产美女久久久久| 亚洲第一电影网| 亚洲欧美在线高清| 久久精品欧美日韩| 日韩视频免费观看高清完整版| 97精品久久久午夜一区二区三区 | 欧美欧美欧美欧美首页| 成人久久久精品乱码一区二区三区| 水野朝阳av一区二区三区| 亚洲三级在线播放| 国产精品久久毛片| 国产午夜精品一区二区三区嫩草 | 欧美国产禁国产网站cc| 欧美一区二区网站| 色8久久人人97超碰香蕉987| 国产乱子伦视频一区二区三区| 日韩成人免费看| 午夜国产精品一区| 亚洲国产一二三| 一区二区三区国产精华| 国产精品久久二区二区| 国产亚洲1区2区3区| 欧美电视剧免费观看| 制服视频三区第一页精品| 色狠狠桃花综合| 99久久伊人网影院| 成+人+亚洲+综合天堂| 国产不卡视频在线播放| 国内精品不卡在线| 激情都市一区二区| 激情深爱一区二区| 韩国欧美一区二区| 国产成人av电影在线观看| 国产一区二区三区在线观看精品 | 天天综合网天天综合色| 亚洲一区在线视频观看| 亚洲国产另类av| 亚洲成av人片在线| 丝袜美腿成人在线| 久久精品99国产精品日本| 奇米四色…亚洲| 精品一区二区三区免费播放| 久久99热狠狠色一区二区| 激情图片小说一区| 成人avav影音| 91福利视频网站| 91精品国产乱| 久久免费视频一区| 中文字幕制服丝袜一区二区三区| 亚洲美女免费视频| 天天综合网 天天综合色| 免费不卡在线视频| 国产九色sp调教91| 成+人+亚洲+综合天堂| 欧美色视频一区| 欧美mv日韩mv国产网站| 国产欧美精品一区二区色综合朱莉| 中文字幕一区二区在线观看 | 欧美日韩视频在线观看一区二区三区| 欧美日韩一级大片网址| 欧美草草影院在线视频| 欧美国产乱子伦| 午夜精品久久久久久久99水蜜桃| 美女www一区二区| 成人免费av网站| 欧美日韩在线三级| 久久久三级国产网站| 亚洲免费观看高清完整| 免费成人在线视频观看| 色综合色狠狠综合色| 91精品国产入口| 国产精品二三区| 美女一区二区久久| 色综合天天综合网国产成人综合天| 欧美精品欧美精品系列| 欧美经典一区二区| 亚洲成a人在线观看| 成人午夜私人影院| 在线播放91灌醉迷j高跟美女 | 国产欧美日韩精品在线| 天天影视色香欲综合网老头| 成人午夜av影视| 日韩欧美国产一区二区在线播放| 中文字幕人成不卡一区| 国产精品中文有码| 欧美麻豆精品久久久久久| 国产精品久久久99| 国产一区二区精品久久| 欧美日韩免费观看一区二区三区| 国产精品系列在线| 极品少妇一区二区三区精品视频| 在线影院国内精品| 国产精品久久久久国产精品日日| 久久国产精品免费| 欧美日韩一区中文字幕| 亚洲女与黑人做爰| 国产成人精品免费视频网站| 欧美精三区欧美精三区 | 国产精品亲子伦对白| 美日韩一级片在线观看| 欧美在线小视频| 亚洲婷婷综合久久一本伊一区| 国产精品亚洲人在线观看| 日韩免费性生活视频播放| 亚洲va天堂va国产va久| 欧洲色大大久久| 一区二区三区四区乱视频| 99久久婷婷国产综合精品 | 亚洲狠狠爱一区二区三区| 91视频免费看| 中文字幕五月欧美| 91美女片黄在线观看| √…a在线天堂一区| 99精品热视频| 自拍视频在线观看一区二区|