本文整理匯總了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);
}
}