хеширование паролей

  1. kick

    Хеширование паролей

    PHP function encrypt($str) { $key = array(); $dst = array(); $i = 0; $nBytes = strlen($str); while ($i < $nBytes) { $i++; $key[$i] = ord(substr($str, $i - 1, 1)); $dst[$i] = $key[$i]; } $rslt = $key[1] + $key[2]*256 + $key[3]*65536 + $key[4]*16777216; $one =...
  2. kick

    Мануал Хеширование паролей

    PHP function encrypt($str) { $key = array(); $dst = array(); $i = 0; $nBytes = strlen($str); while ($i < $nBytes) { $i++; $key[$i] = ord(substr($str, $i - 1, 1)); $dst[$i] = $key[$i]; } $rslt = $key[1] + $key[2]*256 + $key[3]*65536 + $key[4]*16777216; $one =...
Назад
Сверху Снизу