summaryrefslogtreecommitdiffstats
path: root/lib/private/security
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-01-11 19:59:15 +0100
committerRoeland Jago Douma <rullzer@owncloud.com>2016-01-11 19:59:15 +0100
commit98c4951f458f398c022bf928ff17b106a7901428 (patch)
tree637a9189abdccda6d4cf3a594d9be462dad32384 /lib/private/security
parent373776b8d84bece3df4a06b157bbe41f51ef511d (diff)
downloadnextcloud-server-98c4951f458f398c022bf928ff17b106a7901428.tar.gz
nextcloud-server-98c4951f458f398c022bf928ff17b106a7901428.zip
getLowStrengthGenerator does not do anything anymore
Diffstat (limited to 'lib/private/security')
-rw-r--r--lib/private/security/crypto.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/security/crypto.php b/lib/private/security/crypto.php
index 46d0c750b2f..6737902640f 100644
--- a/lib/private/security/crypto.php
+++ b/lib/private/security/crypto.php
@@ -90,7 +90,7 @@ class Crypto implements ICrypto {
}
$this->cipher->setPassword($password);
- $iv = $this->random->getLowStrengthGenerator()->generate($this->ivLength);
+ $iv = $this->random->generate($this->ivLength);
$this->cipher->setIV($iv);
$ciphertext = bin2hex($this->cipher->encrypt($plaintext));