您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

php加密解密实用类分享_PHP

2026/1/5 15:46:53发布16次查看
用户注册的密码一般不会明文保存,总得加个密先。最简单的当然是在数据库sql语句中调用md5函数加密用户密码。这里介绍一个加解密类。如果你想在用户忘记密码时为他或她找回原来的密码,那么这个类是个好用的工具。当然,这个加解密类也可用于其他用途。
复制代码 代码如下:
skey = hash(md5, $key, true); //32位skey
    }
public function safe_b64encode($string) {
        $data = base64_encode($string);
        $data = str_replace(array('+', '/', '='), array('-', '_', ''), $data);
        return $data;
    }
public function safe_b64decode($string) {
        $data = str_replace(array('-', '_'), array('+', '/'), $string);
        $mod4 = strlen($data) % 4;
        if ($mod4) {
            $data .= substr('====', $mod4);
        }
        return base64_decode($data);
    }
public function encode($value) {
        if (!$value) {
            return false;
        }
        $text = $value;
        $iv_size = mcrypt_get_iv_size(mcrypt_rijndael_256, mcrypt_mode_ecb);
        $iv = mcrypt_create_iv($iv_size, mcrypt_rand);
        $crypttext = mcrypt_encrypt(mcrypt_rijndael_256, $this->skey, $text, mcrypt_mode_ecb, $iv);
        return trim($this->safe_b64encode($crypttext));
    }
public function decode($value) {
        if (!$value) {
            return false;
        }
        $crypttext = $this->safe_b64decode($value);
        $iv_size = mcrypt_get_iv_size(mcrypt_rijndael_256, mcrypt_mode_ecb);
        $iv = mcrypt_create_iv($iv_size, mcrypt_rand);
        $decrypttext = mcrypt_decrypt(mcrypt_rijndael_256, $this->skey, $crypttext, mcrypt_mode_ecb, $iv);
        return trim($decrypttext);
    }
}
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product