Only return lowercase letters and digits for backwards compatbility

This commit is contained in:
Lukas Reschke 2014-09-03 17:18:00 +02:00
parent 954925eaa0
commit 26f337d523
1 changed files with 1 additions and 1 deletions

View File

@ -1211,7 +1211,7 @@ class OC_Util {
* @deprecated Use \OC::$server->getSecureRandom()->getMediumStrengthGenerator()->generate($length); instead
*/
public static function generateRandomBytes($length = 30) {
return \OC::$server->getSecureRandom()->getMediumStrengthGenerator()->generate($length);
return \OC::$server->getSecureRandom()->getMediumStrengthGenerator()->generate($length, \OCP\Security\ISecureRandom::CHAR_LOWER.\OCP\Security\ISecureRandom::CHAR_DIGITS);
}
/**