精选圈子榜单优站
编程综合
编程综合
技术
20关注
编程技术记录、分享 ,记录你的编程生活点点滴滴!

Sha-1加密工具




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

}

  • 若文章侵犯了您的权益,请联系我们进行处理。

  • 2017-06-08
  • 7612阅读
评论