mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 07:43:18 -04:00
Fix CHAR_SYMBOLS
This commit is contained in:
parent
77c0adb520
commit
20a7fb0334
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ interface ISecureRandom {
|
|||
const CHAR_UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
||||
const CHAR_LOWER = 'abcdefghijklmnopqrstuvwxyz';
|
||||
const CHAR_DIGITS = '0123456789';
|
||||
const CHAR_SYMBOLS = 'CHAR_SYMBOLS';
|
||||
const CHAR_SYMBOLS = "!\"#$%&\'()* +,-./:;<=>?@[\]^_`{|}~";
|
||||
|
||||
/**
|
||||
* Convenience method to get a low strength random number generator.
|
||||
|
|
|
|||
Loading…
Reference in a new issue