/* * FileName:SecurityUtil.java *
* Copyright (c) 2017-2020, hermit (794890569@qq.com). *
* Licensed under the GNU General Public License, Version 3 (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.gnu.org/licenses/gpl-3.0.html *
* 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 cn.com.lzt.common.util;
import cn.com.lzt.common.util.coder.*;
import cn.com.lzt.common.util.security.BASE64Encoder;
import java.util.Map;
/**
* 数据加密辅助类(默认编码UTF-8)
*
* @author chermit
*/
public final class SecurityUtil {
private SecurityUtil() {
}
/**
* 默认算法密钥
*/
private static final byte[] ENCRYPT_KEY = { -81, 0, 105, 7, -32, 26, -49, 88 };
public static final String CHARSET = "UTF-8";
/**
* BASE64解码
*
* @param key
* @return
* @throws Exception
*/
public static final byte[] decryptBASE64(String key) {
try {
return new BASE64Encoder().decode(key);
} catch (Exception e) {
throw new RuntimeException("解密错误,错误信息:", e);
}
}
/**
* BASE64编码
*
* @param key
* @return
* @throws Exception
*/
public static final String encryptBASE64(byte[] key) {
try {
return new BASE64Encoder().encode(key);
} catch (Exception e) {
throw new RuntimeException("加密错误,错误信息:", e);
}
}
/**
* 数据解密,算法(DES)
*
* @param cryptData
* 加密数据
* @return 解密后的数据
*/
public static final String decryptDes(String cryptData) {
return decryptDes(cryptData, ENCRYPT_KEY);
}
/**
* 数据加密,算法(DES)
*
* @param data
* 要进行加密的数据
* @return 加密后的数据
*/
public static final String encryptDes(String data) {
return encryptDes(data, ENCRYPT_KEY);
}
/**
* 基于MD5算法的单向加密
*
* @param strSrc
* 明文
* @return 返回密文
*/
public static final String encryptMd5(String strSrc) {
String outString = null;
try {
outString = encryptBASE64(MDCoder.encodeMD5(strSrc.getBytes(CHARSET)));
} catch (Exception e) {
throw new RuntimeException("加密错误,错误信息:", e);
}
return outString;
}
/**
* SHA加密
*
* @param data
* @return
* @throws Exception
*/
public static final String encryptSHA(String data) {
try {
return encryptBASE64(SHACoder.encodeSHA256(data.getBytes(CHARSET)));
} catch (Exception e) {
throw new RuntimeException("加密错误,错误信息:", e);
}
}
/**
* HMAC加密
*
* @param data
* @return
* @throws Exception
*/
public static final String encryptHMAC(String data) {
return encryptHMAC(data, ENCRYPT_KEY);
}
/**
* 数据解密,算法(DES)
*
* @param cryptData
* 加密数据
* @return 解密后的数据
*/
public static final String decryptDes(String cryptData, byte[] key) {
String decryptedData = null;
try {
// 把字符串解码为字节数组,并解密
decryptedData = new String(DESCoder.decrypt(decryptBASE64(cryptData), key));
} catch (Exception e) {
throw new RuntimeException("解密错误,错误信息:", e);
}
return decryptedData;
}
/**
* 数据加密,算法(DES)
*
* @param data
* 要进行加密的数据
* @return 加密后的数据
*/
public static final String encryptDes(String data, byte[] key) {
String encryptedData = null;
try {
// 加密,并把字节数组编码成字符串
encryptedData = encryptBASE64(DESCoder.encrypt(data.getBytes(), key));
} catch (Exception e) {
throw new RuntimeException("加密错误,错误信息:", e);
}
return encryptedData;
}
/**
* HMAC加密
*
* @param data
* @return
* @throws Exception
*/
public static final String encryptHMAC(String data, byte[] key) {
try {
return encryptBASE64(HmacCoder.encodeHmacSHA512(data.getBytes(CHARSET), key));
} catch (Exception e) {
throw new RuntimeException("加密错误,错误信息:", e);
}
}
/**
* RSA签名
*
* @param data
* 原数据
* @return
*/
public static final String signRSA(String data, String privateKey) {
try {
return encryptBASE64(RSACoder.sign(data.getBytes(CHARSET), decryptBASE64(privateKey)));
} catch (Exception e) {
throw new RuntimeException("签名错误,错误信息:", e);
}
}
/**
* RSA验签
*
* @param data
* 原数据
* @return
*/
public static final boolean verifyRSA(String data, String publicKey, String sign) {
try {
return RSACoder.verify(data.getBytes(CHARSET), decryptBASE64(publicKey), decryptBASE64(sign));
} catch (Exception e) {
throw new RuntimeException("验签错误,错误信息:", e);
}
}
/**
* 数据加密,算法(RSA)
*
* @param data
* 数据
* @return 加密后的数据
*/
public static final String encryptRSAPrivate(String data, String privateKey) {
try {
return encryptBASE64(RSACoder.encryptByPrivateKey(data.getBytes(CHARSET), decryptBASE64(privateKey)));
} catch (Exception e) {
throw new RuntimeException("解密错误,错误信息:", e);
}
}
/**
* 数据解密,算法(RSA)
*
* @param cryptData
* 加密数据
* @return 解密后的数据
*/
public static final String decryptRSAPublic(String cryptData, String publicKey) {
try {
// 把字符串解码为字节数组,并解密
return new String(RSACoder.decryptByPublicKey(decryptBASE64(cryptData), decryptBASE64(publicKey)));
} catch (Exception e) {
throw new RuntimeException("解密错误,错误信息:", e);
}
}
public static String encryptPassword(String password) {
return encryptMd5(SecurityUtil.encryptSHA(password));
}
public static void main(String[] args) throws Exception {
System.out.println(encryptDes("SHJR"));
System.out.println(decryptDes("INzvw/3Qc4q="));
System.out.println(encryptMd5("SHJR"));
System.out.println(encryptSHA("1"));
Map