i want to ask about PHP crc32 hashing.
i'm tried using hash('md5','value') and md5('value') its return same output.
output : 2063c1608d6e0baf80249c42e2be5804
but when i'm try to use hash('crc32','value') and crc32('value') its return different output.
hash() output : e0a39b72
crc32() output : 494360628
anyone know why it can return a different output?
thanks :)