diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-01-11 19:59:15 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-01-11 19:59:15 +0100 |
commit | 98c4951f458f398c022bf928ff17b106a7901428 (patch) | |
tree | 637a9189abdccda6d4cf3a594d9be462dad32384 /lib/private/cache/file.php | |
parent | 373776b8d84bece3df4a06b157bbe41f51ef511d (diff) | |
download | nextcloud-server-98c4951f458f398c022bf928ff17b106a7901428.tar.gz nextcloud-server-98c4951f458f398c022bf928ff17b106a7901428.zip |
getLowStrengthGenerator does not do anything anymore
Diffstat (limited to 'lib/private/cache/file.php')
-rw-r--r-- | lib/private/cache/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index 31d4718d18a..c531f8c610b 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -99,7 +99,7 @@ class File implements ICache { $storage = $this->getStorage(); $result = false; // unique id to avoid chunk collision, just in case - $uniqueId = \OC::$server->getSecureRandom()->getLowStrengthGenerator()->generate( + $uniqueId = \OC::$server->getSecureRandom()->generate( 16, ISecureRandom::CHAR_DIGITS . ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER ); |