php使用異或(XOR)加密和解密檔案

來源:互聯網
上載者:User

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.?>

查看本欄目更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/webkf/PHP/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.