程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php使用異或(XOR)加密和解密文件

php使用異或(XOR)加密和解密文件

編輯:PHP綜合

php 使用異或(XOR)加密/解密文件

原理:將文件每一個字節與key作位異或運算(XOR),解密則再執行一次異或運算。

代碼如下:

01.<?php  
02.
03.$source = 'test.jpg';
04.$encrypt_file = 'test_enc.jpg';
05.$decrypt_file = 'test_dec.jpg';
06.$key = 'D89475D32EA8BBE933DBD299599EEA3E';
07.
08.echo '<p>source:</p>';
09.echo '<img src="'.$source.'" width="200">';
10.echo '<hr>';
11.
12.file_encrypt($source, $encrypt_file, $key); // encrypt
13.
14.echo '<p>encrypt file:</p>';
15.echo '<img src="'.$encrypt_file.'" width="200">';
16.echo '<hr>';
17.
18.file_encrypt($encrypt_file, $decrypt_file, $key); // decrypt
19.
20.echo '<p>decrypt file:</p>';
21.echo '<img src="'.$decrypt_file.'" width="200">';
22.
23./** 文件加密,使用key與原文異或生成密文,解密則再執行一次異或即可
24.* @param String $source 要加密或解密的文件
25.* @param String $dest 加密或解密後的文件
26.* @param String $key 密鑰
27.*/
28.function file_encrypt($source, $dest, $key){
29. if(file_exists($source)){
30.
31. $content = ''; // 處理後的字符串
32. $keylen = strlen($key); // 密鑰長度
33. $index = 0;
34.
35. $fp = fopen($source, 'rb');
36.
37. while(!feof($fp)){
38. $tmp = fread($fp, 1);
39. $content .= $tmp ^ substr($key,$index%$keylen,1);
40. $index++;
41. }
42.
43. fclose($fp);
44.
45. return file_put_contents($dest, $content, true);
46.
47. }else{
48. return false;
49. }
50.}
51.
52.?>

查看本欄目

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved