`

MD5 16bit 32bit

阅读更多

import java.security.MessageDigest;


public class MD5Encrypt {


public final static String MD5(String s) {

      byte[] btInput = s.getBytes();

      return MD5Encrypt.MD5(btInput);

}


public final static String MD5(byte[] btInput) {

char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D',

'E', 'F' };

try {

// 获得MD5摘要算法的 MessageDigest 对象

MessageDigest mdInst = MessageDigest.getInstance("MD5");

//MessageDigest mdInst = MessageDigest.getInstance("SHA-1"); 

// 使用指定的字节更新摘要

mdInst.update(btInput);

// 获得密文

byte[] md = mdInst.digest();

// 把密文转换成十六进制的字符串形式

int j = md.length;

char str[] = new char[j * 2];

int k = 0;

for (int i = 0; i >> 4 & 0xf];

str[k++] = hexDigits[byte0 & 0xf];

}

// 为什么 MD5 如此神奇 16, 32位只是毫厘之差

// 16位

return new String(str).substring(8, 24);

// 32 位

//return new String(str);

} catch (Exception e) {

e.printStackTrace();

return null;

}

}


public static void main(String[] args) {

System.out.println(MD5Encrypt.MD5("kk"));

}

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics