diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-04-15 23:05:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-15 23:05:35 +0200 |
commit | 0583e08c3052aedcb04c74f56363bfb73d83eee0 (patch) | |
tree | e5ed1742951e9d21e9ebb2c023376c5296317409 | |
parent | 461124893b4a103c6e669dc53954bdc9495efbe3 (diff) | |
parent | 798b267d49f9a77a91bbad1adbfb669a872bfce4 (diff) | |
download | nextcloud-server-0583e08c3052aedcb04c74f56363bfb73d83eee0.tar.gz nextcloud-server-0583e08c3052aedcb04c74f56363bfb73d83eee0.zip |
Merge pull request #15115 from nextcloud/fix/noid/do-not-use-spaces-in-passwords
Do not use spaces in generated passwords
-rw-r--r-- | lib/public/Security/ISecureRandom.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Security/ISecureRandom.php b/lib/public/Security/ISecureRandom.php index d2ccae67ebe..d435dc69a73 100644 --- a/lib/public/Security/ISecureRandom.php +++ b/lib/public/Security/ISecureRandom.php @@ -45,7 +45,7 @@ interface ISecureRandom { const CHAR_UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; const CHAR_LOWER = 'abcdefghijklmnopqrstuvwxyz'; const CHAR_DIGITS = '0123456789'; - const CHAR_SYMBOLS = '!\"#$%&\\\'()* +,-./:;<=>?@[\]^_`{|}~'; + const CHAR_SYMBOLS = '!\"#$%&\\\'()*+,-./:;<=>?@[\]^_`{|}~'; /** * Characters that can be used for <code>generate($length, $characters)</code>, to |