sodium_crypto_generichash_update

メッセージをハッシュに追加する

説明

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

内部的なハッシュステートにメッセージを追加します。

パラメータ

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"