sha1

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

sha1Calculate the sha1 hash of a string

Aviso

Não é recomendado usar esta função para proteger senhas, devido à natureza rápida deste algoritmo de hash. Consulte as Perguntas Frequentes sobre Hashing de Senha para obter detalhes e melhores práticas.

Descrição

sha1(string$string, bool$binary = false): string

Calculates the sha1 hash of string using the » US Secure Hash Algorithm 1.

Parâmetros

string

The input string.

binary

If the optional binary is set to true, then the sha1 digest is instead returned in raw binary format with a length of 20, otherwise the returned value is a 40-character hexadecimal number.

Valor Retornado

Returns the sha1 hash as a string.

Exemplos

Exemplo #1 A sha1() example

<?php
$str
= 'apple';

if (
sha1($str) === 'd0be2dc421be4fcd0172e5afceea3970e2f3d940') {
echo
"Would you like a green or red apple?";
}
?>

Veja Também

  • sha1_file() - Calcula a hash sha1 de um arquivo
  • crc32() - Calcula polinômio crc32 de uma string
  • md5() - Calculate the md5 hash of a string
  • hash() - Generate a hash value (message digest)
  • crypt() - One-way string hashing
  • password_hash() - Cria um hash de senha
To Top