php8.5
Home/ Manual/ sodium / functions/ sodium_crypto_generichash

sodium_crypto_generichash

PHP function Edit on GitHub ✎

(PHP 7 >= 7.2.0, PHP 8)

Get a hash of the message

Description

sodium_crypto_generichash(string $message, string $key = "", int $length = SODIUM_CRYPTO_GENERICHASH_BYTES): string

Hash a message with BLAKE2b.

Parameters

message

The message being hashed.

key

(Optional) cryptographic key. This serves the same function as a HMAC key, but it's utilized as a reserved section of the internal BLAKE2 state.

length

Output size.

Return Values

The cryptographic hash as raw bytes. If a hex-encoded output is desired, the result can be passed to sodium_bin2hex().

Source: reference/sodium/functions/sodium-crypto-generichash.xml · from the official PHP manual (php/doc-en)