webapp
/
GreenwayWeb
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
82d9be63f88cb9f329b164e45f856103329c55d8
Authored by
wesley88
2025-03-27 17:55:48 +0800
1 parent
2ac8e91c
1
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lvdao-miniapp/utils/rsaEncrypt.js
lvdao-miniapp/utils/rsaEncrypt.js
View file @
82d9be6
...
...
@@ -14,7 +14,7 @@ export function encrypt(txt) {
14
14
return encryptor.encrypt(txt) // 对需要加密的数据进行加密
15
15
}
16
16
17
-// 解密
17
+// 解密
18
18
export function decrypt(txt) {
19
19
const encryptor = new JSEncrypt()
20
20
encryptor.setPrivateKey(privateKey)
...
...