sha1

(PHP 4 >= 4.3.0, PHP 5)

sha1Возвращает SHA1-хэш строки

Описание

string sha1 ( string $str [, bool $raw_output = false ] )

Возвращает SHA1-хэш строки str, вычисленный по алгоритму » US Secure Hash Algorithm 1.

Список параметров

str

Входная строка.

raw_output

Если необязательный аргумент raw_output имеет значение TRUE, хэш возвращается в виде бинарной строки из 20 символов, иначе он будет возвращен в виде 40-символьного шестнадцатеричного числа.

Возвращаемые значения

Возвращает SHA1-хэш в виде строки.

Список изменений

Версия Описание
5.0.0 Добавлен параметр raw_output.

Примеры

Пример #1 Пример использования sha1()

<?php
$str 
'яблоко';
                     
if (
sha1($str) === '88b184adea10bf987b15257a5d6c5cb94eba69d3') {
    echo 
"Желаете зеленое или красное яблоко?";
}
?>

Примечания

Замечание: Безопасное хэширование паролей

В связи с быстрой природой хэширующего алгоритма не рекомендуется использовать эту функцию для обеспечения безопасности паролей. Подробнее об этом можно прочитать здесь.

Смотрите также

  • sha1_file() - Возвращает SHA1-хэш файла
  • crc32() - Вычисляет полином CRC32 для строки
  • md5() - Возвращает MD5-хэш строки
  • hash() - Генерирует хеш-код (дайджест сообщения)

Коментарии

Автор:
To achieve raw binary format prior to PHP5, you can do this...

$raw = pack("H*", sha1($str));

Regards,

Bob Mader
2003-04-23 12:12:52
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Append this to the your sha1lib file to make it more portable.  If your version of php does support sha1() then it will try to use Mhash or else it will use the sha1lib.  Use $sha1 if you want to display which is being used.

if ( function_exists('sha1') )
    $sha1 = "sha1";

if ( !function_exists('sha1') && function_exists('mhash'))
{
    function sha1($hash_source) 
    {
           $hash = mhash(MHASH_SHA1, $hash_source);
          $hex_hash = bin2hex($hash);
           return $hex_hash;
    } 
    $sha1 = "Mhash";
}
if ( !function_exists('sha1') && !function_exists('mhash'))
{
    function sha1( $string, $raw_output = false )
    {
        $library = new Sha1Lib();
       
        return $raw_output ? $library->str_sha1($string) : $library->hex_sha1($string);
    }
    $sha1 = "sha1lib";
}
2003-11-15 05:06:37
http://php5.kiev.ua/manual/ru/function.sha1.html
Looking for a simple function to implement HMAC-SHA1 but don't want to use the entire PEAR Message lib?

//Calculate HMAC-SHA1 according to RFC2104
// http://www.ietf.org/rfc/rfc2104.txt
function hmacsha1($key,$data) {
    $blocksize=64;
    $hashfunc='sha1';
    if (strlen($key)>$blocksize)
        $key=pack('H*', $hashfunc($key));
    $key=str_pad($key,$blocksize,chr(0x00));
    $ipad=str_repeat(chr(0x36),$blocksize);
    $opad=str_repeat(chr(0x5c),$blocksize);
    $hmac = pack(
                'H*',$hashfunc(
                    ($key^$opad).pack(
                        'H*',$hashfunc(
                            ($key^$ipad).$data
                        )
                    )
                )
            );
    return bin2hex($hmac);
}

It is very useful for client-authentication. see also http://cookies.lcs.mit.edu/pubs/webauth:tr.pdf
Optionally you can change $hashfunc to 'md5' to make this an HMAC-MD5 function ;-)
If you want raw or base64 output instead of hexadecimal, just change the last return line.

Cheers,
Mark

p.s. the "$hmac =" line used to be 1 line but I had to cut it up in order to fit it here ;)
2004-01-30 08:28:08
http://php5.kiev.ua/manual/ru/function.sha1.html
Source code to create SSHA passwords...

public function HashPassword($password)
{
  mt_srand((double)microtime()*1000000);
  $salt = mhash_keygen_s2k(MHASH_SHA1, $password, substr(pack('h*', md5(mt_rand())), 0, 8), 4);
  $hash = "{SSHA}".base64_encode(mhash(MHASH_SHA1, $password.$salt).$salt);
  return $hash;
}

Source code to validate SSHA passwords...

public function ValidatePassword($password, $hash)
{
  $hash = base64_decode(substr($hash, 6));
  $original_hash = substr($hash, 0, 20);
  $salt = substr($hash, 20);
  $new_hash = mhash(MHASH_SHA1, $password . $salt);
   if (strcmp($original_hash, $new_hash) == 0)
     ... do something because your password is valid ...
  else
    echo 'Unauthorized: Authorization has been refused for the credentials you provided. Please login with a valid username and password.';
    ... be sure to clear your session data ...
}

Note: The format is compatible with OpenLDAP's SSHA scheme if I'm not mistaken.
2004-02-25 22:19:36
http://php5.kiev.ua/manual/ru/function.sha1.html
If you're struggling to generate an SHA encoded password for LDAP (PHP < 5.0), what you end up needing is this:

