直接调用HashKit.sha1(String str)方法就可以了,,返回的是16进制的字符串长度是40,
也就是用md.digest()方法解析出来的字节数是160字节长度。
而MD5散列算法生成的字节数是128字节长度,返回的16进制的字符长度是32位
代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
public class HashKit { private static final char [] HEX_DIGITS = "0123456789abcdef" .toCharArray(); public static String sha1(String srcStr){ return hash( "SHA-1" , srcStr); } public static String hash(String algorithm, String srcStr) { try { MessageDigest md = MessageDigest.getInstance(algorithm); byte [] bytes = md.digest(srcStr.getBytes( "utf-8" )); return toHex(bytes); } catch (Exception e) { throw new RuntimeException(e); } } public static String toHex( byte [] bytes) { StringBuilder ret = new StringBuilder(bytes.length * 2 ); for ( int i= 0 ; i<bytes.length; i++) { ret.append(HEX_DIGITS[(bytes[i] >> 4 ) & 0x0f ]); ret.append(HEX_DIGITS[bytes[i] & 0x0f ]); } return ret.toString(); } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/gne-hwz/p/9549292.html