exussum12 / xxhash

a xxhash implementation in php
20 stars 6 forks source link

128bit support #3

Open 0xVavaldi opened 3 years ago

0xVavaldi commented 3 years ago

Could you implement support for the XXH128 algorithm?

exussum12 commented 3 years ago

Ive got a version working (returning 2 64 bit numbers), but not sure how the final hash works, I will keep digging for docs in the upstream repo

exussum12 commented 3 years ago

The owner of xxHash posted how to do it, struggling to make that work though, its completely different from the others.

Will need to try a few more things to get this working

0xVavaldi commented 3 years ago

Alright, my current implementation is running a python script via an EXEC function in PHP so having a direct implementation will speed things up a lot

exussum12 commented 3 years ago

I should have time to work on it this week, its quite close now

0xVavaldi commented 3 years ago

Any progress?

0xVavaldi commented 2 years ago

Was wondering if there were any updates on this