$userpassword = base64_encode(pack("H*", sha1($pass)));

I found this in the OpenLDAP FAQ (many thanks to Google and Ace), though I'm using the iPlanet LDAP server.

Ray Semiraglio
2004-11-02 12:34:14
http://php5.kiev.ua/manual/ru/function.sha1.html
Heres an SHA1 function that will work on it's own completely. This is for users who are using below PHP 4.3.0. it works same as PHP5 ( being able to return raw output ).

<?php

/*
** Date modified: 1st October 2004 20:09 GMT
*
** PHP implementation of the Secure Hash Algorithm ( SHA-1 )
*
** This code is available under the GNU Lesser General Public License:
** http://www.gnu.org/licenses/lgpl.txt
*
** Based on the PHP implementation by Marcus Campbell
** http://www.tecknik.net/sha-1/
*
** This is a slightly modified version by me Jerome Clarke ( sinatosk@gmail.com )
** because I feel more comfortable with this
*/

function sha1_str2blks_SHA1($str)
{
   
$strlen_str strlen($str);
   
   
$nblk = (($strlen_str 8) >> 6) + 1;
   
    for (
$i=0$i $nblk 16$i++) $blks[$i] = 0;
   
    for (
$i=0$i $strlen_str$i++)
    {
       
$blks[$i >> 2] |= ord(substr($str$i1)) << (24 - ($i 4) * 8);
    }
   
   
$blks[$i >> 2] |= 0x80 << (24 - ($i 4) * 8);
   
$blks[$nblk 16 1] = $strlen_str 8;
   
    return 
$blks;
}

function 
sha1_safe_add($x$y)
{
   
$lsw = ($x 0xFFFF) + ($y 0xFFFF);
   
$msw = ($x >> 16) + ($y >> 16) + ($lsw >> 16);
   
    return (
$msw << 16) | ($lsw 0xFFFF);
}

function 
sha1_rol($num$cnt)
{
    return (
$num << $cnt) | sha1_zeroFill($num32 $cnt);   
}

function 
sha1_zeroFill($a$b)
{
   
$bin decbin($a);
   
   
$strlen_bin strlen($bin);
   
   
$bin $strlen_bin $b substr($bin0$strlen_bin $b);
   
    for (
$i=0$i $b$i++) $bin '0'.$bin;
   
    return 
bindec($bin);
}

function 
sha1_ft($t$b$c$d)
{
    if (
$t 20) return ($b $c) | ((~$b) & $d);
    if (
$t 40) return $b $c $d;
    if (
$t 60) return ($b $c) | ($b $d) | ($c $d);
   
    return 
$b $c $d;
}

function 
sha1_kt($t)
{
    if (
$t 20) return 1518500249;
    if (
$t 40) return 1859775393;
    if (
$t 60) return -1894007588;
   
    return -
899497514;
}

function 
sha1($str$raw_output=FALSE)
{
    if ( 
$raw_output === TRUE ) return pack('H*'sha1($strFALSE));
   
   
$x sha1_str2blks_SHA1($str);
   
$a 1732584193;
   
$b = -271733879;
   
$c = -1732584194;
   
$d 271733878;
   
$e = -1009589776;
   
   
$x_count count($x);
   
    for (
$i 0$i $x_count$i += 16)
    {
       
$olda $a;
       
$oldb $b;
       
$oldc $c;
       
$oldd $d;
       
$olde $e;
       
        for (
$j 0$j 80$j++)
        {
           
$w[$j] = ($j 16) ? $x[$i $j] : sha1_rol($w[$j 3] ^ $w[$j 8] ^ $w[$j 14] ^ $w[$j 16], 1);
           
           
$t sha1_safe_add(sha1_safe_add(sha1_rol($a5), sha1_ft($j$b$c$d)), sha1_safe_add(sha1_safe_add($e$w[$j]), sha1_kt($j)));
           
$e $d;
           
$d $c;
           
$c sha1_rol($b30);
           
$b $a;
           
$a $t;
        }
       
       
$a sha1_safe_add($a$olda);
       
$b sha1_safe_add($b$oldb);
       
$c sha1_safe_add($c$oldc);
       
$d sha1_safe_add($d$oldd);
       
$e sha1_safe_add($e$olde);
    }
   
    return 
sprintf('%08x%08x%08x%08x%08x'$a$b$c$d$e);
}

?>
2004-11-22 14:43:24
http://php5.kiev.ua/manual/ru/function.sha1.html
Wanna use SHA-2 algorithm? Try this:

Download Tar-Ball from http://www.adg.us/computers/sha.html
Compile (may occur some warnings) and test it:

cc -O2 -DSHA2_UNROLL_TRANSFORM -Wall -o sha2 sha2prog.c sha2.c
./sha2test.pl

