* @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace VDM\Joomla\Componentbuilder\Crypt; use VDM\Joomla\Utilities\Component\Helper; /** * Password Class * * @since 3.2.0 */ class Password { /** * Get the type of password * Example: $this->get('basic', 'default-password'); * * @param string $type The value of password to get * @param string|null $default The default password if the type is not found * * @return string|null * @since 3.2.0 */ public function get(string $type, ?string $default = null): ?string { if (($password = Helper::_('getCryptKey', [$type, $default])) !== null) { return $password; } return $default; } }