1 /** 2 * MD5加密 3 * 4 * @param input 5 * @return 6 */ 7 @Override 8 public String MD5(String input) throws NoSuchAlgorithmException { 9 10 try { 11 //拿到一个MD5转换器(如果想要SHA1参数换成”SHA1”) 12 MessageDigest messageDigest = MessageDigest.getInstance("MD5"); 13 //输入的字符串转换成字节数组 14 byte[] inputByteArray = input.getBytes(); 15 //inputByteArray是输入字符串转换得到的字节数组 16 messageDigest.update(inputByteArray); 17 //转换并返回结果,也是字节数组,包含16个元素 18 byte[] resultByteArray = messageDigest.digest(); 19 //字符数组转换成字符串返回 20 return byteArrayToHex(resultByteArray); 21 } catch (NoSuchAlgorithmException e) { 22 return null; 23 } 24 } 25 26 //MD5加密-将字节数组换成成16进制的字符串 27 public static String byteArrayToHex(byte[] byteArray) { 28 29 //首先初始化一个字符数组,用来存放每个16进制字符 30 char[] hexDigits = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; 31 //new一个字符数组,这个就是用来组成结果字符串的(解释一下:一个byte是八位二进制,也就是2位十六进制字符(2的8次方等于16的2次方)) 32 char[] resultCharArray = new char[byteArray.length * 2]; 33 //遍历字节数组,通过位运算(位运算效率高),转换成字符放到字符数组中去 34 int index = 0; 35 for (byte b : byteArray) { 36 resultCharArray[index++] = hexDigits[b >>> 4 & 0xf]; 37 resultCharArray[index++] = hexDigits[b & 0xf]; 38 } 39 //字符数组组合成字符串返回 40 return new String(resultCharArray); 41 }
标签:字符,加密,字节,16,数组,Java,byte,MD5 From: https://www.cnblogs.com/lwl80/p/16883841.html