Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
version_test.php
Aller à la documentation de ce fichier.
1 <?php
2 /**
3  * A Compatibility library with PHP 5.5's simplified password hashing API.
4  *
5  * @author Anthony Ferrara <ircmaxell@php.net>
6  * @license http://www.opensource.org/licenses/mit-license.html MIT License
7  * @copyright 2012 The Authors
8  */
9 /**
10  * Modififations
11  * Open Source Matters 2013
12  * CMS version 3.2
13  *
14  */
16 {
17  public function version_test()
18  {
19  $hash = '$2y$04$usesomesillystringfore7hnbRJHxXVLeakoG8K30oukPsA.ztMG';
20  $test = crypt("password", $hash);
21  $pass = $test == $hash;
22 
23  return $pass;
24  }
25 }