I have some values stored as 128-bit FNV-1a hashes that I would like to "decode". From my understanding, although most hashes are one way, FNV is not a cryptographic hash. Is it possible to "decode" an FNV hash I created myself? I am using golang, example hash below.
value, err := json.Marshal("hello world")
if err != nil {
fmt.Println(err)
}
fnv128 := fnv.New128a()
_, err = fnv128.Write(value)
if err != nil {
fmt.Println(err)
}
hash := fnv128.Sum([]byte{})
// given the hash above, find the value "hello world"