PHP code example of windwork / crypt
1. Go to this page and download the library: Download windwork/crypt library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
windwork / crypt example snippets
// usage:
$key = '秘钥';
$txt = '明文~';
// 1、使用AzDG算法加密解密
$crypt = new \wf\crypt\adapter\AzDG();
$enc = $crypt->encrypt($txt, $key); // 加密
$dec = $crypt->decrypt($enc, $key); // 解密
// 2、使用Xxtea算法加密解密
$crypt = \wf\crypt\adapter\Xxtea();
$enc = $crypt->encrypt($txt, $key); // 加密
$dec = $crypt->decrypt($enc, $key); // 解密
// 3、通过配置文件选择使用加密方式
$cfg = [
'class' => '\\wf\\crypt\\adapter\\AzDG',
'key' => 'value',
];
$crypt = $cfg['class']($cfg);
// 4、在Windwork框架中使用
$crypt = \wfCrypt();