Parcourir la source

chore: use Base64 library for generating SS password

Shishkevich D. il y a 3 semaines
Parent
commit
a45e9de472
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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));
     }
 }