欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

ucenter可逆加密函数authcode用法示例

程序员文章站 2022-05-06 14:58:55
...
本文介绍了ucenter中一个可逆加密函数authcode函数的用法,浏览ucenter源代码时发现这个authcode函数,用于加密解密,效果不错。

ucenter可逆加密函数authcode函数

例子:

 0) && substr($result, 10, 16) ==
 substr(md5(substr($result, 26).$keyb), 0, 16)) { 
return substr($result, 26); 
} else { 
return ''; 
} // bbs.it-home.org
} else { 
return $keyc.str_replace('=', '', base64_encode($result)); 
} 
} 

//调用示例
$string = authcode("Hello","ENCODE","HTML_TCCJ_AUTH"); 
echo $string,'
'; echo authcode($string,"DECODE","HTML_TCCJ_AUTH"),'
';