php 使用異或(XOR)加密/解密檔案
原理:將檔案每一個位元組與key作位異或運算(XOR),解密則再執行一次異或運算。
代碼如下:
<?php$source = 'test.jpg';$encrypt_file = 'test_enc.jpg';$decrypt_file = 'test_dec.jpg';$key = 'D89475D32EA8BBE933DBD299599EEA3E';echo '<p>source:</p>';echo '<img src="'.$source.'" width="200">';echo '<hr>';file_encrypt($source, $encrypt_file, $key); // encryptecho '<p>encrypt file:</p>';echo '<img src="'.$encrypt_file.'" width="200">';echo '<hr>';file_encrypt($encrypt_file, $decrypt_file, $key); // decryptecho '<p>decrypt file:</p>';echo '<img src="'.$decrypt_file.'" width="200">';/** 檔案加密,使用key與原文異或產生密文,解密則再執行一次異或即可* @param String $source 要加密或解密的檔案* @param String $dest 加密或解密後的檔案* @param String $key 密鑰*/function file_encrypt($source, $dest, $key){if(file_exists($source)){$content = ''; // 處理後的字串$keylen = strlen($key); // 密鑰長度$index = 0;$fp = fopen($source, 'rb');while(!feof($fp)){$tmp = fread($fp, 1);$content .= $tmp ^ substr($key,$index%$keylen,1);$index++;}fclose($fp);return file_put_contents($dest, $content, true);}else{return false;}}?>
本篇文章介紹了如何通過php 使用異或(XOR)加密/解密檔案 ,更多相關內容請關注php中文網。