Mysql函數
select password(‘123456’); #加密密码 select md5(‘123456’); #md5加密密码(貌似mysql数据库相同密码每次加密后的md5字符串都是一样
select AES_ENCRYPT('123456','key') ; #加密 select AES_DECRYPT( ( select AES_ENCRYPT('123456','key') ),'key') ; #解密
select encode('123456','qwedgnkh'); #加密 select decode(encode ("'123456'","'qwedgnkh'"),"'qwedgnkh'") #解密
以上是mysql關於加密解密的函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!