summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-01-11 20:05:30 +0100
committerRoeland Jago Douma <rullzer@owncloud.com>2016-01-11 20:06:30 +0100
commit876fb83ddcf7ae6c1b63e7d7a1636893c52284b6 (patch)
tree69b862da6255199689b9cfc3fc3f232da9977d99 /core
parent98c4951f458f398c022bf928ff17b106a7901428 (diff)
downloadnextcloud-server-876fb83ddcf7ae6c1b63e7d7a1636893c52284b6.tar.gz
nextcloud-server-876fb83ddcf7ae6c1b63e7d7a1636893c52284b6.zip
getMediumStrengthGenerator is deprecated and does not do anything anymore
Diffstat (limited to 'core')
-rw-r--r--core/lostpassword/controller/lostcontroller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/lostpassword/controller/lostcontroller.php b/core/lostpassword/controller/lostcontroller.php
index 0cd6fcd30a4..88e6fe0f638 100644
--- a/core/lostpassword/controller/lostcontroller.php
+++ b/core/lostpassword/controller/lostcontroller.php
@@ -227,7 +227,7 @@ class LostController extends Controller {
);
}
- $token = $this->secureRandom->getMediumStrengthGenerator()->generate(21,
+ $token = $this->secureRandom->generate(21,
ISecureRandom::CHAR_DIGITS.
ISecureRandom::CHAR_LOWER.
ISecureRandom::CHAR_UPPER);