Copy it to /usr/local/bin/ (don't forget to check permissions)

Here are two functions that could be used with:

function sha2($bits, $string){
    $sha2bin="/usr/local/bin/sha2";
    $echocmd="echo";
    if(!in_array($bits, array(256, 384, 512)))return(false);
    $r=exec($echocmd." ".escapeshellarg($string)."|".$sha2bin." -q -".$bits, $sha2);
    return($sha2[0]);
}

function sha2_file($bits, $filename){
    $sha2bin="/usr/local/bin/sha2";
    if(!in_array($bits, array(256, 384, 512)))return(false);
    if(!file_exists($filename)||!is_readable($filename))return(false);
    $r=exec($sha2bin." -q -".$bits." ".escapeshellarg($filename), $sha2);
    return($sha2[0]);
}

and use it like below:

<?php
$str 
'apple';
if (
sha2(256$str) === '303980bcb9e9e6cdec515230791af8b0ab1aaa244b58a8d99152673aa22197d0') {
   echo 
"Would you like a green or red apple?";
   exit;
}
?>
2005-02-20 07:26:56
http://php5.kiev.ua/manual/ru/function.sha1.html
Regarding my previous comment, if you want to be on the safe side and use only ASCII printable seeds (shouldn't matter for SSHA seeds), something like this could be used:

<?php
$salt 
substr(base64_encode(pack("H*"sha1(mt_rand()))), 04);
?>
2005-04-28 17:12:52
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
check out these randomized sha1 password storage functions, they output a string of 50 characters, the first 40 characters being a sha1 output based on the last 10 characters - those being a random seed

to encode a password run pw_encode with the password, it'll return a different pseudo-random string every time - store this value.

to check a password run pw_check with the password attempt and the stored value, it'll return true on a match and false otherwise

these functions eliminate the pesky problem of dictionary matches being run on your password lists

<?php

function pw_encode($password)
{
   for (
$i 1$i <= 10$i++)
       
$seed .= substr('0123456789abcdef'rand(0,15), 1);
   return 
sha1($seed.$password.$seed).$seed;
}

function 
pw_check($password$stored_value)
{
   if (
strlen($stored_value) != 50)
      return 
FALSE;
   
$stored_seed substr($stored_value,40,10);
   if (
sha1($stored_seed.$password.$stored_seed).$stored_seed == $stored_value)
     return 
TRUE;
   else
     return 
FALSE;
}

?>
2005-07-06 13:21:04
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Actually, the post by Helpful Harry won't improve your security except for the most simple break in attempts.  Since the random seed is attached to the end of the password hash, if you steal the hashed password, you steal the seed.

That means you can write a simple php program to call the pw_check function Harry included from a loop, feeding it dictionary words or random characters.

Of course, if you modified the program to use the seed in a more complicated way, "they" would have to know the new function's operation.  But then again, if someone can steal your password database, they can probably steal your website code (or guess it).
2005-08-03 10:30:04
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
I've noticed websites are now starting to require passwords of a certain length that MUST contain at least 1 non-alphanumeric character. This in itself makes dictionary attacks kind of useless. My web site requires that as well. It uses md5, and appends a site code into the md5 as well. And the include file that contains that site key is outside the public folders. I sure hope I've done enough to keep the bad boys out.
2005-09-05 13:12:22
http://php5.kiev.ua/manual/ru/function.sha1.html
It should be noted that sha1("") does not return an empty string.  This means that if you are running a system that does not require users to have a password, the following code will not work as expected:

<?php 
if ($StoredPassword == sha1($NewPassword)) 
   
// Password good
?> 

If $StoredPassword and $NewPassword are both blank, then the password should be treated as good, but because sha1("") != "" it will be treated as bad. To get the correct behaviour you need to use:

<?php 
if (($StoredPassword == "" && $NewPassword == "") || ($StoredPassword == sha1($NewPassword)))
   
// Password good
?> 

(Note: I use a custom IsBlank() function instead of comparison against the empty string, so NULL values are also matched.)

For reference, here are a couple of special values put through sha1().  Note that sha1("") == sha1(NULL) == sha1(false), and also that sha1(0) != sha1(false)

"" -> da39a3ee5e6b4b0d3255bfef95601890afd80709
NULL -> da39a3ee5e6b4b0d3255bfef95601890afd80709
0 -> b6589fc6ab0dc82cf12099d1c2d40ab994e8410c
1 -> 356a192b7913b04c54574d18c28d46e6395428ab
false -> da39a3ee5e6b4b0d3255bfef95601890afd80709
true -> 356a192b7913b04c54574d18c28d46e6395428ab
2005-09-19 21:52:06
http://php5.kiev.ua/manual/ru/function.sha1.html
Regarding php at REMOVEMEkennel17 dot co dot uk's note below:

The phrase: "To get the correct behaviour", would perhaps be better off if it read: "To get the wanted (but not recommended) behaviour".

Always honor the expected data types for functions: sha1 expects a string as input, and returns a string on exit. NULL, TRUE and FALSE are not string data types. The string "" is a string as good as "any". By following the "logic" that sha1("") should return "", then what should sha1("a") return? "b"? "c"?

An authentication system that allows for blank passwords is not really an authentication system in the first place. What you are describing is merely a way to tell the application that you want to see data in some specific context, like sorted by user name, etc. Create other tools for this purpose and leave the authentication system to deal with what it is supposed to do: Granting users access to restricted data and blocking other users from seeing the same data.

Don't store passwords in clear text, but salt and encrypt them. That way it makes perfect sense having <?php $sStoredPwd === sha1($sStoredSalt $_POST["sTypedPwd"]); ?>, even with a blank "password". No other person than the user itself, not even the programmer, should know the password or be able to guess it. If the user forgets the password, a new one must be generated.

Regards,
Erling
2006-05-17 09:15:24
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Note that the sha1 algorithm has been compromised and is no longer being used by government agencies.

As of PHP 5.1.2 a new set of hashing functions are available.

function.hash

The new function hash() supports a new range of hashing methods.

echo hash('sha256', 'The quick brown fox jumped over the lazy dog.');

It is recommended that developers start to future proof their applications by using the stronger sha-2, hashing methods such as sha256, sha384, sha512 or better.

As of PHP 5.1.2 hash_algos() returns an array of system specific or registered hashing algorithms methods that are available to PHP.

print_r(hash_algos());
2006-10-18 07:23:44
http://php5.kiev.ua/manual/ru/function.sha1.html
So far as the dictionary attacks are concerned, I thought up the following function:

<?php
function twistSTR($array){
 
$twisted="";
 
$array_strlen=array();

  foreach (
$array as $element){
   
$array_strlen[]=strlen($element);
  }

  for (
$i=0$i<max($array_strlen); $i++){
    foreach (
$array as $element){
      if (
$i<strlen($element)){
       
$twisted=$twisted.$element{$i};
      }
    }
  }

  return 
$twisted;
}
?>

The twistSTR function basically takes an array input of strings and alternates each character of each string among all the other strings.  For example:

<?php
echo twistSTR(array("this","and","that"));//output: tathnhidast
?>

It can be applied in the following manner:

<?php
if ($un===$_POST["username"] && $pwd===sha1(twistSTR(array($salt,$_POST["password"])))){
?>

It's not amazingly difficult to reverse engineer the actual output, but then again, that's not the point.  The point is that when a password is entered into one of those databases, they are going to enter for example "thisandthat", not "tathnhidast".
2006-11-29 10:54:39
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Regarding the twistSTR - the problem is that currently it is relatively easy to generate a collision for any alphanumeric plaintext of a given, short length via e.g. a rainbow table. You're bettter off using a sufficiently lengthy and random salt.
2007-09-13 18:26:32
http://php5.kiev.ua/manual/ru/function.sha1.html
Please note that hashing a has is not completely secure, but can be used as an extra precaution (but not recommended):

<?php

sha1
(md5($string));

?>
2008-02-10 20:09:07
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
The suggestion below to double-hash your password is not a good idea.  You are much much better off adding a variable salt to passwords before hashing (such as the username or other field that is dissimilar for every account).

Double hashing is *worse* security than a regular hash.  What you're actually doing is taking some input $passwd, converting it to a string of exactly 32 characters containing only the characters [0-9][A-F], and then hashing *that*. You have just *greatly* increased the odds of a hash collision (ie. the odds that I can guess a phrase that will hash to the same value as your password).

sha1(md5($pass)) makes even less sense, since you're feeding in 128-bits of information to generate a 256-bit hash, so 50% of the resulting data is redundant.  You have not increased security at all.
2008-02-25 22:11:38
http://php5.kiev.ua/manual/ru/function.sha1.html
Thanks for the feedback. This should do the trick, I hope.
I think that I haven't understood this sentence completely "In this case you will need the salt to reside in the database along with the username and password." As in, were you refering to previous method, this method or this function.
Salt already resides in database along with username, password, or any string you decide to hash. This function just scrambles it depending on length of string (password) user enters so that attacker has trouble finding out what is salt and what is hash, if attacker even suspects that there is salt (reasons behind $keepLength, or defining $hSLength where you could set it to 24 leading attacker to believe he's facing sha256, not sha1).

<?php
function obscure ($hString$hDecode NULL$hSLength 10$keepLength NULL$minhPass 10$hMethod sha1)
{
    if (
$hDecode == NULL)
    {
        for (
$i 0$i<16$i++)
        {
           
           
$hSalt rand(33255);
           
$hRandomSalt .= chr($hSalt);
        }
       
$hRandomSalt hash($hMethod$hRandomSalt);
    }
    else
    {
       
$hRandomSalt $hDecode;
    }

    if (
$keepLength != NULL)
    {
       
        if (
$hSLength > (strlen($hRandomSalt) - $minhPass))
        {
           
$hSLength = (strlen($hRandomSalt) - $minhPass);
        }
    }
    else if (
$hSLength 0)
    {
       
$hSLength 0;
    }

   
$hLPosition strlen($hString);

    while (
$hLPosition $hSLength)
    {
       
$hNumber substr($hLPosition, -1);
       
       
$hLPosition $hLPosition * ($hNumber/10);
    }

   
$hLPosition = (integer)$hLPosition;
   
$hRPosition $hSLength $hLPosition;

   
$hFSalt substr($hRandomSalt0$hLPosition);
   
$hLSalt substr($hRandomSalt, -$hRPosition$hRPosition);

   
$hPassHash hash($hMethod, ($hLSalt $hString $hFSalt));

    if (
$keepLength != NULL)
    {
        if (
$hSLength != 0)
        {
           
$hPassHash substr($hPassHash$hLPosition, -$hRPosition);
        }
    }

    return 
$hFSalt $hPassHash $hLSalt;
}
?>
2008-05-08 22:12:34
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Sometimes you want the digest in both readable notation (such as hexadecimal) and raw binary. At other times you want the digest in a notation other than hexadecimal.

The following getDigestNotation() function takes a binary string and returns it in base 2, 4, 8, 16, 32, or 64 notation. It works with sha1(), md5(), hash(), or anything else that can output a raw binary string.

It works similar to the session.hash_bits_per_character php.ini configuration option.

You can specify which characters to use for each position, or use the default, which matches session.hash_bits_per_character (0-9, a-z, A-Z, "-", ","). The practical range of bits to use per character ($bitsPerCharacter) is 1 to 6; you may use more, but you will have to provide your own base character string ($chars) that is at least pow(2, $bitsPerCharacter) characters long. So even with 7 bits per character you need to specify a value for $chars that is 128 characters long, which exceeds the number of printable ASCII characters.

The output's radix relates to the value of $bitsPerCharacter as follows:
1: base-2 (binary)
2: base-4
3: base-8 (octal)
4: base-16 (hexadecimal)
5: base-32
6: base-64

<?php
$raw 
sha1(uniqid(mt_rand(), TRUE), TRUE);

echo 
getDigestNotation($raw6);

function 
getDigestNotation($rawDigest$bitsPerCharacter$chars NULL)
{
    if (
$chars === NULL || strlen($chars) < 2) {
       
$chars '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-,';
    }

    if (
$bitsPerCharacter 1) {
       
// $bitsPerCharacter must be at least 1
       
$bitsPerCharacter 1;

    } elseif (
strlen($chars) < pow(2$bitsPerCharacter)) {
       
// Character length of $chars is too small for $bitsPerCharacter
        // Set $bitsPerCharacter to greatest value allowed by length of $chars
       
$bitsPerCharacter 1;

        do {
           
$bitsPerCharacter++;
        } while (
strlen($chars) > pow(2$bitsPerCharacter));
    }

   
$bytes unpack('C*'$rawDigest);
   
$byteCount count($bytes);

   
$out '';
   
$byte array_shift($bytes);
   
$bitsRead 0;

    for (
$i 0$i $byteCount $bitsPerCharacter$i++) {

        if (
$bitsRead $bitsPerCharacter 8) {
           
// Not enough bits remain in this byte for the current character
            // Get remaining bits and get next byte
           
$oldBits $byte - ($byte >> $bitsRead << $bitsRead);

            if (
count($bytes) == 0) {
               
// Last bits; match final character and exit loop
               
$out .= $chars[$oldBits];
                break;
            }

           
$oldBitCount $bitsRead;
           
$byte array_shift($bytes);
           
$bitsRead 0;

        } else {
           
$oldBitCount 0;
        }

       
// Read only the needed bits from this byte
       
$bits $byte >> - ($bitsRead + ($bitsPerCharacter $oldBitCount));
       
$bits $bits - ($bits >> $bitsPerCharacter $oldBitCount << $bitsPerCharacter $oldBitCount);
       
$bitsRead += $bitsPerCharacter $oldBitCount;

        if (
$oldBitCount 0) {
           
// Bits come from seperate bytes, add $oldBits to $bits
           
$bits = ($oldBits << $bitsPerCharacter $oldBitCount) | $bits;
        }

       
$out .= $chars[$bits];
    }

    return 
$out;
}
?>

Lastly, depending on the digest length, there may be fewer bits remaining for the last character than $bitsPerCharacter, so the last character will be smaller. The same thing happens with PHP's session ID generator, when 5 or 6 is used for session.hash_bits_per_character.
2008-10-06 15:01:56
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Here's a better version of the getDigestNotation() function I posted earlier. (The first version had a bug in the argument checking.)

<?php
function getDigestNotation($rawDigest$bitsPerCharacter$chars NULL)
{
    if (
$chars === NULL || strlen($chars) < 2) {
       
$chars '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-,';
    }

    if (
$bitsPerCharacter 1) {
       
// $bitsPerCharacter must be at least 1
       
$bitsPerCharacter 1;

    } elseif (
strlen($chars) < pow(2$bitsPerCharacter)) {
       
// Character length of $chars is too small for $bitsPerCharacter
        // Set $bitsPerCharacter to greatest value allowed by length of $chars
       
$bitsPerCharacter 1;
       
$minCharLength 2;

        while (
strlen($chars) >= ($minCharLength *= 2)) {
           
$bitsPerCharacter++;
        }

        unset(
$minCharLength);
    }

   
$bytes unpack('C*'$rawDigest);
   
$byteCount count($bytes);

   
$out '';
   
$byte array_shift($bytes);
   
$bitsRead 0;

    for (
$i 0$i $byteCount $bitsPerCharacter$i++) {

        if (
$bitsRead $bitsPerCharacter 8) {
           
// Not enough bits remain in this byte for the current character
            // Get remaining bits and get next byte
           
$oldBits $byte - ($byte >> $bitsRead << $bitsRead);

            if (
count($bytes) == 0) {
               
// Last bits; match final character and exit loop
               
$out .= $chars[$oldBits];
                break;
            }

           
$oldBitCount $bitsRead;
           
$byte array_shift($bytes);
           
$bitsRead 0;

        } else {
           
$oldBitCount 0;
        }

       
// Read only the needed bits from this byte
       
$bits $byte >> - ($bitsRead + ($bitsPerCharacter $oldBitCount));
       
$bits $bits - ($bits >> $bitsPerCharacter $oldBitCount << $bitsPerCharacter $oldBitCount);
       
$bitsRead += $bitsPerCharacter $oldBitCount;

        if (
$oldBitCount 0) {
           
// Bits come from seperate bytes, add $oldBits to $bits
           
$bits = ($oldBits << $bitsPerCharacter $oldBitCount) | $bits;
        }

       
$out .= $chars[$bits];
    }

    return 
$out;
}
?>
2008-10-08 21:28:32
http://php5.kiev.ua/manual/ru/function.sha1.html
Small update..., well more like fix to the obscure function, replace
<?php
if ($keepLength != NULL)
{
    if (
$hSLength != 0)
    {
       
$hPassHash substr($hPassHash$hLPosition, -$hRPosition);
    }
}
?>

with

<?php
if ($keepLength != NULL)
{
    if (
$hSLength != 0)
    {
        if (
$hRPosition == 0)
        {
           
$hPassHash substr($hPassHash$hLPosition);
        }
        else
        {
           
$hPassHash substr($hPassHash$hLPosition, -$hRPosition);
        }
    }
}
?>

I've been getting few requests to explain how it's used so, this might be little long.

Problems:
1. In most solutions with hash and salt, you were bound to have one extra row in your database that would state, preferably random, salt for that hashed data. If attacker would manage to get drop of your database he would get hashed data and salt that is used with plain data to make it obscure, and then cracking that hashed data would be same as if you didn't add any salt to it.
2. I stumbled upon some functions that would hash data, then input salt into random places in hash and store it in database, but they would still have to write down random parameter used to scramble salt so they could reuse it when validating data. Getting simple database drop wouldn't help much here, but if they would manage to get their hands on obscuring function too, they could easily see what is salt and what hash.

Solutions:
1. Why use extra row to store salt when you can input it in hash. I'm not sure how attackers determine what type of hash are they facing, but I guess it has connection to hash length. In that case, why make attackers job easier and store in database data_hash+salt where they could assume just by it's length it has salt in there.
Reason behind $keepLength. If it's set to 1, strlen of hashed data plus salt would be equal to strlen of hashed data leading attacker to believe there is no salt.
If you leave $keepLength on NULL, strlen of final result would be strlen(used_hash_algorithm)+$hSLength.
$minhPass is there to reserve enough place for string that has to be hashed, so someone using this function wouldn't accidentally delete it by setting too high salt length ($hSLength), for example... if you set it 30000 it will keep working normal.

2. If you think about it, constant, but variable value when making input would be same data that is being input.
In case we're trying to hash password, and have user A with password "notme", password strlen equals to 5, and if we use default parameters of the function, with $keepLength set to 1, process would be:
random salt, hash it, add first 5 characters of hashed_salt at beginning of plain password, add last 5 characters of hashed_salt at end of plain password, hash it. Replace first 5 characters of hashed_password with first 5 character of hashed_salt, do same with last 5 characters of hashed_password, return hashed_password.
In case that string is longer than 10 characters function would use simple mathematics to reduce it to numbers lower than 10, well... lower than number that is stated in $hSLength.
And good thing is that every time user enters correct password it has same length so it's not necessary to write it anywhere.

So what is achieved in the end?
1. Attacker might not know that hash is salted, and you don't have that extra row in your database stating THIS IS SALT FOR THIS HASH.
2. If he does find out that it is, he wouldn't know what is hashed password and what is salt.
3. If he manages to get access to obscure function, only thing that might help him is value of $hSLength, where if $hSLength is set to 10 he would have to crack 10 variations of hashed string since he doesn't know how long password of user he's trying to crack is.
For example first variation would be hashed_password without last 10 characters, second variation would be hashed_password without first character and last 9 characters...
4. Even in case he has enough power to crack all 10 variations, resulting string that he might get doesn't necessarily has to be exactly long as password of original user in which case, attacker fails again.
2008-12-16 22:11:11
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
If I correctly understand what ranko84 is on about, this would be a simpler function with roughly the same result.

<?php
function obscure($password$algorythm "sha1")
{
       
// Get some random salt, or verify a salt.
        // Added by (grosbedo AT gmail DOT com)
       
if ($salt == NULL)
        {
           
$salt hash($algorythmuniqid(rand(), true));
        }

   
// Determine the length of the hash.
   
$hash_length strlen($salt);

   
// Determine the length of the password.
   
$password_length strlen($password);

   
// Determine the maximum length of password. This is only needed if
    // the user enters a very long password. In any case, the salt will
    // be a maximum of half the end result. The longer the hash, the
    // longer the password/salt can be. 
   
$password_max_length $hash_length 2;

   
// Shorten the salt based on the length of the password.
   
if ($password_length >= $password_max_length)
    {
       
$salt substr($salt0$password_max_length);
    }
    else
    {
       
$salt substr($salt0$password_length);
    }

   
// Determine the length of the salt.
   
$salt_length strlen($salt);

   
// Determine the salted hashed password.
   
$salted_password hash($algorythm$salt $password);

   
// If we add the salt to the hashed password, we would get a hash that
    // is longer than a normally hashed password. We don't want that; it
    // would give away hints to an attacker. Because the password and the
    // length of the password are known, we can just throw away the first
    // couple of characters of the salted password. That way the salt and
    // the salted password together are the same length as a normally
    // hashed password without salt.
   
$used_chars = ($hash_length $salt_length) * -1;
   
$final_result $salt substr($salted_password$used_chars);

    return 
$final_result;
}
?>
2009-01-07 19:49:42
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
I believe this offers best amount of protection using a random salt, that has to be stored so it can be used later for verification.

If no salt is given (which can be retrieved by halving the output and taking the first half), then it will generate a random salt, hash it, place it in a position relative to the length of password (between 0 and length of hash type(sha1? md5?)) within the hashed password, and then hash the complete string.

This results in a password hash using a salt that is dynamically placed dependant on password length. The salt used is then appended to the front of the finished hash so it can be retrieved later on for verifying.

Seeing as users will choose a typical password of between 5 and say 15 characters long, this gives them an extra 10 times the amount of dictionary attacks to try out with the hash as it could be placed in any position, because this is a random generated salt too, it means at least 10 dictionary attacks (with possiblity of upto 40) for each instance a password is created, to try and work out your sha1 encrypted password.

If you change your password say every month, even if someone gets a look in at your file through a local exploit, the amount of time to work out your password would far outweigh the frequency at which you change it.

Nothing is secure, but this should take them longer to work out then the time you change it. That is at least by todays technologies.

Paul

<?php
   
function createHash($inText$saltHash=NULL$mode='sha1'){
       
// hash the text //
       
$textHash hash($mode$inText);
       
// set where salt will appear in hash //
       
$saltStart strlen($inText);
       
// if no salt given create random one //
       
if($saltHash == NULL) {
           
$saltHash hash($modeuniqid(rand(), true));
        }
       
// add salt into text hash at pass length position and hash it //
       
if($saltStart && $saltStart strlen($saltHash)) {
           
$textHashStart substr($textHash,0,$saltStart);
           
$textHashEnd substr($textHash,$saltStart,strlen($saltHash));
           
$outHash hash($mode$textHashEnd.$saltHash.$textHashStart); 
        } elseif(
$saltStart > (strlen($saltHash)-1)) {
           
$outHash hash($mode$textHash.$saltHash);
        } else {
           
$outHash hash($mode$saltHash.$textHash);
        }
       
// put salt at front of hash //
       
$output $saltHash.$outHash;
        return 
$output;
    }
?>
2009-04-15 09:57:10
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Another solution to the salted hash with salt included directly in the hash, while keeping the same length of the result. If you want to generate a hash, call the function without the second argument. If you want to check a password against a hash, use the hash as the second argument. In this case, the function returns the hash itself on success, or boolean false on failure. You can also specify a hash algorithm as the third argument (otherwise SHA-1 will be used).

<?php
function __hash($password$obscured NULL$algorithm "sha1")
{
 
// whether to use user specified algorithm
 
$mode in_array($algorithmhash_algos());
 
// generate random salt
 
$salt uniqid(mt_rand(), true);
 
// hash it
 
$salt $mode hash($algorithm$salt) : sha1($salt);
 
// get the length
 
$slen strlen($salt);
 
// compute the actual length of salt we will use
  // 1/8 to 1/4 of the hash, with shorter passwords producing longer salts
 
$slen max($slen >> 3, ($slen >> 2) - strlen($password));
 
// if we are checking password against a hash, harvest the actual salt from it, otherwise just cut the salt we already have to the proper size
 
$salt $obscured __harvest($obscured$slen$password) : substr($salt0$slen);
 
// hash the password - this is maybe unnecessary
 
$hash $mode hash($algorithm$password) : sha1($password);
 
// place the salt in it
 
$hash __scramble($hash$salt$password);
 
// and hash it again
 
$hash $mode hash($algorithm$hash) : sha1($hash);
 
// cut the result so we can add salt and maintain the same length
 
$hash substr($hash$slen);
 
// ... do that
 
$hash __scramble($hash$salt$password);
 
// and return the result
 
return $obscured && $obscured !== $hash false $hash;
}
?>

It uses a random, variable length salt, depending on the length of the password. The functions __scramble() and __harvest() are used to place salt into the hash or pull it out respectively. You can write your own, and of course the strength of the result greatly depends on them. They can be relatively simple yet still quite secure:

<?php
function __scramble($hash$salt$password)
{
  return 
substr($hash0strlen($password)) . $salt substr($hashstrlen($password));
}

function 
__harvest($obscured$slen$password)
{
  return 
substr($obscuredmin(strlen($password), strlen($obscured) - $slen), $slen);
}
?>

Or they can be ridiculously complicated (my favourite kind):

<?php
function __scramble($hash$salt$password)
{
 
$k strlen($password); $j $k $k $k 1$p 0$index = array(); $out ""$m 0;
  for (
$i 0$i strlen($salt); $i++)
  {
   
$c substr($password$p1);
   
$j pow($j + ($c !== false ord($c) : 0), 2) % (strlen($hash) + strlen($salt));
    while (
array_key_exists($j$index))
     
$j = ++$j % (strlen($hash) + strlen($salt));
   
$index[$j] = $i;
   
$p = ++$p $k;
  }
  for (
$i 0$i strlen($hash) + strlen($salt); $i++)
   
$out .= array_key_exists($i$index) ? $salt[$index[$i]] : $hash[$m++];
  return 
$out;
}

function 
__harvest($obscured$slen$password)
{
 
$k strlen($password); $j $k $k $k 1$p 0$index = array(); $out "";
  for (
$i 0$i $slen$i++)
  {
   
$c substr($password$p1);
   
$j pow($j + ($c !== false ord($c) : 0), 2) % strlen($obscured);
    while (
in_array($j$index))
     
$j = ++$j strlen($obscured);
   
$index[$i] = $j;
   
$p = ++$p $k;
  }
  for (
$i 0$i $slen$i++)
   
$out .= $obscured[$index[$i]];
  return 
$out;
}
?>
2009-10-28 19:48:53
http://php5.kiev.ua/manual/ru/function.sha1.html
If you're using Dovecot for mail retrieval and you want to generate SHA1 passwords yourself, you'll need to set the raw_output value to true, then base64_encode the output:

<?php
function makeDovecotPassword($input)
{
  return 
'{SHA}' base64_encode(sha1($inputtrue));
}
?>
2010-11-25 02:59:17
http://php5.kiev.ua/manual/ru/function.sha1.html
Thought I might save someone else some time trying to figure out how to generate a hash like MySQL5 PASSWORD() makes using just PHP.

$hash = '*' . sha1(sha1($pass), TRUE));
2011-03-21 02:46:02
http://php5.kiev.ua/manual/ru/function.sha1.html
<?php
function DoubleSaltedHash($pw$salt) {
    return 
sha1($salt.sha1($salt.sha1($pw)));
}

function 
generate_salt() {
       
$dummy array_merge(range('0''9'));
       
mt_srand((double)microtime()*1000000);
        for (
$i 1$i <= (count($dummy)*2); $i++)
        {
               
$swap mt_rand(0,count($dummy)-1);
               
$tmp $dummy[$swap];
               
$dummy[$swap] = $dummy[0];
               
$dummy[0] = $tmp;
        }
        return 
sha1(substr(implode('',$dummy),0,9));
}
$pw="geheim"
$salt=generate_salt();
echo 
"hash:".DoubleSaltedHash($pw$salt);

?>

this is my way to crypt passwords
2012-08-01 13:57:40
http://php5.kiev.ua/manual/ru/function.sha1.html
Keep in mind that MD5 is less secure than SHA1.
Older CPUs can calculate MD5 over twice as fast as SHA1. GPUs in parallel calculations can handle MD5 over 3 times as fast as SHA1!

Two Radeon 79xx-series GPUs can calculate a rainbow table for 6-character lowercase MD5 password in... roughly 6 seconds!

Source: http://www.codinghorror.com/blog/2012/04/speed-hashing.html
2013-07-29 18:32:00
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
A combination of md5() and sha1() could be used for creating more secured hash strings. Here is a function which exactly does this download it from http://Webgrape.in/download.php?fileid=10 .
2014-12-25 20:52:42
http://php5.kiev.ua/manual/ru/function.sha1.html
Hi there:

About the complexity of sha1, sha1 generates a code a different code each 1,4615016373309029182036848327163e+48 (2 ^ 160 bits).  So the chances of the use of the same hash is really small.

The "problem" of sha1 (and md5) is the speed of the generation. However, the speed is proportional with the length of the text to encrypt. 

However, using a SALT, it increases tenfold times the security, even for a weak password.

In gross terms, a password of 6 characters can be hacked in a minute (if its store in md5 or sha).   However, a password of 7 characters takes an hour, a password of 8 a year and a password of more than 8 character is virtually inviable of hack.

However, if we used an SALT (a secret salt btw), then even a password of 3 characters will be really safe.

sha1('SALT SECRET TEXT!!@@@aaa0000'.'123');

And a double sha1 will ensure more safety 

sha1(sha1('SALT SECRET TEXT'.'123',false),false)

It will require a rainbow table of 20 characters, enough big to be absurdly safe even for a thousand of servers running during a year.
2016-02-02 22:15:05
http://php5.kiev.ua/manual/ru/function.sha1.html
Автор:
Note: Before you get some idea like using sha1 with password as way to prevent others tampering with message, read pages "Length extension attack" and "Hash-based message authentication code" on wikipedia. In short, naive constructions can be dangerously insecure. Use hash_hmac if available or reimplement HMAC properly without shortcuts, like already shown in comment from  mark at dot BANSPAM dot pronexus dot nl.
2017-11-27 12:16:08
http://php5.kiev.ua/manual/ru/function.sha1.html
The most secure way of sending passwords I have found so far 

is to first ask for and receive a one-time code from the server

and mask (hash) the password being sent back to the server with the one-time code.
2017-12-02 17:20:07
http://php5.kiev.ua/manual/ru/function.sha1.html

    Поддержать сайт на родительском проекте КГБ