當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CI_SHA類代碼示例

本文整理匯總了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);
    }
}
開發者ID:Calico90,項目名稱:codeigniter-version-scan,代碼行數:25,代碼來源:security_helper.php

示例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);
		}
	}
開發者ID:robbyrice,項目名稱:school_legacy,代碼行數:22,代碼來源:MY_encrypt.php

示例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);
     }
 }
開發者ID:quanict,項目名稱:giaF,代碼行數:22,代碼來源:Encrypt.php


注:本文中的CI_SHA類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。