sodium_crypto_generichash_update

(PHP 7 >= 7.2.0, PHP 8)

sodium_crypto_generichash_update将消息添加到哈希中

描述

sodium_crypto_generichash_update(string &$state, string $message): true

将消息追加到内部哈希状态。

参数

state

sodium_crypto_generichash_init() 的返回值。

message

要追加到哈希状态的数据。

返回值

始终返回 true

示例

示例 #1 sodium_crypto_generichash_update() 示例

<?php
$messages
= [random_bytes(32), random_bytes(32), random_bytes(16)];
$state = sodium_crypto_generichash_init();
foreach (
$messages as $message) {
sodium_crypto_generichash_update($state, $message);
}
$final = sodium_crypto_generichash_final($state);
var_dump(sodium_bin2hex($final));

$allAtOnce = sodium_crypto_generichash(implode('', $messages));
var_dump(sodium_bin2hex($allAtOnce));
?>

上面的示例将输出类似于以下内容

string(64) "e16e28bbbbcc39d9f5b1cbc33c41f1d217808640103e57a41f24870f79831e04"
string(64) "e16e28bbbbcc39d9f5b1cbc33c41f1d217808640103e57a41f24870f79831e04"
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top