Advertisement
ZeekoSec

Fowler Encryption

Apr 7th, 2015
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.15 KB | None | 0 0
  1. hash = FNV_offset_basis
  2.    for each octet_of_data to be hashed
  3.         hash = hash × FNV_prime
  4.         hash = hash XOR octet_of_data
  5.    return hash
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement