Метод шифрования в PunBB

Discussion in 'Песочница' started by Mr_Necromancer, 20 Jul 2007.

  1. Mr_Necromancer

    Joined:
    21 Nov 2006
    Messages:
    25
    Likes Received:
    10
    Reputations:
    -9
    Подскажите, какой метод шифрования в punbb, просто MD5?
     
  2. ettee

    ettee Administrator
    Staff Member

    Joined:
    12 Oct 2006
    Messages:
    466
    Likes Received:
    1,036
    Reputations:
    1,065
    дефолтная функция шифрования паролей:
    PHP:
    function pun_hash($str)
    {
    if (
    function_exists('sha1')) // Only in PHP 4.3.0+
    return sha1($str);
    else if (
    function_exists('mhash')) // Only if Mhash library is loaded
    return bin2hex(mhash(MHASH_SHA1$str));
    else
    return 
    md5($str);
    }
    часто её заменяют на
    PHP:
    function pun_hash($str)
    {
    return 
    md5($str);
    }
    из-за проблем с ПО на сервере.
    при возможности смотрим метод тут include\ functions.php
     
    _________________________