Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 257 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 257 Bytes

FNV Hash implementation in Matlab

The basic information regarding FNV is provided here (http://www.isthe.com/chongo/tech/comp/fnv/). Both FNV1 and FNV1a is implemented here.

type = 'fnv1a';
msg = 'hi';

hash = FNV(msg,type)

> 26867967