array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.sodium-crypto-generichash-final.php', 1 => 'sodium_crypto_generichash_final', 2 => 'Complete the hash', ), 'up' => array ( 0 => 'ref.sodium.php', 1 => 'Sodium Функції', ), 'prev' => array ( 0 => 'function.sodium-crypto-generichash.php', 1 => 'sodium_crypto_generichash', ), 'next' => array ( 0 => 'function.sodium-crypto-generichash-init.php', 1 => 'sodium_crypto_generichash_init', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/sodium/functions/sodium-crypto-generichash-final.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

sodium_crypto_generichash_final

(PHP 7 >= 7.2.0, PHP 8)

sodium_crypto_generichash_finalComplete the hash

Опис

sodium_crypto_generichash_final(string &$state, int $length = SODIUM_CRYPTO_GENERICHASH_BYTES): string

The finalization method for the streaming generichash API.

Параметри

state

Hash state returned from sodium_crypto_generichash_init()

length

Output length.

Значення, що повертаються

Cryptographic hash.

Приклади

Приклад #1 sodium_crypto_generichash_final() example

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

$final = sodium_crypto_generichash_final($state, 32);
var_dump(sodium_bin2hex($final));

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

Поданий вище приклад виведе щось схоже на:

string(64) "a2939a9163cb7c796ec28e01028489e72475c136b2697ea59e3e760ab4a8ab20"
string(64) "a2939a9163cb7c796ec28e01028489e72475c136b2697ea59e3e760ab4a8ab20"