Source for file password.php
Documentation is available at password.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* Joomla Platform Password Hashing Interface
* @package Joomla.Platform
* Creates a password hash
* @param string $password The password to hash.
* @param string $type The type of hash. This determines the prefix of the hashing function.
* @return string The hashed password.
public function create($password, $type =
null);
* Verifies a password hash
* @param string $password The password to verify.
* @param string $hash The password hash to check.
* @return boolean True if the password is valid, false otherwise.
public function verify($password, $hash);
* @param string $type The prefix to set as default
Documentation generated on Tue, 19 Nov 2013 15:10:18 +0100 by phpDocumentor 1.4.3