[Plugin] MurmurHash3
#1

MurmurHash3 for SA:MP

What is MurmurHash3?
MurmurHash3 is non-cryptographic hash function(GitHub).
And my plugin allow working with it.

Natives
PHP код:
native MurmurHash(const key[], lenseed); 
Example
Example #1 - Not random hash
Let's make a test hash. Create variable with your key string.
PHP код:
new key[] = "This is my test string"
And now we'll print a hash in the console
PHP код:
printf("Hash: %d",MurmurHash(key,sizeof(key),0)); 
Done. I got:
PHP код:
Hash733688637 
Example #2 - Random hash
Let's make a test random hash. Create variable with your key string.
PHP код:
new key[] = "This is my test string"
And create variable with random number.
PHP код:
new randnumber random(9999); 
And now we'll print a hash in the console.
PHP код:
printf("Random hash: %d",MurmurHash(key,sizeof(key),randnumber)); 
Installation
1. Download MurmurHash3 from Releases page.
2. Extract MurmurHash3.inc to ./pawno/include folder.
3. In your gamemode include MurmurHash3.inc.
4. Extract MurmurHash3.dll or MurmurHash3.so in ./plugins folder.
5. In server.cfg on line "plugins" add MurmurHash3.dll or MurmurHash3.so

Download
Download for Windows
Download for Linux
Source code
Reply


Messages In This Thread
MurmurHash3 - by ShapeGaz - 20.11.2017, 19:41
Re: MurmurHash3 - by Marllun - 20.11.2017, 19:56
Re: MurmurHash3 - by Xeon™ - 20.11.2017, 20:10
Re: MurmurHash3 - by Gammix - 20.11.2017, 23:37
Re: MurmurHash3 - by MyU - 20.11.2017, 23:38
Re: MurmurHash3 - by ShapeGaz - 21.11.2017, 09:48
Re: MurmurHash3 - by KingHual - 21.11.2017, 11:37
Re: MurmurHash3 - by ShapeGaz - 21.11.2017, 12:18
Re: MurmurHash3 - by Kaperstone - 21.11.2017, 18:35
Re: MurmurHash3 - by ShapeGaz - 21.11.2017, 19:26
Re: MurmurHash3 - by Raimis_R - 21.11.2017, 20:09
Re: MurmurHash3 - by ShapeGaz - 22.11.2017, 10:25
Re: MurmurHash3 - by BigETI - 22.11.2017, 10:41
Re: MurmurHash3 - by Kaperstone - 22.11.2017, 11:37
Re: MurmurHash3 - by BigETI - 22.11.2017, 11:50
Re: MurmurHash3 - by Kaperstone - 22.11.2017, 17:27
Re: MurmurHash3 - by ShapeGaz - 22.11.2017, 19:34
Re: MurmurHash3 - by adri1 - 22.11.2017, 21:43
Re: MurmurHash3 - by ThePhenix - 22.11.2017, 22:03
Re: MurmurHash3 - by Chaprnks - 23.11.2017, 00:19
Re: MurmurHash3 - by Kaperstone - 23.11.2017, 04:16
Re: MurmurHash3 - by ShapeGaz - 23.11.2017, 08:53
Re: MurmurHash3 - by Calgon - 23.11.2017, 10:39

Forum Jump:


Users browsing this thread: 1 Guest(s)