当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mhash_get_block_size()用法及代码示例


mhash_get_block_size()函数是PHP中的内置函数,用于获取指定哈希的块大小。获取系统中安装的当前MHash中最高可用的哈希ID,例如SHA1,MD%等。

用法:

int mhash_get_block_size( int $hash )

参数:此函数接受一个参数,如上面的语法所示。参数说明如下:

  • $Hash:哈希ID。 MHASH_hashname常数之一。

返回值:此函数返回哈希名称及其块大小,其中包含受支持的哈希算法列表。

例:以下示例程序旨在说明PHP中的mhash_get_block_size()函数。

PHP

<?php 
  
$maxHashCount = mhash_count(); 
  
for ($hashNumber = 0; $hashNumber <=  
        $maxHashCount; $hashNumber++) { 
              
    // i-th hash name 
    $hashName = mhash_get_hash_name($hashNumber); 
      
    // i-th block size 
    $hashSize = mhash_get_block_size($hashNumber); 
      
    // Details of i-th hash 
    print_r($hashName . " 's block size is" 
                . $hashSize . "\n"); 
} 
?>

输出:

CRC32 's block size is4
MD5 's block size is16
SHA1 's block size is20
HAVAL256 's block size is32
's block size is
RIPEMD160 's block size is20
's block size is
TIGER 's block size is24
GOST 's block size is32
CRC32B 's block size is4
HAVAL224 's block size is28
HAVAL192 's block size is24
HAVAL160 's block size is20
HAVAL128 's block size is16
TIGER128 's block size is16
TIGER160 's block size is20
MD4 's block size is16
SHA256 's block size is32
ADLER32 's block size is4
SHA224 's block size is28
SHA512 's block size is64
SHA384 's block size is48
WHIRLPOOL 's block size is64
RIPEMD128 's block size is16
RIPEMD256 's block size is32
RIPEMD320 's block size is40
's block size is
SNEFRU256 's block size is32
MD2 's block size is16
FNV132 's block size is4
FNV1A32 's block size is4
FNV164 's block size is8
FNV1A64 's block size is8
JOAAT 's block size is4
lovely@lovely:~/Documents/php$

相关用法


注:本文由纯净天空筛选整理自shubham_singh大神的英文原创作品 PHP mhash_get_block_size() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。