summaryrefslogtreecommitdiffstats
path: root/lib/public/security
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-09-03 12:22:21 +0200
committerLukas Reschke <lukas@owncloud.com>2014-09-03 12:22:21 +0200
commit20a7fb03340dbeceb5613642cb9ebb87ca9dfed1 (patch)
tree3448f5b4c401d161b1284bb772bfdfbbd613810f /lib/public/security
parent77c0adb520adcb100d2ef4fd0562330b209ee9ea (diff)
downloadnextcloud-server-20a7fb03340dbeceb5613642cb9ebb87ca9dfed1.tar.gz
nextcloud-server-20a7fb03340dbeceb5613642cb9ebb87ca9dfed1.zip
Fix CHAR_SYMBOLS
Diffstat (limited to 'lib/public/security')
-rw-r--r--lib/public/security/isecurerandom.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/security/isecurerandom.php b/lib/public/security/isecurerandom.php
index 8856b457804..a6d24571ab9 100644
--- a/lib/public/security/isecurerandom.php
+++ b/lib/public/security/isecurerandom.php
@@ -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.