contributions/usermanagement/behaviour/commands/users/hashes/pas3f.hash.php
Go to the documentation of this file.00001 <?php 00002 require_once dirname(__FILE__) . '/pas3p.hash.php'; 00003 00004 /** 00005 * Calculates a hash using PHPPass 0.3 in full mode 00006 * 00007 * @since 0.6 00008 * 00009 * @author Gerd Riesselmann 00010 * @ingroup Usermanagement 00011 */ 00012 class Pas3fHash extends Pas3pHash { 00013 /** 00014 * Return preconfigured instance of PasswordHash 00015 * 00016 * @return PasswordHash03 00017 */ 00018 protected function create_pass3_instance() { 00019 return new PasswordHash03(8, FALSE); 00020 } 00021 }