All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.firefly.wechat.utils.SHA1 Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.wechat.utils;

import java.security.MessageDigest;
import java.util.Arrays;

/**
 * SHA1 class
 * 

* 计算公众平台的消息签名接口. */ class SHA1 { /** * 用SHA1算法生成安全签名 * * @param token 票据 * @param timestamp 时间戳 * @param nonce 随机字符串 * @param encrypt 密文 * @return 安全签名 * @throws AesException */ public static String getSHA1(String token, String timestamp, String nonce, String encrypt) throws AesException { try { String[] array = new String[]{token, timestamp, nonce, encrypt}; StringBuffer sb = new StringBuffer(); // 字符串排序 Arrays.sort(array); for (int i = 0; i < 4; i++) { sb.append(array[i]); } String str = sb.toString(); // SHA1签名生成 MessageDigest md = MessageDigest.getInstance("SHA-1"); md.update(str.getBytes()); byte[] digest = md.digest(); StringBuilder hexstr = new StringBuilder(); String shaHex; for (byte aDigest : digest) { shaHex = Integer.toHexString(aDigest & 0xFF); if (shaHex.length() < 2) { hexstr.append(0); } hexstr.append(shaHex); } return hexstr.toString(); } catch (Exception e) { throw new AesException(AesException.ComputeSignatureError); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy