codecamp

PHP8 hash_hkdf

(PHP 7 >= 7.1.2, PHP 8)

hash_hkdf — 生成所提供密钥输入的 HKDF 密钥派生

说明

hash_hkdf(
    string $algo,
    string $key,
    int $length = 0,
    string $info = "",
    string $salt = ""
): string

参数 

algo

所选哈希算法的名称(即“sha256”、“sha512”、“haval160,4”等) 有关支持的算法列表,请参阅 hash_algos()。

注意

不允许使用非加密哈希函数。

key

输入键控材料(原始二进制文件)。不能为空。

length

所需的输出长度(以字节为单位)。 不能大于所选哈希函数大小的 255 倍。

如果为 ,则输出长度 将默认为所选的哈希函数大小。length0

info

特定于应用程序/上下文的信息字符串。

salt

在衍生过程中使用的盐。

虽然是可选的,但添加随机盐可显着提高 HKDF 的强度。

返回值 

返回一个字符串,其中包含派生键的原始二进制表示形式 (也称为输出键控材料 - OKM)。

错误/异常 

如果为空、未知/非加密、小于或太大,则引发 ValueError 异常 (大于哈希函数大小的 255 倍)。keyalgolength0

更新日志 

版本说明
8.0.0现在在出错时抛出 ValueError 异常。 以前,返回 false 并发出E_WARNING消息。

示例 

示例 #1 hash_hkdf() example

<?php
// Generate a random key, and salt to strengthen it during derivation.
$inputKey = random_bytes(32);
$salt = random_bytes(16);

// Derive a pair of separate keys, using the same input created above.
$encryptionKey = hash_hkdf('sha256', $inputKey, 32, 'aes-256-encryption', $salt);
$authenticationKey = hash_hkdf('sha256', $inputKey, 32, 'sha-256-authentication', $salt);

var_dump($encryptionKey !== $authenticationKey); // bool(true)
?>

上面的示例生成一对单独的密钥,适合创建一个 encrypt-then-HMAC 构造,使用 AES-256 和 SHA-256 进行加密和 身份验证。

参见 


PHP8 hash_final
PHP8 hash_hmac_algos
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PHP8 语言参考

PHP8 函数参考

PHP8 影响 PHP 行为的扩展

PHP8 Componere

PHP8 安装/配置

PHP8 外部函数接口

PHP8 选项和信息

PHP8 选项/信息 函数

PHP8 Windows Cache for PHP

PHP8 WinCache 函数

PHP8 Yac

PHP8 身份认证服务

PHP8 Radius 函数

PHP8 压缩与归档扩展

PHP8 Phar

PHP8 Zip

PHP8 ZipArchive 类

PHP8 加密扩展

PHP8 OpenSSL

PHP8 OpenSSL 函数

PHP8 Sodium 函数

PHP8 数据库扩展

PHP8 针对各数据库系统对应的扩展

PHP8 CUBRID 函数

PHP8 Firebird/InterBase

PHP8 Firebird/InterBase函数

PHP8 MongoDB介绍驱动程序体系结构和特殊功能

PHP8 MongoDB\Driver\Command 类

PHP8 MongoDB\Driver\Query 类

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }