%PDF- %PDF-
Direktori : /proc/thread-self/root/www/varak.net/nextcloud.varak.net/apps/password_policy/lib/ |
Current File : //proc/thread-self/root/www/varak.net/nextcloud.varak.net/apps/password_policy/lib/Generator.php |
<?php declare(strict_types=1); /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\Password_Policy; use OC\HintException; use OCP\Security\ISecureRandom; class Generator { /** @var PasswordPolicyConfig */ private $config; /** @var PasswordValidator */ private $validator; /** @var ISecureRandom */ private $random; public function __construct(PasswordPolicyConfig $config, PasswordValidator $validator, ISecureRandom $random) { $this->config = $config; $this->validator = $validator; $this->random = $random; } /** * @return string * @throws HintException */ public function generate(): string { $minLength = max($this->config->getMinLength(), 8); $length = $minLength; $password = ''; $chars = ''; $found = false; for ($i = 0; $i < 10; $i++) { if ($this->config->getEnforceUpperLowerCase()) { $password .= $this->random->generate(1, ISecureRandom::CHAR_UPPER); $password .= $this->random->generate(1, ISecureRandom::CHAR_LOWER); $length -= 2; $chars .= ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_LOWER; } if ($this->config->getEnforceNumericCharacters()) { $password .= $this->random->generate(1, ISecureRandom::CHAR_DIGITS); $length -= 1; $chars .= ISecureRandom::CHAR_DIGITS; } if ($this->config->getEnforceSpecialCharacters()) { $password .= $this->random->generate(1, ISecureRandom::CHAR_SYMBOLS); $length -= 1; $chars .= ISecureRandom::CHAR_SYMBOLS; } if ($chars === '') { $chars = ISecureRandom::CHAR_HUMAN_READABLE; } $password .= $chars = $this->random->generate($length, $chars); // Shuffle string so the order is random $password = str_shuffle($password); try { $this->validator->validate($password); if ($password === null || $password === '') { // something went wrong break; } $found = true; break; } catch (HintException $e) { /* * Invalid so lets go for another round * Reset the length so we don't run below zero */ $length = $minLength; } } if ($found === false) { throw new HintException('Could not generate a valid password'); } return $password; } }