Browse Source

chore: use Base64 library for generating SS password

Shishkevich D. 3 weeks ago
parent
commit
a45e9de472
1 changed files with 1 additions and 1 deletions
  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));
     }
 }