mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-04-19 21:42:24 +00:00
fix: base64 encoding on vmess/shadowsocks inbounds (#2736)
This commit is contained in:
parent
6658f648e6
commit
751f564c4a
1 changed files with 8 additions and 3 deletions
|
@ -515,17 +515,22 @@ class ClipboardManager {
|
||||||
class Base64 {
|
class Base64 {
|
||||||
static encode(content = "", safe = false) {
|
static encode(content = "", safe = false) {
|
||||||
if (safe) {
|
if (safe) {
|
||||||
return window.btoa(content)
|
return Base64.encode(content)
|
||||||
.replace(/\+/g, '-')
|
.replace(/\+/g, '-')
|
||||||
.replace(/=/g, '')
|
.replace(/=/g, '')
|
||||||
.replace(/\//g, '_')
|
.replace(/\//g, '_')
|
||||||
}
|
}
|
||||||
|
|
||||||
return window.btoa(content)
|
return window.btoa(
|
||||||
|
String.fromCharCode(...new TextEncoder().encode(content))
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
static decode(content = "") {
|
static decode(content = "") {
|
||||||
return window.atob(content)
|
return new TextDecoder()
|
||||||
|
.decode(
|
||||||
|
Uint8Array.from(window.atob(content), c => c.charCodeAt(0))
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue