php加密函数
crypt()
md5()
shal()
crypt()完成单项加密,不可还原
string crypt(string str[,string salt])
salt为干扰串,如果省略则会随机生成一个干扰串,随机生成则每次加密结果都不一样。
string md5(string str[,bool raw_output]); //推荐使用,也是单向加密,生成的是字节串 与编码格式无关。
可以还原成明文的是 Mcrypt扩展库。
php加密函数
crypt()
md5()
shal()
crypt()完成单项加密,不可还原
string crypt(string str[,string salt])
salt为干扰串,如果省略则会随机生成一个干扰串,随机生成则每次加密结果都不一样。
string md5(string str[,bool raw_output]); //推荐使用,也是单向加密,生成的是字节串 与编码格式无关。
可以还原成明文的是 Mcrypt扩展库。