package com.qzhprp.util;
import java.security.MessageDigest;
/**
* @author pgq
* @date 2021-10-20
* @description SHA1加密工具类
*/
public class ShaUtils {
public static String shaEncode(String inStr) throws Exception {
try {
MessageDigest sha = null;
sha = MessageDigest.getInstance("SHA");
byte[] byteArray = inStr.getBytes("UTF-8");
byte[] md5Bytes = sha.digest(byteArray);
StringBuffer hexValue = new StringBuffer();
for (int i = 0; i < md5Bytes.length; i++) {
int val = ((int) md5Bytes[i]) & 0xff;
if (val < 16) {
hexValue.append("0");
}
hexValue.append(Integer.toHexString(val));
}
return hexValue.toString();
} catch (Exception e) {
e.printStackTrace();
}
return "";
}
public static void main(String args[]) throws Exception {
String str = new String("Jhztb!!!");
System.out.println("原始:" + str);
System.out.println("SHA后:" + shaEncode(str));
}
}
09-04
571
07-23
01-04
2277