定義と使用法
sha1()関数は、文字列のSHA-1ハッシュを計算します。
sha1()関数は、米国セキュアハッシュアルゴリズム1を使用しています。
RFC 3174から-米国セキュアハッシュアルゴリズム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."
ヒント:使用し、ファイルのSHA-1ハッシュを計算するにはsha1_file()関数を。
構文
sha1( string,raw )
パラメーター | 説明 |
---|---|
string | 必須。 文字列が計算されます |
raw | 任意。 進またはバイナリの出力フォーマットを指定します。
|
技術的な詳細
戻り値: | 成功した場合に計算されたSHA-1ハッシュを返し、失敗した場合にFALSE |
---|---|
PHPバージョン: | 4.3.0+ |
変更履歴: | 生のパラメータは、PHP 5.0でオプションとなりました |
その他の例
例1
結果を印刷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>";
?>
»実行例 例2
結果を印刷sha1()し、それをテストします。
<?php
$str = "Hello";
echo sha1($str);
if (sha1($str) ==
"f7ff9e8b7bb2e09b70935a5d785e0cc5d9d0abf0")
{
echo "<br>Hello
world!";
exit;
}
?>
»実行例 <PHPの文字列のリファレンス