SM2.signHex改名为signHexFromHex,原名标记废弃,避免歧义

This commit is contained in:
Looly 2024-10-30 11:56:34 +08:00
parent 0e2884c171
commit c04c5610f8
3 changed files with 39 additions and 13 deletions

View File

@ -2,7 +2,7 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.33(2024-10-29)
# 5.8.33(2024-10-30)
### 🐣新特性
* 【core 】 SyncFinisher增加setExecutorService方法issue#IANKQ1@Gitee
@ -18,6 +18,7 @@
* 【core 】 EscapeUtil.escapeHtml4增加空处理issue#IAZMYU@Gitee
* 【core 】 PropDesc.isTransientForGet使用className避免Android下类找不到问题issue#IB0JP5@Gitee
* 【core 】 优化NumberUtil.countpr#3772@Github
* 【crypto 】 SM2.signHex改名为signHexFromHex原名标记废弃避免歧义issue#IB0NVY@Gitee
### 🐞Bug修复
* 【json 】 修复JSONConfig.setDateFormat设置后toBean无效问题issue#3713@Github

View File

@ -324,10 +324,46 @@ public class SM2 extends AbstractAsymmetricCrypto<SM2> {
* @param dataHex 被签名的数据数据
* @return 签名
*/
public String signHexFromHex(String dataHex) {
return signHex(dataHex, null);
}
/**
* 用私钥对信息生成数字签名
*
* @param dataHex 被签名的数据数据
* @return 签名
* @deprecated 歧义使用{@link #signHexFromHex(String)}
*/
@Deprecated
public String signHex(String dataHex) {
return signHex(dataHex, null);
}
/**
* 用私钥对信息生成数字签名
*
* @param dataHex 被签名的数据数据
* @param idHex 可以为null若为null则默认withId为字节数组:"1234567812345678".getBytes()
* @return 签名
*/
public String signHexFromHex(String dataHex, String idHex) {
return HexUtil.encodeHexStr(sign(HexUtil.decodeHex(dataHex), HexUtil.decodeHex(idHex)));
}
/**
* 用私钥对信息生成数字签名
*
* @param dataHex 被签名的数据数据
* @param idHex 可以为null若为null则默认withId为字节数组:"1234567812345678".getBytes()
* @return 签名
* @deprecated 歧义使用{@link #signHexFromHex(String, String)}
*/
@Deprecated
public String signHex(String dataHex, String idHex) {
return HexUtil.encodeHexStr(sign(HexUtil.decodeHex(dataHex), HexUtil.decodeHex(idHex)));
}
/**
* 用私钥对信息生成数字签名签名格式为ASN1<br>
* * 在硬件签名中返回结果为R+S可以通过调用{@link cn.hutool.crypto.SmUtil#rsAsn1ToPlain(byte[])}方法转换之
@ -339,17 +375,6 @@ public class SM2 extends AbstractAsymmetricCrypto<SM2> {
return sign(data, null);
}
/**
* 用私钥对信息生成数字签名
*
* @param dataHex 被签名的数据数据
* @param idHex 可以为null若为null则默认withId为字节数组:"1234567812345678".getBytes()
* @return 签名
*/
public String signHex(String dataHex, String idHex) {
return HexUtil.encodeHexStr(sign(HexUtil.decodeHex(dataHex), HexUtil.decodeHex(idHex)));
}
/**
* 用私钥对信息生成数字签名签名格式为ASN1<br>
* 在硬件签名中返回结果为R+S可以通过调用{@link cn.hutool.crypto.SmUtil#rsAsn1ToPlain(byte[])}方法转换之

View File

@ -160,7 +160,7 @@ public class SM2Test {
final SM2 sm2 = SmUtil.sm2();
String sign = sm2.signHex(HexUtil.encodeHexStr(content));
String sign = sm2.signHexFromHex(HexUtil.encodeHexStr(content));
boolean verify = sm2.verifyHex(HexUtil.encodeHexStr(content), sign);
assertTrue(verify);
}