PHP实现加密的几种方式介绍
Posted 一千二
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP实现加密的几种方式介绍相关的知识,希望对你有一定的参考价值。
1. MD5加密
不可逆加密
md5($password)
2. Crype加密
string crypt ( string $str [, string $salt ] )
不可逆
3. Sha1加密
string sha1 ( string $str [, bool $raw_output = false ] )
不可逆
4. URL加密
可逆加密
urlencode ( string $str )
urldecode($encodeUrl)
5. Base64信息编码加密
base64_encode ( string $data )
base64_decode ( string $data [, bool $strict = false ] )
以上是关于PHP实现加密的几种方式介绍的主要内容,如果未能解决你的问题,请参考以下文章