浏览代码

chore: use Base64 library for generating SS password

Shishkevich D. 3 周之前
父节点
当前提交
a45e9de472
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/assets/js/util/index.js

+ 1 - 1
web/assets/js/util/index.js

@@ -139,7 +139,7 @@ class RandomUtil {
     static randomShadowsocksPassword() {
         let array = new Uint8Array(32);
         window.crypto.getRandomValues(array);
-        return btoa(String.fromCharCode.apply(null, array));
+        return Base64.encode(String.fromCharCode.apply(null, array));
     }
 }