 def hashString(s):
	b = s.encode('ascii')
	h = binascii.crc32(b) & 0xffffffff
	return h
