ตัวอย่าง
คำนวณ SHA-1 กัญชาของสตริง "Hello" :
<?php
$str = "Hello";
echo sha1($str);
?>
ตัวอย่างเช่นเรียกใช้» ความหมายและการใช้งาน
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 กัญชาในความสำเร็จหรือความล้มเหลวผิดพลาดใน |
---|---|
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 สตริงอ้างอิง