
win.hupubao.common.utils.Md5Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hupubao-common Show documentation
Show all versions of hupubao-common Show documentation
简单封装公共工具,二维码工具,驼峰转换工具,des加解密工具,http访问工具,字符串工具,日期工具
/*
* Copyright 2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package win.hupubao.common.utils;
import java.security.MessageDigest;
import java.util.Map;
/**
* @author ysdxz207
* @date 2018-05-24 15:01:20
* 日志记录工具
*/
public final class Md5Utils {
private final static char[] HEX_DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E',
'F'};
public final static String md5(String str) {
try {
byte[] btInput = (str).getBytes();
// 获得MD5摘要算法的 MessageDigest 对象
MessageDigest mdInst = MessageDigest.getInstance("MD5");
// 使用指定的字节更新摘要
mdInst.update(btInput);
// 获得密文
byte[] md = mdInst.digest();
// 把密文转换成十六进制的字符串形式
int j = md.length;
char chars[] = new char[j * 2];
int k = 0;
for (int i = 0; i < j; i++) {
byte byte0 = md[i];
chars[k++] = HEX_DIGITS[byte0 >>> 4 & 0xf];
chars[k++] = HEX_DIGITS[byte0 & 0xf];
}
return new String(chars);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* md5签名
*
* @param key 私钥
* @param params 参数
* @return 签名字符串
*/
public static String sign(String key,
Map params) {
String signPre = StringUtils.createLinkString(params) +
"&key=" + key;
return md5(signPre);
}
/**
* 验签
* @param key
* @param sign
* @param params
* @return
*/
public static boolean verify(String key,
String sign,
Map params) {
if (StringUtils.isBlank(sign)) {
return false;
}
return sign.equals(sign(key, params));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy