加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 982 Bytes
一键复制 编辑 原始数据 按行查看 历史
sirping 提交于 2019-01-29 15:30 . one
<?php
/*************************************************
Encipher - the PHP code encode tool
Author: Jacky Yu <jacky325@qq.com>
Copyright (c): 2012-2017 Jacky Yu, All rights reserved
Version: 1.1.2
* This library is free software; you can redistribute it and/or modify it.
* You may contact the author of Encipher by e-mail at: jacky325@qq.com
The latest version of Encipher can be obtained from:
https://github.com/uniqid/encipher
*************************************************/
$app = str_replace('\\', '/', dirname(__FILE__));
require_once($app . '/lib/encipher.php');
$original = $app . '/original'; //待加密的文件目录
$encoded = $app . '/encoded'; //加密后的文件目录
$encipher = new Encipher($original, $encoded);
/**
* 设置加密模式 false = 低级模式; true = 高级模式
* 低级模式不使用eval函数
* 高级模式使用了eval函数
*/
$encipher->advancedEncryption = true;
echo "<pre>\n";
$encipher->encode();
echo "</pre>\n";
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化