mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:20:07 +08:00
remove length
This commit is contained in:
parent
c500c43890
commit
b0605b55ba
@ -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)
|
||||
|
@ -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中文";
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user