remove length

This commit is contained in:
Looly 2022-03-17 20:53:36 +08:00
parent c500c43890
commit b0605b55ba
3 changed files with 22 additions and 1 deletions

View File

@ -19,6 +19,7 @@
* 【core 】 Base32增加pad支持pr#2195@Github
* 【core 】 Dict增加setFields方法pr#578@Gitee
* 【db 】 新加db.meta的索引相关接口pr#563@Gitee
* 【db 】 Oracle中Column#typeName后的长度去掉pr#563@Gitee
*
### 🐞Bug修复
* 【core 】 修复ObjectUtil.hasNull传入null返回true的问题pr#555@Gitee

View File

@ -74,6 +74,20 @@ public class SmTest {
Assert.assertEquals(content, decryptStr);
}
@Test
public void sm4TestWithCustomKeyTest2() {
String content = "test中文frfewrewrwerwer---------------------------------------------------";
byte[] key = KeyUtil.generateKey(SM4.ALGORITHM_NAME, 128).getEncoded();
SM4 sm4 = SmUtil.sm4(key);
Assert.assertEquals("SM4", sm4.getCipher().getAlgorithm());
String encryptHex = sm4.encryptHex(content);
String decryptStr = sm4.decryptStr(encryptHex, CharsetUtil.CHARSET_UTF_8);
Assert.assertEquals(content, decryptStr);
}
@Test
public void hmacSm3Test() {
String content = "test中文";

View File

@ -1,6 +1,7 @@
package cn.hutool.db.meta;
import cn.hutool.core.util.BooleanUtil;
import cn.hutool.core.util.ReUtil;
import cn.hutool.db.DbRuntimeException;
import java.io.Serializable;
@ -111,7 +112,12 @@ public class Column implements Serializable, Cloneable {
this.isPk = table.isPk(this.name);
this.type = columnMetaRs.getInt("DATA_TYPE");
this.typeName = columnMetaRs.getString("TYPE_NAME");
String typeName = columnMetaRs.getString("TYPE_NAME");
//issue#2201@Gitee
typeName = ReUtil.delLast("\\(\\d+\\)", typeName);
this.typeName = typeName;
this.size = columnMetaRs.getInt("COLUMN_SIZE");
this.isNullable = columnMetaRs.getBoolean("NULLABLE");
this.comment = columnMetaRs.getString("REMARKS");