Do not use spaces in generated passwords
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
8b2a3994a6
commit
9791e918c0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue