支援Linux、macOS、Windows 等系統相容Apache、Nginx PHP-fpm、命令列等運行模式
若專案的php 檔案很多,可只加密部分重要程式碼
/* 这里定制你的加密特征头,不限长度,十六进制哦 */ const u_char tonyenc_header[] = { 0x66, 0x88, 0xff, 0x4f, 0x68, 0x86, 0x00, 0x56, 0x11, 0x16, 0x16, 0x18, }; /* 这里指定密钥,设置长一些更安全 */ const u_char tonyenc_key[] = { 0x9f, 0x49, 0x52, 0x00, 0x58, 0x9f, 0xff, 0x21, 0x3e, 0xfe, 0xea, 0xfa, 0xa6, 0x33, 0xf3, 0xc6, };
在Linux、macOS 上編譯
git clone https://github.com/lihancong/tonyenc.git cd tonyenc phpize ./configure make
在Windows 上編譯
已編譯了以下模組,可供測試(需要VC14 運行庫):
# php7.0 64位 线程安全版 php_tonyenc_php70_ts_VC14_x64.dll # php7.0 64位 线程非安全版 php_tonyenc_php70_nts_VC14_x64.dll
php tonyenc.php example.php dir/
以上是一個PHP7 碼的加密擴展的詳細內容。更多資訊請關注PHP中文網其他相關文章!