sodium_hex2bin

(PHP 7 >= 7.2.0, PHP 8)

sodium_hex2binDekodiert eine hexadezimal kodierte binäre Zeichenkette

Beschreibung

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

Dekodiert eine hexadezimal kodierte binäre Zeichenkette.

Wie sodium_bin2hex() ist auch sodium_hex2bin() resistent gegen Seitenkanalattacken, während hex2bin() dies nicht ist.

Parameter-Liste

string

Hexadezimale Darstellung der Daten.

ignore

Optionales String-Argument für zu ignorierende Zeichen.

Rückgabewerte

Gibt die binäre Darstellung der angegebenen Zeichenkette (string) zurück.

add a note

User Contributed Notes 1 note

up
0
o-ren-shi at o2 dot pl
12 days ago
For some very, very weird reason, if you pass an invalid argument to this function:

<?php $cfg['blowfish_secret'] = sodium_hex2bin('f16ce59f45714194371b48dZGBmq4sRDUFy99glKIlKjlxaB76luP64d6fb13851'); ?>

then you'll get "Fatal error: Uncaught Error: Call to undefined function sodium_hex2bin()" error instead of any error that would tell you that your argument is invalid.

I still keep wondering why this isn't intercepted internally and how can PHP find one of its internal functions undefined only due to the wrong argument developer calls them with.
To Top