自定义生成过程(getMd5SignMsg方法进行数据签名校验):

对字符串加密
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class HashEncrypt {
private static final char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6',
'7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
/**
* 对字符串进行加密
*
* @param text
* 签名原文
* @return 签名后密文
*/
public static String doEncrypt(String text, String algorithm, String inputCharset) {
MessageDigest msgDigest = null;
try {
msgDigest = MessageDigest.getInstance(algorithm);
} catch (NoSuchAlgorithmException e) {
throw new IllegalStateException(
"System doesn't support this algorithm.");
}
try {
msgDigest.update(text.getBytes(inputCharset)); // 注意改接口是按照指定编码形式签名
} catch (UnsupportedEncodingException e) {
throw new IllegalStateException(
"System doesn't support your EncodingException.");
}
byte[] bytes = msgDigest.digest();
String md5Str = new String(encodeHex(bytes));
return md5Str;
}
public static char[] encodeHex(byte[] data) {
int l = data.length;
char[] out = new char[l << 1];
// two characters form the hex value.
for (int i = 0, j = 0; i < l; i++) {
out[j++] = DIGITS[(0xF0 & data[i]) >>> 4];
out[j++] = DIGITS[0x0F & data[i]];
}
return out;
}
}
base64 加解密
import java.io.UnsupportedEncodingException;
import java.util.Base64;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* base64 加解密
* @author
*
*/
public class Base64Util {
private final static Logger logger = LoggerFactory.getLogger(Base64Util.class);
/**
* base64 编码
*
* @param str
* @return
*/
public static String encoder(String str){
final Base64.Encoder encoder = Base64.getEncoder();
String strEncoder = null;
try {
strEncoder = encoder.encodeToString(str.getBytes("UTF-8"));
} catch (UnsupportedEncodingException e) {
logger.error("系统错误:",e);
}
return strEncoder;
}
/**
* base6