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