All Projects → lastguest → murmurhash-php

lastguest / murmurhash-php

Licence: MIT license
PHP userland implementation of MurmurHash3

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to murmurhash-php

prvhash
PRVHASH - Pseudo-Random-Value Hash. Hash functions, PRNG with unlimited period, randomness extractor. (Codename Gradilac/Градилак)
Stars: ✭ 194 (+60.33%)
Mutual labels:  hashing-algorithm
MurMurHash
This little tool is to calculate a MurmurHash value of a favicon to hunt phishing websites on the Shodan platform.
Stars: ✭ 79 (-34.71%)
Mutual labels:  murmurhash3
vtl
Fake videos detection by tracing the source using video hashing retrieval.
Stars: ✭ 57 (-52.89%)
Mutual labels:  hashing-algorithm
Scrypt
A .NET implementation of scrypt password hash algorithm.
Stars: ✭ 90 (-25.62%)
Mutual labels:  hashing-algorithm
murmur3
A rust implementation of murmur3
Stars: ✭ 48 (-60.33%)
Mutual labels:  murmurhash3
HashDepot
.NET library for xxHash, FNV, MurmurHash3 and SipHash algorithms
Stars: ✭ 107 (-11.57%)
Mutual labels:  murmurhash3
xxHash.NET
xxHash for .NET
Stars: ✭ 26 (-78.51%)
Mutual labels:  hashing-algorithm
basic-transport-info-app
A progressive web app to show direct & indirect buses / transport between two places / cities / stops .Show next schedule & travel duration. Algorithm to calculate indirect buses on basis of their schedule time. Voice search . Locate nearest city/stop by gps. Bus timetable.
Stars: ✭ 12 (-90.08%)
Mutual labels:  hashing-algorithm
Hashr
A simple and functional Android app for calculating checksums
Stars: ✭ 16 (-86.78%)
Mutual labels:  hashing-algorithm
komihash
Very fast, high-quality hash function (non-cryptographic, C) + PRNG
Stars: ✭ 68 (-43.8%)
Mutual labels:  hashing-algorithm
ngx http hmac secure link module
HMAC Secure Link module for NGINX.
Stars: ✭ 47 (-61.16%)
Mutual labels:  hashing-algorithm
hash-checker
Fast and simple application that allows you to generate and compare hashes from files and text
Stars: ✭ 72 (-40.5%)
Mutual labels:  hashing-algorithm
cross-modal-hasing-playground
Python implementation of cross-modal hashing algorithms
Stars: ✭ 19 (-84.3%)
Mutual labels:  hashing-algorithm

MurmurHash3

Latest Stable Version Total Downloads Latest Unstable Version License

PHP Implementation of MurmurHash3

More information about these algorithms can be found at:

Porting of the MurmurHash3 JavaScript version created by Gary Court (https://github.com/garycourt/murmurhash-js)

Installation

Use composer :

composer require lastguest/murmurhash

Usage

You can retrieve an hash via hash3 static method of class Murmur

<?php
use lastguest\Murmur;

echo Murmur::hash3("Hello World");
// cnd0ue

You can pass a precise seed positive integer as second parameter

<?php
use lastguest\Murmur;

echo Murmur::hash3("Hello World", 1234567);
// qtq2u

If you need the integer hash, use the hash3_int method

<?php
use lastguest\Murmur;

echo Murmur::hash3_int("Hello World");
// 427197390
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].