本文整理汇总了PHP中CI_SHA类的典型用法代码示例。如果您正苦于以下问题:PHP CI_SHA类的具体用法?PHP CI_SHA怎么用?PHP CI_SHA使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CI_SHA类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: hash
/**
* Hash encode a string
*
* @access public
* @param string
* @return string
*/
function hash($str, $type = 'sha1')
{
if ($type == 'sha1') {
if (!function_exists('sha1')) {
if (!function_exists('mhash')) {
require_once BASEPATH . 'libraries/Sha1' . EXT;
$SH = new CI_SHA();
return $SH->generate($str);
} else {
return bin2hex(mhash(MHASH_SHA1, $str));
}
} else {
return sha1($str);
}
} else {
return nmd5($str);
}
}
示例2: sha1
public function sha1($str)
{
$str = 'Limay===Fra'.$str.'nce==86204';
if ( ! function_exists('sha1'))
{
if ( ! function_exists('mhash'))
{
require_once(BASEPATH.'libraries/Sha1'.EXT);
$SH = new CI_SHA;
return $SH->generate($str);
}
else
{
return bin2hex(mhash(MHASH_SHA1, $str));
}
}
else
{
return sha1($str);
}
}
示例3: sha1
/**
* Generate an SHA1 Hash
*
* @access public
* @param
* string
* @return string
*/
function sha1($str)
{
if (!function_exists('sha1')) {
if (!function_exists('mhash')) {
require_once BASEPATH . 'libraries/Sha1.php';
$SH = new CI_SHA();
return $SH->generate($str);
} else {
return bin2hex(mhash(MHASH_SHA1, $str));
}
} else {
return sha1($str);
}
}