Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
E
estateplat-encrypt
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
狄熙卜
estateplat-encrypt
Commits
de5939e7
提交
de5939e7
authored
11月 15, 2023
作者:
狄熙卜
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug修复
上级
5b312b26
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
4 行增加
和
5 行删除
+4
-5
GmSm4Util.java
...ain/java/cn/gtmap/bdcdj/core/encrypt/utils/GmSm4Util.java
+4
-5
没有找到文件。
src/main/java/cn/gtmap/bdcdj/core/encrypt/utils/GmSm4Util.java
浏览文件 @
de5939e7
...
...
@@ -2,7 +2,6 @@ package cn.gtmap.bdcdj.core.encrypt.utils;
import
cn.gtmap.bdcdj.core.encrypt.CryptProperties
;
import
cn.gtmap.bdcdj.core.encrypt.enums.SaltsEnum
;
import
org.apache.commons.codec.binary.Base64
;
import
org.apache.commons.lang3.StringUtils
;
import
org.bouncycastle.jce.provider.BouncyCastleProvider
;
import
org.bouncycastle.pqc.math.linearalgebra.ByteUtils
;
...
...
@@ -79,7 +78,7 @@ public class GmSm4Util {
try
{
byte
[]
srcData
=
paramStr
.
getBytes
(
encoding
);
byte
[]
cipherArray
=
encrypt_Ecb_Padding
(
keyData
,
srcData
);
return
salt
+
B
ase64
.
encodeBase64
String
(
cipherArray
);
return
salt
+
B
yteUtils
.
toHex
String
(
cipherArray
);
}
catch
(
Exception
var8
)
{
throw
new
RuntimeException
(
var8
);
}
...
...
@@ -161,16 +160,16 @@ public class GmSm4Util {
if
(
StringUtils
.
startsWithIgnoreCase
(
cipherText
,
salt
))
{
if
(
StringUtils
.
endsWith
(
cipherText
,
"等"
))
{
String
realCipherText
=
StringUtils
.
removeEnd
(
StringUtils
.
removeStartIgnoreCase
(
cipherText
,
salt
),
"等"
);
srcData
=
B
ase64
.
decodeBase64
(
realCipherText
);
srcData
=
B
yteUtils
.
fromHexString
(
realCipherText
);
srcData
=
decrypt_Ecb_Padding
(
keyData
,
srcData
);
return
new
String
(
srcData
,
encoding
)
+
"等"
;
}
else
{
cipherData
=
B
ase64
.
decodeBase64
(
StringUtils
.
removeStartIgnoreCase
(
cipherText
,
salt
));
cipherData
=
B
yteUtils
.
fromHexString
(
StringUtils
.
removeStartIgnoreCase
(
cipherText
,
salt
));
srcData
=
decrypt_Ecb_Padding
(
keyData
,
cipherData
);
return
new
String
(
srcData
,
encoding
);
}
}
else
{
cipherData
=
B
ase64
.
decodeBase64
(
cipherText
);
cipherData
=
B
yteUtils
.
fromHexString
(
cipherText
);
srcData
=
decrypt_Ecb_Padding
(
keyData
,
cipherData
);
return
new
String
(
srcData
,
encoding
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论