赞
踩
SM4分组密码算法是2012年就推出实施的,是我国自主设计的分组对称密码算法,用于实现数据的加密/解密运算,以保证数据和信息的机密性。SM4算法与AES算法具有相同的密钥长度分组长度为128比特,因此在安全性上是高于3DES算法。
前提:国标加密工具类尽量不要去重复造轮子,hutool有现成的工具类(当然自己实现也是可以)
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-crypto</artifactId>
<version>5.7.8</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15to18</artifactId>
<version>1.69</version>
</dependency>
import cn.hutool.crypto.SmUtil; import cn.hutool.crypto.symmetric.SM4; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; import org.apache.ibatis.type.BaseTypeHandler; import org.apache.ibatis.type.JdbcType; import java.nio.charset.StandardCharsets; import java.sql.CallableStatement; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * @ClassName: TestDataTypeHandler * @Description: mybatis-plus处理敏感数据,应用在string类型上 * @Author: Simon * @Date: 2022/04/21 16:17 */ @Slf4j public class TestDataTypeHandler extends BaseTypeHandler<String> { /** * 16位key */ private static final String SM4_KEY = "aabbccddeeffgghh"; /** * 非空字段加密 - 入库 * @param preparedStatement * @param i * @param parameter * @param jdbcType */ @Override public void setNonNullParameter(PreparedStatement preparedStatement, int i, String parameter, JdbcType jdbcType) { //不处理空字符串 if(StringUtils.isBlank(parameter)){ return; } try { SM4 sm4 = SmUtil.sm4(SM4_KEY.getBytes(StandardCharsets.UTF_8)); String encrypt = sm4.encryptHex(parameter,StandardCharsets.UTF_8); log.info("数据:{},加密{}",parameter,encrypt); preparedStatement.setString(i, encrypt); } catch (Exception e) { log.error("typeHandler加密异常:" + e); } } /** * 非空字段解密 - 出库 * @param resultSet * @param columnName * @return * @throws SQLException */ @Override public String getNullableResult(ResultSet resultSet, String columnName) throws SQLException { String col = resultSet.getString(columnName); //不处理空字符串 if(StringUtils.isBlank(col)){ return col; } try { //16位key SM4 sm4 = SmUtil.sm4(SM4_KEY.getBytes(StandardCharsets.UTF_8)); String plain = sm4.decryptStr(col,StandardCharsets.UTF_8); log.info("数据:{},解密{}",col,plain); return plain; } catch (Exception e) { log.error("数据非sms加密"); } return col; } /** * 可空字段加密 * @param resultSet * @param columnIndex * @return * @throws SQLException */ @Override public String getNullableResult(ResultSet resultSet, int columnIndex) throws SQLException { return resultSet.getString(columnIndex); } /** * 可空字段解密 * @param callableStatement * @param columnIndex * @return * @throws SQLException */ @Override public String getNullableResult(CallableStatement callableStatement, int columnIndex) throws SQLException { return callableStatement.getString(columnIndex); } }
@TableName(autoResultMap = true)
public class TestLog extends Model<TestLog> {
...
...
@TableField(typeHandler = TestDataTypeHandler .class)
private String mobile;
}
@Select("SELECT * FROM test_log")
@Results(id= "resultMap", value = {
@Result(column = "mobile", property = "mobile", typeHandler = TestDataTypeHandler .class)
})
List<TestLog> listAll();
<resultMap id="resultMap" type="com.test.TestLog">
<result column="mobile" property="mobile" typeHandler="com.test.TestDataTypeHandler " />
</resultMap>
<select id="listAll" resultMap="resultMap">
SELECT * FROM test_log
</select>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。