Browse Source
Do not use spaces in generated passwords
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/15115/head
Morris Jobke
7 years ago
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|
|