Örnek
Dizesinin SHA-1 karma hesaplayın "Hello" :
<?php
$str = "Hello";
echo sha1($str);
?>
»Run örnek Tanımı ve Kullanımı
sha1() işlevi, bir dizi SHA-1 karma hesaplar.
sha1() işlevi ABD Güvenli Karma Algoritma 1 kullanır.
RFC 3174 kaynaktan - ABD Güvenli Karma Algoritma 1: "SHA-1 produces a 160-bit output called a message digest. The message digest can then, for example, be input to a signature algorithm which generates or verifies the signature for the message. Signing the message digest rather than the message often improves the efficiency of the process because the message digest is usually much smaller in size than the message. The same hash algorithm must be used by the verifier of a digital signature as was used by the creator of the digital signature."
İpucu: kullanmak, bir dosyanın SHA-1 karma hesaplamak için sha1_file() fonksiyonu.
Sözdizimi
sha1( string,raw )
Parametre | Açıklama |
---|---|
string | Gereklidir. dize hesaplanacak |
raw | İsteğe bağlı. onaltılık veya ikili çıkış biçimi belirtin:
|
Teknik detaylar
Geri dönüş değeri: | başarısına hesaplanan SHA-1 karma döndürür, aksi takdirde FALSE |
---|---|
PHP Sürümü: | 4.3.0+ |
Değişiklikler: | Ham parametre PHP 5.0 isteğe bağlı hale gelmiştir |
Diğer Örnekler
Örnek 1
Sonucunu yazdır sha1() :
<?php
$str = "Hello";
echo "The string: ".$str."<br>";
echo
"TRUE - Raw 20 character binary format: ".sha1($str, TRUE)."<br>";
echo
"FALSE - 40 character hex number: ".sha1($str)."<br>";
?>
»Run örnek Örnek 2
Sonucunu yazdır sha1() test sonra ve:
<?php
$str = "Hello";
echo sha1($str);
if (sha1($str) ==
"f7ff9e8b7bb2e09b70935a5d785e0cc5d9d0abf0")
{
echo "<br>Hello
world!";
exit;
}
?>
»Run örnek <PHP dize Başvuru