Skip to content

anik123/FNV-implementation-in-Matlab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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