import "hash/fnv"
fnv包实现了FNV-1和FNV-1a(非加密hash函数),算法参见:
http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
func New32() hash.Hash32
返回一个新的32位FNV-1的hash.Hash32接口
func New32a() hash.Hash32
返回一个新的32位FNV-1a的hash.Hash32接口
func New64() hash.Hash64
返回一个新的64位FNV-1的hash.Hash64接口
func New64a() hash.Hash64
返回一个新的64位FNV-1a的hash.Hash64接口