최신 웹 개발 튜토리얼
 

PHP sha1_file() Function

<PHP 문자열 참조

텍스트 파일의 SHA-1 해시 계산 "test.txt" :

<?php
$filename = "test.txt";
$sha1file = sha1_file($filename);
echo $sha1file;
?>

코드의 출력은 위의 것입니다 :

aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d


정의 및 사용

sha1_file() 함수는 파일의 SHA-1 해시를 계산한다.

sha1_file() 함수는 US 보안 해시 알고리즘 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 성공 해시, 실패하면 FALSE를 반환합니다.


통사론

sha1_file( file,raw )

매개 변수 기술
file 필요합니다. 이 파일은 계산한다
raw 선택 과목. 헥스 또는 이진 출력 형식을 지정하는 부울 값
  • TRUE - 원시 20 문자 바이너리 형식
  • FALSE - 기본. 40 문자의 16 진수

기술적 세부 사항

반환 값 : 성공에 계산 된 SHA-1 해시를 반환, 실패하면 FALSE
PHP 버전 : 4.3.0+
변경 내역 : 원시 매개 변수는 PHP 5.0에서 선택되었다

PHP 5.1, 사용하는 것이 가능하다 sha1_file() 랩퍼를 예 sha1_file("http://w3ii.com/..")

더 예

예 1

의 SHA-1 해시 저장 "test.txt" 파일에를 :

<?php
$sha1file = sha1_file("test.txt");
file_put_contents("sha1file.txt",$sha1file);
?>

만약 테스트 "test.txt" (즉,는 SHA-1 해쉬가 변경된 경우) 변경되었다 :

<?php
$sha1file = file_get_contents("sha1file.txt");
if (sha1_file("test.txt") == $sha1file)
  {
  echo "The file is ok.";
  }
else
  {
  echo "The file has been changed.";
  }
?>

코드의 출력은 위의 수 :

The file is ok.


<PHP 문자열 참조