Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello_uni-id-pages
提交
f4a460ea
H
hello_uni-id-pages
项目概览
DCloud
/
hello_uni-id-pages
通知
1054
Star
31
Fork
43
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
2
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello_uni-id-pages
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f4a460ea
编写于
11月 04, 2024
作者:
C
chenruilong
提交者:
Anne_LXM
11月 05, 2024
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 没有配置敏感信息解密密钥时登录报错
上级
5f730f3a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
9 deletion
+11
-9
uni_modules/uni-id-pages/changelog.md
uni_modules/uni-id-pages/changelog.md
+7
-5
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/common/sensitive-aes-cipher.js
...d/cloudfunctions/uni-id-co/common/sensitive-aes-cipher.js
+4
-4
未找到文件。
uni_modules/uni-id-pages/changelog.md
浏览文件 @
f4a460ea
## 1.1.22(2024-09-13)
## 1.1.23(2024-11-04)
-
注册登录时去除字符串两端的空白字符
-
uni-id-co 修复 没有配置敏感信息解密密钥时导致登录报错的问题
-
删除static目录下重复资源
## 1.1.22(2024-09-13)
## 1.1.21(2024-08-02)
-
注册登录时去除字符串两端的空白字符
-
uni-id-co 修复联登更新用户信息接口存在手机号或者邮箱时没有设置认证状态
-
删除static目录下重复资源
## 1.1.21(2024-08-02)
-
uni-id-co 修复联登更新用户信息接口存在手机号或者邮箱时没有设置认证状态
## 1.1.20(2024-04-28)
## 1.1.20(2024-04-28)
-
uni-id-co 兼容uni-app-x对客户端uniPlatform的调整(uni-app-x内uniPlatform区分app-android、app-ios)
-
uni-id-co 兼容uni-app-x对客户端uniPlatform的调整(uni-app-x内uniPlatform区分app-android、app-ios)
## 1.1.19(2024-03-20)
## 1.1.19(2024-03-20)
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/common/sensitive-aes-cipher.js
浏览文件 @
f4a460ea
...
@@ -21,10 +21,10 @@ function checkSecret (secret) {
...
@@ -21,10 +21,10 @@ function checkSecret (secret) {
}
}
}
}
function
encryptData
(
text
=
''
)
{
function
encryptData
(
text
=
''
)
{
if
(
!
text
)
return
text
const
encryptSecret
=
this
.
config
.
sensitiveInfoEncryptSecret
const
encryptSecret
=
this
.
config
.
sensitiveInfoEncryptSecret
if
(
!
text
||
!
encryptSecret
)
return
text
checkSecret
(
encryptSecret
)
checkSecret
(
encryptSecret
)
const
iv
=
encryptSecret
.
slice
(
-
16
)
const
iv
=
encryptSecret
.
slice
(
-
16
)
...
@@ -40,10 +40,10 @@ function encryptData (text = '') {
...
@@ -40,10 +40,10 @@ function encryptData (text = '') {
}
}
function
decryptData
(
text
=
''
)
{
function
decryptData
(
text
=
''
)
{
if
(
!
text
)
return
text
const
encryptSecret
=
this
.
config
.
sensitiveInfoEncryptSecret
const
encryptSecret
=
this
.
config
.
sensitiveInfoEncryptSecret
if
(
!
text
||
!
encryptSecret
)
return
text
checkSecret
(
encryptSecret
)
checkSecret
(
encryptSecret
)
const
iv
=
encryptSecret
.
slice
(
-
16
)
const
iv
=
encryptSecret
.
slice
(
-
16
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录