diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-04-15 16:29:52 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-04-15 16:29:52 +0200 |
commit | 798b267d49f9a77a91bbad1adbfb669a872bfce4 (patch) | |
tree | e5ed1742951e9d21e9ebb2c023376c5296317409 /lib/public/Security | |
parent | 461124893b4a103c6e669dc53954bdc9495efbe3 (diff) | |
download | nextcloud-server-798b267d49f9a77a91bbad1adbfb669a872bfce4.tar.gz nextcloud-server-798b267d49f9a77a91bbad1adbfb669a872bfce4.zip |
Do not use spaces in generated passwords
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/public/Security')
-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 |