FusionDirectory
class_passwordMethodEmpty.inc
Go to the documentation of this file.
1 <?php
2 /*
3  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
4 
5  Copyright (C) 2003-2010 Cajus Pollmeier
6  Copyright (C) 2011-2019 FusionDirectory
7 
8  This program is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12 
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
21 */
22 
33 {
34  protected $lockable = TRUE;
35 
36  public $hash = 'empty';
37 
38  const LOCKVALUE = '{CRYPT}!';
39 
43  function __construct ()
44  {
45  }
46 
55  public function generate_hash (string $pwd, bool $locked = FALSE): string
56  {
57  return ($locked ? static::LOCKVALUE : '');
58  }
59 
63  static function get_hash_name ()
64  {
65  return 'empty';
66  }
67 
73  function need_password (): bool
74  {
75  return FALSE;
76  }
77 
78  static function _extract_method ($password_hash): string
79  {
80  if (empty($password_hash) || ($password_hash == static::LOCKVALUE)) {
81  return static::get_hash_name();
82  }
83 
84  return '';
85  }
86 }
generate_hash(string $pwd, bool $locked=FALSE)
Generate template hash.
__construct()
passwordMethodEmpty Constructor
This class contains all the functions for empty password method.
need_password()
Password needed.
This class contains all the basic function for password methods.
static get_hash_name()
Get the hash name.