1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2013 FusionDirectory
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*!
* \file class_password-methods-crypt.inc
* Source code for class passwordMethodCrypt
*/
/*!
* \brief This class contains all the functions for crypt password methods
* \see passwordMethod
*/
class passwordMethodCrypt extends passwordMethod
{
/*!
* \brief passwordMethodCrypt Constructor
*
* \param string $config
*/
function __construct($config)
{
}
/*!
* \brief Is available
*
* \return TRUE if is avaibable, otherwise return false
*/
function is_available()
{
if (function_exists("crypt")) {
return TRUE;
} else {
return FALSE;
}
}
/*!
* \brief Create template hash
*
* \param string $attrs
*/
function create_template_hash($attrs)
{
return $this->generate_hash('N0T$3T4N0W').'N0T$3T4N0W';
}
/*!
* \brief Generate template hash
*
* \param string $pwd Password
*/
function generate_hash($pwd)
{
if ($this->hash == "crypt/standard-des") {
$salt = "";
for ($i = 0; $i < 2; $i++) {
$salt .= get_random_char();
}
}
if ($this->hash == "crypt/enhanced-des") {
$salt = "_";
for ($i = 0; $i < 8; $i++) {
$salt .= get_random_char();
}
}
if ($this->hash == "crypt/md5") {
$salt = "\$1\$";
for ($i = 0; $i < 8; $i++) {
$salt .= get_random_char();
}
$salt .= "\$";
}
if ($this->hash == "crypt/blowfish") {
$salt = "\$2a\$07\$";
for ($i = 0; $i < CRYPT_SALT_LENGTH; $i++) {
$salt .= get_random_char();
}
$salt .= "\$";
}
if ($this->hash == "crypt/sha-256") {
$salt = "\$5\$";
for ($i = 0; $i < 16; $i++) {
$salt .= get_random_char();
}
$salt .= "\$";
}
if ($this->hash == "crypt/sha-512") {
$salt = "\$6\$";
for ($i = 0; $i < 16; $i++) {
$salt .= get_random_char();
}
$salt .= "\$";
}
return "{CRYPT}".crypt($pwd, $salt);
}
/*!
* \brief Get the hash name
*/
static function get_hash_name()
{
$hashes = array();
if (CRYPT_STD_DES == 1) {
$hashes[] = "crypt/standard-des";
}
if (CRYPT_EXT_DES == 1) {
$hashes[] = "crypt/enhanced-des";
}
if (CRYPT_MD5 == 1) {
$hashes[] = "crypt/md5";
}
if (CRYPT_BLOWFISH == 1) {
$hashes[] = "crypt/blowfish";
}
if (CRYPT_SHA256 == 1) {
$hashes[] = "crypt/sha-256";
}
if (CRYPT_SHA512 == 1) {
$hashes[] = "crypt/sha-512";
}
return $hashes;
}
/*!
* \brief Extract a method
*
* \param string $password_hash
*/
static function _extract_method($classname, $password_hash)
{
if (!preg_match('/^{crypt}/i', $password_hash)) {
return "";
}
$password_hash = preg_replace('/^{[^}]+}!?/', '', $password_hash);
if (preg_match("/^[a-zA-Z0-9.\/][a-zA-Z0-9.\/]/", $password_hash)) {
return "crypt/standard-des";
}
if (preg_match("/^_[a-zA-Z0-9.\/]/", $password_hash)) {
return "crypt/enhanced-des";
}
if (preg_match('/^\$1\$/', $password_hash)) {
return "crypt/md5";
}
if (preg_match('/^(\$2\$|\$2a\$)/', $password_hash)) {
return "crypt/blowfish";
}
if (preg_match('/^\$5\$/', $password_hash)) {
return "crypt/sha-256";
}
if (preg_match('/^\$6\$/', $password_hash)) {
return "crypt/sha-512";
}
return "";
}
}
?>
|