1 <?php 2 3 class Ecdsa 4 { 5 private $alg; 6 7 public function __construct() { 8 $this->alg = OPENSSL_ALGO_SHA256; 9 } 10 11 /** 12 * 加密 13 * @param ...
分类:
Web程序 时间:
2020-01-07 13:10:58
阅读次数:
302
PHP 加密解密函数: /** * 系统加密方法 * @param string $data 要加密的字符串 * @param string $key 加密密钥 * @param int $expire 过期时间 单位 秒 * @return string * @author winky */ fu ...
分类:
Web程序 时间:
2019-12-31 10:27:27
阅读次数:
122
php加密解密函数: /** * 加密函数 * * @param string $txt 需要加密的字符串 * @param string $key 密钥 * @return string 返回加密结果 */ function ds_encrypt($txt, $key = '') { if (em ...
分类:
Web程序 时间:
2019-11-18 18:13:55
阅读次数:
92
<?php function encryptDecrypt($key, $string, $decrypt){ if($decrypt){ $decrypted = rtrim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, md5($key), base64_decode( ...
分类:
Web程序 时间:
2019-09-03 09:31:56
阅读次数:
108
1.第一种 2.第二种 3.第三种 4.第四种 5.第五种 6.第六种 ...
分类:
Web程序 时间:
2019-07-29 17:39:18
阅读次数:
177
function encrypt($data, $key) { $prep_code = serialize($data); $block = mcrypt_get_block_size('des', 'ecb'); if (($pad = $block - (strlen($prep_code) ...
分类:
Web程序 时间:
2019-03-27 21:21:57
阅读次数:
196
PHP 加密解密 PHP56 ajax时出现 已经废弃了$HTTP_RAW_POST_DATA 解决方法 修改php.ini ...
分类:
Web程序 时间:
2019-01-02 15:47:00
阅读次数:
199
<?php function encryptDecrypt($key, $string, $decrypt){ if($decrypt){ $decrypted = rtrim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, md5($key), base64_decode( ...
分类:
Web程序 时间:
2018-12-18 14:37:22
阅读次数:
215