Nemo

Nemo 关注TA

路漫漫其修远兮,吾将上下而求索。

Nemo

Nemo

关注TA

路漫漫其修远兮,吾将上下而求索。

  •  普罗旺斯
  • 负责帅就完事了
  • 写了1,495,102字

该文章投稿至Nemo社区   Java  板块 复制链接


Sha-1加密工具

发布于 2017/06/08 09:56 7,184浏览 0回复 1,204



import java.security.MessageDigest;

/**
* Sha-1加密工具
* Created by Nemo on 2017/6/8.
*/
public class SHAUtil {

/***
* SHA加密 生成40SHA
* @param inStr 待加密字符串
* @return 返回40SHA
*/
public static String shaEncode(String inStr) throws Exception {
MessageDigest sha = null;
try {
sha = MessageDigest.getInstance("SHA");
} catch (Exception e) {
System.out.println(e.toString());
e.printStackTrace();
return "";
}

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();
}

/**
* 测试主函数
* @param args
* @throws Exception
*/
public static void main(String args[]) throws Exception {
String str = new String("Helo");
System.out.println("原始:" + str);
System.out.println("SHA后:" + shaEncode(str));
}

}
点赞(0)

上一个文章:日志输出工具:logUtil

下一个文章:Hello 深圳

点了个评