sodium_hex2bin
PHP Manual
PHP Manual»Sodium Funzioni»sodium_hex2bin

sodium_hex2bin

(PHP 7 >= 7.2.0, PHP 8)

sodium_hex2binDecodes a hexadecimally encoded binary string

Descrizione

function sodium_hex2bin(#[\SensitiveParameter]string $string, string $ignore = ""): string

Decodes a hexadecimally encoded binary string.

Like sodium_bin2hex(), sodium_hex2bin() is resistant to side-channel attacks while hex2bin() is not.

Elenco dei parametri

string
Hexadecimal representation of data.
ignore
Optional string argument for characters to ignore.

Valori restituiti

Returns the binary representation of the given string data.

To Top