Klibr / hash_crc32

kevgd / Klibr / hash_crc32

hash_crc32 (byte_array)

Retourne une valeur hexadecimal crc32 du tableau de bytes passé en paramètre.

illustration function klibr hash_crc32

Exemple d'utilisation en Javascript

a = [65,66,67,68,69,70];
v = hash_crc32(a);

Exemple d'utilisation en VB6

a = Array(65, 66, 67, 68, 69, 70)
v = hash_crc32(a)

Exemple d'utilisation en VBA

a = Array(65, 66, 67, 68, 69, 70)
v = hash_crc32(a)
kevgd loader
Patientez...