sodium_memcmp

(PHP 7 >= 7.2.0)

sodium_memcmpTest for equality in constant-time

Descrierea

sodium_memcmp ( string $string1 , string $string2 ) : int

Avertizare

Această funcție nu este documentată în prezent; este disponibilă numai lista sa de argumente.

Parametri

string1

string2

Valorile întoarse

add a note add a note

User Contributed Notes 1 note

up
0
divinity76 at gmail dot com
4 years ago
seems to me that this function does the same as the hash_equals() function. hash_equals() has nothing to do with hashes really, it is just a constant-time string equality check function, apparently like sodium_memcmp()
To Top