網(wǎng)址
http://sourceforge.net/projects/php-screw/
我的安裝環(huán)境
系統(tǒng):Slackware 10
軟件:Apache 1.3.31
PHP 4.3.7
以上環(huán)境全部是slackware 10默認(rèn)安裝后自帶的。具體的Apache+php+mysql安裝方法參照如下
支持php的Apache環(huán)境安裝
獲得軟件
下載php_screw-1.3 (http://prdownloads.sourceforge.net/php-screw/php_screw-1.3.tgz?download)
安裝
1.將獲得的php_screw-1.3.tgz文件放到/usr/local目錄下,然后用tar解壓縮
tar zxvf php_screw-1.3.tgz
2.進(jìn)入/usr/local/php_screw-1.3目錄開始安裝
1 |
cd /usr/ local /php_screw-1.3 |
3.設(shè)置自己用來加密的密碼
vi my_screw.h
-- Please change the encryption SEED key (pm9screw_mycryptkey) into the
values according to what you like.
The encryption will be harder to break, if you add more values to the
encryption SEED array. However, the size of the SEED is unrelated to
the time of the decrypt processing.
* If you can read and understand the source code, to modify an original
encryption logic will be possible. But in general, this should not
be necessary.
OPTIONAL: Encrypted scripts get a stamp added to the beginning of the
file. If you like, you may change this stamp defined by
PM9SCREW and PM9SCREW_LEN in php_screw.h. PM9SCREW_LEN must
be less than or equal to the size of PM9SCREW.
4.編譯
make
5.拷貝modules目錄下的php_screw.so文件到/usr/lib/php/extension目錄下
cp modules/php_screw.so /usr/lib/php/extension/
6.編輯php.ini文件
在php.ini文件里,加入如下語句
extension=php_screw.so
7.重新啟動Apache
/etc/rc.d/rc.httpd restart
8.編譯加密工具
cd tools
make
9.將tools目錄下加密用的工具screw拷貝到適當(dāng)目錄
cp screw /usr/bin/
經(jīng)過以上的10步,就已經(jīng)把php_screw-1.3全部安裝完成了。并且現(xiàn)在的php也已經(jīng)支持解釋加密過的php文件了
使用
1.現(xiàn)寫一個要加密的php文件。
我寫了如下的一個用來測試php速度的compute.php文件
04 |
for ( $i =0; $i <5000000; $i ++) |
將上面的compute.php文件放到/var/www/htdocs目錄下。通過瀏覽器訪問,將顯示出php在大量計算時的速度(只能粗略估計一下)
2.將我們寫的php文件加密
cd /var/www/htdocs/
screw compute.php
我們加密后,現(xiàn)在目錄下的compute.php文件就是我們已經(jīng)加密的了。而源文件被改名為compute.php.screw存放了。
我們現(xiàn)在再測試一下compute.php,看看能否正常使用?速度如何?
我比較了一下,加密前后的速度大概一樣,基本沒有太多的損失。
該文章在 2012/6/3 0:50:50 編輯過