PHP8 sodium_crypto_generichash_update

2024-03-17 22:49 更新

(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() example

<?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"


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号