PHP实现的简单对称加密与解密方法实例小结
程序员文章站
2024-01-06 08:49:16
本文实例讲述了php实现的简单对称加密与解密方法。分享给大家供大家参考,具体如下:
方法一:yii自带的加密方法
/**
* 加密
* @var strin...
本文实例讲述了php实现的简单对称加密与解密方法。分享给大家供大家参考,具体如下:
方法一:yii自带的加密方法
/** * 加密 * @var string [要加密的值] */ $secretkey = "wwj"; $data = $res['u_id']; $encrypteddata = yii::$app->getsecurity()->encryptbypassword($data, $secretkey);
/** * 解密 * @var [type] [加密前的值] */ $aid = $req->get('uid'); $secretkey = "wwj"; $uid = yii::$app->getsecurity()->decryptbypassword($aid,$secretkey);
方法二:
/** * 安全url编码 * @param type $data * @return type */ function encode($data) { return str_replace(array('+', '/', '='), array('-', '_', ''), base64_encode(serialize($data))); } /** * 安全url解码 * @param type $string * @return type */ function decode($string) { $data = str_replace(array('-', '_'), array('+', '/'), $string); $mod4 = strlen($data) % 4; ($mod4) && $data .= substr('====', $mod4); return unserialize(base64_decode($data)); }
方法三:
/** * 加密 * @param [type] $code [description] * @return [type] [description] */ public static function encrypt($code) { return urlencode(base64_encode(mcrypt_encrypt(mcrypt_rijndael_256, md5("key"), $code, mcrypt_mode_ecb, mcrypt_create_iv(mcrypt_get_iv_size(mcrypt_rijndael_256, mcrypt_mode_ecb), mcrypt_rand)))); } /** * 解密 * @param [type] $code [description] * @return [type] [description] */ public static function decrypt($code) { return urldecode(mcrypt_decrypt(mcrypt_rijndael_256, md5("key"), base64_decode($code), mcrypt_mode_ecb, mcrypt_create_iv(mcrypt_get_iv_size(mcrypt_rijndael_256, mcrypt_mode_ecb), mcrypt_rand))); }
方法四:
/** * 简单对称加密 * @param string $string [需要加密的字符串] * @param string $skey [加密的key] * @return [type] [加密后] */ function encode($string = '', $skey = 'cxphp') { $strarr = str_split(base64_encode($string)); $strcount = count($strarr); foreach (str_split($skey) as $key => $value) $key < $strcount && $strarr[$key].=$value; return str_replace(array('=', '+', '/'), array('o0o0o', 'o000o', 'oo00o'), join('', $strarr)); }
/** * 简单对称解密 * @param string $string [加密后的值] * @param string $skey [加密的key] * @return [type] [加密前的字符串] */ function decode($string = '', $skey = 'cxphp') { $strarr = str_split(str_replace(array('o0o0o', 'o000o', 'oo00o'), array('=', '+', '/'), $string), 2); $strcount = count($strarr); foreach (str_split($skey) as $key => $value) $key <= $strcount && isset($strarr[$key]) && $strarr[$key][1] === $value && $strarr[$key] = $strarr[$key][0]; return base64_decode(join('', $strarr)); }
ps:关于加密解密感兴趣的朋友还可以参考本站在线工具:
文字在线加密解密工具(包含aes、des、rc4等):
md5在线加密工具:
http://tools.jb51.net/password/createmd5password
在线散列/哈希算法加密工具:
在线md5/hash/sha-1/sha-2/sha-256/sha-512/sha-3/ripemd-160加密工具:
在线sha1/sha224/sha256/sha384/sha512加密工具:
更多关于php相关内容感兴趣的读者可查看本站专题:《php加密方法总结》、《php编码与转码操作技巧汇总》、《php数学运算技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php数据结构与算法教程》、《php程序设计算法总结》及《php正则表达式用法总结》
希望本文所述对大家php程序设计有所帮助。