PHP 之sha256 sha512封裝

/*
PHP sha256 sha512目前(PHP 7.1)沒有內置的函數來計算,sha1() sha1_file() md5() md5_file()分別能夠用來計算字符串和文件的sha1散列值和md5散列值,當前最新版本PHP 7.1 sha256() sha256_file() sha512() sha512_file()這樣的函數也沒有。SHA-2是SHA-22四、SHA-25六、SHA-384,和SHA-512的合稱。
PHP 計算sha256 sha512能夠使用hash()函數實現,計算文件的sha256 sha512則能夠使用hash_file()實現。
hash($algo , $data, $rawOutput);
hash_file($algo , $filepath, $rawOutput);
其中$algo是算法,能夠是sha256, sha512等值,支持的算法能夠使用hash_algos()查看,該函數返回全部支持的算法。
$data是須要計算hash值的字符串,$filepath是須要計算hash值的文件名,能夠是相對路徑也能夠是絕對路徑。
$rawOutput是一個可選的布爾值參數,若是爲true,則返回二進制數據,若是爲false則返回字符串,默認值爲false.
咱們能夠封裝自定義函數來實現PHP 計算sha256 sha512以及其餘類型的hash值。
如下代碼實現PHP sha256() sha256_file() sha512() sha512_file()
 */

/*
 * 如下代碼實現PHP sha256() sha256_file() sha512() sha512_file() PHP 5.1.2+完美兼容
 * @param string $data 要計算散列值的字符串
 * @param boolean $rawOutput 爲true時返回原始二進制數據,不然返回字符串
 * @param string file 要計算散列值的文件名,能夠是單獨的文件名,也能夠包含路徑,絕對路徑相對路徑均可以
 * @return boolean | string 參數無效或者文件不存在或者文件不可讀時返回false,計算成功則返回對應的散列值
 * @notes 使用示例 sha256('www.wuxiancheng.cn') sha512('www.wuxiancheng.cn') sha256_file('index.php') sha512_file('index.php')
*/
/* PHP sha256() */
function sha256($data, $rawOutput = false)
{
    if (!is_scalar($data)) {
        return false;
    }
    $data = (string)$data;
    $rawOutput = !!$rawOutput;
    return hash('sha256', $data, $rawOutput);
}

/* PHP sha256_file() */
function sha256_file($file, $rawOutput = false)
{
    if (!is_scalar($file)) {
        return false;
    }
    $file = (string)$file;
    if (!is_file($file) || !is_readable($file)) {
        return false;
    }
    $rawOutput = !!$rawOutput;
    return hash_file('sha256', $file, $rawOutput);
}

/* PHP sha512() */
function sha512($data, $rawOutput = false)
{
    if (!is_scalar($data)) {
        return false;
    }
    $data = (string)$data;
    $rawOutput = !!$rawOutput;
    return hash('sha512', $data, $rawOutput);
}

/* PHP sha512_file()*/
function sha512_file($file, $rawOutput = false)
{
    if (!is_scalar($file)) {
        return false;
    }
    $file = (string)$file;
    if (!is_file($file) || !is_readable($file)) {
        return false;
    }
    $rawOutput = !!$rawOutput;
    return hash_file('sha512', $file, $rawOutput);
}
相關文章
相關標籤/搜索